@ecan-bi/datav 1.0.31 → 1.0.34
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 +0 -1
- package/dist/_utils/hooks/index.d.ts +1 -0
- package/dist/_utils/hooks/useAxisLabelFormatter.d.ts +2 -0
- package/dist/_utils/util.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +39 -0
- package/dist/graph/bar/Bar.vue.d.ts +33 -8
- package/dist/graph/bar/props.d.ts +21 -5
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +103 -1
- package/dist/graph/combo-graph/props.d.ts +70 -0
- package/dist/graph/line/Line.vue.d.ts +96 -0
- package/dist/graph/line/props.d.ts +60 -0
- package/dist/graph/pie/Pie.vue.d.ts +82 -0
- package/dist/graph/pie/props.d.ts +50 -0
- package/dist/graph/scatter/Scatter.vue.d.ts +114 -0
- package/dist/graph/scatter/props.d.ts +78 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
|
@@ -21,9 +21,15 @@ export interface LineProps extends Props {
|
|
|
21
21
|
yAxisSplitLineStyleColor: string;
|
|
22
22
|
yAxisLabelColor: string;
|
|
23
23
|
yAxisLineStyleColor: string;
|
|
24
|
+
yAxisLabelFormatter: string;
|
|
24
25
|
valueTypeDataFieldNames: ValueTypeDataFieldNames;
|
|
25
26
|
keyTypeDataFieldNames: KeyTypeDataFieldNames;
|
|
26
27
|
dataFieldConfigType: 'key' | 'value';
|
|
28
|
+
gridContainLabel: boolean;
|
|
29
|
+
gridTop: string;
|
|
30
|
+
gridBottom: string;
|
|
31
|
+
gridLeft: string;
|
|
32
|
+
gridRight: string;
|
|
27
33
|
}
|
|
28
34
|
export declare const lineProps: LineProps;
|
|
29
35
|
export declare const lineComponentProps: {
|
|
@@ -216,6 +222,15 @@ export declare const lineComponentProps: {
|
|
|
216
222
|
[key: string]: any;
|
|
217
223
|
} | import("../../_utils/props").RequestParams;
|
|
218
224
|
};
|
|
225
|
+
yAxisLabelFormatter: {
|
|
226
|
+
type?: undefined;
|
|
227
|
+
default?: undefined;
|
|
228
|
+
} | {
|
|
229
|
+
type: any;
|
|
230
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
231
|
+
[key: string]: any;
|
|
232
|
+
} | import("../../_utils/props").RequestParams;
|
|
233
|
+
};
|
|
219
234
|
valueTypeDataFieldNames: {
|
|
220
235
|
type?: undefined;
|
|
221
236
|
default?: undefined;
|
|
@@ -243,6 +258,51 @@ export declare const lineComponentProps: {
|
|
|
243
258
|
[key: string]: any;
|
|
244
259
|
} | import("../../_utils/props").RequestParams;
|
|
245
260
|
};
|
|
261
|
+
gridContainLabel: {
|
|
262
|
+
type?: undefined;
|
|
263
|
+
default?: undefined;
|
|
264
|
+
} | {
|
|
265
|
+
type: any;
|
|
266
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
267
|
+
[key: string]: any;
|
|
268
|
+
} | import("../../_utils/props").RequestParams;
|
|
269
|
+
};
|
|
270
|
+
gridTop: {
|
|
271
|
+
type?: undefined;
|
|
272
|
+
default?: undefined;
|
|
273
|
+
} | {
|
|
274
|
+
type: any;
|
|
275
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
} | import("../../_utils/props").RequestParams;
|
|
278
|
+
};
|
|
279
|
+
gridBottom: {
|
|
280
|
+
type?: undefined;
|
|
281
|
+
default?: undefined;
|
|
282
|
+
} | {
|
|
283
|
+
type: any;
|
|
284
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
285
|
+
[key: string]: any;
|
|
286
|
+
} | import("../../_utils/props").RequestParams;
|
|
287
|
+
};
|
|
288
|
+
gridLeft: {
|
|
289
|
+
type?: undefined;
|
|
290
|
+
default?: undefined;
|
|
291
|
+
} | {
|
|
292
|
+
type: any;
|
|
293
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
294
|
+
[key: string]: any;
|
|
295
|
+
} | import("../../_utils/props").RequestParams;
|
|
296
|
+
};
|
|
297
|
+
gridRight: {
|
|
298
|
+
type?: undefined;
|
|
299
|
+
default?: undefined;
|
|
300
|
+
} | {
|
|
301
|
+
type: any;
|
|
302
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
303
|
+
[key: string]: any;
|
|
304
|
+
} | import("../../_utils/props").RequestParams;
|
|
305
|
+
};
|
|
246
306
|
id: {
|
|
247
307
|
type?: undefined;
|
|
248
308
|
default?: undefined;
|
|
@@ -279,6 +279,51 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
279
279
|
[key: string]: any;
|
|
280
280
|
} | import("src/_utils/props").RequestParams;
|
|
281
281
|
};
|
|
282
|
+
gridContainLabel: {
|
|
283
|
+
type?: undefined;
|
|
284
|
+
default?: undefined;
|
|
285
|
+
} | {
|
|
286
|
+
type: any;
|
|
287
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
288
|
+
[key: string]: any;
|
|
289
|
+
} | import("src/_utils/props").RequestParams;
|
|
290
|
+
};
|
|
291
|
+
gridTop: {
|
|
292
|
+
type?: undefined;
|
|
293
|
+
default?: undefined;
|
|
294
|
+
} | {
|
|
295
|
+
type: any;
|
|
296
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
297
|
+
[key: string]: any;
|
|
298
|
+
} | import("src/_utils/props").RequestParams;
|
|
299
|
+
};
|
|
300
|
+
gridBottom: {
|
|
301
|
+
type?: undefined;
|
|
302
|
+
default?: undefined;
|
|
303
|
+
} | {
|
|
304
|
+
type: any;
|
|
305
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
306
|
+
[key: string]: any;
|
|
307
|
+
} | import("src/_utils/props").RequestParams;
|
|
308
|
+
};
|
|
309
|
+
gridLeft: {
|
|
310
|
+
type?: undefined;
|
|
311
|
+
default?: undefined;
|
|
312
|
+
} | {
|
|
313
|
+
type: any;
|
|
314
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
315
|
+
[key: string]: any;
|
|
316
|
+
} | import("src/_utils/props").RequestParams;
|
|
317
|
+
};
|
|
318
|
+
gridRight: {
|
|
319
|
+
type?: undefined;
|
|
320
|
+
default?: undefined;
|
|
321
|
+
} | {
|
|
322
|
+
type: any;
|
|
323
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
324
|
+
[key: string]: any;
|
|
325
|
+
} | import("src/_utils/props").RequestParams;
|
|
326
|
+
};
|
|
282
327
|
id: {
|
|
283
328
|
type?: undefined;
|
|
284
329
|
default?: undefined;
|
|
@@ -488,6 +533,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
488
533
|
};
|
|
489
534
|
left: string;
|
|
490
535
|
};
|
|
536
|
+
grid: {
|
|
537
|
+
top: string | number | boolean | {
|
|
538
|
+
[key: string]: any;
|
|
539
|
+
};
|
|
540
|
+
bottom: string | number | boolean | {
|
|
541
|
+
[key: string]: any;
|
|
542
|
+
};
|
|
543
|
+
left: string | number | boolean | {
|
|
544
|
+
[key: string]: any;
|
|
545
|
+
};
|
|
546
|
+
right: string | number | boolean | {
|
|
547
|
+
[key: string]: any;
|
|
548
|
+
};
|
|
549
|
+
containLabel: string | number | boolean | {
|
|
550
|
+
[key: string]: any;
|
|
551
|
+
};
|
|
552
|
+
};
|
|
491
553
|
tooltip: {
|
|
492
554
|
show: string | number | boolean | {
|
|
493
555
|
[key: string]: any;
|
|
@@ -608,6 +670,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
608
670
|
roseType?: unknown;
|
|
609
671
|
valueTypeDataFieldNames?: unknown;
|
|
610
672
|
dataFieldConfigType?: unknown;
|
|
673
|
+
gridContainLabel?: unknown;
|
|
674
|
+
gridTop?: unknown;
|
|
675
|
+
gridBottom?: unknown;
|
|
676
|
+
gridLeft?: unknown;
|
|
677
|
+
gridRight?: unknown;
|
|
611
678
|
id?: unknown;
|
|
612
679
|
name?: unknown;
|
|
613
680
|
keyName?: unknown;
|
|
@@ -727,6 +794,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
727
794
|
dataFieldConfigType?: string | number | boolean | {
|
|
728
795
|
[key: string]: any;
|
|
729
796
|
};
|
|
797
|
+
gridContainLabel?: string | number | boolean | {
|
|
798
|
+
[key: string]: any;
|
|
799
|
+
};
|
|
800
|
+
gridTop?: string | number | boolean | {
|
|
801
|
+
[key: string]: any;
|
|
802
|
+
};
|
|
803
|
+
gridBottom?: string | number | boolean | {
|
|
804
|
+
[key: string]: any;
|
|
805
|
+
};
|
|
806
|
+
gridLeft?: string | number | boolean | {
|
|
807
|
+
[key: string]: any;
|
|
808
|
+
};
|
|
809
|
+
gridRight?: string | number | boolean | {
|
|
810
|
+
[key: string]: any;
|
|
811
|
+
};
|
|
730
812
|
id?: string | number | boolean | {
|
|
731
813
|
[key: string]: any;
|
|
732
814
|
};
|
|
@@ -31,6 +31,11 @@ export interface PieProps extends Props {
|
|
|
31
31
|
roseType: '' | 'radius' | 'area';
|
|
32
32
|
valueTypeDataFieldNames: ValueTypeDataFieldNames;
|
|
33
33
|
dataFieldConfigType: 'key' | 'value';
|
|
34
|
+
gridContainLabel: boolean;
|
|
35
|
+
gridTop: string;
|
|
36
|
+
gridBottom: string;
|
|
37
|
+
gridLeft: string;
|
|
38
|
+
gridRight: string;
|
|
34
39
|
}
|
|
35
40
|
export declare const pieProps: PieProps;
|
|
36
41
|
export declare const pieComponentProps: {
|
|
@@ -313,6 +318,51 @@ export declare const pieComponentProps: {
|
|
|
313
318
|
[key: string]: any;
|
|
314
319
|
} | import("../../_utils/props").RequestParams;
|
|
315
320
|
};
|
|
321
|
+
gridContainLabel: {
|
|
322
|
+
type?: undefined;
|
|
323
|
+
default?: undefined;
|
|
324
|
+
} | {
|
|
325
|
+
type: any;
|
|
326
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
327
|
+
[key: string]: any;
|
|
328
|
+
} | import("../../_utils/props").RequestParams;
|
|
329
|
+
};
|
|
330
|
+
gridTop: {
|
|
331
|
+
type?: undefined;
|
|
332
|
+
default?: undefined;
|
|
333
|
+
} | {
|
|
334
|
+
type: any;
|
|
335
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
} | import("../../_utils/props").RequestParams;
|
|
338
|
+
};
|
|
339
|
+
gridBottom: {
|
|
340
|
+
type?: undefined;
|
|
341
|
+
default?: undefined;
|
|
342
|
+
} | {
|
|
343
|
+
type: any;
|
|
344
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
} | import("../../_utils/props").RequestParams;
|
|
347
|
+
};
|
|
348
|
+
gridLeft: {
|
|
349
|
+
type?: undefined;
|
|
350
|
+
default?: undefined;
|
|
351
|
+
} | {
|
|
352
|
+
type: any;
|
|
353
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
354
|
+
[key: string]: any;
|
|
355
|
+
} | import("../../_utils/props").RequestParams;
|
|
356
|
+
};
|
|
357
|
+
gridRight: {
|
|
358
|
+
type?: undefined;
|
|
359
|
+
default?: undefined;
|
|
360
|
+
} | {
|
|
361
|
+
type: any;
|
|
362
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
363
|
+
[key: string]: any;
|
|
364
|
+
} | import("../../_utils/props").RequestParams;
|
|
365
|
+
};
|
|
316
366
|
id: {
|
|
317
367
|
type?: undefined;
|
|
318
368
|
default?: undefined;
|
|
@@ -252,6 +252,78 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
252
252
|
[key: string]: any;
|
|
253
253
|
} | import("../../_utils/props").RequestParams;
|
|
254
254
|
};
|
|
255
|
+
yAxisLabelFormatter: {
|
|
256
|
+
type?: undefined;
|
|
257
|
+
default?: undefined;
|
|
258
|
+
} | {
|
|
259
|
+
type: any;
|
|
260
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
261
|
+
name: string;
|
|
262
|
+
value: string;
|
|
263
|
+
} | Events | {
|
|
264
|
+
[key: string]: any;
|
|
265
|
+
} | import("../../_utils/props").RequestParams;
|
|
266
|
+
};
|
|
267
|
+
gridContainLabel: {
|
|
268
|
+
type?: undefined;
|
|
269
|
+
default?: undefined;
|
|
270
|
+
} | {
|
|
271
|
+
type: any;
|
|
272
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
273
|
+
name: string;
|
|
274
|
+
value: string;
|
|
275
|
+
} | Events | {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
} | import("../../_utils/props").RequestParams;
|
|
278
|
+
};
|
|
279
|
+
gridTop: {
|
|
280
|
+
type?: undefined;
|
|
281
|
+
default?: undefined;
|
|
282
|
+
} | {
|
|
283
|
+
type: any;
|
|
284
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
285
|
+
name: string;
|
|
286
|
+
value: string;
|
|
287
|
+
} | Events | {
|
|
288
|
+
[key: string]: any;
|
|
289
|
+
} | import("../../_utils/props").RequestParams;
|
|
290
|
+
};
|
|
291
|
+
gridBottom: {
|
|
292
|
+
type?: undefined;
|
|
293
|
+
default?: undefined;
|
|
294
|
+
} | {
|
|
295
|
+
type: any;
|
|
296
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
297
|
+
name: string;
|
|
298
|
+
value: string;
|
|
299
|
+
} | Events | {
|
|
300
|
+
[key: string]: any;
|
|
301
|
+
} | import("../../_utils/props").RequestParams;
|
|
302
|
+
};
|
|
303
|
+
gridLeft: {
|
|
304
|
+
type?: undefined;
|
|
305
|
+
default?: undefined;
|
|
306
|
+
} | {
|
|
307
|
+
type: any;
|
|
308
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
309
|
+
name: string;
|
|
310
|
+
value: string;
|
|
311
|
+
} | Events | {
|
|
312
|
+
[key: string]: any;
|
|
313
|
+
} | import("../../_utils/props").RequestParams;
|
|
314
|
+
};
|
|
315
|
+
gridRight: {
|
|
316
|
+
type?: undefined;
|
|
317
|
+
default?: undefined;
|
|
318
|
+
} | {
|
|
319
|
+
type: any;
|
|
320
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
321
|
+
name: string;
|
|
322
|
+
value: string;
|
|
323
|
+
} | Events | {
|
|
324
|
+
[key: string]: any;
|
|
325
|
+
} | import("../../_utils/props").RequestParams;
|
|
326
|
+
};
|
|
255
327
|
dataFieldNames: {
|
|
256
328
|
type?: undefined;
|
|
257
329
|
default?: undefined;
|
|
@@ -539,6 +611,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
539
611
|
};
|
|
540
612
|
left: string;
|
|
541
613
|
};
|
|
614
|
+
grid: {
|
|
615
|
+
top: string | number | boolean | {
|
|
616
|
+
[key: string]: any;
|
|
617
|
+
};
|
|
618
|
+
bottom: string | number | boolean | {
|
|
619
|
+
[key: string]: any;
|
|
620
|
+
};
|
|
621
|
+
left: string | number | boolean | {
|
|
622
|
+
[key: string]: any;
|
|
623
|
+
};
|
|
624
|
+
right: string | number | boolean | {
|
|
625
|
+
[key: string]: any;
|
|
626
|
+
};
|
|
627
|
+
containLabel: string | number | boolean | {
|
|
628
|
+
[key: string]: any;
|
|
629
|
+
};
|
|
630
|
+
};
|
|
542
631
|
color: string | number | boolean | {
|
|
543
632
|
[key: string]: any;
|
|
544
633
|
};
|
|
@@ -586,6 +675,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
586
675
|
color: string | number | boolean | {
|
|
587
676
|
[key: string]: any;
|
|
588
677
|
};
|
|
678
|
+
formatter(value: string): string;
|
|
589
679
|
};
|
|
590
680
|
axisLine: {
|
|
591
681
|
lineStyle: {
|
|
@@ -656,6 +746,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
656
746
|
yAxisSplitLineStyleColor?: unknown;
|
|
657
747
|
yAxisLabelColor?: unknown;
|
|
658
748
|
yAxisLineStyleColor?: unknown;
|
|
749
|
+
yAxisLabelFormatter?: unknown;
|
|
750
|
+
gridContainLabel?: unknown;
|
|
751
|
+
gridTop?: unknown;
|
|
752
|
+
gridBottom?: unknown;
|
|
753
|
+
gridLeft?: unknown;
|
|
754
|
+
gridRight?: unknown;
|
|
659
755
|
dataFieldNames?: unknown;
|
|
660
756
|
id?: unknown;
|
|
661
757
|
name?: unknown;
|
|
@@ -746,6 +842,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
746
842
|
yAxisLineStyleColor?: string | number | boolean | {
|
|
747
843
|
[key: string]: any;
|
|
748
844
|
};
|
|
845
|
+
yAxisLabelFormatter?: string | number | boolean | {
|
|
846
|
+
[key: string]: any;
|
|
847
|
+
};
|
|
848
|
+
gridContainLabel?: string | number | boolean | {
|
|
849
|
+
[key: string]: any;
|
|
850
|
+
};
|
|
851
|
+
gridTop?: string | number | boolean | {
|
|
852
|
+
[key: string]: any;
|
|
853
|
+
};
|
|
854
|
+
gridBottom?: string | number | boolean | {
|
|
855
|
+
[key: string]: any;
|
|
856
|
+
};
|
|
857
|
+
gridLeft?: string | number | boolean | {
|
|
858
|
+
[key: string]: any;
|
|
859
|
+
};
|
|
860
|
+
gridRight?: string | number | boolean | {
|
|
861
|
+
[key: string]: any;
|
|
862
|
+
};
|
|
749
863
|
dataFieldNames?: string | number | boolean | {
|
|
750
864
|
[key: string]: any;
|
|
751
865
|
};
|
|
@@ -21,6 +21,12 @@ export interface ScatterProps extends Props {
|
|
|
21
21
|
yAxisSplitLineStyleColor: string;
|
|
22
22
|
yAxisLabelColor: string;
|
|
23
23
|
yAxisLineStyleColor: string;
|
|
24
|
+
yAxisLabelFormatter: string;
|
|
25
|
+
gridContainLabel: boolean;
|
|
26
|
+
gridTop: string;
|
|
27
|
+
gridBottom: string;
|
|
28
|
+
gridLeft: string;
|
|
29
|
+
gridRight: string;
|
|
24
30
|
dataFieldNames: {
|
|
25
31
|
name: string;
|
|
26
32
|
value: string;
|
|
@@ -280,6 +286,78 @@ export declare const scatterComponentProps: {
|
|
|
280
286
|
[key: string]: any;
|
|
281
287
|
} | import("../../_utils/props").RequestParams;
|
|
282
288
|
};
|
|
289
|
+
yAxisLabelFormatter: {
|
|
290
|
+
type?: undefined;
|
|
291
|
+
default?: undefined;
|
|
292
|
+
} | {
|
|
293
|
+
type: any;
|
|
294
|
+
default: string | number | boolean | Data | string[] | {
|
|
295
|
+
name: string;
|
|
296
|
+
value: string;
|
|
297
|
+
} | import("../../_utils/props").Events | {
|
|
298
|
+
[key: string]: any;
|
|
299
|
+
} | import("../../_utils/props").RequestParams;
|
|
300
|
+
};
|
|
301
|
+
gridContainLabel: {
|
|
302
|
+
type?: undefined;
|
|
303
|
+
default?: undefined;
|
|
304
|
+
} | {
|
|
305
|
+
type: any;
|
|
306
|
+
default: string | number | boolean | Data | string[] | {
|
|
307
|
+
name: string;
|
|
308
|
+
value: string;
|
|
309
|
+
} | import("../../_utils/props").Events | {
|
|
310
|
+
[key: string]: any;
|
|
311
|
+
} | import("../../_utils/props").RequestParams;
|
|
312
|
+
};
|
|
313
|
+
gridTop: {
|
|
314
|
+
type?: undefined;
|
|
315
|
+
default?: undefined;
|
|
316
|
+
} | {
|
|
317
|
+
type: any;
|
|
318
|
+
default: string | number | boolean | Data | string[] | {
|
|
319
|
+
name: string;
|
|
320
|
+
value: string;
|
|
321
|
+
} | import("../../_utils/props").Events | {
|
|
322
|
+
[key: string]: any;
|
|
323
|
+
} | import("../../_utils/props").RequestParams;
|
|
324
|
+
};
|
|
325
|
+
gridBottom: {
|
|
326
|
+
type?: undefined;
|
|
327
|
+
default?: undefined;
|
|
328
|
+
} | {
|
|
329
|
+
type: any;
|
|
330
|
+
default: string | number | boolean | Data | string[] | {
|
|
331
|
+
name: string;
|
|
332
|
+
value: string;
|
|
333
|
+
} | import("../../_utils/props").Events | {
|
|
334
|
+
[key: string]: any;
|
|
335
|
+
} | import("../../_utils/props").RequestParams;
|
|
336
|
+
};
|
|
337
|
+
gridLeft: {
|
|
338
|
+
type?: undefined;
|
|
339
|
+
default?: undefined;
|
|
340
|
+
} | {
|
|
341
|
+
type: any;
|
|
342
|
+
default: string | number | boolean | Data | string[] | {
|
|
343
|
+
name: string;
|
|
344
|
+
value: string;
|
|
345
|
+
} | import("../../_utils/props").Events | {
|
|
346
|
+
[key: string]: any;
|
|
347
|
+
} | import("../../_utils/props").RequestParams;
|
|
348
|
+
};
|
|
349
|
+
gridRight: {
|
|
350
|
+
type?: undefined;
|
|
351
|
+
default?: undefined;
|
|
352
|
+
} | {
|
|
353
|
+
type: any;
|
|
354
|
+
default: string | number | boolean | Data | string[] | {
|
|
355
|
+
name: string;
|
|
356
|
+
value: string;
|
|
357
|
+
} | import("../../_utils/props").Events | {
|
|
358
|
+
[key: string]: any;
|
|
359
|
+
} | import("../../_utils/props").RequestParams;
|
|
360
|
+
};
|
|
283
361
|
dataFieldNames: {
|
|
284
362
|
type?: undefined;
|
|
285
363
|
default?: undefined;
|