@ecan-bi/datav 1.0.22 → 1.0.25

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.
Files changed (63) hide show
  1. package/dist/_utils/constant.d.ts +3 -7
  2. package/dist/_utils/diagramParam.d.ts +145 -0
  3. package/dist/_utils/hooks/index.d.ts +2 -0
  4. package/dist/_utils/hooks/usePageUrl.d.ts +2 -0
  5. package/dist/_utils/hooks/useRequestDiagram.d.ts +5 -0
  6. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +17 -0
  7. package/dist/_utils/hooks/useVariablesInText.d.ts +4 -0
  8. package/dist/_utils/props.d.ts +1 -1
  9. package/dist/_utils/propsDiagram.d.ts +52 -0
  10. package/dist/common/Skeleton/Skeleton.vue.d.ts +1 -0
  11. package/dist/components.d.ts +1 -0
  12. package/dist/container/border/Border.vue.d.ts +360 -0
  13. package/dist/container/border/props.d.ts +11 -10
  14. package/dist/container/card/props.d.ts +9 -9
  15. package/dist/container/modal/Modal.vue.d.ts +2 -0
  16. package/dist/control/button/Button.vue.d.ts +13 -13
  17. package/dist/control/button/props.d.ts +9 -9
  18. package/dist/control/date-picker/DatePicker.vue.d.ts +13 -13
  19. package/dist/control/date-picker/props.d.ts +9 -9
  20. package/dist/control/input/Input.vue.d.ts +13 -13
  21. package/dist/control/input/props.d.ts +9 -9
  22. package/dist/control/range-picker/RangePicker.vue.d.ts +13 -13
  23. package/dist/control/range-picker/props.d.ts +9 -9
  24. package/dist/control/select/Select.vue.d.ts +13 -13
  25. package/dist/control/select/props.d.ts +9 -9
  26. package/dist/control/tabs/Tabs.vue.d.ts +10 -10
  27. package/dist/control/tabs/props.d.ts +7 -7
  28. package/dist/graph/bar/Bar.vue.d.ts +1800 -59
  29. package/dist/graph/bar/props.d.ts +1794 -55
  30. package/dist/graph/combo-graph/ComboGraph.vue.d.ts +13 -13
  31. package/dist/graph/combo-graph/props.d.ts +9 -9
  32. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +13 -13
  33. package/dist/graph/custom-graph/props.d.ts +9 -9
  34. package/dist/graph/line/Line.vue.d.ts +13 -13
  35. package/dist/graph/line/props.d.ts +9 -9
  36. package/dist/graph/pie/Pie.vue.d.ts +14 -13
  37. package/dist/graph/pie/props.d.ts +9 -9
  38. package/dist/graph/scatter/Scatter.vue.d.ts +213 -17
  39. package/dist/graph/scatter/props.d.ts +126 -9
  40. package/dist/index.esm.js +1 -16
  41. package/dist/index.umd.js +1 -16
  42. package/dist/map/index.d.ts +1 -0
  43. package/dist/map/map/Map.vue.d.ts +710 -0
  44. package/dist/map/map/index.d.ts +3 -0
  45. package/dist/map/map/props.d.ts +514 -0
  46. package/dist/media/image/Image.vue.d.ts +53 -13
  47. package/dist/media/image/props.d.ts +39 -9
  48. package/dist/setting/provider-config/props.d.ts +1 -1
  49. package/dist/table/table/Table.vue.d.ts +1401 -51
  50. package/dist/table/table/props.d.ts +1392 -45
  51. package/dist/text/index.d.ts +1 -0
  52. package/dist/text/list/List.vue.d.ts +13 -13
  53. package/dist/text/list/props.d.ts +9 -9
  54. package/dist/text/proportion/Proportion.vue.d.ts +524 -0
  55. package/dist/text/proportion/index.d.ts +3 -0
  56. package/dist/text/proportion/props.d.ts +395 -0
  57. package/dist/text/text/Text.vue.d.ts +68 -51
  58. package/dist/text/text/props.d.ts +25 -13
  59. package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -13
  60. package/dist/text/time-display/props.d.ts +9 -9
  61. package/package.json +1 -1
  62. package/dist/index.esm.js.map +0 -1
  63. package/dist/index.umd.js.map +0 -1
