@bscomp/ep-ui 0.2.3 → 0.2.5
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/lib/components.d.ts +2 -0
- package/lib/config-provider/index.d.ts +41 -0
- package/lib/config-provider/src/config-provider.d.ts +16 -0
- package/lib/date-picker/index.d.ts +5 -0
- package/lib/date-picker/src/index.vue.d.ts +2 -0
- package/lib/ep-ui.js +2508 -2473
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +11 -11
- package/lib/form-dialog/index.d.ts +18 -3
- package/lib/form-dialog/src/index.vue.d.ts +7 -1
- package/lib/input/index.d.ts +6 -6
- package/lib/input/src/index.vue.d.ts +3 -3
- package/lib/select/index.d.ts +15 -0
- package/lib/select/src/index.vue.d.ts +9 -0
- package/lib/style.css +1 -1
- package/lib/table/index.d.ts +3 -15
- package/lib/table/src/index.vue.d.ts +2 -8
- package/lib/table/src/useHooks.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare const EPDialog: ({
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
+
submitLoading: import('vue').PropType<any>;
|
|
3
4
|
modelValue: import('vue').PropType<any>;
|
|
4
5
|
params: import('vue').PropType<any>;
|
|
5
6
|
title: {
|
|
@@ -38,7 +39,11 @@ declare const EPDialog: ({
|
|
|
38
39
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
39
40
|
onHandleCancel?: ((...args: any[]) => any) | undefined;
|
|
40
41
|
onHandleSubmit?: ((...args: any[]) => any) | undefined;
|
|
41
|
-
}>, {
|
|
42
|
+
}>, {
|
|
43
|
+
formRef: import('vue').Ref<any, any>;
|
|
44
|
+
dialogRef: import('vue').Ref<any, any>;
|
|
45
|
+
clearValidate: () => void;
|
|
46
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
42
47
|
close: (...args: any[]) => void;
|
|
43
48
|
handleCancel: (...args: any[]) => void;
|
|
44
49
|
handleSubmit: (...args: any[]) => void;
|
|
@@ -57,6 +62,7 @@ declare const EPDialog: ({
|
|
|
57
62
|
M: {};
|
|
58
63
|
Defaults: {};
|
|
59
64
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
65
|
+
submitLoading: import('vue').PropType<any>;
|
|
60
66
|
modelValue: import('vue').PropType<any>;
|
|
61
67
|
params: import('vue').PropType<any>;
|
|
62
68
|
title: {
|
|
@@ -95,7 +101,11 @@ declare const EPDialog: ({
|
|
|
95
101
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
96
102
|
onHandleCancel?: ((...args: any[]) => any) | undefined;
|
|
97
103
|
onHandleSubmit?: ((...args: any[]) => any) | undefined;
|
|
98
|
-
}>, {
|
|
104
|
+
}>, {
|
|
105
|
+
formRef: import('vue').Ref<any, any>;
|
|
106
|
+
dialogRef: import('vue').Ref<any, any>;
|
|
107
|
+
clearValidate: () => void;
|
|
108
|
+
}, {}, {}, {}, {
|
|
99
109
|
title: string;
|
|
100
110
|
formProps: any;
|
|
101
111
|
cancelText: string;
|
|
@@ -107,6 +117,7 @@ declare const EPDialog: ({
|
|
|
107
117
|
__isTeleport?: undefined;
|
|
108
118
|
__isSuspense?: undefined;
|
|
109
119
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
120
|
+
submitLoading: import('vue').PropType<any>;
|
|
110
121
|
modelValue: import('vue').PropType<any>;
|
|
111
122
|
params: import('vue').PropType<any>;
|
|
112
123
|
title: {
|
|
@@ -145,7 +156,11 @@ declare const EPDialog: ({
|
|
|
145
156
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
146
157
|
onHandleCancel?: ((...args: any[]) => any) | undefined;
|
|
147
158
|
onHandleSubmit?: ((...args: any[]) => any) | undefined;
|
|
148
|
-
}>, {
|
|
159
|
+
}>, {
|
|
160
|
+
formRef: import('vue').Ref<any, any>;
|
|
161
|
+
dialogRef: import('vue').Ref<any, any>;
|
|
162
|
+
clearValidate: () => void;
|
|
163
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
149
164
|
close: (...args: any[]) => void;
|
|
150
165
|
handleCancel: (...args: any[]) => void;
|
|
151
166
|
handleSubmit: (...args: any[]) => void;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
submitLoading: import('vue').PropType<any>;
|
|
2
3
|
modelValue: import('vue').PropType<any>;
|
|
3
4
|
params: import('vue').PropType<any>;
|
|
4
5
|
title: {
|
|
@@ -33,11 +34,16 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
33
34
|
height: {
|
|
34
35
|
type: import('vue').PropType<string>;
|
|
35
36
|
};
|
|
36
|
-
}>, {
|
|
37
|
+
}>, {
|
|
38
|
+
formRef: import('vue').Ref<any, any>;
|
|
39
|
+
dialogRef: import('vue').Ref<any, any>;
|
|
40
|
+
clearValidate: () => void;
|
|
41
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
42
|
close: (...args: any[]) => void;
|
|
38
43
|
handleCancel: (...args: any[]) => void;
|
|
39
44
|
handleSubmit: (...args: any[]) => void;
|
|
40
45
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
46
|
+
submitLoading: import('vue').PropType<any>;
|
|
41
47
|
modelValue: import('vue').PropType<any>;
|
|
42
48
|
params: import('vue').PropType<any>;
|
|
43
49
|
title: {
|
package/lib/input/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ declare const EPInput: ({
|
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
inputType: {
|
|
13
|
-
type: import('vue').PropType<"
|
|
13
|
+
type: import('vue').PropType<"" | "trim" | "integer">;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
16
|
}>> & Readonly<{
|
|
@@ -20,7 +20,7 @@ declare const EPInput: ({
|
|
|
20
20
|
}, import('vue').PublicProps, {
|
|
21
21
|
placeholder: string;
|
|
22
22
|
width: string;
|
|
23
|
-
inputType: "
|
|
23
|
+
inputType: "" | "trim" | "integer";
|
|
24
24
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
25
25
|
P: {};
|
|
26
26
|
B: {};
|
|
@@ -39,7 +39,7 @@ declare const EPInput: ({
|
|
|
39
39
|
default: string;
|
|
40
40
|
};
|
|
41
41
|
inputType: {
|
|
42
|
-
type: import('vue').PropType<"
|
|
42
|
+
type: import('vue').PropType<"" | "trim" | "integer">;
|
|
43
43
|
default: string;
|
|
44
44
|
};
|
|
45
45
|
}>> & Readonly<{
|
|
@@ -47,7 +47,7 @@ declare const EPInput: ({
|
|
|
47
47
|
}>, {}, {}, {}, {}, {
|
|
48
48
|
placeholder: string;
|
|
49
49
|
width: string;
|
|
50
|
-
inputType: "
|
|
50
|
+
inputType: "" | "trim" | "integer";
|
|
51
51
|
}>;
|
|
52
52
|
__isFragment?: undefined;
|
|
53
53
|
__isTeleport?: undefined;
|
|
@@ -63,7 +63,7 @@ declare const EPInput: ({
|
|
|
63
63
|
default: string;
|
|
64
64
|
};
|
|
65
65
|
inputType: {
|
|
66
|
-
type: import('vue').PropType<"
|
|
66
|
+
type: import('vue').PropType<"" | "trim" | "integer">;
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
69
69
|
}>> & Readonly<{
|
|
@@ -73,7 +73,7 @@ declare const EPInput: ({
|
|
|
73
73
|
}, string, {
|
|
74
74
|
placeholder: string;
|
|
75
75
|
width: string;
|
|
76
|
-
inputType: "
|
|
76
|
+
inputType: "" | "trim" | "integer";
|
|
77
77
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
78
78
|
$slots: {
|
|
79
79
|
append?(_: {}): any;
|
|
@@ -9,7 +9,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
9
9
|
default: string;
|
|
10
10
|
};
|
|
11
11
|
inputType: {
|
|
12
|
-
type: import('vue').PropType<"
|
|
12
|
+
type: import('vue').PropType<"" | "trim" | "integer">;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
15
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -25,7 +25,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
25
25
|
default: string;
|
|
26
26
|
};
|
|
27
27
|
inputType: {
|
|
28
|
-
type: import('vue').PropType<"
|
|
28
|
+
type: import('vue').PropType<"" | "trim" | "integer">;
|
|
29
29
|
default: string;
|
|
30
30
|
};
|
|
31
31
|
}>> & Readonly<{
|
|
@@ -33,7 +33,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
33
33
|
}>, {
|
|
34
34
|
placeholder: string;
|
|
35
35
|
width: string;
|
|
36
|
-
inputType: "
|
|
36
|
+
inputType: "" | "trim" | "integer";
|
|
37
37
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
38
38
|
append?(_: {}): any;
|
|
39
39
|
prepend?(_: {}): any;
|
package/lib/select/index.d.ts
CHANGED
|
@@ -6,6 +6,10 @@ declare const EPSelect: ({
|
|
|
6
6
|
required: true;
|
|
7
7
|
default: () => never[];
|
|
8
8
|
};
|
|
9
|
+
formatNullValue: {
|
|
10
|
+
type: import('vue').PropType<any>;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
9
13
|
filterable: {
|
|
10
14
|
type: import('vue').PropType<boolean>;
|
|
11
15
|
default: boolean;
|
|
@@ -45,6 +49,7 @@ declare const EPSelect: ({
|
|
|
45
49
|
change: (...args: any[]) => void;
|
|
46
50
|
}, import('vue').PublicProps, {
|
|
47
51
|
options: [] | Record<string, any>[];
|
|
52
|
+
formatNullValue: any;
|
|
48
53
|
filterable: boolean;
|
|
49
54
|
multiple: boolean;
|
|
50
55
|
isShowSelectAllBtn: boolean;
|
|
@@ -65,6 +70,10 @@ declare const EPSelect: ({
|
|
|
65
70
|
required: true;
|
|
66
71
|
default: () => never[];
|
|
67
72
|
};
|
|
73
|
+
formatNullValue: {
|
|
74
|
+
type: import('vue').PropType<any>;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
68
77
|
filterable: {
|
|
69
78
|
type: import('vue').PropType<boolean>;
|
|
70
79
|
default: boolean;
|
|
@@ -102,6 +111,7 @@ declare const EPSelect: ({
|
|
|
102
111
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
103
112
|
}>, {}, {}, {}, {}, {
|
|
104
113
|
options: [] | Record<string, any>[];
|
|
114
|
+
formatNullValue: any;
|
|
105
115
|
filterable: boolean;
|
|
106
116
|
multiple: boolean;
|
|
107
117
|
isShowSelectAllBtn: boolean;
|
|
@@ -119,6 +129,10 @@ declare const EPSelect: ({
|
|
|
119
129
|
required: true;
|
|
120
130
|
default: () => never[];
|
|
121
131
|
};
|
|
132
|
+
formatNullValue: {
|
|
133
|
+
type: import('vue').PropType<any>;
|
|
134
|
+
default: string;
|
|
135
|
+
};
|
|
122
136
|
filterable: {
|
|
123
137
|
type: import('vue').PropType<boolean>;
|
|
124
138
|
default: boolean;
|
|
@@ -158,6 +172,7 @@ declare const EPSelect: ({
|
|
|
158
172
|
change: (...args: any[]) => void;
|
|
159
173
|
}, string, {
|
|
160
174
|
options: [] | Record<string, any>[];
|
|
175
|
+
formatNullValue: any;
|
|
161
176
|
filterable: boolean;
|
|
162
177
|
multiple: boolean;
|
|
163
178
|
isShowSelectAllBtn: boolean;
|
|
@@ -5,6 +5,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
5
5
|
required: true;
|
|
6
6
|
default: () => never[];
|
|
7
7
|
};
|
|
8
|
+
formatNullValue: {
|
|
9
|
+
type: import('vue').PropType<any>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
8
12
|
filterable: {
|
|
9
13
|
type: import('vue').PropType<boolean>;
|
|
10
14
|
default: boolean;
|
|
@@ -47,6 +51,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
47
51
|
required: true;
|
|
48
52
|
default: () => never[];
|
|
49
53
|
};
|
|
54
|
+
formatNullValue: {
|
|
55
|
+
type: import('vue').PropType<any>;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
50
58
|
filterable: {
|
|
51
59
|
type: import('vue').PropType<boolean>;
|
|
52
60
|
default: boolean;
|
|
@@ -84,6 +92,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
84
92
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
85
93
|
}>, {
|
|
86
94
|
options: [] | Record<string, any>[];
|
|
95
|
+
formatNullValue: any;
|
|
87
96
|
filterable: boolean;
|
|
88
97
|
multiple: boolean;
|
|
89
98
|
isShowSelectAllBtn: boolean;
|
package/lib/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-p-select .all-checkbox[data-v-
|
|
1
|
+
.e-p-select .all-checkbox[data-v-9f38b52d]{margin-left:20px}.column_set .ep_table_column_setting_dropdown{font-size:14px;display:flex;flex-direction:column;max-height:450px;overflow-y:auto}.column_set .ep_table_column_setting_dropdown .item{padding:0 16px}.column_set .ep_table_column_setting_dropdown .item:hover{background-color:#ecf5ff}.column_set .ep_table_column_setting_dropdown .footer{box-sizing:border-box;padding-top:6px;border-top:1px solid #dcdfe6}.column_set .ep_table_column_setting_dropdown .footer:hover{border-top:1px solid #dcdfe6}.column_set .ep_table_column_setting_dropdown .footer .el-button{border-radius:none}.column_set .ep_table_column_setting_dropdown .el-checkbox .el-checkbox__input.is-checked+.el-checkbox__label,.column_set .ep_table_column_setting_dropdown .el-checkbox .ep-checkbox__input.is-checked+.ep-checkbox__label{cursor:move}div[data-v-88cc6b1e]{box-sizing:border-box}.e-p-table[data-v-88cc6b1e]{box-sizing:border-box;height:100%;position:relative;display:flex;flex-direction:column;overflow:hidden}.e-p-table .table-content[data-v-88cc6b1e]{flex:1;display:flex;flex-direction:column;position:relative;box-sizing:border-box;overflow:hidden}.e-p-table .table-content .header-wapper[data-v-88cc6b1e]{display:flex;flex-direction:column}.e-p-table .table-content .extra[data-v-88cc6b1e],.e-p-table .table-content .header[data-v-88cc6b1e]{padding-bottom:16px}.e-p-table .el-pagination-com[data-v-88cc6b1e]{padding-top:16px;display:flex;justify-content:flex-end;align-items:center}.e-p-table .header[data-v-88cc6b1e]{display:flex;justify-content:space-between;align-items:center}.e-p-table .radioStyle[data-v-88cc6b1e] tbody .el-table__row{cursor:pointer}.btn-wrapper[data-v-88cc6b1e],.input-content[data-v-88cc6b1e]{display:flex;gap:8px}.btn-wrapper[data-v-88cc6b1e] .el-button+.el-button,.input-content[data-v-88cc6b1e] .el-button+.el-button{margin-left:0!important}.e-p-form-wrapper:not(.inline-flex-form){display:flex;flex-direction:column;justify-content:space-between;height:100%}.e-p-form-wrapper:not(.inline-flex-form) .inline-flex{display:flex}.e-p-form-wrapper:not(.inline-flex-form) .text_show{color:var(--el-text-color-primary)}.e-p-form-wrapper:not(.inline-flex-form) .slot_label .el-form-item__content label{color:var(--el-text-color-primary);margin-right:12px}.e-p-form-wrapper:not(.inline-flex-form) .footer{width:100%;display:flex;align-items:center;justify-content:center}.inline-flex-form{display:flex;justify-content:space-between}.inline-flex-form .e-p-form{flex:1}.inline-flex-form .inline-flex>div{display:inline-block}.inline-flex-form .footer{display:inline}.el-form--inline .el-form-item{margin:0}
|
package/lib/table/index.d.ts
CHANGED
|
@@ -60,15 +60,13 @@ declare const EPTable: ({
|
|
|
60
60
|
default: string;
|
|
61
61
|
};
|
|
62
62
|
heightlightClick: {
|
|
63
|
-
type: import('vue').PropType<
|
|
64
|
-
default: boolean;
|
|
63
|
+
type: import('vue').PropType<any>;
|
|
65
64
|
};
|
|
66
65
|
filterCheckList: {
|
|
67
66
|
type: import('vue').PropType<(list: any[]) => any>;
|
|
68
67
|
};
|
|
69
68
|
isShowMenu: {
|
|
70
69
|
type: import('vue').PropType<boolean>;
|
|
71
|
-
default: boolean;
|
|
72
70
|
};
|
|
73
71
|
refreshTitle: {
|
|
74
72
|
type: import('vue').PropType<string>;
|
|
@@ -1035,8 +1033,6 @@ declare const EPTable: ({
|
|
|
1035
1033
|
}, import('vue').PublicProps, {
|
|
1036
1034
|
loading: boolean;
|
|
1037
1035
|
rowKey: string;
|
|
1038
|
-
heightlightClick: boolean;
|
|
1039
|
-
isShowMenu: boolean;
|
|
1040
1036
|
refreshTitle: string;
|
|
1041
1037
|
isShowPagination: boolean;
|
|
1042
1038
|
pageProps: {
|
|
@@ -1119,15 +1115,13 @@ declare const EPTable: ({
|
|
|
1119
1115
|
default: string;
|
|
1120
1116
|
};
|
|
1121
1117
|
heightlightClick: {
|
|
1122
|
-
type: import('vue').PropType<
|
|
1123
|
-
default: boolean;
|
|
1118
|
+
type: import('vue').PropType<any>;
|
|
1124
1119
|
};
|
|
1125
1120
|
filterCheckList: {
|
|
1126
1121
|
type: import('vue').PropType<(list: any[]) => any>;
|
|
1127
1122
|
};
|
|
1128
1123
|
isShowMenu: {
|
|
1129
1124
|
type: import('vue').PropType<boolean>;
|
|
1130
|
-
default: boolean;
|
|
1131
1125
|
};
|
|
1132
1126
|
refreshTitle: {
|
|
1133
1127
|
type: import('vue').PropType<string>;
|
|
@@ -2088,8 +2082,6 @@ declare const EPTable: ({
|
|
|
2088
2082
|
}, {}, {}, {}, {
|
|
2089
2083
|
loading: boolean;
|
|
2090
2084
|
rowKey: string;
|
|
2091
|
-
heightlightClick: boolean;
|
|
2092
|
-
isShowMenu: boolean;
|
|
2093
2085
|
refreshTitle: string;
|
|
2094
2086
|
isShowPagination: boolean;
|
|
2095
2087
|
pageProps: {
|
|
@@ -2169,15 +2161,13 @@ declare const EPTable: ({
|
|
|
2169
2161
|
default: string;
|
|
2170
2162
|
};
|
|
2171
2163
|
heightlightClick: {
|
|
2172
|
-
type: import('vue').PropType<
|
|
2173
|
-
default: boolean;
|
|
2164
|
+
type: import('vue').PropType<any>;
|
|
2174
2165
|
};
|
|
2175
2166
|
filterCheckList: {
|
|
2176
2167
|
type: import('vue').PropType<(list: any[]) => any>;
|
|
2177
2168
|
};
|
|
2178
2169
|
isShowMenu: {
|
|
2179
2170
|
type: import('vue').PropType<boolean>;
|
|
2180
|
-
default: boolean;
|
|
2181
2171
|
};
|
|
2182
2172
|
refreshTitle: {
|
|
2183
2173
|
type: import('vue').PropType<string>;
|
|
@@ -3144,8 +3134,6 @@ declare const EPTable: ({
|
|
|
3144
3134
|
}, string, {
|
|
3145
3135
|
loading: boolean;
|
|
3146
3136
|
rowKey: string;
|
|
3147
|
-
heightlightClick: boolean;
|
|
3148
|
-
isShowMenu: boolean;
|
|
3149
3137
|
refreshTitle: string;
|
|
3150
3138
|
isShowPagination: boolean;
|
|
3151
3139
|
pageProps: {
|
|
@@ -61,15 +61,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
61
61
|
default: string;
|
|
62
62
|
};
|
|
63
63
|
heightlightClick: {
|
|
64
|
-
type: import('vue').PropType<
|
|
65
|
-
default: boolean;
|
|
64
|
+
type: import('vue').PropType<any>;
|
|
66
65
|
};
|
|
67
66
|
filterCheckList: {
|
|
68
67
|
type: import('vue').PropType<(list: any[]) => any>;
|
|
69
68
|
};
|
|
70
69
|
isShowMenu: {
|
|
71
70
|
type: import('vue').PropType<boolean>;
|
|
72
|
-
default: boolean;
|
|
73
71
|
};
|
|
74
72
|
refreshTitle: {
|
|
75
73
|
type: import('vue').PropType<string>;
|
|
@@ -1088,15 +1086,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1088
1086
|
default: string;
|
|
1089
1087
|
};
|
|
1090
1088
|
heightlightClick: {
|
|
1091
|
-
type: import('vue').PropType<
|
|
1092
|
-
default: boolean;
|
|
1089
|
+
type: import('vue').PropType<any>;
|
|
1093
1090
|
};
|
|
1094
1091
|
filterCheckList: {
|
|
1095
1092
|
type: import('vue').PropType<(list: any[]) => any>;
|
|
1096
1093
|
};
|
|
1097
1094
|
isShowMenu: {
|
|
1098
1095
|
type: import('vue').PropType<boolean>;
|
|
1099
|
-
default: boolean;
|
|
1100
1096
|
};
|
|
1101
1097
|
refreshTitle: {
|
|
1102
1098
|
type: import('vue').PropType<string>;
|
|
@@ -1145,8 +1141,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1145
1141
|
}>, {
|
|
1146
1142
|
loading: boolean;
|
|
1147
1143
|
rowKey: string;
|
|
1148
|
-
heightlightClick: boolean;
|
|
1149
|
-
isShowMenu: boolean;
|
|
1150
1144
|
refreshTitle: string;
|
|
1151
1145
|
isShowPagination: boolean;
|
|
1152
1146
|
pageProps: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export default function (props: any, emits: any, tableInstance: any): {
|
|
1
|
+
export default function (props: any, emits: any, tableInstance: any, tableConfig: any): {
|
|
2
2
|
editRowKey: import('vue').Ref<any, any>;
|
|
3
3
|
newPageProps: any;
|
|
4
4
|
handleRowClick: (row: any, item: any, scope: any) => void;
|