@ecan-bi/datav 1.0.39 → 1.0.42
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/index.es.js +701 -173
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +699 -171
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +132 -72
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +2 -1
- package/types/_utils/hooks/index.d.ts +1 -0
- package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
- package/types/common/echarts/Echarts.d.ts +418 -0
- package/types/common/echarts/index.d.ts +2 -2
- package/types/common/index.d.ts +1 -1
- package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
- package/types/common/skeleton/index.d.ts +2 -0
- package/types/container/border/Border.vue.d.ts +54 -54
- package/types/container/border/props.d.ts +54 -54
- package/types/container/modal/Modal.vue.d.ts +1 -1
- package/types/container/modal/index.d.ts +1 -1
- package/types/control/button/Button.vue.d.ts +72 -0
- package/types/control/button/index.d.ts +72 -0
- package/types/control/button/props.d.ts +84 -44
- package/types/control/date-picker/props.d.ts +52 -52
- package/types/control/input/props.d.ts +48 -48
- package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
- package/types/control/range-picker/props.d.ts +52 -52
- package/types/control/select/Select.vue.d.ts +50 -50
- package/types/control/select/props.d.ts +50 -50
- package/types/graph/bar/Bar.vue.d.ts +128 -128
- package/types/graph/bar/index.d.ts +128 -128
- package/types/graph/bar/props.d.ts +65 -65
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
- package/types/graph/combo-graph/index.d.ts +155 -0
- package/types/graph/combo-graph/props.d.ts +72 -0
- package/types/graph/custom-graph/props.d.ts +48 -48
- package/types/graph/line/Line.vue.d.ts +155 -0
- package/types/graph/line/index.d.ts +155 -0
- package/types/graph/line/props.d.ts +72 -0
- package/types/graph/pie/Pie.vue.d.ts +155 -0
- package/types/graph/pie/index.d.ts +155 -0
- package/types/graph/pie/props.d.ts +72 -0
- package/types/graph/scatter/Scatter.vue.d.ts +155 -0
- package/types/graph/scatter/index.d.ts +155 -0
- package/types/graph/scatter/props.d.ts +72 -0
- package/types/map/map/props.d.ts +112 -112
- package/types/media/image/props.d.ts +52 -52
- package/types/table/table/Table.vue.d.ts +900 -79
- package/types/table/table/index.d.ts +899 -79
- package/types/table/table/props.d.ts +451 -39
- package/types/text/list/List.vue.d.ts +64 -64
- package/types/text/list/props.d.ts +64 -64
- package/types/text/proportion/Proportion.vue.d.ts +68 -68
- package/types/text/proportion/props.d.ts +68 -68
- package/types/text/text/Text.vue.d.ts +66 -66
- package/types/text/text/props.d.ts +66 -66
- package/types/text/time-display/props.d.ts +60 -60
|
@@ -1,205 +1,245 @@
|
|
|
1
1
|
import { Props } from '../../_utils/props';
|
|
2
2
|
export interface ButtonProps extends Props {
|
|
3
|
+
text: string;
|
|
4
|
+
mode: 'primary' | 'dashed' | 'link' | 'text' | 'default';
|
|
5
|
+
danger: boolean;
|
|
6
|
+
shape: 'default' | 'circle' | 'round';
|
|
3
7
|
}
|
|
4
8
|
export declare const buttonProps: ButtonProps;
|
|
5
9
|
export declare const buttonComponentProps: {
|
|
10
|
+
text: {
|
|
11
|
+
type?: undefined;
|
|
12
|
+
default?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
type: any;
|
|
15
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
} | import('../../_utils/props').RequestParams;
|
|
18
|
+
};
|
|
19
|
+
mode: {
|
|
20
|
+
type?: undefined;
|
|
21
|
+
default?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
type: any;
|
|
24
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
} | import('../../_utils/props').RequestParams;
|
|
27
|
+
};
|
|
28
|
+
danger: {
|
|
29
|
+
type?: undefined;
|
|
30
|
+
default?: undefined;
|
|
31
|
+
} | {
|
|
32
|
+
type: any;
|
|
33
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
} | import('../../_utils/props').RequestParams;
|
|
36
|
+
};
|
|
37
|
+
shape: {
|
|
38
|
+
type?: undefined;
|
|
39
|
+
default?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
type: any;
|
|
42
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
} | import('../../_utils/props').RequestParams;
|
|
45
|
+
};
|
|
6
46
|
id: {
|
|
7
47
|
type?: undefined;
|
|
8
48
|
default?: undefined;
|
|
9
49
|
} | {
|
|
10
50
|
type: any;
|
|
11
|
-
default: string | number | boolean | import(
|
|
51
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
12
52
|
[key: string]: any;
|
|
13
|
-
} | import(
|
|
53
|
+
} | import('../../_utils/props').RequestParams;
|
|
14
54
|
};
|
|
15
55
|
name: {
|
|
16
56
|
type?: undefined;
|
|
17
57
|
default?: undefined;
|
|
18
58
|
} | {
|
|
19
59
|
type: any;
|
|
20
|
-
default: string | number | boolean | import(
|
|
60
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
21
61
|
[key: string]: any;
|
|
22
|
-
} | import(
|
|
62
|
+
} | import('../../_utils/props').RequestParams;
|
|
23
63
|
};
|
|
24
64
|
keyName: {
|
|
25
65
|
type?: undefined;
|
|
26
66
|
default?: undefined;
|
|
27
67
|
} | {
|
|
28
68
|
type: any;
|
|
29
|
-
default: string | number | boolean | import(
|
|
69
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
30
70
|
[key: string]: any;
|
|
31
|
-
} | import(
|
|
71
|
+
} | import('../../_utils/props').RequestParams;
|
|
32
72
|
};
|
|
33
73
|
type: {
|
|
34
74
|
type?: undefined;
|
|
35
75
|
default?: undefined;
|
|
36
76
|
} | {
|
|
37
77
|
type: any;
|
|
38
|
-
default: string | number | boolean | import(
|
|
78
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
39
79
|
[key: string]: any;
|
|
40
|
-
} | import(
|
|
80
|
+
} | import('../../_utils/props').RequestParams;
|
|
41
81
|
};
|
|
42
82
|
width: {
|
|
43
83
|
type?: undefined;
|
|
44
84
|
default?: undefined;
|
|
45
85
|
} | {
|
|
46
86
|
type: any;
|
|
47
|
-
default: string | number | boolean | import(
|
|
87
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
48
88
|
[key: string]: any;
|
|
49
|
-
} | import(
|
|
89
|
+
} | import('../../_utils/props').RequestParams;
|
|
50
90
|
};
|
|
51
91
|
height: {
|
|
52
92
|
type?: undefined;
|
|
53
93
|
default?: undefined;
|
|
54
94
|
} | {
|
|
55
95
|
type: any;
|
|
56
|
-
default: string | number | boolean | import(
|
|
96
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
57
97
|
[key: string]: any;
|
|
58
|
-
} | import(
|
|
98
|
+
} | import('../../_utils/props').RequestParams;
|
|
59
99
|
};
|
|
60
100
|
position: {
|
|
61
101
|
type?: undefined;
|
|
62
102
|
default?: undefined;
|
|
63
103
|
} | {
|
|
64
104
|
type: any;
|
|
65
|
-
default: string | number | boolean | import(
|
|
105
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
66
106
|
[key: string]: any;
|
|
67
|
-
} | import(
|
|
107
|
+
} | import('../../_utils/props').RequestParams;
|
|
68
108
|
};
|
|
69
109
|
top: {
|
|
70
110
|
type?: undefined;
|
|
71
111
|
default?: undefined;
|
|
72
112
|
} | {
|
|
73
113
|
type: any;
|
|
74
|
-
default: string | number | boolean | import(
|
|
114
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
75
115
|
[key: string]: any;
|
|
76
|
-
} | import(
|
|
116
|
+
} | import('../../_utils/props').RequestParams;
|
|
77
117
|
};
|
|
78
118
|
left: {
|
|
79
119
|
type?: undefined;
|
|
80
120
|
default?: undefined;
|
|
81
121
|
} | {
|
|
82
122
|
type: any;
|
|
83
|
-
default: string | number | boolean | import(
|
|
123
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
84
124
|
[key: string]: any;
|
|
85
|
-
} | import(
|
|
125
|
+
} | import('../../_utils/props').RequestParams;
|
|
86
126
|
};
|
|
87
127
|
zIndex: {
|
|
88
128
|
type?: undefined;
|
|
89
129
|
default?: undefined;
|
|
90
130
|
} | {
|
|
91
131
|
type: any;
|
|
92
|
-
default: string | number | boolean | import(
|
|
132
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
93
133
|
[key: string]: any;
|
|
94
|
-
} | import(
|
|
134
|
+
} | import('../../_utils/props').RequestParams;
|
|
95
135
|
};
|
|
96
136
|
rotate: {
|
|
97
137
|
type?: undefined;
|
|
98
138
|
default?: undefined;
|
|
99
139
|
} | {
|
|
100
140
|
type: any;
|
|
101
|
-
default: string | number | boolean | import(
|
|
141
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
102
142
|
[key: string]: any;
|
|
103
|
-
} | import(
|
|
143
|
+
} | import('../../_utils/props').RequestParams;
|
|
104
144
|
};
|
|
105
145
|
isShow: {
|
|
106
146
|
type?: undefined;
|
|
107
147
|
default?: undefined;
|
|
108
148
|
} | {
|
|
109
149
|
type: any;
|
|
110
|
-
default: string | number | boolean | import(
|
|
150
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
111
151
|
[key: string]: any;
|
|
112
|
-
} | import(
|
|
152
|
+
} | import('../../_utils/props').RequestParams;
|
|
113
153
|
};
|
|
114
154
|
isRender: {
|
|
115
155
|
type?: undefined;
|
|
116
156
|
default?: undefined;
|
|
117
157
|
} | {
|
|
118
158
|
type: any;
|
|
119
|
-
default: string | number | boolean | import(
|
|
159
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
120
160
|
[key: string]: any;
|
|
121
|
-
} | import(
|
|
161
|
+
} | import('../../_utils/props').RequestParams;
|
|
122
162
|
};
|
|
123
163
|
events: {
|
|
124
164
|
type?: undefined;
|
|
125
165
|
default?: undefined;
|
|
126
166
|
} | {
|
|
127
167
|
type: any;
|
|
128
|
-
default: string | number | boolean | import(
|
|
168
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
129
169
|
[key: string]: any;
|
|
130
|
-
} | import(
|
|
170
|
+
} | import('../../_utils/props').RequestParams;
|
|
131
171
|
};
|
|
132
172
|
requestUrl: {
|
|
133
173
|
type?: undefined;
|
|
134
174
|
default?: undefined;
|
|
135
175
|
} | {
|
|
136
176
|
type: any;
|
|
137
|
-
default: string | number | boolean | import(
|
|
177
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
138
178
|
[key: string]: any;
|
|
139
|
-
} | import(
|
|
179
|
+
} | import('../../_utils/props').RequestParams;
|
|
140
180
|
};
|
|
141
181
|
requestMethod: {
|
|
142
182
|
type?: undefined;
|
|
143
183
|
default?: undefined;
|
|
144
184
|
} | {
|
|
145
185
|
type: any;
|
|
146
|
-
default: string | number | boolean | import(
|
|
186
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
147
187
|
[key: string]: any;
|
|
148
|
-
} | import(
|
|
188
|
+
} | import('../../_utils/props').RequestParams;
|
|
149
189
|
};
|
|
150
190
|
requestHeaders: {
|
|
151
191
|
type?: undefined;
|
|
152
192
|
default?: undefined;
|
|
153
193
|
} | {
|
|
154
194
|
type: any;
|
|
155
|
-
default: string | number | boolean | import(
|
|
195
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
156
196
|
[key: string]: any;
|
|
157
|
-
} | import(
|
|
197
|
+
} | import('../../_utils/props').RequestParams;
|
|
158
198
|
};
|
|
159
199
|
isOpenRequestTimer: {
|
|
160
200
|
type?: undefined;
|
|
161
201
|
default?: undefined;
|
|
162
202
|
} | {
|
|
163
203
|
type: any;
|
|
164
|
-
default: string | number | boolean | import(
|
|
204
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
165
205
|
[key: string]: any;
|
|
166
|
-
} | import(
|
|
206
|
+
} | import('../../_utils/props').RequestParams;
|
|
167
207
|
};
|
|
168
208
|
requestInterval: {
|
|
169
209
|
type?: undefined;
|
|
170
210
|
default?: undefined;
|
|
171
211
|
} | {
|
|
172
212
|
type: any;
|
|
173
|
-
default: string | number | boolean | import(
|
|
213
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
174
214
|
[key: string]: any;
|
|
175
|
-
} | import(
|
|
215
|
+
} | import('../../_utils/props').RequestParams;
|
|
176
216
|
};
|
|
177
217
|
requestParams: {
|
|
178
218
|
type?: undefined;
|
|
179
219
|
default?: undefined;
|
|
180
220
|
} | {
|
|
181
221
|
type: any;
|
|
182
|
-
default: string | number | boolean | import(
|
|
222
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
183
223
|
[key: string]: any;
|
|
184
|
-
} | import(
|
|
224
|
+
} | import('../../_utils/props').RequestParams;
|
|
185
225
|
};
|
|
186
226
|
requestSort: {
|
|
187
227
|
type?: undefined;
|
|
188
228
|
default?: undefined;
|
|
189
229
|
} | {
|
|
190
230
|
type: any;
|
|
191
|
-
default: string | number | boolean | import(
|
|
231
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
192
232
|
[key: string]: any;
|
|
193
|
-
} | import(
|
|
233
|
+
} | import('../../_utils/props').RequestParams;
|
|
194
234
|
};
|
|
195
235
|
dataType: {
|
|
196
236
|
type?: undefined;
|
|
197
237
|
default?: undefined;
|
|
198
238
|
} | {
|
|
199
239
|
type: any;
|
|
200
|
-
default: string | number | boolean | import(
|
|
240
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
201
241
|
[key: string]: any;
|
|
202
|
-
} | import(
|
|
242
|
+
} | import('../../_utils/props').RequestParams;
|
|
203
243
|
};
|
|
204
244
|
};
|
|
205
245
|
export declare const buttonEvents: string[];
|
|
@@ -12,234 +12,234 @@ export declare const datePickerComponentProps: {
|
|
|
12
12
|
default?: undefined;
|
|
13
13
|
} | {
|
|
14
14
|
type: any;
|
|
15
|
-
default: string | number | boolean | import(
|
|
15
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
16
16
|
[key: string]: any;
|
|
17
|
-
} | import(
|
|
17
|
+
} | import('../../_utils/props').RequestParams;
|
|
18
18
|
};
|
|
19
19
|
picker: {
|
|
20
20
|
type?: undefined;
|
|
21
21
|
default?: undefined;
|
|
22
22
|
} | {
|
|
23
23
|
type: any;
|
|
24
|
-
default: string | number | boolean | import(
|
|
24
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
25
25
|
[key: string]: any;
|
|
26
|
-
} | import(
|
|
26
|
+
} | import('../../_utils/props').RequestParams;
|
|
27
27
|
};
|
|
28
28
|
format: {
|
|
29
29
|
type?: undefined;
|
|
30
30
|
default?: undefined;
|
|
31
31
|
} | {
|
|
32
32
|
type: any;
|
|
33
|
-
default: string | number | boolean | import(
|
|
33
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
34
34
|
[key: string]: any;
|
|
35
|
-
} | import(
|
|
35
|
+
} | import('../../_utils/props').RequestParams;
|
|
36
36
|
};
|
|
37
37
|
showTime: {
|
|
38
38
|
type?: undefined;
|
|
39
39
|
default?: undefined;
|
|
40
40
|
} | {
|
|
41
41
|
type: any;
|
|
42
|
-
default: string | number | boolean | import(
|
|
42
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
43
43
|
[key: string]: any;
|
|
44
|
-
} | import(
|
|
44
|
+
} | import('../../_utils/props').RequestParams;
|
|
45
45
|
};
|
|
46
46
|
id: {
|
|
47
47
|
type?: undefined;
|
|
48
48
|
default?: undefined;
|
|
49
49
|
} | {
|
|
50
50
|
type: any;
|
|
51
|
-
default: string | number | boolean | import(
|
|
51
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
52
52
|
[key: string]: any;
|
|
53
|
-
} | import(
|
|
53
|
+
} | import('../../_utils/props').RequestParams;
|
|
54
54
|
};
|
|
55
55
|
name: {
|
|
56
56
|
type?: undefined;
|
|
57
57
|
default?: undefined;
|
|
58
58
|
} | {
|
|
59
59
|
type: any;
|
|
60
|
-
default: string | number | boolean | import(
|
|
60
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
61
61
|
[key: string]: any;
|
|
62
|
-
} | import(
|
|
62
|
+
} | import('../../_utils/props').RequestParams;
|
|
63
63
|
};
|
|
64
64
|
keyName: {
|
|
65
65
|
type?: undefined;
|
|
66
66
|
default?: undefined;
|
|
67
67
|
} | {
|
|
68
68
|
type: any;
|
|
69
|
-
default: string | number | boolean | import(
|
|
69
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
70
70
|
[key: string]: any;
|
|
71
|
-
} | import(
|
|
71
|
+
} | import('../../_utils/props').RequestParams;
|
|
72
72
|
};
|
|
73
73
|
type: {
|
|
74
74
|
type?: undefined;
|
|
75
75
|
default?: undefined;
|
|
76
76
|
} | {
|
|
77
77
|
type: any;
|
|
78
|
-
default: string | number | boolean | import(
|
|
78
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
79
79
|
[key: string]: any;
|
|
80
|
-
} | import(
|
|
80
|
+
} | import('../../_utils/props').RequestParams;
|
|
81
81
|
};
|
|
82
82
|
width: {
|
|
83
83
|
type?: undefined;
|
|
84
84
|
default?: undefined;
|
|
85
85
|
} | {
|
|
86
86
|
type: any;
|
|
87
|
-
default: string | number | boolean | import(
|
|
87
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
88
88
|
[key: string]: any;
|
|
89
|
-
} | import(
|
|
89
|
+
} | import('../../_utils/props').RequestParams;
|
|
90
90
|
};
|
|
91
91
|
height: {
|
|
92
92
|
type?: undefined;
|
|
93
93
|
default?: undefined;
|
|
94
94
|
} | {
|
|
95
95
|
type: any;
|
|
96
|
-
default: string | number | boolean | import(
|
|
96
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
97
97
|
[key: string]: any;
|
|
98
|
-
} | import(
|
|
98
|
+
} | import('../../_utils/props').RequestParams;
|
|
99
99
|
};
|
|
100
100
|
position: {
|
|
101
101
|
type?: undefined;
|
|
102
102
|
default?: undefined;
|
|
103
103
|
} | {
|
|
104
104
|
type: any;
|
|
105
|
-
default: string | number | boolean | import(
|
|
105
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
106
106
|
[key: string]: any;
|
|
107
|
-
} | import(
|
|
107
|
+
} | import('../../_utils/props').RequestParams;
|
|
108
108
|
};
|
|
109
109
|
top: {
|
|
110
110
|
type?: undefined;
|
|
111
111
|
default?: undefined;
|
|
112
112
|
} | {
|
|
113
113
|
type: any;
|
|
114
|
-
default: string | number | boolean | import(
|
|
114
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
115
115
|
[key: string]: any;
|
|
116
|
-
} | import(
|
|
116
|
+
} | import('../../_utils/props').RequestParams;
|
|
117
117
|
};
|
|
118
118
|
left: {
|
|
119
119
|
type?: undefined;
|
|
120
120
|
default?: undefined;
|
|
121
121
|
} | {
|
|
122
122
|
type: any;
|
|
123
|
-
default: string | number | boolean | import(
|
|
123
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
124
124
|
[key: string]: any;
|
|
125
|
-
} | import(
|
|
125
|
+
} | import('../../_utils/props').RequestParams;
|
|
126
126
|
};
|
|
127
127
|
zIndex: {
|
|
128
128
|
type?: undefined;
|
|
129
129
|
default?: undefined;
|
|
130
130
|
} | {
|
|
131
131
|
type: any;
|
|
132
|
-
default: string | number | boolean | import(
|
|
132
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
133
133
|
[key: string]: any;
|
|
134
|
-
} | import(
|
|
134
|
+
} | import('../../_utils/props').RequestParams;
|
|
135
135
|
};
|
|
136
136
|
rotate: {
|
|
137
137
|
type?: undefined;
|
|
138
138
|
default?: undefined;
|
|
139
139
|
} | {
|
|
140
140
|
type: any;
|
|
141
|
-
default: string | number | boolean | import(
|
|
141
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
142
142
|
[key: string]: any;
|
|
143
|
-
} | import(
|
|
143
|
+
} | import('../../_utils/props').RequestParams;
|
|
144
144
|
};
|
|
145
145
|
isShow: {
|
|
146
146
|
type?: undefined;
|
|
147
147
|
default?: undefined;
|
|
148
148
|
} | {
|
|
149
149
|
type: any;
|
|
150
|
-
default: string | number | boolean | import(
|
|
150
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
151
151
|
[key: string]: any;
|
|
152
|
-
} | import(
|
|
152
|
+
} | import('../../_utils/props').RequestParams;
|
|
153
153
|
};
|
|
154
154
|
isRender: {
|
|
155
155
|
type?: undefined;
|
|
156
156
|
default?: undefined;
|
|
157
157
|
} | {
|
|
158
158
|
type: any;
|
|
159
|
-
default: string | number | boolean | import(
|
|
159
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
160
160
|
[key: string]: any;
|
|
161
|
-
} | import(
|
|
161
|
+
} | import('../../_utils/props').RequestParams;
|
|
162
162
|
};
|
|
163
163
|
events: {
|
|
164
164
|
type?: undefined;
|
|
165
165
|
default?: undefined;
|
|
166
166
|
} | {
|
|
167
167
|
type: any;
|
|
168
|
-
default: string | number | boolean | import(
|
|
168
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
169
169
|
[key: string]: any;
|
|
170
|
-
} | import(
|
|
170
|
+
} | import('../../_utils/props').RequestParams;
|
|
171
171
|
};
|
|
172
172
|
requestUrl: {
|
|
173
173
|
type?: undefined;
|
|
174
174
|
default?: undefined;
|
|
175
175
|
} | {
|
|
176
176
|
type: any;
|
|
177
|
-
default: string | number | boolean | import(
|
|
177
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
178
178
|
[key: string]: any;
|
|
179
|
-
} | import(
|
|
179
|
+
} | import('../../_utils/props').RequestParams;
|
|
180
180
|
};
|
|
181
181
|
requestMethod: {
|
|
182
182
|
type?: undefined;
|
|
183
183
|
default?: undefined;
|
|
184
184
|
} | {
|
|
185
185
|
type: any;
|
|
186
|
-
default: string | number | boolean | import(
|
|
186
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
187
187
|
[key: string]: any;
|
|
188
|
-
} | import(
|
|
188
|
+
} | import('../../_utils/props').RequestParams;
|
|
189
189
|
};
|
|
190
190
|
requestHeaders: {
|
|
191
191
|
type?: undefined;
|
|
192
192
|
default?: undefined;
|
|
193
193
|
} | {
|
|
194
194
|
type: any;
|
|
195
|
-
default: string | number | boolean | import(
|
|
195
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
196
196
|
[key: string]: any;
|
|
197
|
-
} | import(
|
|
197
|
+
} | import('../../_utils/props').RequestParams;
|
|
198
198
|
};
|
|
199
199
|
isOpenRequestTimer: {
|
|
200
200
|
type?: undefined;
|
|
201
201
|
default?: undefined;
|
|
202
202
|
} | {
|
|
203
203
|
type: any;
|
|
204
|
-
default: string | number | boolean | import(
|
|
204
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
205
205
|
[key: string]: any;
|
|
206
|
-
} | import(
|
|
206
|
+
} | import('../../_utils/props').RequestParams;
|
|
207
207
|
};
|
|
208
208
|
requestInterval: {
|
|
209
209
|
type?: undefined;
|
|
210
210
|
default?: undefined;
|
|
211
211
|
} | {
|
|
212
212
|
type: any;
|
|
213
|
-
default: string | number | boolean | import(
|
|
213
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
214
214
|
[key: string]: any;
|
|
215
|
-
} | import(
|
|
215
|
+
} | import('../../_utils/props').RequestParams;
|
|
216
216
|
};
|
|
217
217
|
requestParams: {
|
|
218
218
|
type?: undefined;
|
|
219
219
|
default?: undefined;
|
|
220
220
|
} | {
|
|
221
221
|
type: any;
|
|
222
|
-
default: string | number | boolean | import(
|
|
222
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
223
223
|
[key: string]: any;
|
|
224
|
-
} | import(
|
|
224
|
+
} | import('../../_utils/props').RequestParams;
|
|
225
225
|
};
|
|
226
226
|
requestSort: {
|
|
227
227
|
type?: undefined;
|
|
228
228
|
default?: undefined;
|
|
229
229
|
} | {
|
|
230
230
|
type: any;
|
|
231
|
-
default: string | number | boolean | import(
|
|
231
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
232
232
|
[key: string]: any;
|
|
233
|
-
} | import(
|
|
233
|
+
} | import('../../_utils/props').RequestParams;
|
|
234
234
|
};
|
|
235
235
|
dataType: {
|
|
236
236
|
type?: undefined;
|
|
237
237
|
default?: undefined;
|
|
238
238
|
} | {
|
|
239
239
|
type: any;
|
|
240
|
-
default: string | number | boolean | import(
|
|
240
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
241
241
|
[key: string]: any;
|
|
242
|
-
} | import(
|
|
242
|
+
} | import('../../_utils/props').RequestParams;
|
|
243
243
|
};
|
|
244
244
|
};
|
|
245
245
|
export declare const datePickerEvents: string[];
|