@ecan-bi/datav 1.0.7 → 1.0.8
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/README.dev.md +16 -0
- package/README.md +0 -16
- package/dist/_utils/constant.d.ts +3 -0
- package/dist/_utils/hooks/index.d.ts +6 -0
- package/dist/_utils/hooks/useEmitEvent.d.ts +7 -0
- package/dist/_utils/hooks/useOnEvent.d.ts +6 -0
- package/dist/_utils/{hooks.d.ts → hooks/usePickComponentStyle.d.ts} +3 -2
- package/dist/_utils/hooks/usePickEchartsData.d.ts +2 -0
- package/dist/_utils/hooks/useRequestData.d.ts +14 -0
- package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +8 -0
- package/dist/_utils/props.d.ts +37 -3
- package/dist/_utils/request.d.ts +2 -0
- package/dist/_utils/util.d.ts +5 -0
- package/dist/components.d.ts +3 -0
- package/dist/container/border/index.d.ts +3 -0
- package/dist/container/border/props.d.ts +235 -0
- package/dist/container/index.d.ts +2 -0
- package/dist/container/modal/Modal.vue.d.ts +363 -0
- package/dist/container/modal/index.d.ts +3 -0
- package/dist/container/modal/props.d.ts +138 -0
- package/dist/control/button/Button.vue.d.ts +282 -0
- package/dist/control/button/index.d.ts +3 -0
- package/dist/control/button/props.d.ts +196 -0
- package/dist/control/date-picker/DatePicker.vue.d.ts +397 -0
- package/dist/control/date-picker/index.d.ts +3 -0
- package/dist/control/date-picker/props.d.ts +236 -0
- package/dist/control/index.d.ts +4 -0
- package/dist/control/input/Input.vue.d.ts +305 -3
- package/dist/control/input/index.d.ts +1 -0
- package/dist/control/input/props.d.ts +215 -0
- package/dist/control/range-picker/RangePicker.vue.d.ts +296 -0
- package/dist/control/range-picker/index.d.ts +3 -0
- package/dist/control/range-picker/props.d.ts +205 -0
- package/dist/control/select/Select.vue.d.ts +308 -0
- package/dist/control/select/index.d.ts +3 -0
- package/dist/control/select/props.d.ts +223 -0
- package/dist/graph/bar/Bar.vue.d.ts +603 -9
- package/dist/graph/bar/index.d.ts +1 -1
- package/dist/graph/bar/props.d.ts +375 -5
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +355 -0
- package/dist/graph/custom-graph/index.d.ts +3 -0
- package/dist/graph/custom-graph/props.d.ts +263 -0
- package/dist/graph/index.d.ts +1 -0
- package/dist/graph/line/Line.vue.d.ts +639 -7
- package/dist/graph/line/props.d.ts +397 -4
- package/dist/graph/pie/Pie.vue.d.ts +731 -13
- package/dist/graph/pie/index.d.ts +1 -1
- package/dist/graph/pie/props.d.ts +477 -4
- package/dist/graph/scatter/Scatter.vue.d.ts +646 -10
- package/dist/graph/scatter/index.d.ts +1 -1
- package/dist/graph/scatter/props.d.ts +398 -5
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/media/image/Image.vue.d.ts +293 -0
- package/dist/media/image/index.d.ts +3 -0
- package/dist/media/image/props.d.ts +205 -0
- package/dist/media/index.d.ts +1 -0
- package/dist/setting/index.d.ts +2 -1
- package/dist/setting/page-config/PageConfig.vue.d.ts +78 -0
- package/dist/setting/page-config/index.d.ts +3 -0
- package/dist/setting/page-config/props.d.ts +61 -0
- package/dist/setting/provider-config/ProviderConfig.vue.d.ts +34 -0
- package/dist/setting/{page-cofig → provider-config}/index.d.ts +2 -2
- package/dist/setting/provider-config/props.d.ts +29 -0
- package/dist/table/index.d.ts +1 -0
- package/dist/table/table/Table.vue.d.ts +494 -0
- package/dist/table/table/index.d.ts +3 -0
- package/dist/table/table/props.d.ts +382 -0
- package/dist/text/text/Text.vue.d.ts +383 -5
- package/dist/text/text/index.d.ts +1 -1
- package/dist/text/text/props.d.ts +264 -1
- package/package.json +15 -13
- package/dist/setting/page-cofig/PageConfig.vue.d.ts +0 -13
- package/dist/setting/page-cofig/props.d.ts +0 -8
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
import * as echarts from 'echarts';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
option: {
|
|
4
|
+
type?: undefined;
|
|
5
|
+
default?: undefined;
|
|
6
|
+
} | {
|
|
7
|
+
type: any;
|
|
8
|
+
default: string | number | boolean | {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
} | {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
13
|
+
};
|
|
14
|
+
optionCode: {
|
|
15
|
+
type?: undefined;
|
|
16
|
+
default?: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
type: any;
|
|
19
|
+
default: string | number | boolean | {
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
} | {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
24
|
+
};
|
|
25
|
+
id: {
|
|
26
|
+
type?: undefined;
|
|
27
|
+
default?: undefined;
|
|
28
|
+
} | {
|
|
29
|
+
type: any;
|
|
30
|
+
default: string | number | boolean | {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
} | {
|
|
33
|
+
[key: string]: any;
|
|
34
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
35
|
+
};
|
|
36
|
+
name: {
|
|
37
|
+
type?: undefined;
|
|
38
|
+
default?: undefined;
|
|
39
|
+
} | {
|
|
40
|
+
type: any;
|
|
41
|
+
default: string | number | boolean | {
|
|
42
|
+
[key: string]: any;
|
|
43
|
+
} | {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
46
|
+
};
|
|
47
|
+
keyName: {
|
|
48
|
+
type?: undefined;
|
|
49
|
+
default?: undefined;
|
|
50
|
+
} | {
|
|
51
|
+
type: any;
|
|
52
|
+
default: string | number | boolean | {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
} | {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
57
|
+
};
|
|
58
|
+
type: {
|
|
59
|
+
type?: undefined;
|
|
60
|
+
default?: undefined;
|
|
61
|
+
} | {
|
|
62
|
+
type: any;
|
|
63
|
+
default: string | number | boolean | {
|
|
64
|
+
[key: string]: any;
|
|
65
|
+
} | {
|
|
66
|
+
[key: string]: any;
|
|
67
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
68
|
+
};
|
|
69
|
+
width: {
|
|
70
|
+
type?: undefined;
|
|
71
|
+
default?: undefined;
|
|
72
|
+
} | {
|
|
73
|
+
type: any;
|
|
74
|
+
default: string | number | boolean | {
|
|
75
|
+
[key: string]: any;
|
|
76
|
+
} | {
|
|
77
|
+
[key: string]: any;
|
|
78
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
79
|
+
};
|
|
80
|
+
height: {
|
|
81
|
+
type?: undefined;
|
|
82
|
+
default?: undefined;
|
|
83
|
+
} | {
|
|
84
|
+
type: any;
|
|
85
|
+
default: string | number | boolean | {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
} | {
|
|
88
|
+
[key: string]: any;
|
|
89
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
90
|
+
};
|
|
91
|
+
position: {
|
|
92
|
+
type?: undefined;
|
|
93
|
+
default?: undefined;
|
|
94
|
+
} | {
|
|
95
|
+
type: any;
|
|
96
|
+
default: string | number | boolean | {
|
|
97
|
+
[key: string]: any;
|
|
98
|
+
} | {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
101
|
+
};
|
|
102
|
+
top: {
|
|
103
|
+
type?: undefined;
|
|
104
|
+
default?: undefined;
|
|
105
|
+
} | {
|
|
106
|
+
type: any;
|
|
107
|
+
default: string | number | boolean | {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
} | {
|
|
110
|
+
[key: string]: any;
|
|
111
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
112
|
+
};
|
|
113
|
+
left: {
|
|
114
|
+
type?: undefined;
|
|
115
|
+
default?: undefined;
|
|
116
|
+
} | {
|
|
117
|
+
type: any;
|
|
118
|
+
default: string | number | boolean | {
|
|
119
|
+
[key: string]: any;
|
|
120
|
+
} | {
|
|
121
|
+
[key: string]: any;
|
|
122
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
123
|
+
};
|
|
124
|
+
zIndex: {
|
|
125
|
+
type?: undefined;
|
|
126
|
+
default?: undefined;
|
|
127
|
+
} | {
|
|
128
|
+
type: any;
|
|
129
|
+
default: string | number | boolean | {
|
|
130
|
+
[key: string]: any;
|
|
131
|
+
} | {
|
|
132
|
+
[key: string]: any;
|
|
133
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
134
|
+
};
|
|
135
|
+
rotate: {
|
|
136
|
+
type?: undefined;
|
|
137
|
+
default?: undefined;
|
|
138
|
+
} | {
|
|
139
|
+
type: any;
|
|
140
|
+
default: string | number | boolean | {
|
|
141
|
+
[key: string]: any;
|
|
142
|
+
} | {
|
|
143
|
+
[key: string]: any;
|
|
144
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
145
|
+
};
|
|
146
|
+
isShow: {
|
|
147
|
+
type?: undefined;
|
|
148
|
+
default?: undefined;
|
|
149
|
+
} | {
|
|
150
|
+
type: any;
|
|
151
|
+
default: string | number | boolean | {
|
|
152
|
+
[key: string]: any;
|
|
153
|
+
} | {
|
|
154
|
+
[key: string]: any;
|
|
155
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
156
|
+
};
|
|
157
|
+
isRender: {
|
|
158
|
+
type?: undefined;
|
|
159
|
+
default?: undefined;
|
|
160
|
+
} | {
|
|
161
|
+
type: any;
|
|
162
|
+
default: string | number | boolean | {
|
|
163
|
+
[key: string]: any;
|
|
164
|
+
} | {
|
|
165
|
+
[key: string]: any;
|
|
166
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
167
|
+
};
|
|
168
|
+
isRequestData: {
|
|
169
|
+
type?: undefined;
|
|
170
|
+
default?: undefined;
|
|
171
|
+
} | {
|
|
172
|
+
type: any;
|
|
173
|
+
default: string | number | boolean | {
|
|
174
|
+
[key: string]: any;
|
|
175
|
+
} | {
|
|
176
|
+
[key: string]: any;
|
|
177
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
178
|
+
};
|
|
179
|
+
requestUrl: {
|
|
180
|
+
type?: undefined;
|
|
181
|
+
default?: undefined;
|
|
182
|
+
} | {
|
|
183
|
+
type: any;
|
|
184
|
+
default: string | number | boolean | {
|
|
185
|
+
[key: string]: any;
|
|
186
|
+
} | {
|
|
187
|
+
[key: string]: any;
|
|
188
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
189
|
+
};
|
|
190
|
+
requestMethod: {
|
|
191
|
+
type?: undefined;
|
|
192
|
+
default?: undefined;
|
|
193
|
+
} | {
|
|
194
|
+
type: any;
|
|
195
|
+
default: string | number | boolean | {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
} | {
|
|
198
|
+
[key: string]: any;
|
|
199
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
200
|
+
};
|
|
201
|
+
requestHeaders: {
|
|
202
|
+
type?: undefined;
|
|
203
|
+
default?: undefined;
|
|
204
|
+
} | {
|
|
205
|
+
type: any;
|
|
206
|
+
default: string | number | boolean | {
|
|
207
|
+
[key: string]: any;
|
|
208
|
+
} | {
|
|
209
|
+
[key: string]: any;
|
|
210
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
211
|
+
};
|
|
212
|
+
isOpenRequestTimer: {
|
|
213
|
+
type?: undefined;
|
|
214
|
+
default?: undefined;
|
|
215
|
+
} | {
|
|
216
|
+
type: any;
|
|
217
|
+
default: string | number | boolean | {
|
|
218
|
+
[key: string]: any;
|
|
219
|
+
} | {
|
|
220
|
+
[key: string]: any;
|
|
221
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
222
|
+
};
|
|
223
|
+
requestInterval: {
|
|
224
|
+
type?: undefined;
|
|
225
|
+
default?: undefined;
|
|
226
|
+
} | {
|
|
227
|
+
type: any;
|
|
228
|
+
default: string | number | boolean | {
|
|
229
|
+
[key: string]: any;
|
|
230
|
+
} | {
|
|
231
|
+
[key: string]: any;
|
|
232
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
233
|
+
};
|
|
234
|
+
requestParams: {
|
|
235
|
+
type?: undefined;
|
|
236
|
+
default?: undefined;
|
|
237
|
+
} | {
|
|
238
|
+
type: any;
|
|
239
|
+
default: string | number | boolean | {
|
|
240
|
+
[key: string]: any;
|
|
241
|
+
} | {
|
|
242
|
+
[key: string]: any;
|
|
243
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
244
|
+
};
|
|
245
|
+
events: {
|
|
246
|
+
type?: undefined;
|
|
247
|
+
default?: undefined;
|
|
248
|
+
} | {
|
|
249
|
+
type: any;
|
|
250
|
+
default: string | number | boolean | {
|
|
251
|
+
[key: string]: any;
|
|
252
|
+
} | {
|
|
253
|
+
[key: string]: any;
|
|
254
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
255
|
+
};
|
|
256
|
+
}, {
|
|
257
|
+
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
258
|
+
myOption: import("vue").Ref<any>;
|
|
259
|
+
echarts: typeof echarts;
|
|
260
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
261
|
+
option?: unknown;
|
|
262
|
+
optionCode?: unknown;
|
|
263
|
+
id?: unknown;
|
|
264
|
+
name?: unknown;
|
|
265
|
+
keyName?: unknown;
|
|
266
|
+
type?: unknown;
|
|
267
|
+
width?: unknown;
|
|
268
|
+
height?: unknown;
|
|
269
|
+
position?: unknown;
|
|
270
|
+
top?: unknown;
|
|
271
|
+
left?: unknown;
|
|
272
|
+
zIndex?: unknown;
|
|
273
|
+
rotate?: unknown;
|
|
274
|
+
isShow?: unknown;
|
|
275
|
+
isRender?: unknown;
|
|
276
|
+
isRequestData?: unknown;
|
|
277
|
+
requestUrl?: unknown;
|
|
278
|
+
requestMethod?: unknown;
|
|
279
|
+
requestHeaders?: unknown;
|
|
280
|
+
isOpenRequestTimer?: unknown;
|
|
281
|
+
requestInterval?: unknown;
|
|
282
|
+
requestParams?: unknown;
|
|
283
|
+
events?: unknown;
|
|
284
|
+
} & {} & {
|
|
285
|
+
type?: string | number | boolean | {
|
|
286
|
+
[key: string]: any;
|
|
287
|
+
};
|
|
288
|
+
option?: string | number | boolean | {
|
|
289
|
+
[key: string]: any;
|
|
290
|
+
};
|
|
291
|
+
optionCode?: string | number | boolean | {
|
|
292
|
+
[key: string]: any;
|
|
293
|
+
};
|
|
294
|
+
id?: string | number | boolean | {
|
|
295
|
+
[key: string]: any;
|
|
296
|
+
};
|
|
297
|
+
name?: string | number | boolean | {
|
|
298
|
+
[key: string]: any;
|
|
299
|
+
};
|
|
300
|
+
keyName?: string | number | boolean | {
|
|
301
|
+
[key: string]: any;
|
|
302
|
+
};
|
|
303
|
+
width?: string | number | boolean | {
|
|
304
|
+
[key: string]: any;
|
|
305
|
+
};
|
|
306
|
+
height?: string | number | boolean | {
|
|
307
|
+
[key: string]: any;
|
|
308
|
+
};
|
|
309
|
+
position?: string | number | boolean | {
|
|
310
|
+
[key: string]: any;
|
|
311
|
+
};
|
|
312
|
+
top?: string | number | boolean | {
|
|
313
|
+
[key: string]: any;
|
|
314
|
+
};
|
|
315
|
+
left?: string | number | boolean | {
|
|
316
|
+
[key: string]: any;
|
|
317
|
+
};
|
|
318
|
+
zIndex?: string | number | boolean | {
|
|
319
|
+
[key: string]: any;
|
|
320
|
+
};
|
|
321
|
+
rotate?: string | number | boolean | {
|
|
322
|
+
[key: string]: any;
|
|
323
|
+
};
|
|
324
|
+
isShow?: string | number | boolean | {
|
|
325
|
+
[key: string]: any;
|
|
326
|
+
};
|
|
327
|
+
isRender?: string | number | boolean | {
|
|
328
|
+
[key: string]: any;
|
|
329
|
+
};
|
|
330
|
+
isRequestData?: string | number | boolean | {
|
|
331
|
+
[key: string]: any;
|
|
332
|
+
};
|
|
333
|
+
requestUrl?: string | number | boolean | {
|
|
334
|
+
[key: string]: any;
|
|
335
|
+
};
|
|
336
|
+
requestMethod?: string | number | boolean | {
|
|
337
|
+
[key: string]: any;
|
|
338
|
+
};
|
|
339
|
+
requestHeaders?: string | number | boolean | {
|
|
340
|
+
[key: string]: any;
|
|
341
|
+
};
|
|
342
|
+
isOpenRequestTimer?: string | number | boolean | {
|
|
343
|
+
[key: string]: any;
|
|
344
|
+
};
|
|
345
|
+
requestInterval?: string | number | boolean | {
|
|
346
|
+
[key: string]: any;
|
|
347
|
+
};
|
|
348
|
+
requestParams?: string | number | boolean | {
|
|
349
|
+
[key: string]: any;
|
|
350
|
+
};
|
|
351
|
+
events?: string | number | boolean | {
|
|
352
|
+
[key: string]: any;
|
|
353
|
+
};
|
|
354
|
+
}>, {}>;
|
|
355
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const EcanCustomGraph: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>> & Record<string, any>;
|
|
2
|
+
export default EcanCustomGraph;
|
|
3
|
+
export * from './props';
|
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
import { Props } from '../../_utils/props';
|
|
2
|
+
export interface CustomGraphProps extends Props {
|
|
3
|
+
option: {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
};
|
|
6
|
+
optionCode: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const customGraphProps: CustomGraphProps;
|
|
9
|
+
export declare const customGraphComponentProps: {
|
|
10
|
+
option: {
|
|
11
|
+
type?: undefined;
|
|
12
|
+
default?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
type: any;
|
|
15
|
+
default: string | number | boolean | {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
} | {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
20
|
+
};
|
|
21
|
+
optionCode: {
|
|
22
|
+
type?: undefined;
|
|
23
|
+
default?: undefined;
|
|
24
|
+
} | {
|
|
25
|
+
type: any;
|
|
26
|
+
default: string | number | boolean | {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
} | {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
31
|
+
};
|
|
32
|
+
id: {
|
|
33
|
+
type?: undefined;
|
|
34
|
+
default?: undefined;
|
|
35
|
+
} | {
|
|
36
|
+
type: any;
|
|
37
|
+
default: string | number | boolean | {
|
|
38
|
+
[key: string]: any;
|
|
39
|
+
} | {
|
|
40
|
+
[key: string]: any;
|
|
41
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
42
|
+
};
|
|
43
|
+
name: {
|
|
44
|
+
type?: undefined;
|
|
45
|
+
default?: undefined;
|
|
46
|
+
} | {
|
|
47
|
+
type: any;
|
|
48
|
+
default: string | number | boolean | {
|
|
49
|
+
[key: string]: any;
|
|
50
|
+
} | {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
53
|
+
};
|
|
54
|
+
keyName: {
|
|
55
|
+
type?: undefined;
|
|
56
|
+
default?: undefined;
|
|
57
|
+
} | {
|
|
58
|
+
type: any;
|
|
59
|
+
default: string | number | boolean | {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
} | {
|
|
62
|
+
[key: string]: any;
|
|
63
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
64
|
+
};
|
|
65
|
+
type: {
|
|
66
|
+
type?: undefined;
|
|
67
|
+
default?: undefined;
|
|
68
|
+
} | {
|
|
69
|
+
type: any;
|
|
70
|
+
default: string | number | boolean | {
|
|
71
|
+
[key: string]: any;
|
|
72
|
+
} | {
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
75
|
+
};
|
|
76
|
+
width: {
|
|
77
|
+
type?: undefined;
|
|
78
|
+
default?: undefined;
|
|
79
|
+
} | {
|
|
80
|
+
type: any;
|
|
81
|
+
default: string | number | boolean | {
|
|
82
|
+
[key: string]: any;
|
|
83
|
+
} | {
|
|
84
|
+
[key: string]: any;
|
|
85
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
86
|
+
};
|
|
87
|
+
height: {
|
|
88
|
+
type?: undefined;
|
|
89
|
+
default?: undefined;
|
|
90
|
+
} | {
|
|
91
|
+
type: any;
|
|
92
|
+
default: string | number | boolean | {
|
|
93
|
+
[key: string]: any;
|
|
94
|
+
} | {
|
|
95
|
+
[key: string]: any;
|
|
96
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
97
|
+
};
|
|
98
|
+
position: {
|
|
99
|
+
type?: undefined;
|
|
100
|
+
default?: undefined;
|
|
101
|
+
} | {
|
|
102
|
+
type: any;
|
|
103
|
+
default: string | number | boolean | {
|
|
104
|
+
[key: string]: any;
|
|
105
|
+
} | {
|
|
106
|
+
[key: string]: any;
|
|
107
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
108
|
+
};
|
|
109
|
+
top: {
|
|
110
|
+
type?: undefined;
|
|
111
|
+
default?: undefined;
|
|
112
|
+
} | {
|
|
113
|
+
type: any;
|
|
114
|
+
default: string | number | boolean | {
|
|
115
|
+
[key: string]: any;
|
|
116
|
+
} | {
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
119
|
+
};
|
|
120
|
+
left: {
|
|
121
|
+
type?: undefined;
|
|
122
|
+
default?: undefined;
|
|
123
|
+
} | {
|
|
124
|
+
type: any;
|
|
125
|
+
default: string | number | boolean | {
|
|
126
|
+
[key: string]: any;
|
|
127
|
+
} | {
|
|
128
|
+
[key: string]: any;
|
|
129
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
130
|
+
};
|
|
131
|
+
zIndex: {
|
|
132
|
+
type?: undefined;
|
|
133
|
+
default?: undefined;
|
|
134
|
+
} | {
|
|
135
|
+
type: any;
|
|
136
|
+
default: string | number | boolean | {
|
|
137
|
+
[key: string]: any;
|
|
138
|
+
} | {
|
|
139
|
+
[key: string]: any;
|
|
140
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
141
|
+
};
|
|
142
|
+
rotate: {
|
|
143
|
+
type?: undefined;
|
|
144
|
+
default?: undefined;
|
|
145
|
+
} | {
|
|
146
|
+
type: any;
|
|
147
|
+
default: string | number | boolean | {
|
|
148
|
+
[key: string]: any;
|
|
149
|
+
} | {
|
|
150
|
+
[key: string]: any;
|
|
151
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
152
|
+
};
|
|
153
|
+
isShow: {
|
|
154
|
+
type?: undefined;
|
|
155
|
+
default?: undefined;
|
|
156
|
+
} | {
|
|
157
|
+
type: any;
|
|
158
|
+
default: string | number | boolean | {
|
|
159
|
+
[key: string]: any;
|
|
160
|
+
} | {
|
|
161
|
+
[key: string]: any;
|
|
162
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
163
|
+
};
|
|
164
|
+
isRender: {
|
|
165
|
+
type?: undefined;
|
|
166
|
+
default?: undefined;
|
|
167
|
+
} | {
|
|
168
|
+
type: any;
|
|
169
|
+
default: string | number | boolean | {
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
} | {
|
|
172
|
+
[key: string]: any;
|
|
173
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
174
|
+
};
|
|
175
|
+
isRequestData: {
|
|
176
|
+
type?: undefined;
|
|
177
|
+
default?: undefined;
|
|
178
|
+
} | {
|
|
179
|
+
type: any;
|
|
180
|
+
default: string | number | boolean | {
|
|
181
|
+
[key: string]: any;
|
|
182
|
+
} | {
|
|
183
|
+
[key: string]: any;
|
|
184
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
185
|
+
};
|
|
186
|
+
requestUrl: {
|
|
187
|
+
type?: undefined;
|
|
188
|
+
default?: undefined;
|
|
189
|
+
} | {
|
|
190
|
+
type: any;
|
|
191
|
+
default: string | number | boolean | {
|
|
192
|
+
[key: string]: any;
|
|
193
|
+
} | {
|
|
194
|
+
[key: string]: any;
|
|
195
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
196
|
+
};
|
|
197
|
+
requestMethod: {
|
|
198
|
+
type?: undefined;
|
|
199
|
+
default?: undefined;
|
|
200
|
+
} | {
|
|
201
|
+
type: any;
|
|
202
|
+
default: string | number | boolean | {
|
|
203
|
+
[key: string]: any;
|
|
204
|
+
} | {
|
|
205
|
+
[key: string]: any;
|
|
206
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
207
|
+
};
|
|
208
|
+
requestHeaders: {
|
|
209
|
+
type?: undefined;
|
|
210
|
+
default?: undefined;
|
|
211
|
+
} | {
|
|
212
|
+
type: any;
|
|
213
|
+
default: string | number | boolean | {
|
|
214
|
+
[key: string]: any;
|
|
215
|
+
} | {
|
|
216
|
+
[key: string]: any;
|
|
217
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
218
|
+
};
|
|
219
|
+
isOpenRequestTimer: {
|
|
220
|
+
type?: undefined;
|
|
221
|
+
default?: undefined;
|
|
222
|
+
} | {
|
|
223
|
+
type: any;
|
|
224
|
+
default: string | number | boolean | {
|
|
225
|
+
[key: string]: any;
|
|
226
|
+
} | {
|
|
227
|
+
[key: string]: any;
|
|
228
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
229
|
+
};
|
|
230
|
+
requestInterval: {
|
|
231
|
+
type?: undefined;
|
|
232
|
+
default?: undefined;
|
|
233
|
+
} | {
|
|
234
|
+
type: any;
|
|
235
|
+
default: string | number | boolean | {
|
|
236
|
+
[key: string]: any;
|
|
237
|
+
} | {
|
|
238
|
+
[key: string]: any;
|
|
239
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
240
|
+
};
|
|
241
|
+
requestParams: {
|
|
242
|
+
type?: undefined;
|
|
243
|
+
default?: undefined;
|
|
244
|
+
} | {
|
|
245
|
+
type: any;
|
|
246
|
+
default: string | number | boolean | {
|
|
247
|
+
[key: string]: any;
|
|
248
|
+
} | {
|
|
249
|
+
[key: string]: any;
|
|
250
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
251
|
+
};
|
|
252
|
+
events: {
|
|
253
|
+
type?: undefined;
|
|
254
|
+
default?: undefined;
|
|
255
|
+
} | {
|
|
256
|
+
type: any;
|
|
257
|
+
default: string | number | boolean | {
|
|
258
|
+
[key: string]: any;
|
|
259
|
+
} | {
|
|
260
|
+
[key: string]: any;
|
|
261
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
262
|
+
};
|
|
263
|
+
};
|
package/dist/graph/index.d.ts
CHANGED