@@ -0,0 +1,514 @@
1
+ import { Props } from '../../_utils/props';
2
+ export interface MapProps extends Props {
3
+ mapJson: {
4
+ name: string;
5
+ value: string;
6
+ } | null;
7
+ data: {
8
+ [key: string]: any;
9
+ }[];
10
+ labelShow: boolean;
11
+ labelColor: string;
12
+ labelFontSize: number;
13
+ itemStyleAreaColor: string;
14
+ itemStyleBorderColor: string;
15
+ emphasisLabelColor: string;
16
+ emphasisItemStyleAreaColor: string;
17
+ emphasisItemStyleBorderColor: string;
18
+ selectLabelColor: string;
19
+ selectItemStyleAreaColor: string;
20
+ selectItemStyleBorderColor: string;
21
+ }
22
+ export declare const mapProps: MapProps;
23
+ export declare const mapComponentProps: {
24
+ mapJson: {
25
+ type?: undefined;
26
+ default?: undefined;
27
+ } | {
28
+ type: any;
29
+ default: string | number | boolean | {
30
+ name: string;
31
+ value: string;
32
+ } | {
33
+ [key: string]: any;
34
+ }[] | import("../../_utils/props").Events | {
35
+ [key: string]: any;
36
+ } | import("../../_utils/props").RequestParams;
37
+ };
38
+ data: {
39
+ type?: undefined;
40
+ default?: undefined;
41
+ } | {
42
+ type: any;
43
+ default: string | number | boolean | {
44
+ name: string;
45
+ value: string;
46
+ } | {
47
+ [key: string]: any;
48
+ }[] | import("../../_utils/props").Events | {
49
+ [key: string]: any;
50
+ } | import("../../_utils/props").RequestParams;
51
+ };
52
+ labelShow: {
53
+ type?: undefined;
54
+ default?: undefined;
55
+ } | {
56
+ type: any;
57
+ default: string | number | boolean | {
58
+ name: string;
59
+ value: string;
60
+ } | {
61
+ [key: string]: any;
62
+ }[] | import("../../_utils/props").Events | {
63
+ [key: string]: any;
64
+ } | import("../../_utils/props").RequestParams;
65
+ };
66
+ labelColor: {
67
+ type?: undefined;
68
+ default?: undefined;
69
+ } | {
70
+ type: any;
71
+ default: string | number | boolean | {
72
+ name: string;
73
+ value: string;
74
+ } | {
75
+ [key: string]: any;
76
+ }[] | import("../../_utils/props").Events | {
77
+ [key: string]: any;
78
+ } | import("../../_utils/props").RequestParams;
79
+ };
80
+ labelFontSize: {
81
+ type?: undefined;
82
+ default?: undefined;
83
+ } | {
84
+ type: any;
85
+ default: string | number | boolean | {
86
+ name: string;
87
+ value: string;
88
+ } | {
89
+ [key: string]: any;
90
+ }[] | import("../../_utils/props").Events | {
91
+ [key: string]: any;
92
+ } | import("../../_utils/props").RequestParams;
93
+ };
94
+ itemStyleAreaColor: {
95
+ type?: undefined;
96
+ default?: undefined;
97
+ } | {
98
+ type: any;
99
+ default: string | number | boolean | {
100
+ name: string;
101
+ value: string;
102
+ } | {
103
+ [key: string]: any;
104
+ }[] | import("../../_utils/props").Events | {
105
+ [key: string]: any;
106
+ } | import("../../_utils/props").RequestParams;
107
+ };
108
+ itemStyleBorderColor: {
109
+ type?: undefined;
110
+ default?: undefined;
111
+ } | {
112
+ type: any;
113
+ default: string | number | boolean | {
114
+ name: string;
115
+ value: string;
116
+ } | {
117
+ [key: string]: any;
118
+ }[] | import("../../_utils/props").Events | {
119
+ [key: string]: any;
120
+ } | import("../../_utils/props").RequestParams;
121
+ };
122
+ emphasisLabelColor: {
123
+ type?: undefined;
124
+ default?: undefined;
125
+ } | {
126
+ type: any;
127
+ default: string | number | boolean | {
128
+ name: string;
129
+ value: string;
130
+ } | {
131
+ [key: string]: any;
132
+ }[] | import("../../_utils/props").Events | {
133
+ [key: string]: any;
134
+ } | import("../../_utils/props").RequestParams;
135
+ };
136
+ emphasisItemStyleAreaColor: {
137
+ type?: undefined;
138
+ default?: undefined;
139
+ } | {
140
+ type: any;
141
+ default: string | number | boolean | {
142
+ name: string;
143
+ value: string;
144
+ } | {
145
+ [key: string]: any;
146
+ }[] | import("../../_utils/props").Events | {
147
+ [key: string]: any;
148
+ } | import("../../_utils/props").RequestParams;
149
+ };
150
+ emphasisItemStyleBorderColor: {
151
+ type?: undefined;
152
+ default?: undefined;
153
+ } | {
154
+ type: any;
155
+ default: string | number | boolean | {
156
+ name: string;
157
+ value: string;
158
+ } | {
159
+ [key: string]: any;
160
+ }[] | import("../../_utils/props").Events | {
161
+ [key: string]: any;
162
+ } | import("../../_utils/props").RequestParams;
163
+ };
164
+ selectLabelColor: {
165
+ type?: undefined;
166
+ default?: undefined;
167
+ } | {
168
+ type: any;
169
+ default: string | number | boolean | {
170
+ name: string;
171
+ value: string;
172
+ } | {
173
+ [key: string]: any;
174
+ }[] | import("../../_utils/props").Events | {
175
+ [key: string]: any;
176
+ } | import("../../_utils/props").RequestParams;
177
+ };
178
+ selectItemStyleAreaColor: {
179
+ type?: undefined;
180
+ default?: undefined;
181
+ } | {
182
+ type: any;
183
+ default: string | number | boolean | {
184
+ name: string;
185
+ value: string;
186
+ } | {
187
+ [key: string]: any;
188
+ }[] | import("../../_utils/props").Events | {
189
+ [key: string]: any;
190
+ } | import("../../_utils/props").RequestParams;
191
+ };
192
+ selectItemStyleBorderColor: {
193
+ type?: undefined;
194
+ default?: undefined;
195
+ } | {
196
+ type: any;
197
+ default: string | number | boolean | {
198
+ name: string;
199
+ value: string;
200
+ } | {
201
+ [key: string]: any;
202
+ }[] | import("../../_utils/props").Events | {
203
+ [key: string]: any;
204
+ } | import("../../_utils/props").RequestParams;
205
+ };
206
+ id: {
207
+ type?: undefined;
208
+ default?: undefined;
209
+ } | {
210
+ type: any;
211
+ default: string | number | boolean | {
212
+ name: string;
213
+ value: string;
214
+ } | {
215
+ [key: string]: any;
216
+ }[] | import("../../_utils/props").Events | {
217
+ [key: string]: any;
218
+ } | import("../../_utils/props").RequestParams;
219
+ };
220
+ name: {
221
+ type?: undefined;
222
+ default?: undefined;
223
+ } | {
224
+ type: any;
225
+ default: string | number | boolean | {
226
+ name: string;
227
+ value: string;
228
+ } | {
229
+ [key: string]: any;
230
+ }[] | import("../../_utils/props").Events | {
231
+ [key: string]: any;
232
+ } | import("../../_utils/props").RequestParams;
233
+ };
234
+ keyName: {
235
+ type?: undefined;
236
+ default?: undefined;
237
+ } | {
238
+ type: any;
239
+ default: string | number | boolean | {
240
+ name: string;
241
+ value: string;
242
+ } | {
243
+ [key: string]: any;
244
+ }[] | import("../../_utils/props").Events | {
245
+ [key: string]: any;
246
+ } | import("../../_utils/props").RequestParams;
247
+ };
248
+ type: {
249
+ type?: undefined;
250
+ default?: undefined;
251
+ } | {
252
+ type: any;
253
+ default: string | number | boolean | {
254
+ name: string;
255
+ value: string;
256
+ } | {
257
+ [key: string]: any;
258
+ }[] | import("../../_utils/props").Events | {
259
+ [key: string]: any;
260
+ } | import("../../_utils/props").RequestParams;
261
+ };
262
+ width: {
263
+ type?: undefined;
264
+ default?: undefined;
265
+ } | {
266
+ type: any;
267
+ default: string | number | boolean | {
268
+ name: string;
269
+ value: string;
270
+ } | {
271
+ [key: string]: any;
272
+ }[] | import("../../_utils/props").Events | {
273
+ [key: string]: any;
274
+ } | import("../../_utils/props").RequestParams;
275
+ };
276
+ height: {
277
+ type?: undefined;
278
+ default?: undefined;
279
+ } | {
280
+ type: any;
281
+ default: string | number | boolean | {
282
+ name: string;
283
+ value: string;
284
+ } | {
285
+ [key: string]: any;
286
+ }[] | import("../../_utils/props").Events | {
287
+ [key: string]: any;
288
+ } | import("../../_utils/props").RequestParams;
289
+ };
290
+ position: {
291
+ type?: undefined;
292
+ default?: undefined;
293
+ } | {
294
+ type: any;
295
+ default: string | number | boolean | {
296
+ name: string;
297
+ value: string;
298
+ } | {
299
+ [key: string]: any;
300
+ }[] | import("../../_utils/props").Events | {
301
+ [key: string]: any;
302
+ } | import("../../_utils/props").RequestParams;
303
+ };
304
+ top: {
305
+ type?: undefined;
306
+ default?: undefined;
307
+ } | {
308
+ type: any;
309
+ default: string | number | boolean | {
310
+ name: string;
311
+ value: string;
312
+ } | {
313
+ [key: string]: any;
314
+ }[] | import("../../_utils/props").Events | {
315
+ [key: string]: any;
316
+ } | import("../../_utils/props").RequestParams;
317
+ };
318
+ left: {
319
+ type?: undefined;
320
+ default?: undefined;
321
+ } | {
322
+ type: any;
323
+ default: string | number | boolean | {
324
+ name: string;
325
+ value: string;
326
+ } | {
327
+ [key: string]: any;
328
+ }[] | import("../../_utils/props").Events | {
329
+ [key: string]: any;
330
+ } | import("../../_utils/props").RequestParams;
331
+ };
332
+ zIndex: {
333
+ type?: undefined;
334
+ default?: undefined;
335
+ } | {
336
+ type: any;
337
+ default: string | number | boolean | {
338
+ name: string;
339
+ value: string;
340
+ } | {
341
+ [key: string]: any;
342
+ }[] | import("../../_utils/props").Events | {
343
+ [key: string]: any;
344
+ } | import("../../_utils/props").RequestParams;
345
+ };
346
+ rotate: {
347
+ type?: undefined;
348
+ default?: undefined;
349
+ } | {
350
+ type: any;
351
+ default: string | number | boolean | {
352
+ name: string;
353
+ value: string;
354
+ } | {
355
+ [key: string]: any;
356
+ }[] | import("../../_utils/props").Events | {
357
+ [key: string]: any;
358
+ } | import("../../_utils/props").RequestParams;
359
+ };
360
+ isShow: {
361
+ type?: undefined;
362
+ default?: undefined;
363
+ } | {
364
+ type: any;
365
+ default: string | number | boolean | {
366
+ name: string;
367
+ value: string;
368
+ } | {
369
+ [key: string]: any;
370
+ }[] | import("../../_utils/props").Events | {
371
+ [key: string]: any;
372
+ } | import("../../_utils/props").RequestParams;
373
+ };
374
+ isRender: {
375
+ type?: undefined;
376
+ default?: undefined;
377
+ } | {
378
+ type: any;
379
+ default: string | number | boolean | {
380
+ name: string;
381
+ value: string;
382
+ } | {
383
+ [key: string]: any;
384
+ }[] | import("../../_utils/props").Events | {
385
+ [key: string]: any;
386
+ } | import("../../_utils/props").RequestParams;
387
+ };
388
+ events: {
389
+ type?: undefined;
390
+ default?: undefined;
391
+ } | {
392
+ type: any;
393
+ default: string | number | boolean | {
394
+ name: string;
395
+ value: string;
396
+ } | {
397
+ [key: string]: any;
398
+ }[] | import("../../_utils/props").Events | {
399
+ [key: string]: any;
400
+ } | import("../../_utils/props").RequestParams;
401
+ };
402
+ requestUrl: {
403
+ type?: undefined;
404
+ default?: undefined;
405
+ } | {
406
+ type: any;
407
+ default: string | number | boolean | {
408
+ name: string;
409
+ value: string;
410
+ } | {
411
+ [key: string]: any;
412
+ }[] | import("../../_utils/props").Events | {
413
+ [key: string]: any;
414
+ } | import("../../_utils/props").RequestParams;
415
+ };
416
+ requestMethod: {
417
+ type?: undefined;
418
+ default?: undefined;
419
+ } | {
420
+ type: any;
421
+ default: string | number | boolean | {
422
+ name: string;
423
+ value: string;
424
+ } | {
425
+ [key: string]: any;
426
+ }[] | import("../../_utils/props").Events | {
427
+ [key: string]: any;
428
+ } | import("../../_utils/props").RequestParams;
429
+ };
430
+ requestHeaders: {
431
+ type?: undefined;
432
+ default?: undefined;
433
+ } | {
434
+ type: any;
435
+ default: string | number | boolean | {
436
+ name: string;
437
+ value: string;
438
+ } | {
439
+ [key: string]: any;
440
+ }[] | import("../../_utils/props").Events | {
441
+ [key: string]: any;
442
+ } | import("../../_utils/props").RequestParams;
443
+ };
444
+ isOpenRequestTimer: {
445
+ type?: undefined;
446
+ default?: undefined;
447
+ } | {
448
+ type: any;
449
+ default: string | number | boolean | {
450
+ name: string;
451
+ value: string;
452
+ } | {
453
+ [key: string]: any;
454
+ }[] | import("../../_utils/props").Events | {
455
+ [key: string]: any;
456
+ } | import("../../_utils/props").RequestParams;
457
+ };
458
+ requestInterval: {
459
+ type?: undefined;
460
+ default?: undefined;
461
+ } | {
462
+ type: any;
463
+ default: string | number | boolean | {
464
+ name: string;
465
+ value: string;
466
+ } | {
467
+ [key: string]: any;
468
+ }[] | import("../../_utils/props").Events | {
469
+ [key: string]: any;
470
+ } | import("../../_utils/props").RequestParams;
471
+ };
472
+ requestParams: {
473
+ type?: undefined;
474
+ default?: undefined;
475
+ } | {
476
+ type: any;
477
+ default: string | number | boolean | {
478
+ name: string;
479
+ value: string;
480
+ } | {
481
+ [key: string]: any;
482
+ }[] | import("../../_utils/props").Events | {
483
+ [key: string]: any;
484
+ } | import("../../_utils/props").RequestParams;
485
+ };
486
+ requestSort: {
487
+ type?: undefined;
488
+ default?: undefined;
489
+ } | {
490
+ type: any;
491
+ default: string | number | boolean | {
492
+ name: string;
493
+ value: string;
494
+ } | {
495
+ [key: string]: any;
496
+ }[] | import("../../_utils/props").Events | {
497
+ [key: string]: any;
498
+ } | import("../../_utils/props").RequestParams;
499
+ };
500
+ dataType: {
501
+ type?: undefined;
502
+ default?: undefined;
503
+ } | {
504
+ type: any;
505
+ default: string | number | boolean | {
506
+ name: string;
507
+ value: string;
508
+ } | {
509
+ [key: string]: any;
510
+ }[] | import("../../_utils/props").Events | {
511
+ [key: string]: any;
512
+ } | import("../../_utils/props").RequestParams;
513
+ };
514
+ };
@@ -8,6 +8,33 @@ declare const _default: import("vue").DefineComponent<{
8
8
  [key: string]: any;
9
9
  } | import("../../_utils/props").RequestParams;
