@ecan-bi/datav 1.0.15 → 1.0.18
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/_utils/constant.d.ts +1 -1
- package/dist/_utils/hooks/index.d.ts +1 -1
- package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
- package/dist/_utils/hooks/useRequestData.d.ts +5 -13
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/util.d.ts +14 -0
- package/dist/common/echarts/ECharts.d.ts +1 -0
- package/dist/container/border/props.d.ts +67 -57
- package/dist/container/index.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +47 -31
- package/dist/container/modal/props.d.ts +29 -18
- package/dist/container/tabs/Tabs.vue.d.ts +271 -0
- package/dist/container/tabs/index.d.ts +3 -0
- package/dist/container/tabs/props.d.ts +219 -0
- package/dist/control/button/Button.vue.d.ts +53 -53
- package/dist/control/button/props.d.ts +49 -49
- package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
- package/dist/control/date-picker/props.d.ts +7 -7
- package/dist/control/input/Input.vue.d.ts +59 -59
- package/dist/control/input/props.d.ts +53 -53
- package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
- package/dist/control/range-picker/props.d.ts +51 -51
- package/dist/control/select/Select.vue.d.ts +65 -61
- package/dist/control/select/props.d.ts +53 -53
- package/dist/graph/bar/Bar.vue.d.ts +304 -57
- package/dist/graph/bar/props.d.ts +277 -49
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +880 -0
- package/dist/graph/combo-graph/index.d.ts +3 -0
- package/dist/graph/combo-graph/props.d.ts +619 -0
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
- package/dist/graph/custom-graph/props.d.ts +53 -53
- package/dist/graph/index.d.ts +1 -0
- package/dist/graph/line/Line.vue.d.ts +286 -109
- package/dist/graph/line/props.d.ts +235 -49
- package/dist/graph/pie/Pie.vue.d.ts +332 -114
- package/dist/graph/pie/props.d.ts +279 -57
- package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
- package/dist/graph/scatter/props.d.ts +148 -123
- package/dist/index.esm.js +3 -2
- package/dist/index.umd.js +3 -2
- package/dist/media/image/Image.vue.d.ts +55 -55
- package/dist/media/image/props.d.ts +51 -51
- package/dist/table/table/Table.vue.d.ts +208 -67
- package/dist/table/table/props.d.ts +160 -62
- package/dist/text/index.d.ts +2 -0
- package/dist/text/list/List.vue.d.ts +471 -0
- package/dist/text/list/index.d.ts +3 -0
- package/dist/text/list/props.d.ts +367 -0
- package/dist/text/text/Text.vue.d.ts +132 -43
- package/dist/text/text/props.d.ts +122 -38
- package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
- package/dist/text/time-display/index.d.ts +3 -0
- package/dist/text/time-display/props.d.ts +275 -0
- package/package.json +2 -1
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
|
@@ -5,207 +5,207 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
default?: undefined;
|
|
6
6
|
} | {
|
|
7
7
|
type: any;
|
|
8
|
-
default: string | number | boolean | {
|
|
8
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
9
9
|
[key: string]: any;
|
|
10
|
-
} | import("../../_utils/props").RequestParams
|
|
10
|
+
} | import("../../_utils/props").RequestParams;
|
|
11
11
|
};
|
|
12
12
|
placeholder: {
|
|
13
13
|
type?: undefined;
|
|
14
14
|
default?: undefined;
|
|
15
15
|
} | {
|
|
16
16
|
type: any;
|
|
17
|
-
default: string | number | boolean | {
|
|
17
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
18
18
|
[key: string]: any;
|
|
19
|
-
} | import("../../_utils/props").RequestParams
|
|
19
|
+
} | import("../../_utils/props").RequestParams;
|
|
20
20
|
};
|
|
21
21
|
id: {
|
|
22
22
|
type?: undefined;
|
|
23
23
|
default?: undefined;
|
|
24
24
|
} | {
|
|
25
25
|
type: any;
|
|
26
|
-
default: string | number | boolean | {
|
|
26
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
27
27
|
[key: string]: any;
|
|
28
|
-
} | import("../../_utils/props").RequestParams
|
|
28
|
+
} | import("../../_utils/props").RequestParams;
|
|
29
29
|
};
|
|
30
30
|
name: {
|
|
31
31
|
type?: undefined;
|
|
32
32
|
default?: undefined;
|
|
33
33
|
} | {
|
|
34
34
|
type: any;
|
|
35
|
-
default: string | number | boolean | {
|
|
35
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
36
36
|
[key: string]: any;
|
|
37
|
-
} | import("../../_utils/props").RequestParams
|
|
37
|
+
} | import("../../_utils/props").RequestParams;
|
|
38
38
|
};
|
|
39
39
|
keyName: {
|
|
40
40
|
type?: undefined;
|
|
41
41
|
default?: undefined;
|
|
42
42
|
} | {
|
|
43
43
|
type: any;
|
|
44
|
-
default: string | number | boolean | {
|
|
44
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
45
45
|
[key: string]: any;
|
|
46
|
-
} | import("../../_utils/props").RequestParams
|
|
46
|
+
} | import("../../_utils/props").RequestParams;
|
|
47
47
|
};
|
|
48
48
|
type: {
|
|
49
49
|
type?: undefined;
|
|
50
50
|
default?: undefined;
|
|
51
51
|
} | {
|
|
52
52
|
type: any;
|
|
53
|
-
default: string | number | boolean | {
|
|
53
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
54
54
|
[key: string]: any;
|
|
55
|
-
} | import("../../_utils/props").RequestParams
|
|
55
|
+
} | import("../../_utils/props").RequestParams;
|
|
56
56
|
};
|
|
57
57
|
width: {
|
|
58
58
|
type?: undefined;
|
|
59
59
|
default?: undefined;
|
|
60
60
|
} | {
|
|
61
61
|
type: any;
|
|
62
|
-
default: string | number | boolean | {
|
|
62
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
63
63
|
[key: string]: any;
|
|
64
|
-
} | import("../../_utils/props").RequestParams
|
|
64
|
+
} | import("../../_utils/props").RequestParams;
|
|
65
65
|
};
|
|
66
66
|
height: {
|
|
67
67
|
type?: undefined;
|
|
68
68
|
default?: undefined;
|
|
69
69
|
} | {
|
|
70
70
|
type: any;
|
|
71
|
-
default: string | number | boolean | {
|
|
71
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
72
72
|
[key: string]: any;
|
|
73
|
-
} | import("../../_utils/props").RequestParams
|
|
73
|
+
} | import("../../_utils/props").RequestParams;
|
|
74
74
|
};
|
|
75
75
|
position: {
|
|
76
76
|
type?: undefined;
|
|
77
77
|
default?: undefined;
|
|
78
78
|
} | {
|
|
79
79
|
type: any;
|
|
80
|
-
default: string | number | boolean | {
|
|
80
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
81
81
|
[key: string]: any;
|
|
82
|
-
} | import("../../_utils/props").RequestParams
|
|
82
|
+
} | import("../../_utils/props").RequestParams;
|
|
83
83
|
};
|
|
84
84
|
top: {
|
|
85
85
|
type?: undefined;
|
|
86
86
|
default?: undefined;
|
|
87
87
|
} | {
|
|
88
88
|
type: any;
|
|
89
|
-
default: string | number | boolean | {
|
|
89
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
90
90
|
[key: string]: any;
|
|
91
|
-
} | import("../../_utils/props").RequestParams
|
|
91
|
+
} | import("../../_utils/props").RequestParams;
|
|
92
92
|
};
|
|
93
93
|
left: {
|
|
94
94
|
type?: undefined;
|
|
95
95
|
default?: undefined;
|
|
96
96
|
} | {
|
|
97
97
|
type: any;
|
|
98
|
-
default: string | number | boolean | {
|
|
98
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
99
99
|
[key: string]: any;
|
|
100
|
-
} | import("../../_utils/props").RequestParams
|
|
100
|
+
} | import("../../_utils/props").RequestParams;
|
|
101
101
|
};
|
|
102
102
|
zIndex: {
|
|
103
103
|
type?: undefined;
|
|
104
104
|
default?: undefined;
|
|
105
105
|
} | {
|
|
106
106
|
type: any;
|
|
107
|
-
default: string | number | boolean | {
|
|
107
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
108
108
|
[key: string]: any;
|
|
109
|
-
} | import("../../_utils/props").RequestParams
|
|
109
|
+
} | import("../../_utils/props").RequestParams;
|
|
110
110
|
};
|
|
111
111
|
rotate: {
|
|
112
112
|
type?: undefined;
|
|
113
113
|
default?: undefined;
|
|
114
114
|
} | {
|
|
115
115
|
type: any;
|
|
116
|
-
default: string | number | boolean | {
|
|
116
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
117
117
|
[key: string]: any;
|
|
118
|
-
} | import("../../_utils/props").RequestParams
|
|
118
|
+
} | import("../../_utils/props").RequestParams;
|
|
119
119
|
};
|
|
120
120
|
isShow: {
|
|
121
121
|
type?: undefined;
|
|
122
122
|
default?: undefined;
|
|
123
123
|
} | {
|
|
124
124
|
type: any;
|
|
125
|
-
default: string | number | boolean | {
|
|
125
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
126
126
|
[key: string]: any;
|
|
127
|
-
} | import("../../_utils/props").RequestParams
|
|
127
|
+
} | import("../../_utils/props").RequestParams;
|
|
128
128
|
};
|
|
129
129
|
isRender: {
|
|
130
130
|
type?: undefined;
|
|
131
131
|
default?: undefined;
|
|
132
132
|
} | {
|
|
133
133
|
type: any;
|
|
134
|
-
default: string | number | boolean | {
|
|
134
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
135
135
|
[key: string]: any;
|
|
136
|
-
} | import("../../_utils/props").RequestParams
|
|
136
|
+
} | import("../../_utils/props").RequestParams;
|
|
137
137
|
};
|
|
138
138
|
isRequestData: {
|
|
139
139
|
type?: undefined;
|
|
140
140
|
default?: undefined;
|
|
141
141
|
} | {
|
|
142
142
|
type: any;
|
|
143
|
-
default: string | number | boolean | {
|
|
143
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
144
144
|
[key: string]: any;
|
|
145
|
-
} | import("../../_utils/props").RequestParams
|
|
145
|
+
} | import("../../_utils/props").RequestParams;
|
|
146
146
|
};
|
|
147
|
-
|
|
147
|
+
events: {
|
|
148
148
|
type?: undefined;
|
|
149
149
|
default?: undefined;
|
|
150
150
|
} | {
|
|
151
151
|
type: any;
|
|
152
|
-
default: string | number | boolean | {
|
|
152
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
153
153
|
[key: string]: any;
|
|
154
|
-
} | import("../../_utils/props").RequestParams
|
|
154
|
+
} | import("../../_utils/props").RequestParams;
|
|
155
155
|
};
|
|
156
|
-
|
|
156
|
+
requestUrl: {
|
|
157
157
|
type?: undefined;
|
|
158
158
|
default?: undefined;
|
|
159
159
|
} | {
|
|
160
160
|
type: any;
|
|
161
|
-
default: string | number | boolean | {
|
|
161
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
162
162
|
[key: string]: any;
|
|
163
|
-
} | import("../../_utils/props").RequestParams
|
|
163
|
+
} | import("../../_utils/props").RequestParams;
|
|
164
164
|
};
|
|
165
|
-
|
|
165
|
+
requestMethod: {
|
|
166
166
|
type?: undefined;
|
|
167
167
|
default?: undefined;
|
|
168
168
|
} | {
|
|
169
169
|
type: any;
|
|
170
|
-
default: string | number | boolean | {
|
|
170
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
171
171
|
[key: string]: any;
|
|
172
|
-
} | import("../../_utils/props").RequestParams
|
|
172
|
+
} | import("../../_utils/props").RequestParams;
|
|
173
173
|
};
|
|
174
|
-
|
|
174
|
+
requestHeaders: {
|
|
175
175
|
type?: undefined;
|
|
176
176
|
default?: undefined;
|
|
177
177
|
} | {
|
|
178
178
|
type: any;
|
|
179
|
-
default: string | number | boolean | {
|
|
179
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
180
180
|
[key: string]: any;
|
|
181
|
-
} | import("../../_utils/props").RequestParams
|
|
181
|
+
} | import("../../_utils/props").RequestParams;
|
|
182
182
|
};
|
|
183
|
-
|
|
183
|
+
isOpenRequestTimer: {
|
|
184
184
|
type?: undefined;
|
|
185
185
|
default?: undefined;
|
|
186
186
|
} | {
|
|
187
187
|
type: any;
|
|
188
|
-
default: string | number | boolean | {
|
|
188
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
189
189
|
[key: string]: any;
|
|
190
|
-
} | import("../../_utils/props").RequestParams
|
|
190
|
+
} | import("../../_utils/props").RequestParams;
|
|
191
191
|
};
|
|
192
|
-
|
|
192
|
+
requestInterval: {
|
|
193
193
|
type?: undefined;
|
|
194
194
|
default?: undefined;
|
|
195
195
|
} | {
|
|
196
196
|
type: any;
|
|
197
|
-
default: string | number | boolean | {
|
|
197
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
198
198
|
[key: string]: any;
|
|
199
|
-
} | import("../../_utils/props").RequestParams
|
|
199
|
+
} | import("../../_utils/props").RequestParams;
|
|
200
200
|
};
|
|
201
|
-
|
|
201
|
+
requestParams: {
|
|
202
202
|
type?: undefined;
|
|
203
203
|
default?: undefined;
|
|
204
204
|
} | {
|
|
205
205
|
type: any;
|
|
206
|
-
default: string | number | boolean | {
|
|
206
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
207
207
|
[key: string]: any;
|
|
208
|
-
} | import("../../_utils/props").RequestParams
|
|
208
|
+
} | import("../../_utils/props").RequestParams;
|
|
209
209
|
};
|
|
210
210
|
}, {
|
|
211
211
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -226,15 +226,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
226
226
|
isShow?: unknown;
|
|
227
227
|
isRender?: unknown;
|
|
228
228
|
isRequestData?: unknown;
|
|
229
|
+
events?: unknown;
|
|
229
230
|
requestUrl?: unknown;
|
|
230
231
|
requestMethod?: unknown;
|
|
231
232
|
requestHeaders?: unknown;
|
|
232
233
|
isOpenRequestTimer?: unknown;
|
|
233
234
|
requestInterval?: unknown;
|
|
234
235
|
requestParams?: unknown;
|
|
235
|
-
events?: unknown;
|
|
236
236
|
} & {} & {
|
|
237
|
-
|
|
237
|
+
id?: string | number | boolean | {
|
|
238
238
|
[key: string]: any;
|
|
239
239
|
};
|
|
240
240
|
value?: string | number | boolean | {
|
|
@@ -243,7 +243,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
243
243
|
placeholder?: string | number | boolean | {
|
|
244
244
|
[key: string]: any;
|
|
245
245
|
};
|
|
246
|
-
|
|
246
|
+
type?: string | number | boolean | {
|
|
247
247
|
[key: string]: any;
|
|
248
248
|
};
|
|
249
249
|
name?: string | number | boolean | {
|
|
@@ -282,6 +282,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
282
282
|
isRequestData?: string | number | boolean | {
|
|
283
283
|
[key: string]: any;
|
|
284
284
|
};
|
|
285
|
+
events?: string | number | boolean | {
|
|
286
|
+
[key: string]: any;
|
|
287
|
+
};
|
|
285
288
|
requestUrl?: string | number | boolean | {
|
|
286
289
|
[key: string]: any;
|
|
287
290
|
};
|
|
@@ -300,8 +303,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
300
303
|
requestParams?: string | number | boolean | {
|
|
301
304
|
[key: string]: any;
|
|
302
305
|
};
|
|
303
|
-
events?: string | number | boolean | {
|
|
304
|
-
[key: string]: any;
|
|
305
|
-
};
|
|
306
306
|
}>, {}>;
|
|
307
307
|
export default _default;
|
|
@@ -10,206 +10,206 @@ export declare const inputComponentProps: {
|
|
|
10
10
|
default?: undefined;
|
|
11
11
|
} | {
|
|
12
12
|
type: any;
|
|
13
|
-
default: string | number | boolean | {
|
|
13
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
14
14
|
[key: string]: any;
|
|
15
|
-
} | import("../../_utils/props").RequestParams
|
|
15
|
+
} | import("../../_utils/props").RequestParams;
|
|
16
16
|
};
|
|
17
17
|
placeholder: {
|
|
18
18
|
type?: undefined;
|
|
19
19
|
default?: undefined;
|
|
20
20
|
} | {
|
|
21
21
|
type: any;
|
|
22
|
-
default: string | number | boolean | {
|
|
22
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
23
23
|
[key: string]: any;
|
|
24
|
-
} | import("../../_utils/props").RequestParams
|
|
24
|
+
} | import("../../_utils/props").RequestParams;
|
|
25
25
|
};
|
|
26
26
|
id: {
|
|
27
27
|
type?: undefined;
|
|
28
28
|
default?: undefined;
|
|
29
29
|
} | {
|
|
30
30
|
type: any;
|
|
31
|
-
default: string | number | boolean | {
|
|
31
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
32
32
|
[key: string]: any;
|
|
33
|
-
} | import("../../_utils/props").RequestParams
|
|
33
|
+
} | import("../../_utils/props").RequestParams;
|
|
34
34
|
};
|
|
35
35
|
name: {
|
|
36
36
|
type?: undefined;
|
|
37
37
|
default?: undefined;
|
|
38
38
|
} | {
|
|
39
39
|
type: any;
|
|
40
|
-
default: string | number | boolean | {
|
|
40
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
41
41
|
[key: string]: any;
|
|
42
|
-
} | import("../../_utils/props").RequestParams
|
|
42
|
+
} | import("../../_utils/props").RequestParams;
|
|
43
43
|
};
|
|
44
44
|
keyName: {
|
|
45
45
|
type?: undefined;
|
|
46
46
|
default?: undefined;
|
|
47
47
|
} | {
|
|
48
48
|
type: any;
|
|
49
|
-
default: string | number | boolean | {
|
|
49
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
50
50
|
[key: string]: any;
|
|
51
|
-
} | import("../../_utils/props").RequestParams
|
|
51
|
+
} | import("../../_utils/props").RequestParams;
|
|
52
52
|
};
|
|
53
53
|
type: {
|
|
54
54
|
type?: undefined;
|
|
55
55
|
default?: undefined;
|
|
56
56
|
} | {
|
|
57
57
|
type: any;
|
|
58
|
-
default: string | number | boolean | {
|
|
58
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
59
59
|
[key: string]: any;
|
|
60
|
-
} | import("../../_utils/props").RequestParams
|
|
60
|
+
} | import("../../_utils/props").RequestParams;
|
|
61
61
|
};
|
|
62
62
|
width: {
|
|
63
63
|
type?: undefined;
|
|
64
64
|
default?: undefined;
|
|
65
65
|
} | {
|
|
66
66
|
type: any;
|
|
67
|
-
default: string | number | boolean | {
|
|
67
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
68
68
|
[key: string]: any;
|
|
69
|
-
} | import("../../_utils/props").RequestParams
|
|
69
|
+
} | import("../../_utils/props").RequestParams;
|
|
70
70
|
};
|
|
71
71
|
height: {
|
|
72
72
|
type?: undefined;
|
|
73
73
|
default?: undefined;
|
|
74
74
|
} | {
|
|
75
75
|
type: any;
|
|
76
|
-
default: string | number | boolean | {
|
|
76
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
77
77
|
[key: string]: any;
|
|
78
|
-
} | import("../../_utils/props").RequestParams
|
|
78
|
+
} | import("../../_utils/props").RequestParams;
|
|
79
79
|
};
|
|
80
80
|
position: {
|
|
81
81
|
type?: undefined;
|
|
82
82
|
default?: undefined;
|
|
83
83
|
} | {
|
|
84
84
|
type: any;
|
|
85
|
-
default: string | number | boolean | {
|
|
85
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
86
86
|
[key: string]: any;
|
|
87
|
-
} | import("../../_utils/props").RequestParams
|
|
87
|
+
} | import("../../_utils/props").RequestParams;
|
|
88
88
|
};
|
|
89
89
|
top: {
|
|
90
90
|
type?: undefined;
|
|
91
91
|
default?: undefined;
|
|
92
92
|
} | {
|
|
93
93
|
type: any;
|
|
94
|
-
default: string | number | boolean | {
|
|
94
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
95
95
|
[key: string]: any;
|
|
96
|
-
} | import("../../_utils/props").RequestParams
|
|
96
|
+
} | import("../../_utils/props").RequestParams;
|
|
97
97
|
};
|
|
98
98
|
left: {
|
|
99
99
|
type?: undefined;
|
|
100
100
|
default?: undefined;
|
|
101
101
|
} | {
|
|
102
102
|
type: any;
|
|
103
|
-
default: string | number | boolean | {
|
|
103
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
104
104
|
[key: string]: any;
|
|
105
|
-
} | import("../../_utils/props").RequestParams
|
|
105
|
+
} | import("../../_utils/props").RequestParams;
|
|
106
106
|
};
|
|
107
107
|
zIndex: {
|
|
108
108
|
type?: undefined;
|
|
109
109
|
default?: undefined;
|
|
110
110
|
} | {
|
|
111
111
|
type: any;
|
|
112
|
-
default: string | number | boolean | {
|
|
112
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
113
113
|
[key: string]: any;
|
|
114
|
-
} | import("../../_utils/props").RequestParams
|
|
114
|
+
} | import("../../_utils/props").RequestParams;
|
|
115
115
|
};
|
|
116
116
|
rotate: {
|
|
117
117
|
type?: undefined;
|
|
118
118
|
default?: undefined;
|
|
119
119
|
} | {
|
|
120
120
|
type: any;
|
|
121
|
-
default: string | number | boolean | {
|
|
121
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
122
122
|
[key: string]: any;
|
|
123
|
-
} | import("../../_utils/props").RequestParams
|
|
123
|
+
} | import("../../_utils/props").RequestParams;
|
|
124
124
|
};
|
|
125
125
|
isShow: {
|
|
126
126
|
type?: undefined;
|
|
127
127
|
default?: undefined;
|
|
128
128
|
} | {
|
|
129
129
|
type: any;
|
|
130
|
-
default: string | number | boolean | {
|
|
130
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
131
131
|
[key: string]: any;
|
|
132
|
-
} | import("../../_utils/props").RequestParams
|
|
132
|
+
} | import("../../_utils/props").RequestParams;
|
|
133
133
|
};
|
|
134
134
|
isRender: {
|
|
135
135
|
type?: undefined;
|
|
136
136
|
default?: undefined;
|
|
137
137
|
} | {
|
|
138
138
|
type: any;
|
|
139
|
-
default: string | number | boolean | {
|
|
139
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
140
140
|
[key: string]: any;
|
|
141
|
-
} | import("../../_utils/props").RequestParams
|
|
141
|
+
} | import("../../_utils/props").RequestParams;
|
|
142
142
|
};
|
|
143
143
|
isRequestData: {
|
|
144
144
|
type?: undefined;
|
|
145
145
|
default?: undefined;
|
|
146
146
|
} | {
|
|
147
147
|
type: any;
|
|
148
|
-
default: string | number | boolean | {
|
|
148
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
149
149
|
[key: string]: any;
|
|
150
|
-
} | import("../../_utils/props").RequestParams
|
|
150
|
+
} | import("../../_utils/props").RequestParams;
|
|
151
151
|
};
|
|
152
|
-
|
|
152
|
+
events: {
|
|
153
153
|
type?: undefined;
|
|
154
154
|
default?: undefined;
|
|
155
155
|
} | {
|
|
156
156
|
type: any;
|
|
157
|
-
default: string | number | boolean | {
|
|
157
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
158
158
|
[key: string]: any;
|
|
159
|
-
} | import("../../_utils/props").RequestParams
|
|
159
|
+
} | import("../../_utils/props").RequestParams;
|
|
160
160
|
};
|
|
161
|
-
|
|
161
|
+
requestUrl: {
|
|
162
162
|
type?: undefined;
|
|
163
163
|
default?: undefined;
|
|
164
164
|
} | {
|
|
165
165
|
type: any;
|
|
166
|
-
default: string | number | boolean | {
|
|
166
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
167
167
|
[key: string]: any;
|
|
168
|
-
} | import("../../_utils/props").RequestParams
|
|
168
|
+
} | import("../../_utils/props").RequestParams;
|
|
169
169
|
};
|
|
170
|
-
|
|
170
|
+
requestMethod: {
|
|
171
171
|
type?: undefined;
|
|
172
172
|
default?: undefined;
|
|
173
173
|
} | {
|
|
174
174
|
type: any;
|
|
175
|
-
default: string | number | boolean | {
|
|
175
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
176
176
|
[key: string]: any;
|
|
177
|
-
} | import("../../_utils/props").RequestParams
|
|
177
|
+
} | import("../../_utils/props").RequestParams;
|
|
178
178
|
};
|
|
179
|
-
|
|
179
|
+
requestHeaders: {
|
|
180
180
|
type?: undefined;
|
|
181
181
|
default?: undefined;
|
|
182
182
|
} | {
|
|
183
183
|
type: any;
|
|
184
|
-
default: string | number | boolean | {
|
|
184
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
185
185
|
[key: string]: any;
|
|
186
|
-
} | import("../../_utils/props").RequestParams
|
|
186
|
+
} | import("../../_utils/props").RequestParams;
|
|
187
187
|
};
|
|
188
|
-
|
|
188
|
+
isOpenRequestTimer: {
|
|
189
189
|
type?: undefined;
|
|
190
190
|
default?: undefined;
|
|
191
191
|
} | {
|
|
192
192
|
type: any;
|
|
193
|
-
default: string | number | boolean | {
|
|
193
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
194
194
|
[key: string]: any;
|
|
195
|
-
} | import("../../_utils/props").RequestParams
|
|
195
|
+
} | import("../../_utils/props").RequestParams;
|
|
196
196
|
};
|
|
197
|
-
|
|
197
|
+
requestInterval: {
|
|
198
198
|
type?: undefined;
|
|
199
199
|
default?: undefined;
|
|
200
200
|
} | {
|
|
201
201
|
type: any;
|
|
202
|
-
default: string | number | boolean | {
|
|
202
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
203
203
|
[key: string]: any;
|
|
204
|
-
} | import("../../_utils/props").RequestParams
|
|
204
|
+
} | import("../../_utils/props").RequestParams;
|
|
205
205
|
};
|
|
206
|
-
|
|
206
|
+
requestParams: {
|
|
207
207
|
type?: undefined;
|
|
208
208
|
default?: undefined;
|
|
209
209
|
} | {
|
|
210
210
|
type: any;
|
|
211
|
-
default: string | number | boolean | {
|
|
211
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
212
212
|
[key: string]: any;
|
|
213
|
-
} | import("../../_utils/props").RequestParams
|
|
213
|
+
} | import("../../_utils/props").RequestParams;
|
|
214
214
|
};
|
|
215
215
|
};
|