@ecan-bi/datav 1.0.40 → 1.0.43
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 +757 -201
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +755 -199
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +137 -74
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +2 -1
- package/types/_utils/hooks/index.d.ts +2 -0
- package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -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 +110 -0
- package/types/control/button/index.d.ts +111 -1
- package/types/control/button/props.d.ts +104 -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,265 @@
|
|
|
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';
|
|
7
|
+
href: string;
|
|
8
|
+
target: '_self' | '_blank';
|
|
3
9
|
}
|
|
4
10
|
export declare const buttonProps: ButtonProps;
|
|
5
11
|
export declare const buttonComponentProps: {
|
|
12
|
+
text: {
|
|
13
|
+
type?: undefined;
|
|
14
|
+
default?: undefined;
|
|
15
|
+
} | {
|
|
16
|
+
type: any;
|
|
17
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
} | import('../../_utils/props').RequestParams;
|
|
20
|
+
};
|
|
21
|
+
mode: {
|
|
22
|
+
type?: undefined;
|
|
23
|
+
default?: undefined;
|
|
24
|
+
} | {
|
|
25
|
+
type: any;
|
|
26
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
} | import('../../_utils/props').RequestParams;
|
|
29
|
+
};
|
|
30
|
+
danger: {
|
|
31
|
+
type?: undefined;
|
|
32
|
+
default?: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
type: any;
|
|
35
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
} | import('../../_utils/props').RequestParams;
|
|
38
|
+
};
|
|
39
|
+
shape: {
|
|
40
|
+
type?: undefined;
|
|
41
|
+
default?: undefined;
|
|
42
|
+
} | {
|
|
43
|
+
type: any;
|
|
44
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
} | import('../../_utils/props').RequestParams;
|
|
47
|
+
};
|
|
48
|
+
href: {
|
|
49
|
+
type?: undefined;
|
|
50
|
+
default?: undefined;
|
|
51
|
+
} | {
|
|
52
|
+
type: any;
|
|
53
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
} | import('../../_utils/props').RequestParams;
|
|
56
|
+
};
|
|
57
|
+
target: {
|
|
58
|
+
type?: undefined;
|
|
59
|
+
default?: undefined;
|
|
60
|
+
} | {
|
|
61
|
+
type: any;
|
|
62
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
} | import('../../_utils/props').RequestParams;
|
|
65
|
+
};
|
|
6
66
|
id: {
|
|
7
67
|
type?: undefined;
|
|
8
68
|
default?: undefined;
|
|
9
69
|
} | {
|
|
10
70
|
type: any;
|
|
11
|
-
default: string | number | boolean | import(
|
|
71
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
12
72
|
[key: string]: any;
|
|
13
|
-
} | import(
|
|
73
|
+
} | import('../../_utils/props').RequestParams;
|
|
14
74
|
};
|
|
15
75
|
name: {
|
|
16
76
|
type?: undefined;
|
|
17
77
|
default?: undefined;
|
|
18
78
|
} | {
|
|
19
79
|
type: any;
|
|
20
|
-
default: string | number | boolean | import(
|
|
80
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
21
81
|
[key: string]: any;
|
|
22
|
-
} | import(
|
|
82
|
+
} | import('../../_utils/props').RequestParams;
|
|
23
83
|
};
|
|
24
84
|
keyName: {
|
|
25
85
|
type?: undefined;
|
|
26
86
|
default?: undefined;
|
|
27
87
|
} | {
|
|
28
88
|
type: any;
|
|
29
|
-
default: string | number | boolean | import(
|
|
89
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
30
90
|
[key: string]: any;
|
|
31
|
-
} | import(
|
|
91
|
+
} | import('../../_utils/props').RequestParams;
|
|
32
92
|
};
|
|
33
93
|
type: {
|
|
34
94
|
type?: undefined;
|
|
35
95
|
default?: undefined;
|
|
36
96
|
} | {
|
|
37
97
|
type: any;
|
|
38
|
-
default: string | number | boolean | import(
|
|
98
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
39
99
|
[key: string]: any;
|
|
40
|
-
} | import(
|
|
100
|
+
} | import('../../_utils/props').RequestParams;
|
|
41
101
|
};
|
|
42
102
|
width: {
|
|
43
103
|
type?: undefined;
|
|
44
104
|
default?: undefined;
|
|
45
105
|
} | {
|
|
46
106
|
type: any;
|
|
47
|
-
default: string | number | boolean | import(
|
|
107
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
48
108
|
[key: string]: any;
|
|
49
|
-
} | import(
|
|
109
|
+
} | import('../../_utils/props').RequestParams;
|
|
50
110
|
};
|
|
51
111
|
height: {
|
|
52
112
|
type?: undefined;
|
|
53
113
|
default?: undefined;
|
|
54
114
|
} | {
|
|
55
115
|
type: any;
|
|
56
|
-
default: string | number | boolean | import(
|
|
116
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
57
117
|
[key: string]: any;
|
|
58
|
-
} | import(
|
|
118
|
+
} | import('../../_utils/props').RequestParams;
|
|
59
119
|
};
|
|
60
120
|
position: {
|
|
61
121
|
type?: undefined;
|
|
62
122
|
default?: undefined;
|
|
63
123
|
} | {
|
|
64
124
|
type: any;
|
|
65
|
-
default: string | number | boolean | import(
|
|
125
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
66
126
|
[key: string]: any;
|
|
67
|
-
} | import(
|
|
127
|
+
} | import('../../_utils/props').RequestParams;
|
|
68
128
|
};
|
|
69
129
|
top: {
|
|
70
130
|
type?: undefined;
|
|
71
131
|
default?: undefined;
|
|
72
132
|
} | {
|
|
73
133
|
type: any;
|
|
74
|
-
default: string | number | boolean | import(
|
|
134
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
75
135
|
[key: string]: any;
|
|
76
|
-
} | import(
|
|
136
|
+
} | import('../../_utils/props').RequestParams;
|
|
77
137
|
};
|
|
78
138
|
left: {
|
|
79
139
|
type?: undefined;
|
|
80
140
|
default?: undefined;
|
|
81
141
|
} | {
|
|
82
142
|
type: any;
|
|
83
|
-
default: string | number | boolean | import(
|
|
143
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
84
144
|
[key: string]: any;
|
|
85
|
-
} | import(
|
|
145
|
+
} | import('../../_utils/props').RequestParams;
|
|
86
146
|
};
|
|
87
147
|
zIndex: {
|
|
88
148
|
type?: undefined;
|
|
89
149
|
default?: undefined;
|
|
90
150
|
} | {
|
|
91
151
|
type: any;
|
|
92
|
-
default: string | number | boolean | import(
|
|
152
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
93
153
|
[key: string]: any;
|
|
94
|
-
} | import(
|
|
154
|
+
} | import('../../_utils/props').RequestParams;
|
|
95
155
|
};
|
|
96
156
|
rotate: {
|
|
97
157
|
type?: undefined;
|
|
98
158
|
default?: undefined;
|
|
99
159
|
} | {
|
|
100
160
|
type: any;
|
|
101
|
-
default: string | number | boolean | import(
|
|
161
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
102
162
|
[key: string]: any;
|
|
103
|
-
} | import(
|
|
163
|
+
} | import('../../_utils/props').RequestParams;
|
|
104
164
|
};
|
|
105
165
|
isShow: {
|
|
106
166
|
type?: undefined;
|
|
107
167
|
default?: undefined;
|
|
108
168
|
} | {
|
|
109
169
|
type: any;
|
|
110
|
-
default: string | number | boolean | import(
|
|
170
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
111
171
|
[key: string]: any;
|
|
112
|
-
} | import(
|
|
172
|
+
} | import('../../_utils/props').RequestParams;
|
|
113
173
|
};
|
|
114
174
|
isRender: {
|
|
115
175
|
type?: undefined;
|
|
116
176
|
default?: undefined;
|
|
117
177
|
} | {
|
|
118
178
|
type: any;
|
|
119
|
-
default: string | number | boolean | import(
|
|
179
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
120
180
|
[key: string]: any;
|
|
121
|
-
} | import(
|
|
181
|
+
} | import('../../_utils/props').RequestParams;
|
|
122
182
|
};
|
|
123
183
|
events: {
|
|
124
184
|
type?: undefined;
|
|
125
185
|
default?: undefined;
|
|
126
186
|
} | {
|
|
127
187
|
type: any;
|
|
128
|
-
default: string | number | boolean | import(
|
|
188
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
129
189
|
[key: string]: any;
|
|
130
|
-
} | import(
|
|
190
|
+
} | import('../../_utils/props').RequestParams;
|
|
131
191
|
};
|
|
132
192
|
requestUrl: {
|
|
133
193
|
type?: undefined;
|
|
134
194
|
default?: undefined;
|
|
135
195
|
} | {
|
|
136
196
|
type: any;
|
|
137
|
-
default: string | number | boolean | import(
|
|
197
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
138
198
|
[key: string]: any;
|
|
139
|
-
} | import(
|
|
199
|
+
} | import('../../_utils/props').RequestParams;
|
|
140
200
|
};
|
|
141
201
|
requestMethod: {
|
|
142
202
|
type?: undefined;
|
|
143
203
|
default?: undefined;
|
|
144
204
|
} | {
|
|
145
205
|
type: any;
|
|
146
|
-
default: string | number | boolean | import(
|
|
206
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
147
207
|
[key: string]: any;
|
|
148
|
-
} | import(
|
|
208
|
+
} | import('../../_utils/props').RequestParams;
|
|
149
209
|
};
|
|
150
210
|
requestHeaders: {
|
|
151
211
|
type?: undefined;
|
|
152
212
|
default?: undefined;
|
|
153
213
|
} | {
|
|
154
214
|
type: any;
|
|
155
|
-
default: string | number | boolean | import(
|
|
215
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
156
216
|
[key: string]: any;
|
|
157
|
-
} | import(
|
|
217
|
+
} | import('../../_utils/props').RequestParams;
|
|
158
218
|
};
|
|
159
219
|
isOpenRequestTimer: {
|
|
160
220
|
type?: undefined;
|
|
161
221
|
default?: undefined;
|
|
162
222
|
} | {
|
|
163
223
|
type: any;
|
|
164
|
-
default: string | number | boolean | import(
|
|
224
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
165
225
|
[key: string]: any;
|
|
166
|
-
} | import(
|
|
226
|
+
} | import('../../_utils/props').RequestParams;
|
|
167
227
|
};
|
|
168
228
|
requestInterval: {
|
|
169
229
|
type?: undefined;
|
|
170
230
|
default?: undefined;
|
|
171
231
|
} | {
|
|
172
232
|
type: any;
|
|
173
|
-
default: string | number | boolean | import(
|
|
233
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
174
234
|
[key: string]: any;
|
|
175
|
-
} | import(
|
|
235
|
+
} | import('../../_utils/props').RequestParams;
|
|
176
236
|
};
|
|
177
237
|
requestParams: {
|
|
178
238
|
type?: undefined;
|
|
179
239
|
default?: undefined;
|
|
180
240
|
} | {
|
|
181
241
|
type: any;
|
|
182
|
-
default: string | number | boolean | import(
|
|
242
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
183
243
|
[key: string]: any;
|
|
184
|
-
} | import(
|
|
244
|
+
} | import('../../_utils/props').RequestParams;
|
|
185
245
|
};
|
|
186
246
|
requestSort: {
|
|
187
247
|
type?: undefined;
|
|
188
248
|
default?: undefined;
|
|
189
249
|
} | {
|
|
190
250
|
type: any;
|
|
191
|
-
default: string | number | boolean | import(
|
|
251
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
192
252
|
[key: string]: any;
|
|
193
|
-
} | import(
|
|
253
|
+
} | import('../../_utils/props').RequestParams;
|
|
194
254
|
};
|
|
195
255
|
dataType: {
|
|
196
256
|
type?: undefined;
|
|
197
257
|
default?: undefined;
|
|
198
258
|
} | {
|
|
199
259
|
type: any;
|
|
200
|
-
default: string | number | boolean | import(
|
|
260
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
201
261
|
[key: string]: any;
|
|
202
|
-
} | import(
|
|
262
|
+
} | import('../../_utils/props').RequestParams;
|
|
203
263
|
};
|
|
204
264
|
};
|
|
205
265
|
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[];
|