10
10
  };
11
+ linkUrl: {
12
+ type?: undefined;
13
+ default?: undefined;
14
+ } | {
15
+ type: any;
16
+ default: string | number | boolean | import("../../_utils/props").Events | {
17
+ [key: string]: any;
18
+ } | import("../../_utils/props").RequestParams;
19
+ };
20
+ linkMethod: {
21
+ type?: undefined;
22
+ default?: undefined;
23
+ } | {
24
+ type: any;
25
+ default: string | number | boolean | import("../../_utils/props").Events | {
26
+ [key: string]: any;
27
+ } | import("../../_utils/props").RequestParams;
28
+ };
29
+ linkPage: {
30
+ type?: undefined;
31
+ default?: undefined;
32
+ } | {
33
+ type: any;
34
+ default: string | number | boolean | import("../../_utils/props").Events | {
35
+ [key: string]: any;
36
+ } | import("../../_utils/props").RequestParams;
37
+ };
11
38
  id: {
12
39
  type?: undefined;
13
40
  default?: undefined;
@@ -125,15 +152,6 @@ declare const _default: import("vue").DefineComponent<{
125
152
  [key: string]: any;
126
153
  } | import("../../_utils/props").RequestParams;
127
154
  };
128
- isRequestData: {
129
- type?: undefined;
130
- default?: undefined;
131
- } | {
132
- type: any;
133
- default: string | number | boolean | import("../../_utils/props").Events | {
134
- [key: string]: any;
135
- } | import("../../_utils/props").RequestParams;
136
- };
137
155
  events: {
138
156
  type?: undefined;
139
157
  default?: undefined;
@@ -206,11 +224,24 @@ declare const _default: import("vue").DefineComponent<{
206
224
  [key: string]: any;
207
225
  } | import("../../_utils/props").RequestParams;
208
226
  };
