@maxtropy/v-components 0.1.11-beta.8 → 0.1.11
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/mx-vcomponents.es.js +3819 -3759
- package/dist/style.css +1 -1
- package/dist/types/components/alert/MxAlert.vue.d.ts +4 -4
- package/dist/types/components/button/MxButton.vue.d.ts +63 -7
- package/dist/types/components/checkbox/MxCheckbox.vue.d.ts +98 -1
- package/dist/types/components/checkbox/MxCheckboxGroup.vue.d.ts +37 -1
- package/dist/types/components/checkbox/index.d.ts +72 -7
- package/dist/types/components/dialog/MxDialog.vue.d.ts +147 -35
- package/dist/types/components/dropdown/MxDropdown.vue.d.ts +1 -1
- package/dist/types/components/form/MxForm.vue.d.ts +69 -7
- package/dist/types/components/form/MxFormItem.vue.d.ts +65 -1
- package/dist/types/components/form/index.d.ts +112 -4
- package/dist/types/components/index.d.ts +4 -2
- package/dist/types/components/popconfirm/MxPopconfirm.vue.d.ts +1 -1
- package/dist/types/components/radio/MxRadio.vue.d.ts +30 -1
- package/dist/types/components/radio/MxRadioButton.vue.d.ts +25 -1
- package/dist/types/components/radio/MxRadioGroup.vue.d.ts +39 -1
- package/dist/types/components/radio/index.d.ts +117 -6
- package/dist/types/components/tag/MxTag.vue.d.ts +1 -1
- package/dist/types/components/upload/MxUpload.vue.d.ts +4 -4
- package/dist/types/components/upload/index.d.ts +1 -1
- package/dist/types/components/upload/upload.d.ts +6 -6
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
23
23
|
closable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
24
24
|
closeText: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
25
25
|
center: BooleanConstructor;
|
|
26
|
-
effect: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
26
|
+
effect: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "light" | "dark", unknown, "light", boolean>;
|
|
27
27
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
28
|
type: {
|
|
29
29
|
type: StringConstructor;
|
|
@@ -42,16 +42,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
42
42
|
closable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
43
43
|
closeText: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
44
44
|
center: BooleanConstructor;
|
|
45
|
-
effect: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
45
|
+
effect: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "light" | "dark", unknown, "light", boolean>;
|
|
46
46
|
}>>, {
|
|
47
|
-
type: string;
|
|
48
47
|
title: string;
|
|
48
|
+
type: string;
|
|
49
49
|
showIcon: boolean;
|
|
50
50
|
description: string;
|
|
51
51
|
closable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
52
52
|
closeText: string;
|
|
53
53
|
center: boolean;
|
|
54
|
-
effect: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "
|
|
54
|
+
effect: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "light" | "dark", unknown>;
|
|
55
55
|
}, {}>, Partial<Record<string | number, (_: {}) => any>> & {
|
|
56
56
|
title?(_: {}): any;
|
|
57
57
|
}>;
|
|
@@ -13,10 +13,32 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
13
13
|
type: BooleanConstructor;
|
|
14
14
|
default: boolean;
|
|
15
15
|
};
|
|
16
|
-
|
|
17
|
-
type:
|
|
18
|
-
|
|
16
|
+
size: {
|
|
17
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
18
|
+
readonly required: false;
|
|
19
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
20
|
+
__epPropKey: true;
|
|
19
21
|
};
|
|
22
|
+
icon: {
|
|
23
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
24
|
+
readonly required: false;
|
|
25
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
26
|
+
__epPropKey: true;
|
|
27
|
+
};
|
|
28
|
+
nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "button" | "reset" | "submit", unknown, "button", boolean>;
|
|
29
|
+
loading: BooleanConstructor;
|
|
30
|
+
loadingIcon: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown, () => import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, boolean>;
|
|
31
|
+
plain: BooleanConstructor;
|
|
32
|
+
text: BooleanConstructor;
|
|
33
|
+
link: BooleanConstructor;
|
|
34
|
+
bg: BooleanConstructor;
|
|
35
|
+
autofocus: BooleanConstructor;
|
|
36
|
+
round: BooleanConstructor;
|
|
37
|
+
circle: BooleanConstructor;
|
|
38
|
+
color: StringConstructor;
|
|
39
|
+
dark: BooleanConstructor;
|
|
40
|
+
autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
41
|
+
tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown, "button", boolean>;
|
|
20
42
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
43
|
type: {
|
|
22
44
|
type: PropType<"" | "default" | "text" | "success" | "warning" | "info" | "primary" | "danger" | "dashed">;
|
|
@@ -31,17 +53,51 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
31
53
|
type: BooleanConstructor;
|
|
32
54
|
default: boolean;
|
|
33
55
|
};
|
|
34
|
-
|
|
35
|
-
type:
|
|
36
|
-
|
|
56
|
+
size: {
|
|
57
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
58
|
+
readonly required: false;
|
|
59
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
60
|
+
__epPropKey: true;
|
|
61
|
+
};
|
|
62
|
+
icon: {
|
|
63
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
64
|
+
readonly required: false;
|
|
65
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
66
|
+
__epPropKey: true;
|
|
37
67
|
};
|
|
68
|
+
nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "button" | "reset" | "submit", unknown, "button", boolean>;
|
|
69
|
+
loading: BooleanConstructor;
|
|
70
|
+
loadingIcon: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown, () => import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, boolean>;
|
|
71
|
+
plain: BooleanConstructor;
|
|
72
|
+
text: BooleanConstructor;
|
|
73
|
+
link: BooleanConstructor;
|
|
74
|
+
bg: BooleanConstructor;
|
|
75
|
+
autofocus: BooleanConstructor;
|
|
76
|
+
round: BooleanConstructor;
|
|
77
|
+
circle: BooleanConstructor;
|
|
78
|
+
color: StringConstructor;
|
|
79
|
+
dark: BooleanConstructor;
|
|
80
|
+
autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
81
|
+
tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown, "button", boolean>;
|
|
38
82
|
}>> & {
|
|
39
83
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
40
84
|
}, {
|
|
41
|
-
|
|
85
|
+
link: boolean;
|
|
86
|
+
circle: boolean;
|
|
87
|
+
text: boolean;
|
|
42
88
|
type: "" | "default" | "text" | "success" | "warning" | "info" | "primary" | "danger" | "dashed";
|
|
89
|
+
dark: boolean;
|
|
43
90
|
wait: number;
|
|
44
91
|
disabled: boolean;
|
|
92
|
+
nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
93
|
+
loading: boolean;
|
|
94
|
+
loadingIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>;
|
|
95
|
+
plain: boolean;
|
|
96
|
+
bg: boolean;
|
|
97
|
+
autofocus: boolean;
|
|
98
|
+
round: boolean;
|
|
99
|
+
autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
100
|
+
tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>;
|
|
45
101
|
}, {}>, Partial<Record<string | number, (_: {}) => any>>>;
|
|
46
102
|
export default _default;
|
|
47
103
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,4 +1,101 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("lodash").Omit<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: undefined;
|
|
5
|
+
};
|
|
6
|
+
label: {
|
|
7
|
+
type: (BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor)[];
|
|
8
|
+
};
|
|
9
|
+
indeterminate: BooleanConstructor;
|
|
10
|
+
disabled: BooleanConstructor;
|
|
11
|
+
checked: BooleanConstructor;
|
|
12
|
+
name: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: undefined;
|
|
15
|
+
};
|
|
16
|
+
trueLabel: {
|
|
17
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
falseLabel: {
|
|
21
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
22
|
+
default: undefined;
|
|
23
|
+
};
|
|
24
|
+
id: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: undefined;
|
|
27
|
+
};
|
|
28
|
+
controls: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: undefined;
|
|
31
|
+
};
|
|
32
|
+
border: BooleanConstructor;
|
|
33
|
+
size: {
|
|
34
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
35
|
+
readonly required: false;
|
|
36
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
37
|
+
__epPropKey: true;
|
|
38
|
+
};
|
|
39
|
+
tabindex: (StringConstructor | NumberConstructor)[];
|
|
40
|
+
validateEvent: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
}, "modelValue">, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("lodash").Omit<{
|
|
45
|
+
modelValue: {
|
|
46
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
47
|
+
default: undefined;
|
|
48
|
+
};
|
|
49
|
+
label: {
|
|
50
|
+
type: (BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor)[];
|
|
51
|
+
};
|
|
52
|
+
indeterminate: BooleanConstructor;
|
|
53
|
+
disabled: BooleanConstructor;
|
|
54
|
+
checked: BooleanConstructor;
|
|
55
|
+
name: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: undefined;
|
|
58
|
+
};
|
|
59
|
+
trueLabel: {
|
|
60
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
61
|
+
default: undefined;
|
|
62
|
+
};
|
|
63
|
+
falseLabel: {
|
|
64
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
65
|
+
default: undefined;
|
|
66
|
+
};
|
|
67
|
+
id: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: undefined;
|
|
70
|
+
};
|
|
71
|
+
controls: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
default: undefined;
|
|
74
|
+
};
|
|
75
|
+
border: BooleanConstructor;
|
|
76
|
+
size: {
|
|
77
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
78
|
+
readonly required: false;
|
|
79
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
80
|
+
__epPropKey: true;
|
|
81
|
+
};
|
|
82
|
+
tabindex: (StringConstructor | NumberConstructor)[];
|
|
83
|
+
validateEvent: {
|
|
84
|
+
type: BooleanConstructor;
|
|
85
|
+
default: boolean;
|
|
86
|
+
};
|
|
87
|
+
}, "modelValue">>>, {
|
|
88
|
+
id: string;
|
|
89
|
+
name: string;
|
|
90
|
+
disabled: boolean;
|
|
91
|
+
indeterminate: boolean;
|
|
92
|
+
checked: boolean;
|
|
93
|
+
trueLabel: string | number;
|
|
94
|
+
falseLabel: string | number;
|
|
95
|
+
controls: string;
|
|
96
|
+
border: boolean;
|
|
97
|
+
validateEvent: boolean;
|
|
98
|
+
}, {}>, Partial<Record<string | number, (_: {}) => any>>>;
|
|
2
99
|
export default _default;
|
|
3
100
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
4
101
|
new (): {
|
|
@@ -1,4 +1,40 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("lodash").Omit<{
|
|
2
|
+
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType) | ((new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType))[], unknown, unknown, () => never[], boolean>;
|
|
3
|
+
readonly disabled: BooleanConstructor;
|
|
4
|
+
readonly min: NumberConstructor;
|
|
5
|
+
readonly max: NumberConstructor;
|
|
6
|
+
readonly size: {
|
|
7
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
8
|
+
readonly required: false;
|
|
9
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
10
|
+
__epPropKey: true;
|
|
11
|
+
};
|
|
12
|
+
readonly label: StringConstructor;
|
|
13
|
+
readonly fill: StringConstructor;
|
|
14
|
+
readonly textColor: StringConstructor;
|
|
15
|
+
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
|
16
|
+
readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
17
|
+
}, "modelValue">, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("lodash").Omit<{
|
|
18
|
+
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType) | ((new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType))[], unknown, unknown, () => never[], boolean>;
|
|
19
|
+
readonly disabled: BooleanConstructor;
|
|
20
|
+
readonly min: NumberConstructor;
|
|
21
|
+
readonly max: NumberConstructor;
|
|
22
|
+
readonly size: {
|
|
23
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
24
|
+
readonly required: false;
|
|
25
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
26
|
+
__epPropKey: true;
|
|
27
|
+
};
|
|
28
|
+
readonly label: StringConstructor;
|
|
29
|
+
readonly fill: StringConstructor;
|
|
30
|
+
readonly textColor: StringConstructor;
|
|
31
|
+
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
|
32
|
+
readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
33
|
+
}, "modelValue">>>, {
|
|
34
|
+
readonly disabled: boolean;
|
|
35
|
+
readonly tag: string;
|
|
36
|
+
readonly validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
37
|
+
}, {}>, Partial<Record<string | number, (_: {}) => any>>>;
|
|
2
38
|
export default _default;
|
|
3
39
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
4
40
|
new (): {
|
|
@@ -13,6 +13,10 @@ export declare const MxCheckboxGroup: {
|
|
|
13
13
|
$: import("vue").ComponentInternalInstance;
|
|
14
14
|
$data: {};
|
|
15
15
|
$props: {
|
|
16
|
+
readonly disabled?: boolean | undefined;
|
|
17
|
+
readonly tag?: string | undefined;
|
|
18
|
+
readonly validateEvent?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
19
|
+
readonly fill?: string | undefined;
|
|
16
20
|
key?: string | number | symbol | undefined;
|
|
17
21
|
ref?: import("vue").VNodeRef | undefined;
|
|
18
22
|
ref_for?: boolean | undefined;
|
|
@@ -57,6 +61,11 @@ export declare const MxCheckboxGroup: {
|
|
|
57
61
|
}>) => void)[] | undefined;
|
|
58
62
|
class?: unknown;
|
|
59
63
|
style?: unknown;
|
|
64
|
+
readonly label?: string | undefined;
|
|
65
|
+
readonly max?: number | undefined;
|
|
66
|
+
readonly min?: number | undefined;
|
|
67
|
+
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never> | undefined;
|
|
68
|
+
readonly textColor?: string | undefined;
|
|
60
69
|
};
|
|
61
70
|
$attrs: {
|
|
62
71
|
[x: string]: unknown;
|
|
@@ -71,7 +80,27 @@ export declare const MxCheckboxGroup: {
|
|
|
71
80
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
72
81
|
$emit: (event: string, ...args: any[]) => void;
|
|
73
82
|
$el: any;
|
|
74
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<
|
|
83
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("lodash").Omit<{
|
|
84
|
+
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType) | ((new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType))[], unknown, unknown, () => never[], boolean>;
|
|
85
|
+
readonly disabled: BooleanConstructor;
|
|
86
|
+
readonly min: NumberConstructor;
|
|
87
|
+
readonly max: NumberConstructor;
|
|
88
|
+
readonly size: {
|
|
89
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
90
|
+
readonly required: false;
|
|
91
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
92
|
+
__epPropKey: true;
|
|
93
|
+
};
|
|
94
|
+
readonly label: StringConstructor;
|
|
95
|
+
readonly fill: StringConstructor;
|
|
96
|
+
readonly textColor: StringConstructor;
|
|
97
|
+
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
|
98
|
+
readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
99
|
+
}, "modelValue">>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
100
|
+
readonly disabled: boolean;
|
|
101
|
+
readonly tag: string;
|
|
102
|
+
readonly validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
103
|
+
}, {}, string, {}> & {
|
|
75
104
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
76
105
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
77
106
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -91,11 +120,47 @@ export declare const MxCheckboxGroup: {
|
|
|
91
120
|
$forceUpdate: () => void;
|
|
92
121
|
$nextTick: typeof import("vue").nextTick;
|
|
93
122
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
94
|
-
} & Readonly<import("vue").ExtractPropTypes<
|
|
123
|
+
} & Readonly<import("vue").ExtractPropTypes<import("lodash").Omit<{
|
|
124
|
+
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType) | ((new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType))[], unknown, unknown, () => never[], boolean>;
|
|
125
|
+
readonly disabled: BooleanConstructor;
|
|
126
|
+
readonly min: NumberConstructor;
|
|
127
|
+
readonly max: NumberConstructor;
|
|
128
|
+
readonly size: {
|
|
129
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
130
|
+
readonly required: false;
|
|
131
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
132
|
+
__epPropKey: true;
|
|
133
|
+
};
|
|
134
|
+
readonly label: StringConstructor;
|
|
135
|
+
readonly fill: StringConstructor;
|
|
136
|
+
readonly textColor: StringConstructor;
|
|
137
|
+
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
|
138
|
+
readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
139
|
+
}, "modelValue">>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
95
140
|
__isFragment?: undefined;
|
|
96
141
|
__isTeleport?: undefined;
|
|
97
142
|
__isSuspense?: undefined;
|
|
98
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<
|
|
143
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("lodash").Omit<{
|
|
144
|
+
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType) | ((new (...args: any[]) => import("element-plus").CheckboxGroupValueType) | (() => import("element-plus").CheckboxGroupValueType))[], unknown, unknown, () => never[], boolean>;
|
|
145
|
+
readonly disabled: BooleanConstructor;
|
|
146
|
+
readonly min: NumberConstructor;
|
|
147
|
+
readonly max: NumberConstructor;
|
|
148
|
+
readonly size: {
|
|
149
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
150
|
+
readonly required: false;
|
|
151
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
152
|
+
__epPropKey: true;
|
|
153
|
+
};
|
|
154
|
+
readonly label: StringConstructor;
|
|
155
|
+
readonly fill: StringConstructor;
|
|
156
|
+
readonly textColor: StringConstructor;
|
|
157
|
+
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
|
158
|
+
readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
159
|
+
}, "modelValue">>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
160
|
+
readonly disabled: boolean;
|
|
161
|
+
readonly tag: string;
|
|
162
|
+
readonly validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
163
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
99
164
|
$slots: Partial<Record<string | number, (_: {}) => any>>;
|
|
100
165
|
});
|
|
101
166
|
export declare const MxCheckboxButton: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
@@ -104,7 +169,7 @@ export declare const MxCheckboxButton: import("element-plus/es/utils").SFCWithIn
|
|
|
104
169
|
default: undefined;
|
|
105
170
|
};
|
|
106
171
|
label: {
|
|
107
|
-
type: (BooleanConstructor | StringConstructor |
|
|
172
|
+
type: (BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor)[];
|
|
108
173
|
};
|
|
109
174
|
indeterminate: BooleanConstructor;
|
|
110
175
|
disabled: BooleanConstructor;
|
|
@@ -148,7 +213,7 @@ export declare const MxCheckboxButton: import("element-plus/es/utils").SFCWithIn
|
|
|
148
213
|
default: undefined;
|
|
149
214
|
};
|
|
150
215
|
label: {
|
|
151
|
-
type: (BooleanConstructor | StringConstructor |
|
|
216
|
+
type: (BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor)[];
|
|
152
217
|
};
|
|
153
218
|
indeterminate: BooleanConstructor;
|
|
154
219
|
disabled: BooleanConstructor;
|
|
@@ -201,7 +266,7 @@ export declare const MxCheckboxButton: import("element-plus/es/utils").SFCWithIn
|
|
|
201
266
|
checkboxGroup: ({
|
|
202
267
|
modelValue?: import("vue").WritableComputedRef<any> | undefined;
|
|
203
268
|
changeEvent?: ((...args: any) => any) | undefined;
|
|
204
|
-
} & import("vue").ToRefs<Pick<import("element-plus").CheckboxGroupProps, "fill" | "
|
|
269
|
+
} & import("vue").ToRefs<Pick<import("element-plus").CheckboxGroupProps, "fill" | "max" | "min" | "disabled" | "size" | "validateEvent" | "textColor">>) | undefined;
|
|
205
270
|
ns: {
|
|
206
271
|
namespace: import("vue").ComputedRef<string>;
|
|
207
272
|
b: (blockSuffix?: string | undefined) => string;
|
|
@@ -231,7 +296,7 @@ export declare const MxCheckboxButton: import("element-plus/es/utils").SFCWithIn
|
|
|
231
296
|
default: undefined;
|
|
232
297
|
};
|
|
233
298
|
label: {
|
|
234
|
-
type: (BooleanConstructor | StringConstructor |
|
|
299
|
+
type: (BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor)[];
|
|
235
300
|
};
|
|
236
301
|
indeterminate: BooleanConstructor;
|
|
237
302
|
disabled: BooleanConstructor;
|
|
@@ -1,52 +1,164 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
1
2
|
export declare type ModalSizeType = 'small' | 'normal' | 'large' | 'big';
|
|
2
|
-
|
|
3
|
-
size
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
confirmButtonText:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
|
+
size: {
|
|
5
|
+
type: PropType<ModalSizeType>;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
bodyScroll: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
confirmButtonText: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
cancelButtonText: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
21
|
+
width: {
|
|
22
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
23
|
+
readonly required: false;
|
|
24
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
25
|
+
__epPropKey: true;
|
|
26
|
+
};
|
|
27
|
+
center: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
28
|
+
draggable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
29
|
+
customClass: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
30
|
+
showClose: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
31
|
+
zIndex: {
|
|
32
|
+
readonly type: PropType<number>;
|
|
33
|
+
readonly required: false;
|
|
34
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
35
|
+
__epPropKey: true;
|
|
36
|
+
};
|
|
37
|
+
appendToBody: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
38
|
+
beforeClose: {
|
|
39
|
+
readonly type: PropType<import("element-plus").DialogBeforeCloseFn>;
|
|
40
|
+
readonly required: false;
|
|
41
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
42
|
+
__epPropKey: true;
|
|
43
|
+
};
|
|
44
|
+
destroyOnClose: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
45
|
+
closeOnClickModal: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
46
|
+
closeOnPressEscape: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
47
|
+
lockScroll: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
48
|
+
modal: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
49
|
+
openDelay: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
50
|
+
closeDelay: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
51
|
+
top: {
|
|
52
|
+
readonly type: PropType<string>;
|
|
53
|
+
readonly required: false;
|
|
54
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
55
|
+
__epPropKey: true;
|
|
56
|
+
};
|
|
57
|
+
modalClass: StringConstructor;
|
|
58
|
+
trapFocus: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
59
|
+
alignCenter: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
60
|
+
closeIcon: {
|
|
61
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
62
|
+
readonly required: false;
|
|
63
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
64
|
+
__epPropKey: true;
|
|
65
|
+
};
|
|
66
|
+
fullscreen: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
67
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("confirm" | "cancel")[], "confirm" | "cancel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
68
|
+
size: {
|
|
69
|
+
type: PropType<ModalSizeType>;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
bodyScroll: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
confirmButtonText: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
cancelButtonText: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
85
|
+
width: {
|
|
86
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
87
|
+
readonly required: false;
|
|
88
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
89
|
+
__epPropKey: true;
|
|
90
|
+
};
|
|
91
|
+
center: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
92
|
+
draggable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
93
|
+
customClass: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
94
|
+
showClose: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
95
|
+
zIndex: {
|
|
96
|
+
readonly type: PropType<number>;
|
|
97
|
+
readonly required: false;
|
|
98
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
99
|
+
__epPropKey: true;
|
|
100
|
+
};
|
|
101
|
+
appendToBody: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
102
|
+
beforeClose: {
|
|
103
|
+
readonly type: PropType<import("element-plus").DialogBeforeCloseFn>;
|
|
104
|
+
readonly required: false;
|
|
105
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
106
|
+
__epPropKey: true;
|
|
107
|
+
};
|
|
108
|
+
destroyOnClose: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
109
|
+
closeOnClickModal: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
110
|
+
closeOnPressEscape: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
111
|
+
lockScroll: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
112
|
+
modal: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
113
|
+
openDelay: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
114
|
+
closeDelay: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
115
|
+
top: {
|
|
116
|
+
readonly type: PropType<string>;
|
|
117
|
+
readonly required: false;
|
|
118
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
119
|
+
__epPropKey: true;
|
|
120
|
+
};
|
|
121
|
+
modalClass: StringConstructor;
|
|
122
|
+
trapFocus: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
123
|
+
alignCenter: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
124
|
+
closeIcon: {
|
|
125
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
126
|
+
readonly required: false;
|
|
127
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
128
|
+
__epPropKey: true;
|
|
129
|
+
};
|
|
130
|
+
fullscreen: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
131
|
+
}>> & {
|
|
19
132
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
20
133
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
21
134
|
}, {
|
|
22
|
-
|
|
135
|
+
title: string;
|
|
136
|
+
center: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
137
|
+
draggable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
23
138
|
confirmButtonText: string;
|
|
24
139
|
cancelButtonText: string;
|
|
140
|
+
customClass: string;
|
|
141
|
+
showClose: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
142
|
+
size: ModalSizeType;
|
|
143
|
+
appendToBody: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
144
|
+
destroyOnClose: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
145
|
+
closeOnClickModal: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
146
|
+
closeOnPressEscape: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
147
|
+
lockScroll: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
148
|
+
modal: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
149
|
+
openDelay: number;
|
|
150
|
+
closeDelay: number;
|
|
151
|
+
trapFocus: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
152
|
+
alignCenter: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
153
|
+
fullscreen: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
25
154
|
bodyScroll: boolean;
|
|
26
155
|
}, {}>, {
|
|
27
156
|
default?(_: {}): any;
|
|
28
157
|
footer?(_: {}): any;
|
|
29
158
|
}>;
|
|
30
159
|
export default _default;
|
|
31
|
-
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
32
|
-
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
33
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
34
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
35
|
-
} : {
|
|
36
|
-
type: import('vue').PropType<T[K]>;
|
|
37
|
-
required: true;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
declare type __VLS_WithDefaults<P, D> = {
|
|
41
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
42
|
-
default: D[K];
|
|
43
|
-
}> : P[K];
|
|
44
|
-
};
|
|
45
160
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
46
161
|
new (): {
|
|
47
162
|
$slots: S;
|
|
48
163
|
};
|
|
49
164
|
};
|
|
50
|
-
declare type __VLS_Prettify<T> = {
|
|
51
|
-
[K in keyof T]: T[K];
|
|
52
|
-
} & {};
|
|
@@ -56,8 +56,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
56
|
default: string;
|
|
57
57
|
};
|
|
58
58
|
}>>, {
|
|
59
|
-
type: "" | "default" | "text" | "success" | "warning" | "info" | "primary" | "danger" | "dashed";
|
|
60
59
|
link: boolean;
|
|
60
|
+
type: "" | "default" | "text" | "success" | "warning" | "info" | "primary" | "danger" | "dashed";
|
|
61
61
|
options: {
|
|
62
62
|
name: string;
|
|
63
63
|
command: string | number | object;
|