@hinen/pro-element-plus 1.7.17 → 1.8.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/components/DataTable/DataTable.vue.d.ts +24 -6
- package/dist/components/DataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/components/DataTable/props.d.ts +11 -2
- package/dist/components/DataTable/props.d.ts.map +1 -1
- package/dist/components/DataTable/types.d.ts +13 -1
- package/dist/components/DataTable/types.d.ts.map +1 -1
- package/dist/components/DataTable/useDataTable.d.ts.map +1 -1
- package/dist/components/FormFields/FormCascadeSelect/FormCascadeSelect.vue.d.ts +136 -146
- package/dist/components/FormFields/FormCascadeSelect/FormCascadeSelect.vue.d.ts.map +1 -1
- package/dist/components/FormFields/FormCascadeSelect/props.d.ts +112 -114
- package/dist/components/FormFields/FormCascadeSelect/props.d.ts.map +1 -1
- package/dist/components/FormFields/FormCascadeSelect/types.d.ts +24 -1
- package/dist/components/FormFields/FormCascadeSelect/types.d.ts.map +1 -1
- package/dist/components/FormFields/FormTagInput/FormTagInput.vue.d.ts.map +1 -1
- package/dist/components/FormFields/FormTreeSelect/props.d.ts +3 -1
- package/dist/components/FormFields/FormTreeSelect/props.d.ts.map +1 -1
- package/dist/index.cjs +32 -32
- package/dist/index.js +2947 -2570
- package/dist/skills/building-form-workflows/SKILL.md +77 -0
- package/dist/skills/building-form-workflows/references/examples.md +47 -0
- package/dist/skills/building-form-workflows/references/field-selection.md +16 -0
- package/dist/skills/building-form-workflows/references/gotchas.md +10 -0
- package/dist/skills/building-form-workflows/references/workflow.md +21 -0
- package/dist/skills/building-modal-workflows/SKILL.md +79 -0
- package/dist/skills/building-modal-workflows/references/examples.md +104 -0
- package/dist/skills/building-modal-workflows/references/gotchas.md +19 -0
- package/dist/skills/building-modal-workflows/references/workflow.md +17 -0
- package/dist/skills/building-query-pages/SKILL.md +81 -0
- package/dist/skills/building-query-pages/references/examples.md +64 -0
- package/dist/skills/building-query-pages/references/field-selection.md +24 -0
- package/dist/skills/building-query-pages/references/gotchas.md +10 -0
- package/dist/skills/building-query-pages/references/workflow.md +22 -0
- package/dist/skills/building-selection-inputs/SKILL.md +85 -0
- package/dist/skills/building-selection-inputs/references/examples.md +87 -0
- package/dist/skills/building-selection-inputs/references/gotchas.md +19 -0
- package/dist/skills/building-selection-inputs/references/selection-guide.md +47 -0
- package/dist/skills/choosing-components/SKILL.md +78 -0
- package/dist/skills/choosing-components/references/component-groups.md +37 -0
- package/dist/skills/choosing-components/references/examples.md +91 -0
- package/dist/skills/choosing-components/references/gotchas.md +10 -0
- package/dist/skills/choosing-components/references/selection-guide.md +40 -0
- package/dist/skills/optimizing-component-skills/REVIEW.md +775 -0
- package/dist/skills/using-checkbox-group/SKILL.md +91 -0
- package/dist/skills/using-checkbox-group/references/examples.md +55 -0
- package/dist/skills/using-checkbox-group/references/gotchas.md +13 -0
- package/dist/skills/using-checkbox-group/references/props.md +83 -0
- package/dist/skills/using-config-provider/SKILL.md +96 -0
- package/dist/skills/using-config-provider/references/examples.md +38 -0
- package/dist/skills/using-config-provider/references/gotchas.md +13 -0
- package/dist/skills/using-config-provider/references/props.md +38 -0
- package/dist/skills/using-data-select/SKILL.md +127 -0
- package/dist/skills/using-data-select/references/examples.md +67 -0
- package/dist/skills/using-data-select/references/gotchas.md +19 -0
- package/dist/skills/using-data-select/references/props.md +126 -0
- package/dist/skills/using-data-table/SKILL.md +289 -0
- package/dist/skills/using-data-table/references/examples.md +347 -0
- package/dist/skills/using-data-table/references/gotchas.md +114 -0
- package/dist/skills/using-data-table/references/props.md +375 -0
- package/dist/skills/using-drawer/SKILL.md +104 -0
- package/dist/skills/using-drawer/references/examples.md +109 -0
- package/dist/skills/using-drawer/references/gotchas.md +16 -0
- package/dist/skills/using-drawer/references/props.md +105 -0
- package/dist/skills/using-ellipsis-text/SKILL.md +105 -0
- package/dist/skills/using-ellipsis-text/references/examples.md +71 -0
- package/dist/skills/using-ellipsis-text/references/gotchas.md +19 -0
- package/dist/skills/using-ellipsis-text/references/props.md +97 -0
- package/dist/skills/using-form-autocomplete/SKILL.md +87 -0
- package/dist/skills/using-form-autocomplete/references/examples.md +62 -0
- package/dist/skills/using-form-autocomplete/references/gotchas.md +13 -0
- package/dist/skills/using-form-autocomplete/references/props.md +100 -0
- package/dist/skills/using-form-cascade-select/SKILL.md +82 -0
- package/dist/skills/using-form-cascade-select/references/examples.md +59 -0
- package/dist/skills/using-form-cascade-select/references/gotchas.md +13 -0
- package/dist/skills/using-form-cascade-select/references/props.md +138 -0
- package/dist/skills/using-form-checkbox-group/SKILL.md +83 -0
- package/dist/skills/using-form-checkbox-group/references/examples.md +61 -0
- package/dist/skills/using-form-checkbox-group/references/gotchas.md +13 -0
- package/dist/skills/using-form-checkbox-group/references/props.md +85 -0
- package/dist/skills/using-form-date-picker/SKILL.md +79 -0
- package/dist/skills/using-form-date-picker/references/examples.md +54 -0
- package/dist/skills/using-form-date-picker/references/gotchas.md +10 -0
- package/dist/skills/using-form-date-picker/references/props.md +99 -0
- package/dist/skills/using-form-fields/SKILL.md +101 -0
- package/dist/skills/using-form-fields/references/examples.md +45 -0
- package/dist/skills/using-form-fields/references/gotchas.md +6 -0
- package/dist/skills/using-form-fields/references/props.md +57 -0
- package/dist/skills/using-form-item/SKILL.md +92 -0
- package/dist/skills/using-form-item/references/examples.md +59 -0
- package/dist/skills/using-form-item/references/gotchas.md +13 -0
- package/dist/skills/using-form-item/references/props.md +85 -0
- package/dist/skills/using-form-number/SKILL.md +82 -0
- package/dist/skills/using-form-number/references/examples.md +66 -0
- package/dist/skills/using-form-number/references/gotchas.md +13 -0
- package/dist/skills/using-form-number/references/props.md +82 -0
- package/dist/skills/using-form-radio-group/SKILL.md +83 -0
- package/dist/skills/using-form-radio-group/references/examples.md +53 -0
- package/dist/skills/using-form-radio-group/references/gotchas.md +13 -0
- package/dist/skills/using-form-radio-group/references/props.md +81 -0
- package/dist/skills/using-form-rate/SKILL.md +86 -0
- package/dist/skills/using-form-rate/references/examples.md +60 -0
- package/dist/skills/using-form-rate/references/gotchas.md +16 -0
- package/dist/skills/using-form-rate/references/props.md +88 -0
- package/dist/skills/using-form-select/SKILL.md +94 -0
- package/dist/skills/using-form-select/references/examples.md +67 -0
- package/dist/skills/using-form-select/references/gotchas.md +13 -0
- package/dist/skills/using-form-select/references/props.md +87 -0
- package/dist/skills/using-form-switch/SKILL.md +81 -0
- package/dist/skills/using-form-switch/references/examples.md +54 -0
- package/dist/skills/using-form-switch/references/gotchas.md +10 -0
- package/dist/skills/using-form-switch/references/props.md +83 -0
- package/dist/skills/using-form-tag-input/SKILL.md +83 -0
- package/dist/skills/using-form-tag-input/references/examples.md +53 -0
- package/dist/skills/using-form-tag-input/references/gotchas.md +13 -0
- package/dist/skills/using-form-tag-input/references/props.md +80 -0
- package/dist/skills/using-form-text/SKILL.md +82 -0
- package/dist/skills/using-form-text/references/examples.md +66 -0
- package/dist/skills/using-form-text/references/gotchas.md +13 -0
- package/dist/skills/using-form-text/references/props.md +98 -0
- package/dist/skills/using-form-time-picker/SKILL.md +78 -0
- package/dist/skills/using-form-time-picker/references/examples.md +53 -0
- package/dist/skills/using-form-time-picker/references/gotchas.md +10 -0
- package/dist/skills/using-form-time-picker/references/props.md +89 -0
- package/dist/skills/using-form-tree-select/SKILL.md +82 -0
- package/dist/skills/using-form-tree-select/references/examples.md +55 -0
- package/dist/skills/using-form-tree-select/references/gotchas.md +13 -0
- package/dist/skills/using-form-tree-select/references/props.md +86 -0
- package/dist/skills/using-image/SKILL.md +88 -0
- package/dist/skills/using-image/references/examples.md +31 -0
- package/dist/skills/using-image/references/gotchas.md +13 -0
- package/dist/skills/using-image/references/props.md +91 -0
- package/dist/skills/using-modal/SKILL.md +113 -0
- package/dist/skills/using-modal/references/examples.md +122 -0
- package/dist/skills/using-modal/references/gotchas.md +16 -0
- package/dist/skills/using-modal/references/props.md +100 -0
- package/dist/skills/using-query-form/SKILL.md +134 -0
- package/dist/skills/using-query-form/references/examples.md +103 -0
- package/dist/skills/using-query-form/references/gotchas.md +19 -0
- package/dist/skills/using-query-form/references/props.md +146 -0
- package/dist/skills/using-radio-group/SKILL.md +91 -0
- package/dist/skills/using-radio-group/references/examples.md +55 -0
- package/dist/skills/using-radio-group/references/gotchas.md +13 -0
- package/dist/skills/using-radio-group/references/props.md +83 -0
- package/dist/skills/using-select/SKILL.md +93 -0
- package/dist/skills/using-select/references/examples.md +50 -0
- package/dist/skills/using-select/references/gotchas.md +13 -0
- package/dist/skills/using-select/references/props.md +90 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -52,6 +52,10 @@ declare function __VLS_template(): Readonly<Omit<Readonly<{
|
|
|
52
52
|
footer?(_: {}): any;
|
|
53
53
|
};
|
|
54
54
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
55
|
+
renderDefault: import('vue').PropType<(scope: {
|
|
56
|
+
node: any;
|
|
57
|
+
data: any;
|
|
58
|
+
}) => any>;
|
|
55
59
|
htmlFor: StringConstructor;
|
|
56
60
|
tooltip: {
|
|
57
61
|
type: import('vue').PropType<string | Partial<import('../../Tooltip').TooltipPropsType>>;
|
|
@@ -122,43 +126,22 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
122
126
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
123
127
|
__epPropKey: true;
|
|
124
128
|
};
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
valueOnClear: {
|
|
128
|
-
readonly type: import('vue').PropType<string | number | boolean | Function | null>;
|
|
129
|
+
options: {
|
|
130
|
+
readonly type: import('vue').PropType<import('element-plus').CascaderOption[]>;
|
|
129
131
|
readonly required: false;
|
|
130
132
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
131
133
|
__epPropKey: true;
|
|
132
134
|
} & {
|
|
133
|
-
readonly default:
|
|
135
|
+
readonly default: () => import('element-plus').CascaderOption[];
|
|
134
136
|
};
|
|
135
|
-
|
|
136
|
-
readonly type: import('vue').PropType<
|
|
137
|
+
modelValue: {
|
|
138
|
+
readonly type: import('vue').PropType<((string | number)[] | (string | number) | ((string | number)[] | (string | number))[]) | null>;
|
|
137
139
|
readonly required: false;
|
|
138
140
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
139
141
|
__epPropKey: true;
|
|
140
142
|
};
|
|
141
|
-
placeholder: StringConstructor;
|
|
142
143
|
disabled: BooleanConstructor;
|
|
143
|
-
|
|
144
|
-
filterable: BooleanConstructor;
|
|
145
|
-
filterMethod: {
|
|
146
|
-
readonly type: import('vue').PropType<(node: import('element-plus').CascaderNode, keyword: string) => boolean>;
|
|
147
|
-
readonly required: false;
|
|
148
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
149
|
-
__epPropKey: true;
|
|
150
|
-
} & {
|
|
151
|
-
readonly default: (node: import('element-plus').CascaderNode, keyword: string) => boolean;
|
|
152
|
-
};
|
|
153
|
-
separator: {
|
|
154
|
-
readonly type: import('vue').PropType<string>;
|
|
155
|
-
readonly required: false;
|
|
156
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
157
|
-
__epPropKey: true;
|
|
158
|
-
} & {
|
|
159
|
-
readonly default: string;
|
|
160
|
-
};
|
|
161
|
-
showAllLevels: {
|
|
144
|
+
validateEvent: {
|
|
162
145
|
readonly type: import('vue').PropType<boolean>;
|
|
163
146
|
readonly required: false;
|
|
164
147
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
@@ -166,61 +149,58 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
166
149
|
} & {
|
|
167
150
|
readonly default: boolean;
|
|
168
151
|
};
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
readonly type: import('vue').PropType<number>;
|
|
152
|
+
props: {
|
|
153
|
+
readonly type: import('vue').PropType<import('element-plus').CascaderProps>;
|
|
172
154
|
readonly required: false;
|
|
173
155
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
174
156
|
__epPropKey: true;
|
|
175
157
|
} & {
|
|
176
|
-
readonly default:
|
|
177
|
-
};
|
|
178
|
-
collapseTagsTooltip: BooleanConstructor;
|
|
179
|
-
maxCollapseTagsTooltipHeight: {
|
|
180
|
-
readonly type: import('vue').PropType<string | number>;
|
|
181
|
-
readonly required: false;
|
|
182
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
183
|
-
__epPropKey: true;
|
|
158
|
+
readonly default: () => import('element-plus').CascaderProps;
|
|
184
159
|
};
|
|
185
|
-
|
|
186
|
-
readonly type: import('vue').PropType<
|
|
160
|
+
filterMethod: {
|
|
161
|
+
readonly type: import('vue').PropType<(node: import('element-plus').CascaderNode, keyword: string) => boolean>;
|
|
187
162
|
readonly required: false;
|
|
188
163
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
189
164
|
__epPropKey: true;
|
|
190
165
|
} & {
|
|
191
|
-
readonly default:
|
|
166
|
+
readonly default: (node: import('element-plus').CascaderNode, keyword: string) => boolean;
|
|
192
167
|
};
|
|
193
|
-
|
|
194
|
-
|
|
168
|
+
filterable: BooleanConstructor;
|
|
169
|
+
emptyValues: ArrayConstructor;
|
|
170
|
+
valueOnClear: {
|
|
171
|
+
readonly type: import('vue').PropType<string | number | boolean | Function | null>;
|
|
195
172
|
readonly required: false;
|
|
196
173
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
197
174
|
__epPropKey: true;
|
|
198
175
|
} & {
|
|
199
|
-
readonly default:
|
|
176
|
+
readonly default: undefined;
|
|
200
177
|
};
|
|
201
|
-
|
|
202
|
-
readonly type: import('vue').PropType<
|
|
178
|
+
effect: {
|
|
179
|
+
readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
|
|
203
180
|
readonly required: false;
|
|
204
181
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
205
182
|
__epPropKey: true;
|
|
206
183
|
} & {
|
|
207
184
|
readonly default: string;
|
|
208
185
|
};
|
|
209
|
-
|
|
210
|
-
readonly type: import('vue').PropType<
|
|
186
|
+
popperClass: {
|
|
187
|
+
readonly type: import('vue').PropType<string>;
|
|
211
188
|
readonly required: false;
|
|
212
189
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
213
190
|
__epPropKey: true;
|
|
214
191
|
} & {
|
|
215
|
-
readonly default: string
|
|
192
|
+
readonly default: string;
|
|
216
193
|
};
|
|
217
|
-
|
|
218
|
-
|
|
194
|
+
placeholder: StringConstructor;
|
|
195
|
+
collapseTags: BooleanConstructor;
|
|
196
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
197
|
+
maxCollapseTags: {
|
|
198
|
+
readonly type: import('vue').PropType<number>;
|
|
219
199
|
readonly required: false;
|
|
220
200
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
221
201
|
__epPropKey: true;
|
|
222
202
|
} & {
|
|
223
|
-
readonly default:
|
|
203
|
+
readonly default: number;
|
|
224
204
|
};
|
|
225
205
|
teleported: {
|
|
226
206
|
readonly type: import('vue').PropType<boolean>;
|
|
@@ -230,13 +210,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
230
210
|
} & {
|
|
231
211
|
readonly default: true;
|
|
232
212
|
};
|
|
233
|
-
|
|
234
|
-
readonly type: import('vue').PropType<
|
|
213
|
+
persistent: {
|
|
214
|
+
readonly type: import('vue').PropType<boolean>;
|
|
235
215
|
readonly required: false;
|
|
236
216
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
237
217
|
__epPropKey: true;
|
|
238
218
|
} & {
|
|
239
|
-
readonly default:
|
|
219
|
+
readonly default: boolean;
|
|
240
220
|
};
|
|
241
221
|
tagType: {
|
|
242
222
|
default: string;
|
|
@@ -252,23 +232,23 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
252
232
|
validator: ((val: unknown) => boolean) | undefined;
|
|
253
233
|
__epPropKey: true;
|
|
254
234
|
};
|
|
255
|
-
|
|
256
|
-
readonly type: import('vue').PropType<
|
|
235
|
+
placement: {
|
|
236
|
+
readonly type: import('vue').PropType<any>;
|
|
257
237
|
readonly required: false;
|
|
258
238
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
259
239
|
__epPropKey: true;
|
|
260
240
|
} & {
|
|
261
|
-
readonly default:
|
|
241
|
+
readonly default: string;
|
|
262
242
|
};
|
|
263
|
-
|
|
264
|
-
readonly type: import('vue').PropType<
|
|
243
|
+
fallbackPlacements: {
|
|
244
|
+
readonly type: import('vue').PropType<Placement[]>;
|
|
265
245
|
readonly required: false;
|
|
266
246
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
267
247
|
__epPropKey: true;
|
|
268
248
|
} & {
|
|
269
|
-
readonly default:
|
|
249
|
+
readonly default: string[];
|
|
270
250
|
};
|
|
271
|
-
|
|
251
|
+
separator: {
|
|
272
252
|
readonly type: import('vue').PropType<string>;
|
|
273
253
|
readonly required: false;
|
|
274
254
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
@@ -276,8 +256,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
276
256
|
} & {
|
|
277
257
|
readonly default: string;
|
|
278
258
|
};
|
|
279
|
-
|
|
280
|
-
showPrefix: {
|
|
259
|
+
showAllLevels: {
|
|
281
260
|
readonly type: import('vue').PropType<boolean>;
|
|
282
261
|
readonly required: false;
|
|
283
262
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
@@ -285,29 +264,45 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
285
264
|
} & {
|
|
286
265
|
readonly default: boolean;
|
|
287
266
|
};
|
|
288
|
-
|
|
289
|
-
readonly type: import('vue').PropType<
|
|
267
|
+
maxCollapseTagsTooltipHeight: {
|
|
268
|
+
readonly type: import('vue').PropType<string | number>;
|
|
290
269
|
readonly required: false;
|
|
291
270
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
292
271
|
__epPropKey: true;
|
|
293
272
|
};
|
|
294
|
-
|
|
295
|
-
readonly type: import('vue').PropType<
|
|
273
|
+
debounce: {
|
|
274
|
+
readonly type: import('vue').PropType<number>;
|
|
296
275
|
readonly required: false;
|
|
297
276
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
298
277
|
__epPropKey: true;
|
|
299
278
|
} & {
|
|
300
|
-
readonly default:
|
|
279
|
+
readonly default: number;
|
|
301
280
|
};
|
|
302
|
-
|
|
303
|
-
readonly type: import('vue').PropType<
|
|
281
|
+
beforeFilter: {
|
|
282
|
+
readonly type: import('vue').PropType<(value: string) => boolean | Promise<any>>;
|
|
304
283
|
readonly required: false;
|
|
305
284
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
306
285
|
__epPropKey: true;
|
|
307
286
|
} & {
|
|
308
|
-
readonly default: () =>
|
|
287
|
+
readonly default: () => true;
|
|
288
|
+
};
|
|
289
|
+
showCheckedStrategy: {
|
|
290
|
+
readonly type: import('vue').PropType<string>;
|
|
291
|
+
readonly required: false;
|
|
292
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
293
|
+
__epPropKey: true;
|
|
294
|
+
} & {
|
|
295
|
+
readonly default: string;
|
|
296
|
+
};
|
|
297
|
+
checkOnClickNode: BooleanConstructor;
|
|
298
|
+
showPrefix: {
|
|
299
|
+
readonly type: import('vue').PropType<boolean>;
|
|
300
|
+
readonly required: false;
|
|
301
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
302
|
+
__epPropKey: true;
|
|
303
|
+
} & {
|
|
304
|
+
readonly default: boolean;
|
|
309
305
|
};
|
|
310
|
-
}, "size" | "id" | "clearable"> & {
|
|
311
306
|
clearable: {
|
|
312
307
|
type: BooleanConstructor;
|
|
313
308
|
default: boolean;
|
|
@@ -519,6 +514,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
519
514
|
expandChange: (val: import('element-plus').CascaderValue) => void;
|
|
520
515
|
removeTag: (val: (string | number)[] | (string | number)) => void;
|
|
521
516
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
517
|
+
renderDefault: import('vue').PropType<(scope: {
|
|
518
|
+
node: any;
|
|
519
|
+
data: any;
|
|
520
|
+
}) => any>;
|
|
522
521
|
htmlFor: StringConstructor;
|
|
523
522
|
tooltip: {
|
|
524
523
|
type: import('vue').PropType<string | Partial<import('../../Tooltip').TooltipPropsType>>;
|
|
@@ -589,43 +588,22 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
589
588
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
590
589
|
__epPropKey: true;
|
|
591
590
|
};
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
valueOnClear: {
|
|
595
|
-
readonly type: import('vue').PropType<string | number | boolean | Function | null>;
|
|
591
|
+
options: {
|
|
592
|
+
readonly type: import('vue').PropType<import('element-plus').CascaderOption[]>;
|
|
596
593
|
readonly required: false;
|
|
597
594
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
598
595
|
__epPropKey: true;
|
|
599
596
|
} & {
|
|
600
|
-
readonly default:
|
|
597
|
+
readonly default: () => import('element-plus').CascaderOption[];
|
|
601
598
|
};
|
|
602
|
-
|
|
603
|
-
readonly type: import('vue').PropType<
|
|
599
|
+
modelValue: {
|
|
600
|
+
readonly type: import('vue').PropType<((string | number)[] | (string | number) | ((string | number)[] | (string | number))[]) | null>;
|
|
604
601
|
readonly required: false;
|
|
605
602
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
606
603
|
__epPropKey: true;
|
|
607
604
|
};
|
|
608
|
-
placeholder: StringConstructor;
|
|
609
605
|
disabled: BooleanConstructor;
|
|
610
|
-
|
|
611
|
-
filterable: BooleanConstructor;
|
|
612
|
-
filterMethod: {
|
|
613
|
-
readonly type: import('vue').PropType<(node: import('element-plus').CascaderNode, keyword: string) => boolean>;
|
|
614
|
-
readonly required: false;
|
|
615
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
616
|
-
__epPropKey: true;
|
|
617
|
-
} & {
|
|
618
|
-
readonly default: (node: import('element-plus').CascaderNode, keyword: string) => boolean;
|
|
619
|
-
};
|
|
620
|
-
separator: {
|
|
621
|
-
readonly type: import('vue').PropType<string>;
|
|
622
|
-
readonly required: false;
|
|
623
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
624
|
-
__epPropKey: true;
|
|
625
|
-
} & {
|
|
626
|
-
readonly default: string;
|
|
627
|
-
};
|
|
628
|
-
showAllLevels: {
|
|
606
|
+
validateEvent: {
|
|
629
607
|
readonly type: import('vue').PropType<boolean>;
|
|
630
608
|
readonly required: false;
|
|
631
609
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
@@ -633,61 +611,58 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
633
611
|
} & {
|
|
634
612
|
readonly default: boolean;
|
|
635
613
|
};
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
readonly type: import('vue').PropType<number>;
|
|
614
|
+
props: {
|
|
615
|
+
readonly type: import('vue').PropType<import('element-plus').CascaderProps>;
|
|
639
616
|
readonly required: false;
|
|
640
617
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
641
618
|
__epPropKey: true;
|
|
642
619
|
} & {
|
|
643
|
-
readonly default:
|
|
644
|
-
};
|
|
645
|
-
collapseTagsTooltip: BooleanConstructor;
|
|
646
|
-
maxCollapseTagsTooltipHeight: {
|
|
647
|
-
readonly type: import('vue').PropType<string | number>;
|
|
648
|
-
readonly required: false;
|
|
649
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
650
|
-
__epPropKey: true;
|
|
620
|
+
readonly default: () => import('element-plus').CascaderProps;
|
|
651
621
|
};
|
|
652
|
-
|
|
653
|
-
readonly type: import('vue').PropType<
|
|
622
|
+
filterMethod: {
|
|
623
|
+
readonly type: import('vue').PropType<(node: import('element-plus').CascaderNode, keyword: string) => boolean>;
|
|
654
624
|
readonly required: false;
|
|
655
625
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
656
626
|
__epPropKey: true;
|
|
657
627
|
} & {
|
|
658
|
-
readonly default:
|
|
628
|
+
readonly default: (node: import('element-plus').CascaderNode, keyword: string) => boolean;
|
|
659
629
|
};
|
|
660
|
-
|
|
661
|
-
|
|
630
|
+
filterable: BooleanConstructor;
|
|
631
|
+
emptyValues: ArrayConstructor;
|
|
632
|
+
valueOnClear: {
|
|
633
|
+
readonly type: import('vue').PropType<string | number | boolean | Function | null>;
|
|
662
634
|
readonly required: false;
|
|
663
635
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
664
636
|
__epPropKey: true;
|
|
665
637
|
} & {
|
|
666
|
-
readonly default:
|
|
638
|
+
readonly default: undefined;
|
|
667
639
|
};
|
|
668
|
-
|
|
669
|
-
readonly type: import('vue').PropType<
|
|
640
|
+
effect: {
|
|
641
|
+
readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
|
|
670
642
|
readonly required: false;
|
|
671
643
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
672
644
|
__epPropKey: true;
|
|
673
645
|
} & {
|
|
674
646
|
readonly default: string;
|
|
675
647
|
};
|
|
676
|
-
|
|
677
|
-
readonly type: import('vue').PropType<
|
|
648
|
+
popperClass: {
|
|
649
|
+
readonly type: import('vue').PropType<string>;
|
|
678
650
|
readonly required: false;
|
|
679
651
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
680
652
|
__epPropKey: true;
|
|
681
653
|
} & {
|
|
682
|
-
readonly default: string
|
|
654
|
+
readonly default: string;
|
|
683
655
|
};
|
|
684
|
-
|
|
685
|
-
|
|
656
|
+
placeholder: StringConstructor;
|
|
657
|
+
collapseTags: BooleanConstructor;
|
|
658
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
659
|
+
maxCollapseTags: {
|
|
660
|
+
readonly type: import('vue').PropType<number>;
|
|
686
661
|
readonly required: false;
|
|
687
662
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
688
663
|
__epPropKey: true;
|
|
689
664
|
} & {
|
|
690
|
-
readonly default:
|
|
665
|
+
readonly default: number;
|
|
691
666
|
};
|
|
692
667
|
teleported: {
|
|
693
668
|
readonly type: import('vue').PropType<boolean>;
|
|
@@ -697,13 +672,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
697
672
|
} & {
|
|
698
673
|
readonly default: true;
|
|
699
674
|
};
|
|
700
|
-
|
|
701
|
-
readonly type: import('vue').PropType<
|
|
675
|
+
persistent: {
|
|
676
|
+
readonly type: import('vue').PropType<boolean>;
|
|
702
677
|
readonly required: false;
|
|
703
678
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
704
679
|
__epPropKey: true;
|
|
705
680
|
} & {
|
|
706
|
-
readonly default:
|
|
681
|
+
readonly default: boolean;
|
|
707
682
|
};
|
|
708
683
|
tagType: {
|
|
709
684
|
default: string;
|
|
@@ -719,23 +694,23 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
719
694
|
validator: ((val: unknown) => boolean) | undefined;
|
|
720
695
|
__epPropKey: true;
|
|
721
696
|
};
|
|
722
|
-
|
|
723
|
-
readonly type: import('vue').PropType<
|
|
697
|
+
placement: {
|
|
698
|
+
readonly type: import('vue').PropType<any>;
|
|
724
699
|
readonly required: false;
|
|
725
700
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
726
701
|
__epPropKey: true;
|
|
727
702
|
} & {
|
|
728
|
-
readonly default:
|
|
703
|
+
readonly default: string;
|
|
729
704
|
};
|
|
730
|
-
|
|
731
|
-
readonly type: import('vue').PropType<
|
|
705
|
+
fallbackPlacements: {
|
|
706
|
+
readonly type: import('vue').PropType<Placement[]>;
|
|
732
707
|
readonly required: false;
|
|
733
708
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
734
709
|
__epPropKey: true;
|
|
735
710
|
} & {
|
|
736
|
-
readonly default:
|
|
711
|
+
readonly default: string[];
|
|
737
712
|
};
|
|
738
|
-
|
|
713
|
+
separator: {
|
|
739
714
|
readonly type: import('vue').PropType<string>;
|
|
740
715
|
readonly required: false;
|
|
741
716
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
@@ -743,8 +718,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
743
718
|
} & {
|
|
744
719
|
readonly default: string;
|
|
745
720
|
};
|
|
746
|
-
|
|
747
|
-
showPrefix: {
|
|
721
|
+
showAllLevels: {
|
|
748
722
|
readonly type: import('vue').PropType<boolean>;
|
|
749
723
|
readonly required: false;
|
|
750
724
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
@@ -752,29 +726,45 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
752
726
|
} & {
|
|
753
727
|
readonly default: boolean;
|
|
754
728
|
};
|
|
755
|
-
|
|
756
|
-
readonly type: import('vue').PropType<
|
|
729
|
+
maxCollapseTagsTooltipHeight: {
|
|
730
|
+
readonly type: import('vue').PropType<string | number>;
|
|
757
731
|
readonly required: false;
|
|
758
732
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
759
733
|
__epPropKey: true;
|
|
760
734
|
};
|
|
761
|
-
|
|
762
|
-
readonly type: import('vue').PropType<
|
|
735
|
+
debounce: {
|
|
736
|
+
readonly type: import('vue').PropType<number>;
|
|
763
737
|
readonly required: false;
|
|
764
738
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
765
739
|
__epPropKey: true;
|
|
766
740
|
} & {
|
|
767
|
-
readonly default:
|
|
741
|
+
readonly default: number;
|
|
768
742
|
};
|
|
769
|
-
|
|
770
|
-
readonly type: import('vue').PropType<
|
|
743
|
+
beforeFilter: {
|
|
744
|
+
readonly type: import('vue').PropType<(value: string) => boolean | Promise<any>>;
|
|
771
745
|
readonly required: false;
|
|
772
746
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
773
747
|
__epPropKey: true;
|
|
774
748
|
} & {
|
|
775
|
-
readonly default: () =>
|
|
749
|
+
readonly default: () => true;
|
|
750
|
+
};
|
|
751
|
+
showCheckedStrategy: {
|
|
752
|
+
readonly type: import('vue').PropType<string>;
|
|
753
|
+
readonly required: false;
|
|
754
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
755
|
+
__epPropKey: true;
|
|
756
|
+
} & {
|
|
757
|
+
readonly default: string;
|
|
758
|
+
};
|
|
759
|
+
checkOnClickNode: BooleanConstructor;
|
|
760
|
+
showPrefix: {
|
|
761
|
+
readonly type: import('vue').PropType<boolean>;
|
|
762
|
+
readonly required: false;
|
|
763
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
764
|
+
__epPropKey: true;
|
|
765
|
+
} & {
|
|
766
|
+
readonly default: boolean;
|
|
776
767
|
};
|
|
777
|
-
}, "size" | "id" | "clearable"> & {
|
|
778
768
|
clearable: {
|
|
779
769
|
type: BooleanConstructor;
|
|
780
770
|
default: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormCascadeSelect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FormFields/FormCascadeSelect/FormCascadeSelect.vue"],"names":[],"mappings":"AAGA,OAAO,EAEL,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACtB,MAAM,cAAc,CAAC;AA8BtB,iBAAS,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"FormCascadeSelect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FormFields/FormCascadeSelect/FormCascadeSelect.vue"],"names":[],"mappings":"AAGA,OAAO,EAEL,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACtB,MAAM,cAAc,CAAC;AA8BtB,iBAAS,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsLtB;AAkBD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AACxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|