227
+ dataType: {
228
+ type?: undefined;
229
+ default?: undefined;
230
+ } | {
231
+ type: any;
232
+ default: string | number | boolean | import("../../_utils/props").Events | {
233
+ [key: string]: any;
234
+ } | import("../../_utils/props").RequestParams;
235
+ };
209
236
  }, {
210
237
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
211
238
  myImgUrl: import("vue").ComputedRef<string>;
239
+ onClick: () => void;
212
240
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
213
241
  imgUrl?: unknown;
242
+ linkUrl?: unknown;
243
+ linkMethod?: unknown;
244
+ linkPage?: unknown;
214
245
  id?: unknown;
215
246
  name?: unknown;
216
247
  keyName?: unknown;
@@ -224,7 +255,6 @@ declare const _default: import("vue").DefineComponent<{
224
255
  rotate?: unknown;
225
256
  isShow?: unknown;
226
257
  isRender?: unknown;
227
- isRequestData?: unknown;
228
258
  events?: unknown;
229
259
  requestUrl?: unknown;
230
260
  requestMethod?: unknown;
@@ -233,6 +263,7 @@ declare const _default: import("vue").DefineComponent<{
233
263
  requestInterval?: unknown;
234
264
  requestParams?: unknown;
235
265
  requestSort?: unknown;
266
+ dataType?: unknown;
236
267
  } & {} & {
237
268
  type?: string | number | boolean | {
238
269
  [key: string]: any;
@@ -240,6 +271,15 @@ declare const _default: import("vue").DefineComponent<{
240
271
  imgUrl?: string | number | boolean | {
241
272
  [key: string]: any;
242
273
  };
274
+ linkUrl?: string | number | boolean | {
275
+ [key: string]: any;
276
+ };
277
+ linkMethod?: string | number | boolean | {
278
+ [key: string]: any;
279
+ };
280
+ linkPage?: string | number | boolean | {
281
+ [key: string]: any;
282
+ };
243
283
  id?: string | number | boolean | {
244
284
  [key: string]: any;
245
285
  };
@@ -276,9 +316,6 @@ declare const _default: import("vue").DefineComponent<{
276
316
  isRender?: string | number | boolean | {
277
317
  [key: string]: any;
278
318
  };
279
- isRequestData?: string | number | boolean | {
280
- [key: string]: any;
281
- };
282
319
  events?: string | number | boolean | {
283
320
  [key: string]: any;
284
321
  };
@@ -303,5 +340,8 @@ declare const _default: import("vue").DefineComponent<{
303
340
  requestSort?: string | number | boolean | {
304
341
  [key: string]: any;
305
342
  };
343
+ dataType?: string | number | boolean | {
344
+ [key: string]: any;
345
+ };
306
346
  }>, {}>;
307
347
  export default _default;
@@ -1,6 +1,9 @@
1
1
  import { Props } from '../../_utils/props';
2
2
  export interface ImageProps extends Props {
3
3
  imgUrl: string;
4
+ linkUrl: string;
5
+ linkMethod: '_self' | '_blank';
6
+ linkPage: string;
4
7
  }
5
8
  export declare const imageProps: ImageProps;
6
9
  export declare const imageComponentProps: {
@@ -13,6 +16,33 @@ export declare const imageComponentProps: {
13
16
  [key: string]: any;
14
17
  } | import("../../_utils/props").RequestParams;
15
18
  };
19
+ linkUrl: {
20
+ type?: undefined;
21
+ default?: undefined;
22
+ } | {
23
+ type: any;
24
+ default: string | number | boolean | import("../../_utils/props").Events | {
25
+ [key: string]: any;
26
+ } | import("../../_utils/props").RequestParams;
27
+ };
28
+ linkMethod: {
29
+ type?: undefined;
30
+ default?: undefined;
31
+ } | {
32
+ type: any;
33
+ default: string | number | boolean | import("../../_utils/props").Events | {
34
+ [key: string]: any;
35
+ } | import("../../_utils/props").RequestParams;
36
+ };
37
+ linkPage: {
38
+ type?: undefined;
39
+ default?: undefined;
40
+ } | {
41
+ type: any;
42
+ default: string | number | boolean | import("../../_utils/props").Events | {
43
+ [key: string]: any;
44
+ } | import("../../_utils/props").RequestParams;
45
+ };
16
46
  id: {
17
47
  type?: undefined;
18
48
  default?: undefined;
@@ -130,15 +160,6 @@ export declare const imageComponentProps: {
130
160
  [key: string]: any;
131
161
  } | import("../../_utils/props").RequestParams;
132
162
  };
133
- isRequestData: {
134
- type?: undefined;
135
- default?: undefined;
136
- } | {
137
- type: any;
138
- default: string | number | boolean | import("../../_utils/props").Events | {
139
- [key: string]: any;
140
- } | import("../../_utils/props").RequestParams;
141
- };
142
163
  events: {
143
164
  type?: undefined;
144
165
  default?: undefined;
@@ -211,4 +232,13 @@ export declare const imageComponentProps: {
211
232
  [key: string]: any;
212
233
  } | import("../../_utils/props").RequestParams;
213
234
  };
235
+ dataType: {
236
+ type?: undefined;
237
+ default?: undefined;
238
+ } | {
239
+ type: any;
240
+ default: string | number | boolean | import("../../_utils/props").Events | {
241
+ [key: string]: any;
242
+ } | import("../../_utils/props").RequestParams;
243
+ };
214
244
  };