@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
|
@@ -6,189 +6,189 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
6
|
default?: undefined;
|
|
7
7
|
} | {
|
|
8
8
|
type: any;
|
|
9
|
-
default: string | number | boolean | {
|
|
9
|
+
default: string | number | boolean | Events | {
|
|
10
10
|
[key: string]: any;
|
|
11
|
-
} | import("src/_utils/props").RequestParams
|
|
11
|
+
} | import("src/_utils/props").RequestParams;
|
|
12
12
|
};
|
|
13
13
|
name: {
|
|
14
14
|
type?: undefined;
|
|
15
15
|
default?: undefined;
|
|
16
16
|
} | {
|
|
17
17
|
type: any;
|
|
18
|
-
default: string | number | boolean | {
|
|
18
|
+
default: string | number | boolean | Events | {
|
|
19
19
|
[key: string]: any;
|
|
20
|
-
} | import("src/_utils/props").RequestParams
|
|
20
|
+
} | import("src/_utils/props").RequestParams;
|
|
21
21
|
};
|
|
22
22
|
keyName: {
|
|
23
23
|
type?: undefined;
|
|
24
24
|
default?: undefined;
|
|
25
25
|
} | {
|
|
26
26
|
type: any;
|
|
27
|
-
default: string | number | boolean | {
|
|
27
|
+
default: string | number | boolean | Events | {
|
|
28
28
|
[key: string]: any;
|
|
29
|
-
} | import("src/_utils/props").RequestParams
|
|
29
|
+
} | import("src/_utils/props").RequestParams;
|
|
30
30
|
};
|
|
31
31
|
type: {
|
|
32
32
|
type?: undefined;
|
|
33
33
|
default?: undefined;
|
|
34
34
|
} | {
|
|
35
35
|
type: any;
|
|
36
|
-
default: string | number | boolean | {
|
|
36
|
+
default: string | number | boolean | Events | {
|
|
37
37
|
[key: string]: any;
|
|
38
|
-
} | import("src/_utils/props").RequestParams
|
|
38
|
+
} | import("src/_utils/props").RequestParams;
|
|
39
39
|
};
|
|
40
40
|
width: {
|
|
41
41
|
type?: undefined;
|
|
42
42
|
default?: undefined;
|
|
43
43
|
} | {
|
|
44
44
|
type: any;
|
|
45
|
-
default: string | number | boolean | {
|
|
45
|
+
default: string | number | boolean | Events | {
|
|
46
46
|
[key: string]: any;
|
|
47
|
-
} | import("src/_utils/props").RequestParams
|
|
47
|
+
} | import("src/_utils/props").RequestParams;
|
|
48
48
|
};
|
|
49
49
|
height: {
|
|
50
50
|
type?: undefined;
|
|
51
51
|
default?: undefined;
|
|
52
52
|
} | {
|
|
53
53
|
type: any;
|
|
54
|
-
default: string | number | boolean | {
|
|
54
|
+
default: string | number | boolean | Events | {
|
|
55
55
|
[key: string]: any;
|
|
56
|
-
} | import("src/_utils/props").RequestParams
|
|
56
|
+
} | import("src/_utils/props").RequestParams;
|
|
57
57
|
};
|
|
58
58
|
position: {
|
|
59
59
|
type?: undefined;
|
|
60
60
|
default?: undefined;
|
|
61
61
|
} | {
|
|
62
62
|
type: any;
|
|
63
|
-
default: string | number | boolean | {
|
|
63
|
+
default: string | number | boolean | Events | {
|
|
64
64
|
[key: string]: any;
|
|
65
|
-
} | import("src/_utils/props").RequestParams
|
|
65
|
+
} | import("src/_utils/props").RequestParams;
|
|
66
66
|
};
|
|
67
67
|
top: {
|
|
68
68
|
type?: undefined;
|
|
69
69
|
default?: undefined;
|
|
70
70
|
} | {
|
|
71
71
|
type: any;
|
|
72
|
-
default: string | number | boolean | {
|
|
72
|
+
default: string | number | boolean | Events | {
|
|
73
73
|
[key: string]: any;
|
|
74
|
-
} | import("src/_utils/props").RequestParams
|
|
74
|
+
} | import("src/_utils/props").RequestParams;
|
|
75
75
|
};
|
|
76
76
|
left: {
|
|
77
77
|
type?: undefined;
|
|
78
78
|
default?: undefined;
|
|
79
79
|
} | {
|
|
80
80
|
type: any;
|
|
81
|
-
default: string | number | boolean | {
|
|
81
|
+
default: string | number | boolean | Events | {
|
|
82
82
|
[key: string]: any;
|
|
83
|
-
} | import("src/_utils/props").RequestParams
|
|
83
|
+
} | import("src/_utils/props").RequestParams;
|
|
84
84
|
};
|
|
85
85
|
zIndex: {
|
|
86
86
|
type?: undefined;
|
|
87
87
|
default?: undefined;
|
|
88
88
|
} | {
|
|
89
89
|
type: any;
|
|
90
|
-
default: string | number | boolean | {
|
|
90
|
+
default: string | number | boolean | Events | {
|
|
91
91
|
[key: string]: any;
|
|
92
|
-
} | import("src/_utils/props").RequestParams
|
|
92
|
+
} | import("src/_utils/props").RequestParams;
|
|
93
93
|
};
|
|
94
94
|
rotate: {
|
|
95
95
|
type?: undefined;
|
|
96
96
|
default?: undefined;
|
|
97
97
|
} | {
|
|
98
98
|
type: any;
|
|
99
|
-
default: string | number | boolean | {
|
|
99
|
+
default: string | number | boolean | Events | {
|
|
100
100
|
[key: string]: any;
|
|
101
|
-
} | import("src/_utils/props").RequestParams
|
|
101
|
+
} | import("src/_utils/props").RequestParams;
|
|
102
102
|
};
|
|
103
103
|
isShow: {
|
|
104
104
|
type?: undefined;
|
|
105
105
|
default?: undefined;
|
|
106
106
|
} | {
|
|
107
107
|
type: any;
|
|
108
|
-
default: string | number | boolean | {
|
|
108
|
+
default: string | number | boolean | Events | {
|
|
109
109
|
[key: string]: any;
|
|
110
|
-
} | import("src/_utils/props").RequestParams
|
|
110
|
+
} | import("src/_utils/props").RequestParams;
|
|
111
111
|
};
|
|
112
112
|
isRender: {
|
|
113
113
|
type?: undefined;
|
|
114
114
|
default?: undefined;
|
|
115
115
|
} | {
|
|
116
116
|
type: any;
|
|
117
|
-
default: string | number | boolean | {
|
|
117
|
+
default: string | number | boolean | Events | {
|
|
118
118
|
[key: string]: any;
|
|
119
|
-
} | import("src/_utils/props").RequestParams
|
|
119
|
+
} | import("src/_utils/props").RequestParams;
|
|
120
120
|
};
|
|
121
121
|
isRequestData: {
|
|
122
122
|
type?: undefined;
|
|
123
123
|
default?: undefined;
|
|
124
124
|
} | {
|
|
125
125
|
type: any;
|
|
126
|
-
default: string | number | boolean | {
|
|
126
|
+
default: string | number | boolean | Events | {
|
|
127
127
|
[key: string]: any;
|
|
128
|
-
} | import("src/_utils/props").RequestParams
|
|
128
|
+
} | import("src/_utils/props").RequestParams;
|
|
129
129
|
};
|
|
130
|
-
|
|
130
|
+
events: {
|
|
131
131
|
type?: undefined;
|
|
132
132
|
default?: undefined;
|
|
133
133
|
} | {
|
|
134
134
|
type: any;
|
|
135
|
-
default: string | number | boolean | {
|
|
135
|
+
default: string | number | boolean | Events | {
|
|
136
136
|
[key: string]: any;
|
|
137
|
-
} | import("src/_utils/props").RequestParams
|
|
137
|
+
} | import("src/_utils/props").RequestParams;
|
|
138
138
|
};
|
|
139
|
-
|
|
139
|
+
requestUrl: {
|
|
140
140
|
type?: undefined;
|
|
141
141
|
default?: undefined;
|
|
142
142
|
} | {
|
|
143
143
|
type: any;
|
|
144
|
-
default: string | number | boolean | {
|
|
144
|
+
default: string | number | boolean | Events | {
|
|
145
145
|
[key: string]: any;
|
|
146
|
-
} | import("src/_utils/props").RequestParams
|
|
146
|
+
} | import("src/_utils/props").RequestParams;
|
|
147
147
|
};
|
|
148
|
-
|
|
148
|
+
requestMethod: {
|
|
149
149
|
type?: undefined;
|
|
150
150
|
default?: undefined;
|
|
151
151
|
} | {
|
|
152
152
|
type: any;
|
|
153
|
-
default: string | number | boolean | {
|
|
153
|
+
default: string | number | boolean | Events | {
|
|
154
154
|
[key: string]: any;
|
|
155
|
-
} | import("src/_utils/props").RequestParams
|
|
155
|
+
} | import("src/_utils/props").RequestParams;
|
|
156
156
|
};
|
|
157
|
-
|
|
157
|
+
requestHeaders: {
|
|
158
158
|
type?: undefined;
|
|
159
159
|
default?: undefined;
|
|
160
160
|
} | {
|
|
161
161
|
type: any;
|
|
162
|
-
default: string | number | boolean | {
|
|
162
|
+
default: string | number | boolean | Events | {
|
|
163
163
|
[key: string]: any;
|
|
164
|
-
} | import("src/_utils/props").RequestParams
|
|
164
|
+
} | import("src/_utils/props").RequestParams;
|
|
165
165
|
};
|
|
166
|
-
|
|
166
|
+
isOpenRequestTimer: {
|
|
167
167
|
type?: undefined;
|
|
168
168
|
default?: undefined;
|
|
169
169
|
} | {
|
|
170
170
|
type: any;
|
|
171
|
-
default: string | number | boolean | {
|
|
171
|
+
default: string | number | boolean | Events | {
|
|
172
172
|
[key: string]: any;
|
|
173
|
-
} | import("src/_utils/props").RequestParams
|
|
173
|
+
} | import("src/_utils/props").RequestParams;
|
|
174
174
|
};
|
|
175
|
-
|
|
175
|
+
requestInterval: {
|
|
176
176
|
type?: undefined;
|
|
177
177
|
default?: undefined;
|
|
178
178
|
} | {
|
|
179
179
|
type: any;
|
|
180
|
-
default: string | number | boolean | {
|
|
180
|
+
default: string | number | boolean | Events | {
|
|
181
181
|
[key: string]: any;
|
|
182
|
-
} | import("src/_utils/props").RequestParams
|
|
182
|
+
} | import("src/_utils/props").RequestParams;
|
|
183
183
|
};
|
|
184
|
-
|
|
184
|
+
requestParams: {
|
|
185
185
|
type?: undefined;
|
|
186
186
|
default?: undefined;
|
|
187
187
|
} | {
|
|
188
188
|
type: any;
|
|
189
|
-
default: string | number | boolean | {
|
|
189
|
+
default: string | number | boolean | Events | {
|
|
190
190
|
[key: string]: any;
|
|
191
|
-
} | import("src/_utils/props").RequestParams
|
|
191
|
+
} | import("src/_utils/props").RequestParams;
|
|
192
192
|
};
|
|
193
193
|
}, {
|
|
194
194
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -208,13 +208,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
208
208
|
isShow?: unknown;
|
|
209
209
|
isRender?: unknown;
|
|
210
210
|
isRequestData?: unknown;
|
|
211
|
+
events?: unknown;
|
|
211
212
|
requestUrl?: unknown;
|
|
212
213
|
requestMethod?: unknown;
|
|
213
214
|
requestHeaders?: unknown;
|
|
214
215
|
isOpenRequestTimer?: unknown;
|
|
215
216
|
requestInterval?: unknown;
|
|
216
217
|
requestParams?: unknown;
|
|
217
|
-
events?: unknown;
|
|
218
218
|
} & {} & {
|
|
219
219
|
type?: string | number | boolean | {
|
|
220
220
|
[key: string]: any;
|
|
@@ -258,6 +258,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
258
258
|
isRequestData?: string | number | boolean | {
|
|
259
259
|
[key: string]: any;
|
|
260
260
|
};
|
|
261
|
+
events?: string | number | boolean | {
|
|
262
|
+
[key: string]: any;
|
|
263
|
+
};
|
|
261
264
|
requestUrl?: string | number | boolean | {
|
|
262
265
|
[key: string]: any;
|
|
263
266
|
};
|
|
@@ -276,8 +279,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
276
279
|
requestParams?: string | number | boolean | {
|
|
277
280
|
[key: string]: any;
|
|
278
281
|
};
|
|
279
|
-
events?: string | number | boolean | {
|
|
280
|
-
[key: string]: any;
|
|
281
|
-
};
|
|
282
282
|
}>, {}>;
|
|
283
283
|
export default _default;
|
|
@@ -8,189 +8,189 @@ export declare const buttonComponentProps: {
|
|
|
8
8
|
default?: undefined;
|
|
9
9
|
} | {
|
|
10
10
|
type: any;
|
|
11
|
-
default: string | number | boolean | {
|
|
11
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
12
12
|
[key: string]: any;
|
|
13
|
-
} | import("../../_utils/props").RequestParams
|
|
13
|
+
} | import("../../_utils/props").RequestParams;
|
|
14
14
|
};
|
|
15
15
|
name: {
|
|
16
16
|
type?: undefined;
|
|
17
17
|
default?: undefined;
|
|
18
18
|
} | {
|
|
19
19
|
type: any;
|
|
20
|
-
default: string | number | boolean | {
|
|
20
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
21
21
|
[key: string]: any;
|
|
22
|
-
} | import("../../_utils/props").RequestParams
|
|
22
|
+
} | import("../../_utils/props").RequestParams;
|
|
23
23
|
};
|
|
24
24
|
keyName: {
|
|
25
25
|
type?: undefined;
|
|
26
26
|
default?: undefined;
|
|
27
27
|
} | {
|
|
28
28
|
type: any;
|
|
29
|
-
default: string | number | boolean | {
|
|
29
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
30
30
|
[key: string]: any;
|
|
31
|
-
} | import("../../_utils/props").RequestParams
|
|
31
|
+
} | import("../../_utils/props").RequestParams;
|
|
32
32
|
};
|
|
33
33
|
type: {
|
|
34
34
|
type?: undefined;
|
|
35
35
|
default?: undefined;
|
|
36
36
|
} | {
|
|
37
37
|
type: any;
|
|
38
|
-
default: string | number | boolean | {
|
|
38
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
39
39
|
[key: string]: any;
|
|
40
|
-
} | import("../../_utils/props").RequestParams
|
|
40
|
+
} | import("../../_utils/props").RequestParams;
|
|
41
41
|
};
|
|
42
42
|
width: {
|
|
43
43
|
type?: undefined;
|
|
44
44
|
default?: undefined;
|
|
45
45
|
} | {
|
|
46
46
|
type: any;
|
|
47
|
-
default: string | number | boolean | {
|
|
47
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
48
48
|
[key: string]: any;
|
|
49
|
-
} | import("../../_utils/props").RequestParams
|
|
49
|
+
} | import("../../_utils/props").RequestParams;
|
|
50
50
|
};
|
|
51
51
|
height: {
|
|
52
52
|
type?: undefined;
|
|
53
53
|
default?: undefined;
|
|
54
54
|
} | {
|
|
55
55
|
type: any;
|
|
56
|
-
default: string | number | boolean | {
|
|
56
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
57
57
|
[key: string]: any;
|
|
58
|
-
} | import("../../_utils/props").RequestParams
|
|
58
|
+
} | import("../../_utils/props").RequestParams;
|
|
59
59
|
};
|
|
60
60
|
position: {
|
|
61
61
|
type?: undefined;
|
|
62
62
|
default?: undefined;
|
|
63
63
|
} | {
|
|
64
64
|
type: any;
|
|
65
|
-
default: string | number | boolean | {
|
|
65
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
66
66
|
[key: string]: any;
|
|
67
|
-
} | import("../../_utils/props").RequestParams
|
|
67
|
+
} | import("../../_utils/props").RequestParams;
|
|
68
68
|
};
|
|
69
69
|
top: {
|
|
70
70
|
type?: undefined;
|
|
71
71
|
default?: undefined;
|
|
72
72
|
} | {
|
|
73
73
|
type: any;
|
|
74
|
-
default: string | number | boolean | {
|
|
74
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
75
75
|
[key: string]: any;
|
|
76
|
-
} | import("../../_utils/props").RequestParams
|
|
76
|
+
} | import("../../_utils/props").RequestParams;
|
|
77
77
|
};
|
|
78
78
|
left: {
|
|
79
79
|
type?: undefined;
|
|
80
80
|
default?: undefined;
|
|
81
81
|
} | {
|
|
82
82
|
type: any;
|
|
83
|
-
default: string | number | boolean | {
|
|
83
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
84
84
|
[key: string]: any;
|
|
85
|
-
} | import("../../_utils/props").RequestParams
|
|
85
|
+
} | import("../../_utils/props").RequestParams;
|
|
86
86
|
};
|
|
87
87
|
zIndex: {
|
|
88
88
|
type?: undefined;
|
|
89
89
|
default?: undefined;
|
|
90
90
|
} | {
|
|
91
91
|
type: any;
|
|
92
|
-
default: string | number | boolean | {
|
|
92
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
93
93
|
[key: string]: any;
|
|
94
|
-
} | import("../../_utils/props").RequestParams
|
|
94
|
+
} | import("../../_utils/props").RequestParams;
|
|
95
95
|
};
|
|
96
96
|
rotate: {
|
|
97
97
|
type?: undefined;
|
|
98
98
|
default?: undefined;
|
|
99
99
|
} | {
|
|
100
100
|
type: any;
|
|
101
|
-
default: string | number | boolean | {
|
|
101
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
102
102
|
[key: string]: any;
|
|
103
|
-
} | import("../../_utils/props").RequestParams
|
|
103
|
+
} | import("../../_utils/props").RequestParams;
|
|
104
104
|
};
|
|
105
105
|
isShow: {
|
|
106
106
|
type?: undefined;
|
|
107
107
|
default?: undefined;
|
|
108
108
|
} | {
|
|
109
109
|
type: any;
|
|
110
|
-
default: string | number | boolean | {
|
|
110
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
111
111
|
[key: string]: any;
|
|
112
|
-
} | import("../../_utils/props").RequestParams
|
|
112
|
+
} | import("../../_utils/props").RequestParams;
|
|
113
113
|
};
|
|
114
114
|
isRender: {
|
|
115
115
|
type?: undefined;
|
|
116
116
|
default?: undefined;
|
|
117
117
|
} | {
|
|
118
118
|
type: any;
|
|
119
|
-
default: string | number | boolean | {
|
|
119
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
120
120
|
[key: string]: any;
|
|
121
|
-
} | import("../../_utils/props").RequestParams
|
|
121
|
+
} | import("../../_utils/props").RequestParams;
|
|
122
122
|
};
|
|
123
123
|
isRequestData: {
|
|
124
124
|
type?: undefined;
|
|
125
125
|
default?: undefined;
|
|
126
126
|
} | {
|
|
127
127
|
type: any;
|
|
128
|
-
default: string | number | boolean | {
|
|
128
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
129
129
|
[key: string]: any;
|
|
130
|
-
} | import("../../_utils/props").RequestParams
|
|
130
|
+
} | import("../../_utils/props").RequestParams;
|
|
131
131
|
};
|
|
132
|
-
|
|
132
|
+
events: {
|
|
133
133
|
type?: undefined;
|
|
134
134
|
default?: undefined;
|
|
135
135
|
} | {
|
|
136
136
|
type: any;
|
|
137
|
-
default: string | number | boolean | {
|
|
137
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
138
138
|
[key: string]: any;
|
|
139
|
-
} | import("../../_utils/props").RequestParams
|
|
139
|
+
} | import("../../_utils/props").RequestParams;
|
|
140
140
|
};
|
|
141
|
-
|
|
141
|
+
requestUrl: {
|
|
142
142
|
type?: undefined;
|
|
143
143
|
default?: undefined;
|
|
144
144
|
} | {
|
|
145
145
|
type: any;
|
|
146
|
-
default: string | number | boolean | {
|
|
146
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
147
147
|
[key: string]: any;
|
|
148
|
-
} | import("../../_utils/props").RequestParams
|
|
148
|
+
} | import("../../_utils/props").RequestParams;
|
|
149
149
|
};
|
|
150
|
-
|
|
150
|
+
requestMethod: {
|
|
151
151
|
type?: undefined;
|
|
152
152
|
default?: undefined;
|
|
153
153
|
} | {
|
|
154
154
|
type: any;
|
|
155
|
-
default: string | number | boolean | {
|
|
155
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
156
156
|
[key: string]: any;
|
|
157
|
-
} | import("../../_utils/props").RequestParams
|
|
157
|
+
} | import("../../_utils/props").RequestParams;
|
|
158
158
|
};
|
|
159
|
-
|
|
159
|
+
requestHeaders: {
|
|
160
160
|
type?: undefined;
|
|
161
161
|
default?: undefined;
|
|
162
162
|
} | {
|
|
163
163
|
type: any;
|
|
164
|
-
default: string | number | boolean | {
|
|
164
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
165
165
|
[key: string]: any;
|
|
166
|
-
} | import("../../_utils/props").RequestParams
|
|
166
|
+
} | import("../../_utils/props").RequestParams;
|
|
167
167
|
};
|
|
168
|
-
|
|
168
|
+
isOpenRequestTimer: {
|
|
169
169
|
type?: undefined;
|
|
170
170
|
default?: undefined;
|
|
171
171
|
} | {
|
|
172
172
|
type: any;
|
|
173
|
-
default: string | number | boolean | {
|
|
173
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
174
174
|
[key: string]: any;
|
|
175
|
-
} | import("../../_utils/props").RequestParams
|
|
175
|
+
} | import("../../_utils/props").RequestParams;
|
|
176
176
|
};
|
|
177
|
-
|
|
177
|
+
requestInterval: {
|
|
178
178
|
type?: undefined;
|
|
179
179
|
default?: undefined;
|
|
180
180
|
} | {
|
|
181
181
|
type: any;
|
|
182
|
-
default: string | number | boolean | {
|
|
182
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
183
183
|
[key: string]: any;
|
|
184
|
-
} | import("../../_utils/props").RequestParams
|
|
184
|
+
} | import("../../_utils/props").RequestParams;
|
|
185
185
|
};
|
|
186
|
-
|
|
186
|
+
requestParams: {
|
|
187
187
|
type?: undefined;
|
|
188
188
|
default?: undefined;
|
|
189
189
|
} | {
|
|
190
190
|
type: any;
|
|
191
|
-
default: string | number | boolean | {
|
|
191
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
192
192
|
[key: string]: any;
|
|
193
|
-
} | import("../../_utils/props").RequestParams
|
|
193
|
+
} | import("../../_utils/props").RequestParams;
|
|
194
194
|
};
|
|
195
195
|
};
|
|
196
196
|
export declare const buttonEvents: string[];
|