@hinen/pro-element-plus 1.4.0 → 1.5.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/CheckboxGroup/CheckboxGroup.vue.d.ts +2 -2
- package/dist/components/DataSelect/DataSelect.vue.d.ts +6 -6
- package/dist/components/DataTable/DataTable.vue.d.ts +7 -7
- package/dist/components/Drawer/Drawer.vue.d.ts +5 -5
- package/dist/components/EllipsisText/EllipsisText.vue.d.ts +1 -1
- package/dist/components/FormFields/FormCascadeSelect/FormCascadeSelect.vue.d.ts +8 -8
- package/dist/components/FormFields/FormCascadeSelect/props.d.ts +1 -1
- package/dist/components/FormFields/FormCheckboxGroup/FormCheckboxGroup.vue.d.ts +4 -4
- package/dist/components/FormFields/FormCheckboxGroup/props.d.ts +1 -1
- package/dist/components/FormFields/FormDatePicker/FormDatePicker.vue.d.ts +8 -8
- package/dist/components/FormFields/FormDatePicker/props.d.ts +1 -1
- package/dist/components/FormFields/FormItem/FormItem.vue.d.ts +3 -3
- package/dist/components/FormFields/FormItem/props.d.ts +1 -1
- package/dist/components/FormFields/FormItem/utils.d.ts +1 -1
- package/dist/components/FormFields/FormNumber/FormNumber.vue.d.ts +6 -6
- package/dist/components/FormFields/FormNumber/props.d.ts +1 -1
- package/dist/components/FormFields/FormRadioGroup/FormRadioGroup.vue.d.ts +4 -4
- package/dist/components/FormFields/FormRadioGroup/props.d.ts +1 -1
- package/dist/components/FormFields/FormRate/FormRate.vue.d.ts +5 -5
- package/dist/components/FormFields/FormRate/props.d.ts +1 -1
- package/dist/components/FormFields/FormSelect/FormSelect.vue.d.ts +8 -8
- package/dist/components/FormFields/FormSelect/props.d.ts +1 -1
- package/dist/components/FormFields/FormSwitch/FormSwitch.vue.d.ts +4 -4
- package/dist/components/FormFields/FormSwitch/props.d.ts +1 -1
- package/dist/components/FormFields/FormTagInput/FormTagInput.vue.d.ts +10 -10
- package/dist/components/FormFields/FormTagInput/props.d.ts +1 -1
- package/dist/components/FormFields/FormText/FormText.vue.d.ts +18 -18
- package/dist/components/FormFields/FormText/props.d.ts +1 -1
- package/dist/components/FormFields/FormTimePicker/FormTimePicker.vue.d.ts +8 -8
- package/dist/components/FormFields/FormTimePicker/props.d.ts +1 -1
- package/dist/components/FormFields/FormTreeSelect/FormTreeSelect.vue.d.ts +1 -1
- package/dist/components/FormFields/FormTreeSelect/props.d.ts +1 -1
- package/dist/components/FormFields/utils.d.ts +1 -1
- package/dist/components/Image/Image.vue.d.ts +5 -5
- package/dist/components/Modal/Modal.vue.d.ts +5 -5
- package/dist/components/QueryForm/QueryForm.vue.d.ts +2 -2
- package/dist/components/QueryForm/QueryForm.vue.d.ts.map +1 -1
- package/dist/components/QueryForm/TagContent.vue.d.ts +16 -0
- package/dist/components/QueryForm/TagContent.vue.d.ts.map +1 -0
- package/dist/components/QueryForm/contants.d.ts +2 -0
- package/dist/components/QueryForm/contants.d.ts.map +1 -0
- package/dist/components/QueryForm/types.d.ts +5 -1
- package/dist/components/QueryForm/types.d.ts.map +1 -1
- package/dist/components/QueryForm/utils.d.ts +1 -0
- package/dist/components/QueryForm/utils.d.ts.map +1 -1
- package/dist/components/RadioGroup/RadioGroup.vue.d.ts +2 -2
- package/dist/components/Select/Select.vue.d.ts +7 -6
- package/dist/components/Select/Select.vue.d.ts.map +1 -1
- package/dist/components/Select/types.d.ts +1 -0
- package/dist/components/Select/types.d.ts.map +1 -1
- package/dist/index.cjs +24 -24
- package/dist/index.js +2095 -1915
- package/dist/style.css +1 -1
- package/package.json +3 -2
|
@@ -42,7 +42,7 @@ export declare const formSwitchProps: {
|
|
|
42
42
|
};
|
|
43
43
|
error: StringConstructor;
|
|
44
44
|
validateStatus: {
|
|
45
|
-
readonly type: import('vue').PropType<"" | "
|
|
45
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
46
46
|
readonly required: false;
|
|
47
47
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
48
48
|
__epPropKey: true;
|
|
@@ -83,7 +83,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
83
83
|
};
|
|
84
84
|
error: StringConstructor;
|
|
85
85
|
validateStatus: {
|
|
86
|
-
readonly type: import('vue').PropType<"" | "
|
|
86
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
87
87
|
readonly required: false;
|
|
88
88
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
89
89
|
__epPropKey: true;
|
|
@@ -350,13 +350,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
350
350
|
formItem: import('vue').ShallowRef<FormItemInstance | undefined, FormItemInstance | undefined>;
|
|
351
351
|
field: import('vue').ShallowRef<InputTagInstance | undefined, InputTagInstance | undefined>;
|
|
352
352
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
353
|
-
|
|
353
|
+
blur: (evt: FocusEvent) => void;
|
|
354
354
|
change: (value?: string[] | undefined) => void;
|
|
355
|
-
clear: () => void;
|
|
356
355
|
focus: (evt: FocusEvent) => void;
|
|
357
|
-
blur: (evt: FocusEvent) => void;
|
|
358
|
-
"remove-tag": (value: string) => void;
|
|
359
356
|
input: (value: string) => void;
|
|
357
|
+
"update:modelValue": (value?: string[] | undefined) => void;
|
|
358
|
+
clear: () => void;
|
|
359
|
+
"remove-tag": (value: string) => void;
|
|
360
360
|
"add-tag": (value: string | string[]) => void;
|
|
361
361
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
362
362
|
htmlFor: StringConstructor;
|
|
@@ -402,7 +402,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
402
402
|
};
|
|
403
403
|
error: StringConstructor;
|
|
404
404
|
validateStatus: {
|
|
405
|
-
readonly type: import('vue').PropType<"" | "
|
|
405
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
406
406
|
readonly required: false;
|
|
407
407
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
408
408
|
__epPropKey: true;
|
|
@@ -666,13 +666,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
666
666
|
default: () => {};
|
|
667
667
|
};
|
|
668
668
|
}>> & Readonly<{
|
|
669
|
-
|
|
669
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
670
670
|
onChange?: ((value?: string[] | undefined) => any) | undefined;
|
|
671
|
-
onClear?: (() => any) | undefined;
|
|
672
671
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
673
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
674
|
-
"onRemove-tag"?: ((value: string) => any) | undefined;
|
|
675
672
|
onInput?: ((value: string) => any) | undefined;
|
|
673
|
+
"onUpdate:modelValue"?: ((value?: string[] | undefined) => any) | undefined;
|
|
674
|
+
onClear?: (() => any) | undefined;
|
|
675
|
+
"onRemove-tag"?: ((value: string) => any) | undefined;
|
|
676
676
|
"onAdd-tag"?: ((value: string | string[]) => any) | undefined;
|
|
677
677
|
}>, {
|
|
678
678
|
required: boolean;
|
|
@@ -42,7 +42,7 @@ export declare const formTagInputProps: {
|
|
|
42
42
|
};
|
|
43
43
|
error: StringConstructor;
|
|
44
44
|
validateStatus: {
|
|
45
|
-
readonly type: import('vue').PropType<"" | "
|
|
45
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
46
46
|
readonly required: false;
|
|
47
47
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
48
48
|
__epPropKey: true;
|
|
@@ -79,7 +79,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
79
79
|
};
|
|
80
80
|
error: StringConstructor;
|
|
81
81
|
validateStatus: {
|
|
82
|
-
readonly type: import('vue').PropType<"" | "
|
|
82
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
83
83
|
readonly required: false;
|
|
84
84
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
85
85
|
__epPropKey: true;
|
|
@@ -442,18 +442,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
442
442
|
formItem: import('vue').ShallowRef<FormItemInstance | undefined, FormItemInstance | undefined>;
|
|
443
443
|
field: import('vue').ShallowRef<InputInstance | undefined, InputInstance | undefined>;
|
|
444
444
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
445
|
-
|
|
445
|
+
blur: (evt: FocusEvent) => void;
|
|
446
446
|
change: (value: string) => void;
|
|
447
|
-
|
|
447
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
448
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
449
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
448
450
|
focus: (evt: FocusEvent) => void;
|
|
449
|
-
blur: (evt: FocusEvent) => void;
|
|
450
451
|
input: (value: string) => void;
|
|
451
|
-
mouseleave: (evt: MouseEvent) => void;
|
|
452
|
-
mouseenter: (evt: MouseEvent) => void;
|
|
453
452
|
keydown: (evt: Event | KeyboardEvent) => void;
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
453
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
454
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
455
|
+
"update:modelValue": (value: string) => void;
|
|
456
|
+
clear: () => void;
|
|
457
457
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
458
458
|
htmlFor: StringConstructor;
|
|
459
459
|
tooltip: {
|
|
@@ -498,7 +498,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
498
498
|
};
|
|
499
499
|
error: StringConstructor;
|
|
500
500
|
validateStatus: {
|
|
501
|
-
readonly type: import('vue').PropType<"" | "
|
|
501
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
502
502
|
readonly required: false;
|
|
503
503
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
504
504
|
__epPropKey: true;
|
|
@@ -858,18 +858,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
858
858
|
default: () => {};
|
|
859
859
|
};
|
|
860
860
|
}>> & Readonly<{
|
|
861
|
-
|
|
861
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
862
862
|
onChange?: ((value: string) => any) | undefined;
|
|
863
|
-
|
|
863
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
864
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
865
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
864
866
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
865
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
866
867
|
onInput?: ((value: string) => any) | undefined;
|
|
867
|
-
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
868
|
-
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
869
868
|
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
869
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
870
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
871
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
872
|
+
onClear?: (() => any) | undefined;
|
|
873
873
|
}>, {
|
|
874
874
|
type: string;
|
|
875
875
|
required: boolean;
|
|
@@ -44,7 +44,7 @@ export declare const formTextProps: {
|
|
|
44
44
|
};
|
|
45
45
|
error: StringConstructor;
|
|
46
46
|
validateStatus: {
|
|
47
|
-
readonly type: PropType<"" | "
|
|
47
|
+
readonly type: PropType<"" | "error" | "success" | "validating">;
|
|
48
48
|
readonly required: false;
|
|
49
49
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
50
50
|
__epPropKey: true;
|
|
@@ -66,7 +66,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
66
66
|
};
|
|
67
67
|
error: StringConstructor;
|
|
68
68
|
validateStatus: {
|
|
69
|
-
readonly type: import('vue').PropType<"" | "
|
|
69
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
70
70
|
readonly required: false;
|
|
71
71
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
72
72
|
__epPropKey: true;
|
|
@@ -545,11 +545,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
545
545
|
formItem: import('vue').ShallowRef<FormItemInstance | undefined, FormItemInstance | undefined>;
|
|
546
546
|
field: import('vue').ShallowRef<FormTimePickerInstanceType | undefined, FormTimePickerInstanceType | undefined>;
|
|
547
547
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
548
|
-
|
|
548
|
+
blur: (value: FocusEvent) => void;
|
|
549
549
|
change: (value: import('./props').FormTimePickerValueType) => void;
|
|
550
|
-
clear: () => void;
|
|
551
550
|
focus: (value: FocusEvent) => void;
|
|
552
|
-
|
|
551
|
+
"update:modelValue": (value: import('./props').FormTimePickerValueType) => void;
|
|
552
|
+
clear: () => void;
|
|
553
553
|
"visible-change": (visibility: boolean) => void;
|
|
554
554
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
555
555
|
htmlFor: StringConstructor;
|
|
@@ -595,7 +595,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
595
595
|
};
|
|
596
596
|
error: StringConstructor;
|
|
597
597
|
validateStatus: {
|
|
598
|
-
readonly type: import('vue').PropType<"" | "
|
|
598
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
599
599
|
readonly required: false;
|
|
600
600
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
601
601
|
__epPropKey: true;
|
|
@@ -1071,11 +1071,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1071
1071
|
default: () => {};
|
|
1072
1072
|
};
|
|
1073
1073
|
}>> & Readonly<{
|
|
1074
|
-
|
|
1074
|
+
onBlur?: ((value: FocusEvent) => any) | undefined;
|
|
1075
1075
|
onChange?: ((value: import('./props').FormTimePickerValueType) => any) | undefined;
|
|
1076
|
-
onClear?: (() => any) | undefined;
|
|
1077
1076
|
onFocus?: ((value: FocusEvent) => any) | undefined;
|
|
1078
|
-
|
|
1077
|
+
"onUpdate:modelValue"?: ((value: import('./props').FormTimePickerValueType) => any) | undefined;
|
|
1078
|
+
onClear?: (() => any) | undefined;
|
|
1079
1079
|
"onVisible-change"?: ((visibility: boolean) => any) | undefined;
|
|
1080
1080
|
}>, {
|
|
1081
1081
|
readonly type: string;
|
|
@@ -42,7 +42,7 @@ export declare const formTimePickerProps: {
|
|
|
42
42
|
};
|
|
43
43
|
error: StringConstructor;
|
|
44
44
|
validateStatus: {
|
|
45
|
-
readonly type: import('vue').PropType<"" | "
|
|
45
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
46
46
|
readonly required: false;
|
|
47
47
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
48
48
|
__epPropKey: true;
|
|
@@ -65,7 +65,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
65
65
|
};
|
|
66
66
|
error: StringConstructor;
|
|
67
67
|
validateStatus: {
|
|
68
|
-
readonly type: import('vue').PropType<"" | "
|
|
68
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
69
69
|
readonly required: false;
|
|
70
70
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
71
71
|
__epPropKey: true;
|
|
@@ -42,7 +42,7 @@ export declare const formTreeSelectProps: {
|
|
|
42
42
|
};
|
|
43
43
|
error: StringConstructor;
|
|
44
44
|
validateStatus: {
|
|
45
|
-
readonly type: import('vue').PropType<"" | "
|
|
45
|
+
readonly type: import('vue').PropType<"" | "error" | "success" | "validating">;
|
|
46
46
|
readonly required: false;
|
|
47
47
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
48
48
|
__epPropKey: true;
|
|
@@ -45,7 +45,7 @@ export declare const mergeProps: <T extends Record<string, any> = Record<string,
|
|
|
45
45
|
};
|
|
46
46
|
error: StringConstructor;
|
|
47
47
|
validateStatus: {
|
|
48
|
-
readonly type: PropType<"" | "
|
|
48
|
+
readonly type: PropType<"" | "error" | "success" | "validating">;
|
|
49
49
|
readonly required: false;
|
|
50
50
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
51
51
|
__epPropKey: true;
|
|
@@ -155,10 +155,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
155
155
|
__epPropKey: true;
|
|
156
156
|
};
|
|
157
157
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
158
|
-
|
|
158
|
+
close: () => void;
|
|
159
159
|
error: (evt: Event) => void;
|
|
160
160
|
load: (evt: Event) => void;
|
|
161
|
-
|
|
161
|
+
switch: (val: number) => void;
|
|
162
162
|
show: () => void;
|
|
163
163
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
164
164
|
errorText: StringConstructor;
|
|
@@ -274,14 +274,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
274
274
|
__epPropKey: true;
|
|
275
275
|
};
|
|
276
276
|
}>> & Readonly<{
|
|
277
|
-
|
|
277
|
+
onClose?: (() => any) | undefined;
|
|
278
278
|
onError?: ((evt: Event) => any) | undefined;
|
|
279
279
|
onLoad?: ((evt: Event) => any) | undefined;
|
|
280
|
-
|
|
280
|
+
onSwitch?: ((val: number) => any) | undefined;
|
|
281
281
|
onShow?: (() => any) | undefined;
|
|
282
282
|
}>, {
|
|
283
|
-
fit: "" | "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
284
283
|
lazy: boolean;
|
|
284
|
+
fit: "" | "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
285
285
|
closeOnPressEscape: boolean;
|
|
286
286
|
showRefresh: boolean;
|
|
287
287
|
previewTeleported: boolean;
|
|
@@ -171,10 +171,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
171
171
|
readonly default: "2";
|
|
172
172
|
};
|
|
173
173
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
174
|
-
"update:modelValue": (value: boolean) => void;
|
|
175
|
-
open: () => void;
|
|
176
174
|
cancel: () => void;
|
|
177
175
|
close: () => void;
|
|
176
|
+
"update:modelValue": (value: boolean) => void;
|
|
177
|
+
open: () => void;
|
|
178
178
|
closed: () => void;
|
|
179
179
|
ok: () => void;
|
|
180
180
|
opened: () => void;
|
|
@@ -352,10 +352,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
352
352
|
readonly default: "2";
|
|
353
353
|
};
|
|
354
354
|
}>> & Readonly<{
|
|
355
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
356
|
-
onOpen?: (() => any) | undefined;
|
|
357
355
|
onCancel?: (() => any) | undefined;
|
|
358
356
|
onClose?: (() => any) | undefined;
|
|
357
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
358
|
+
onOpen?: (() => any) | undefined;
|
|
359
359
|
onClosed?: (() => any) | undefined;
|
|
360
360
|
onOk?: (() => any) | undefined;
|
|
361
361
|
onOpened?: (() => any) | undefined;
|
|
@@ -371,6 +371,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
371
371
|
title: string;
|
|
372
372
|
center: boolean;
|
|
373
373
|
draggable: boolean;
|
|
374
|
+
ariaLevel: string;
|
|
374
375
|
fullscreen: boolean;
|
|
375
376
|
appendToBody: boolean;
|
|
376
377
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
@@ -389,7 +390,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
389
390
|
trapFocus: boolean;
|
|
390
391
|
alignCenter: boolean;
|
|
391
392
|
overflow: boolean;
|
|
392
|
-
ariaLevel: string;
|
|
393
393
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
394
394
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
395
395
|
export default _default;
|
|
@@ -134,8 +134,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
134
134
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
135
135
|
search: (values: any) => void;
|
|
136
136
|
change: (values: any) => void;
|
|
137
|
-
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
138
137
|
reset: () => void;
|
|
138
|
+
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
139
139
|
collapsed: (bool: boolean) => void;
|
|
140
140
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
141
141
|
initialValues: {
|
|
@@ -263,8 +263,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
263
263
|
}>> & Readonly<{
|
|
264
264
|
onSearch?: ((values: any) => any) | undefined;
|
|
265
265
|
onChange?: ((values: any) => any) | undefined;
|
|
266
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
267
266
|
onReset?: (() => any) | undefined;
|
|
267
|
+
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
268
268
|
onCollapsed?: ((bool: boolean) => any) | undefined;
|
|
269
269
|
}>, {
|
|
270
270
|
disabled: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QueryForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QueryForm/QueryForm.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QueryForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QueryForm/QueryForm.vue"],"names":[],"mappings":"AAWA,OAAO,EAGL,KAAK,cAAc,EACnB,KAAK,sBAAsB,EAC5B,MAAM,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAkkB8tlH,CAAC;yBAA0d,CAAC;yBAApV,CAAC,uFAAmC,CAAC;uBAA+J,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAT5jmH,wBAQG"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { QueryFormItemPropsType } from './props';
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
itemProps: {
|
|
6
|
+
type: PropType<QueryFormItemPropsType>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
10
|
+
itemProps: {
|
|
11
|
+
type: PropType<QueryFormItemPropsType>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
export default _default;
|
|
16
|
+
//# sourceMappingURL=TagContent.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagContent.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QueryForm/TagContent.vue"],"names":[],"mappings":"AASA;AAEA,OAAO,EAA2B,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AAU7D,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;;;cAsMlC,QAAQ,CAAC,sBAAsB,CAAC;;;;;cAAhC,QAAQ,CAAC,sBAAsB,CAAC;;;;AAPpD,wBAWG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contants.d.ts","sourceRoot":"","sources":["../../../src/components/QueryForm/contants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,uBAAuB,CAAC"}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+
import { FormFieldInstanceType } from '../FormFields/types';
|
|
1
2
|
import { queryFormProps } from './props';
|
|
2
3
|
import { FormInstance } from 'element-plus';
|
|
3
|
-
import { ExtractPropTypes } from 'vue';
|
|
4
|
+
import { ExtractPropTypes, ShallowRef } from 'vue';
|
|
4
5
|
|
|
5
6
|
export type QueryFormPropsType = ExtractPropTypes<typeof queryFormProps>;
|
|
6
7
|
export type QueryFormInstanceType = Pick<FormInstance, 'validate' | 'validateField' | 'resetFields' | 'clearValidate' | 'scrollToField'> & {
|
|
7
8
|
getFormData: () => any;
|
|
8
9
|
restore: () => void;
|
|
9
10
|
};
|
|
11
|
+
export type QueryFormContextType = {
|
|
12
|
+
formItemRefs: ShallowRef<Record<string, FormFieldInstanceType<any>>>;
|
|
13
|
+
};
|
|
10
14
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QueryForm/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QueryForm/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AACxD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAE5D,MAAM,MAAM,kBAAkB,GAAG,gBAAgB,CAAC,OAAO,cAAc,CAAC,CAAC;AAEzE,MAAM,MAAM,qBAAqB,GAAG,IAAI,CACtC,YAAY,EACV,UAAU,GACV,eAAe,GACf,aAAa,GACb,eAAe,GACf,eAAe,CAClB,GAAG;IACF,WAAW,EAAE,MAAM,GAAG,CAAC;IACvB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,qBAAqB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACtE,CAAC"}
|
|
@@ -5,4 +5,5 @@ export declare const buildResponsiveVars: (value: number | ResponsiveVars) => Re
|
|
|
5
5
|
export declare const getItemsClassName: (gutter: QueryFormPropsType["gutter"]) => string;
|
|
6
6
|
export declare const getItemWrapperClassName: (gutter: QueryFormPropsType["gutter"], width: QueryFormPropsType["width"]) => string;
|
|
7
7
|
export declare const getItemWrapperWidth: (breakpoint: keyof ResponsiveVars, width: QueryFormPropsType["width"]) => number;
|
|
8
|
+
export declare const getIsTagShow: (value: any) => boolean;
|
|
8
9
|
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/components/QueryForm/utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAS7C,eAAO,MAAM,mBAAmB,UAAW,MAAM,GAAG,cAAc,mBAajE,CAAC;AAEF,eAAO,MAAM,iBAAiB,WAAY,kBAAkB,CAAC,QAAQ,CAAC,WAgCrE,CAAC;AAEF,eAAO,MAAM,uBAAuB,WAC1B,kBAAkB,CAAC,QAAQ,CAAC,SAC7B,kBAAkB,CAAC,OAAO,CAAC,WAwCnC,CAAC;AAEF,eAAO,MAAM,mBAAmB,eAClB,MAAM,cAAc,SACzB,kBAAkB,CAAC,OAAO,CAAC,WAKnC,CAAC"}
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/components/QueryForm/utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAS7C,eAAO,MAAM,mBAAmB,UAAW,MAAM,GAAG,cAAc,mBAajE,CAAC;AAEF,eAAO,MAAM,iBAAiB,WAAY,kBAAkB,CAAC,QAAQ,CAAC,WAgCrE,CAAC;AAEF,eAAO,MAAM,uBAAuB,WAC1B,kBAAkB,CAAC,QAAQ,CAAC,SAC7B,kBAAkB,CAAC,OAAO,CAAC,WAwCnC,CAAC;AAEF,eAAO,MAAM,mBAAmB,eAClB,MAAM,cAAc,SACzB,kBAAkB,CAAC,OAAO,CAAC,WAKnC,CAAC;AAEF,eAAO,MAAM,YAAY,UAAW,GAAG,YAQtC,CAAC"}
|
|
@@ -60,8 +60,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
60
60
|
readonly default: true;
|
|
61
61
|
};
|
|
62
62
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
63
|
-
"update:modelValue": (val: string | number | boolean | undefined) => void;
|
|
64
63
|
change: (val: string | number | boolean | undefined) => void;
|
|
64
|
+
"update:modelValue": (val: string | number | boolean | undefined) => void;
|
|
65
65
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
66
66
|
options: import('vue').PropType<import('./props').RadioGroupOptionType[]>;
|
|
67
67
|
ariaLabel: StringConstructor;
|
|
@@ -121,8 +121,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
121
121
|
readonly default: true;
|
|
122
122
|
};
|
|
123
123
|
}>> & Readonly<{
|
|
124
|
-
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
125
124
|
onChange?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
125
|
+
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
126
126
|
}>, {
|
|
127
127
|
modelValue: string | number | boolean;
|
|
128
128
|
disabled: boolean;
|
|
@@ -232,13 +232,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
232
232
|
}>, {
|
|
233
233
|
focus: () => void;
|
|
234
234
|
blur: () => void;
|
|
235
|
+
selectedLabel: import('vue').ComputedRef<string | string[] | undefined>;
|
|
235
236
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
236
237
|
search: (value?: string | undefined) => void;
|
|
237
|
-
|
|
238
|
+
blur: (value: FocusEvent) => void;
|
|
238
239
|
change: (value: any) => void;
|
|
239
|
-
clear: () => void;
|
|
240
240
|
focus: (value: FocusEvent) => void;
|
|
241
|
-
|
|
241
|
+
"update:modelValue": (value: any) => void;
|
|
242
|
+
clear: () => void;
|
|
242
243
|
"visible-change": (visible: boolean) => void;
|
|
243
244
|
"remove-tag": (value: any) => void;
|
|
244
245
|
"popup-scroll": (data: {
|
|
@@ -475,11 +476,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
475
476
|
};
|
|
476
477
|
}>> & Readonly<{
|
|
477
478
|
onSearch?: ((value?: string | undefined) => any) | undefined;
|
|
478
|
-
|
|
479
|
+
onBlur?: ((value: FocusEvent) => any) | undefined;
|
|
479
480
|
onChange?: ((value: any) => any) | undefined;
|
|
480
|
-
onClear?: (() => any) | undefined;
|
|
481
481
|
onFocus?: ((value: FocusEvent) => any) | undefined;
|
|
482
|
-
|
|
482
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
483
|
+
onClear?: (() => any) | undefined;
|
|
483
484
|
"onVisible-change"?: ((visible: boolean) => any) | undefined;
|
|
484
485
|
"onRemove-tag"?: ((value: any) => any) | undefined;
|
|
485
486
|
"onPopup-scroll"?: ((data: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.vue"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAsC/C,iBAAS,cAAc,gDAqUtB;AAcD,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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Select/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAClD,OAAO,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE5D,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,WAAW,CAAC,CAAC;AAEnE,MAAM,MAAM,eAAe,GAAG;IAC5B,OAAO,CAAC,EAAE,IAAI,CAAC;QAAE,OAAO,CAAC,EAAE,GAAG,EAAE,CAAA;KAAE,CAAC,CAAC;IACpC,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,KAAK,CAAC,EAAE,IAAI,CAAC;IACb,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,GAAG,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAChB,KAAK,CAAC,EAAE,IAAI,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,eAAe,CAAA;KAAE,CAAC,CAAC;IACxD,MAAM,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,IAAI,EAAE,MAAM,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Select/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAClD,OAAO,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE5D,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,WAAW,CAAC,CAAC;AAEnE,MAAM,MAAM,eAAe,GAAG;IAC5B,OAAO,CAAC,EAAE,IAAI,CAAC;QAAE,OAAO,CAAC,EAAE,GAAG,EAAE,CAAA;KAAE,CAAC,CAAC;IACpC,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,KAAK,CAAC,EAAE,IAAI,CAAC;IACb,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,GAAG,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAChB,KAAK,CAAC,EAAE,IAAI,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,eAAe,CAAA;KAAE,CAAC,CAAC;IACxD,MAAM,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,IAAI,EAAE,MAAM,IAAI,CAAC;IACjB,aAAa,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,CAAC;CAC9C,CAAC"}
|