@ecan-bi/datav 1.2.22 → 1.2.24

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 (37) hide show
  1. package/dist/index.es.js +2517 -2438
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +27 -27
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +2 -2
  6. package/package.json +1 -1
  7. package/types/container/border/Border.vue.d.ts +33 -4
  8. package/types/container/border/index.d.ts +33 -4
  9. package/types/container/border/props.d.ts +18 -3
  10. package/types/control/button/Button.vue.d.ts +3 -0
  11. package/types/control/button/index.d.ts +3 -0
  12. package/types/graph/bar/Bar.vue.d.ts +65 -6
  13. package/types/graph/bar/index.d.ts +65 -6
  14. package/types/graph/bar/props.d.ts +34 -4
  15. package/types/graph/combo-graph/ComboGraph.vue.d.ts +9 -0
  16. package/types/graph/combo-graph/index.d.ts +9 -0
  17. package/types/graph/combo-graph/props.d.ts +5 -0
  18. package/types/graph/line/Line.vue.d.ts +48 -0
  19. package/types/graph/line/index.d.ts +48 -0
  20. package/types/graph/line/props.d.ts +30 -0
  21. package/types/graph/pie/Pie.vue.d.ts +27 -0
  22. package/types/graph/pie/index.d.ts +27 -0
  23. package/types/graph/pie/props.d.ts +15 -0
  24. package/types/graph/scatter/Scatter.vue.d.ts +9 -0
  25. package/types/graph/scatter/index.d.ts +9 -0
  26. package/types/graph/scatter/props.d.ts +5 -0
  27. package/types/setting/page-config/PageConfig.vue.d.ts +2 -2
  28. package/types/setting/page-config/index.d.ts +2 -2
  29. package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
  30. package/types/setting/provider-config/index.d.ts +16 -0
  31. package/types/setting/provider-config/props.d.ts +10 -0
  32. package/types/table/table/Table.vue.d.ts +9 -0
  33. package/types/table/table/index.d.ts +9 -0
  34. package/types/table/table/props.d.ts +5 -0
  35. package/types/text/text/Text.vue.d.ts +16 -0
  36. package/types/text/text/index.d.ts +16 -0
  37. package/types/text/text/props.d.ts +10 -0
@@ -276,6 +276,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
276
276
  type?: import("vue").PropType<boolean>;
277
277
  default?: boolean;
278
278
  };
279
+ yAxisSplitLineType: {
280
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
281
+ default?: "dashed" | "dotted" | "solid";
282
+ };
279
283
  id: {
280
284
  type?: import("vue").PropType<string>;
281
285
  default?: string;
@@ -474,6 +478,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
474
478
  show: boolean;
475
479
  lineStyle: {
476
480
  color: string;
481
+ type: "dashed" | "dotted" | "solid";
477
482
  };
478
483
  };
479
484
  splitArea: {
@@ -783,6 +788,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
783
788
  type?: import("vue").PropType<boolean>;
784
789
  default?: boolean;
785
790
  };
791
+ yAxisSplitLineType: {
792
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
793
+ default?: "dashed" | "dotted" | "solid";
794
+ };
786
795
  id: {
787
796
  type?: import("vue").PropType<string>;
788
797
  default?: string;
@@ -275,6 +275,10 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
275
275
  type?: import("vue").PropType<boolean>;
276
276
  default?: boolean;
277
277
  };
278
+ yAxisSplitLineType: {
279
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
280
+ default?: "dashed" | "dotted" | "solid";
281
+ };
278
282
  id: {
279
283
  type?: import("vue").PropType<string>;
280
284
  default?: string;
@@ -473,6 +477,7 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
473
477
  show: boolean;
474
478
  lineStyle: {
475
479
  color: string;
480
+ type: "dashed" | "dotted" | "solid";
476
481
  };
477
482
  };
478
483
  splitArea: {
@@ -782,6 +787,10 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
782
787
  type?: import("vue").PropType<boolean>;
783
788
  default?: boolean;
784
789
  };
790
+ yAxisSplitLineType: {
791
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
792
+ default?: "dashed" | "dotted" | "solid";
793
+ };
785
794
  id: {
786
795
  type?: import("vue").PropType<string>;
787
796
  default?: string;
@@ -72,6 +72,7 @@ export interface ComboGraphProps extends Props {
72
72
  areaGradientShow: boolean;
73
73
  areaGradientColor: string;
74
74
  yAxisLabelShow: boolean;
75
+ yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
75
76
  }
76
77
  export declare const comboGraphProps: ComboGraphProps;
77
78
  export declare const comboGraphComponentProps: {
@@ -351,6 +352,10 @@ export declare const comboGraphComponentProps: {
351
352
  type?: import("vue").PropType<boolean>;
352
353
  default?: boolean;
353
354
  };
355
+ yAxisSplitLineType: {
356
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
357
+ default?: "dashed" | "dotted" | "solid";
358
+ };
354
359
  id: {
355
360
  type?: import("vue").PropType<string>;
356
361
  default?: string;
@@ -305,6 +305,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
305
305
  type?: import("vue").PropType<boolean>;
306
306
  default?: boolean;
307
307
  };
308
+ yAxisSplitLineType: {
309
+ type?: import("vue").PropType<string>;
310
+ default?: string;
311
+ };
312
+ legendItemGap: {
313
+ type?: import("vue").PropType<number>;
314
+ default?: number;
315
+ };
316
+ legendItemWidth: {
317
+ type?: import("vue").PropType<number>;
318
+ default?: number;
319
+ };
320
+ legendItemHeight: {
321
+ type?: import("vue").PropType<number>;
322
+ default?: number;
323
+ };
324
+ legendType: {
325
+ type?: import("vue").PropType<string>;
326
+ default?: string;
327
+ };
308
328
  position: {
309
329
  type?: import("vue").PropType<string>;
310
330
  default?: string;
@@ -451,6 +471,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
451
471
  show: boolean;
452
472
  lineStyle: {
453
473
  color: string;
474
+ type: string;
454
475
  };
455
476
  };
456
477
  splitArea: {
@@ -477,6 +498,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
477
498
  textStyle: {
478
499
  fontSize: number;
479
500
  };
501
+ itemHeight: number;
502
+ itemWidth: number;
503
+ itemGap: number;
504
+ data: {
505
+ name: any;
506
+ icon: string;
507
+ }[];
480
508
  };
481
509
  series: {
482
510
  [x: string]: any;
@@ -798,6 +826,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
798
826
  type?: import("vue").PropType<boolean>;
799
827
  default?: boolean;
800
828
  };
829
+ yAxisSplitLineType: {
830
+ type?: import("vue").PropType<string>;
831
+ default?: string;
832
+ };
833
+ legendItemGap: {
834
+ type?: import("vue").PropType<number>;
835
+ default?: number;
836
+ };
837
+ legendItemWidth: {
838
+ type?: import("vue").PropType<number>;
839
+ default?: number;
840
+ };
841
+ legendItemHeight: {
842
+ type?: import("vue").PropType<number>;
843
+ default?: number;
844
+ };
845
+ legendType: {
846
+ type?: import("vue").PropType<string>;
847
+ default?: string;
848
+ };
801
849
  position: {
802
850
  type?: import("vue").PropType<string>;
803
851
  default?: string;
@@ -305,6 +305,26 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
305
305
  type?: import("vue").PropType<boolean>;
306
306
  default?: boolean;
307
307
  };
308
+ yAxisSplitLineType: {
309
+ type?: import("vue").PropType<string>;
310
+ default?: string;
311
+ };
312
+ legendItemGap: {
313
+ type?: import("vue").PropType<number>;
314
+ default?: number;
315
+ };
316
+ legendItemWidth: {
317
+ type?: import("vue").PropType<number>;
318
+ default?: number;
319
+ };
320
+ legendItemHeight: {
321
+ type?: import("vue").PropType<number>;
322
+ default?: number;
323
+ };
324
+ legendType: {
325
+ type?: import("vue").PropType<string>;
326
+ default?: string;
327
+ };
308
328
  position: {
309
329
  type?: import("vue").PropType<string>;
310
330
  default?: string;
@@ -451,6 +471,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
451
471
  show: boolean;
452
472
  lineStyle: {
453
473
  color: string;
474
+ type: string;
454
475
  };
455
476
  };
456
477
  splitArea: {
@@ -477,6 +498,13 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
477
498
  textStyle: {
478
499
  fontSize: number;
479
500
  };
501
+ itemHeight: number;
502
+ itemWidth: number;
503
+ itemGap: number;
504
+ data: {
505
+ name: any;
506
+ icon: string;
507
+ }[];
480
508
  };
481
509
  series: {
482
510
  [x: string]: any;
@@ -798,6 +826,26 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
798
826
  type?: import("vue").PropType<boolean>;
799
827
  default?: boolean;
800
828
  };
829
+ yAxisSplitLineType: {
830
+ type?: import("vue").PropType<string>;
831
+ default?: string;
832
+ };
833
+ legendItemGap: {
834
+ type?: import("vue").PropType<number>;
835
+ default?: number;
836
+ };
837
+ legendItemWidth: {
838
+ type?: import("vue").PropType<number>;
839
+ default?: number;
840
+ };
841
+ legendItemHeight: {
842
+ type?: import("vue").PropType<number>;
843
+ default?: number;
844
+ };
845
+ legendType: {
846
+ type?: import("vue").PropType<string>;
847
+ default?: string;
848
+ };
801
849
  position: {
802
850
  type?: import("vue").PropType<string>;
803
851
  default?: string;
@@ -66,6 +66,11 @@ export interface LineProps extends Props {
66
66
  areaGradientColor: string;
67
67
  isBoundaryGap: boolean;
68
68
  yAxisLabelShow: boolean;
69
+ yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
70
+ legendItemGap: number;
71
+ legendItemWidth: number;
72
+ legendItemHeight: number;
73
+ legendType: string;
69
74
  }
70
75
  export declare const lineProps: {
71
76
  id: string;
@@ -150,6 +155,11 @@ export declare const lineProps: {
150
155
  areaGradientColor: string;
151
156
  isBoundaryGap: boolean;
152
157
  yAxisLabelShow: boolean;
158
+ yAxisSplitLineType: string;
159
+ legendItemGap: number;
160
+ legendItemWidth: number;
161
+ legendItemHeight: number;
162
+ legendType: string;
153
163
  position: string;
154
164
  zIndex: number;
155
165
  isShow: boolean;
@@ -473,6 +483,26 @@ export declare const lineComponentProps: {
473
483
  type?: import("vue").PropType<boolean>;
474
484
  default?: boolean;
475
485
  };
486
+ yAxisSplitLineType: {
487
+ type?: import("vue").PropType<string>;
488
+ default?: string;
489
+ };
490
+ legendItemGap: {
491
+ type?: import("vue").PropType<number>;
492
+ default?: number;
493
+ };
494
+ legendItemWidth: {
495
+ type?: import("vue").PropType<number>;
496
+ default?: number;
497
+ };
498
+ legendItemHeight: {
499
+ type?: import("vue").PropType<number>;
500
+ default?: number;
501
+ };
502
+ legendType: {
503
+ type?: import("vue").PropType<string>;
504
+ default?: string;
505
+ };
476
506
  position: {
477
507
  type?: import("vue").PropType<string>;
478
508
  default?: string;
@@ -204,6 +204,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
204
204
  type?: import("vue").PropType<string>;
205
205
  default?: string;
206
206
  };
207
+ legendItemGap: {
208
+ type?: import("vue").PropType<number>;
209
+ default?: number;
210
+ };
211
+ legendItemWidth: {
212
+ type?: import("vue").PropType<number>;
213
+ default?: number;
214
+ };
215
+ legendItemHeight: {
216
+ type?: import("vue").PropType<number>;
217
+ default?: number;
218
+ };
207
219
  id: {
208
220
  type?: import("vue").PropType<string>;
209
221
  default?: string;
@@ -354,6 +366,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
354
366
  color: string;
355
367
  fontSize: number;
356
368
  };
369
+ itemHeight: number;
370
+ itemWidth: number;
371
+ itemGap: number;
357
372
  };
358
373
  color: string[];
359
374
  series: {
@@ -596,6 +611,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
596
611
  type?: import("vue").PropType<string>;
597
612
  default?: string;
598
613
  };
614
+ legendItemGap: {
615
+ type?: import("vue").PropType<number>;
616
+ default?: number;
617
+ };
618
+ legendItemWidth: {
619
+ type?: import("vue").PropType<number>;
620
+ default?: number;
621
+ };
622
+ legendItemHeight: {
623
+ type?: import("vue").PropType<number>;
624
+ default?: number;
625
+ };
599
626
  id: {
600
627
  type?: import("vue").PropType<string>;
601
628
  default?: string;
@@ -203,6 +203,18 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
203
203
  type?: import("vue").PropType<string>;
204
204
  default?: string;
205
205
  };
206
+ legendItemGap: {
207
+ type?: import("vue").PropType<number>;
208
+ default?: number;
209
+ };
210
+ legendItemWidth: {
211
+ type?: import("vue").PropType<number>;
212
+ default?: number;
213
+ };
214
+ legendItemHeight: {
215
+ type?: import("vue").PropType<number>;
216
+ default?: number;
217
+ };
206
218
  id: {
207
219
  type?: import("vue").PropType<string>;
208
220
  default?: string;
@@ -353,6 +365,9 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
353
365
  color: string;
354
366
  fontSize: number;
355
367
  };
368
+ itemHeight: number;
369
+ itemWidth: number;
370
+ itemGap: number;
356
371
  };
357
372
  color: string[];
358
373
  series: {
@@ -595,6 +610,18 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
595
610
  type?: import("vue").PropType<string>;
596
611
  default?: string;
597
612
  };
613
+ legendItemGap: {
614
+ type?: import("vue").PropType<number>;
615
+ default?: number;
616
+ };
617
+ legendItemWidth: {
618
+ type?: import("vue").PropType<number>;
619
+ default?: number;
620
+ };
621
+ legendItemHeight: {
622
+ type?: import("vue").PropType<number>;
623
+ default?: number;
624
+ };
598
625
  id: {
599
626
  type?: import("vue").PropType<string>;
600
627
  default?: string;
@@ -52,6 +52,9 @@ export interface PieProps extends Props {
52
52
  toolboxIconStyleBorderColor: string;
53
53
  toolboxDownloadUrl: string;
54
54
  toolboxInfoText: string;
55
+ legendItemGap: number;
56
+ legendItemWidth: number;
57
+ legendItemHeight: number;
55
58
  }
56
59
  export declare const pieProps: PieProps;
57
60
  export declare const pieComponentProps: {
@@ -259,6 +262,18 @@ export declare const pieComponentProps: {
259
262
  type?: import("vue").PropType<string>;
260
263
  default?: string;
261
264
  };
265
+ legendItemGap: {
266
+ type?: import("vue").PropType<number>;
267
+ default?: number;
268
+ };
269
+ legendItemWidth: {
270
+ type?: import("vue").PropType<number>;
271
+ default?: number;
272
+ };
273
+ legendItemHeight: {
274
+ type?: import("vue").PropType<number>;
275
+ default?: number;
276
+ };
262
277
  id: {
263
278
  type?: import("vue").PropType<string>;
264
279
  default?: string;
@@ -213,6 +213,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
213
213
  type?: import("vue").PropType<boolean>;
214
214
  default?: boolean;
215
215
  };
216
+ yAxisSplitLineType: {
217
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
218
+ default?: "dashed" | "dotted" | "solid";
219
+ };
216
220
  id: {
217
221
  type?: import("vue").PropType<string>;
218
222
  default?: string;
@@ -381,6 +385,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
381
385
  show: boolean;
382
386
  lineStyle: {
383
387
  color: string;
388
+ type: "dashed" | "dotted" | "solid";
384
389
  };
385
390
  };
386
391
  splitArea: {
@@ -647,6 +652,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
647
652
  type?: import("vue").PropType<boolean>;
648
653
  default?: boolean;
649
654
  };
655
+ yAxisSplitLineType: {
656
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
657
+ default?: "dashed" | "dotted" | "solid";
658
+ };
650
659
  id: {
651
660
  type?: import("vue").PropType<string>;
652
661
  default?: string;
@@ -213,6 +213,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
213
213
  type?: import("vue").PropType<boolean>;
214
214
  default?: boolean;
215
215
  };
216
+ yAxisSplitLineType: {
217
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
218
+ default?: "dashed" | "dotted" | "solid";
219
+ };
216
220
  id: {
217
221
  type?: import("vue").PropType<string>;
218
222
  default?: string;
@@ -381,6 +385,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
381
385
  show: boolean;
382
386
  lineStyle: {
383
387
  color: string;
388
+ type: "dashed" | "dotted" | "solid";
384
389
  };
385
390
  };
386
391
  splitArea: {
@@ -647,6 +652,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
647
652
  type?: import("vue").PropType<boolean>;
648
653
  default?: boolean;
649
654
  };
655
+ yAxisSplitLineType: {
656
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
657
+ default?: "dashed" | "dotted" | "solid";
658
+ };
650
659
  id: {
651
660
  type?: import("vue").PropType<string>;
652
661
  default?: string;
@@ -56,6 +56,7 @@ export interface ScatterProps extends Props {
56
56
  toolboxDownloadUrl: string;
57
57
  toolboxInfoText: string;
58
58
  yAxisLabelShow: boolean;
59
+ yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
59
60
  }
60
61
  export declare const scatterProps: ScatterProps;
61
62
  export declare const scatterComponentProps: {
@@ -273,6 +274,10 @@ export declare const scatterComponentProps: {
273
274
  type?: import("vue").PropType<boolean>;
274
275
  default?: boolean;
275
276
  };
277
+ yAxisSplitLineType: {
278
+ type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
279
+ default?: "dashed" | "dotted" | "solid";
280
+ };
276
281
  id: {
277
282
  type?: import("vue").PropType<string>;
278
283
  default?: string;
@@ -29,8 +29,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
29
29
  };
30
30
  }, {
31
31
  style: import("vue").ComputedRef<{
32
- width: string;
33
- height: string;
32
+ width: any;
33
+ height: any;
34
34
  backgroundColor: string;
35
35
  backgroundImage: string;
36
36
  backgroundSize: string;
@@ -29,8 +29,8 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
29
29
  };
30
30
  }, {
31
31
  style: import("vue").ComputedRef<{
32
- width: string;
33
- height: string;
32
+ width: any;
33
+ height: any;
34
34
  backgroundColor: string;
35
35
  backgroundImage: string;
36
36
  backgroundSize: string;
@@ -23,6 +23,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
23
23
  };
24
24
  };
25
25
  };
26
+ width: {
27
+ type?: import("vue").PropType<string>;
28
+ default?: string;
29
+ };
30
+ height: {
31
+ type?: import("vue").PropType<string>;
32
+ default?: string;
33
+ };
26
34
  }, {
27
35
  providerConfig: import("vue").Ref<HTMLElement>;
28
36
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -50,5 +58,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
50
58
  };
51
59
  };
52
60
  };
61
+ width: {
62
+ type?: import("vue").PropType<string>;
63
+ default?: string;
64
+ };
65
+ height: {
66
+ type?: import("vue").PropType<string>;
67
+ default?: string;
68
+ };
53
69
  }>>, {}>;
54
70
  export default _sfc_main;
@@ -23,6 +23,14 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
23
23
  };
24
24
  };
25
25
  };
26
+ width: {
27
+ type?: import("vue").PropType<string>;
28
+ default?: string;
29
+ };
30
+ height: {
31
+ type?: import("vue").PropType<string>;
32
+ default?: string;
33
+ };
26
34
  }, {
27
35
  providerConfig: import("vue").Ref<HTMLElement>;
28
36
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -50,6 +58,14 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
50
58
  };
51
59
  };
52
60
  };
61
+ width: {
62
+ type?: import("vue").PropType<string>;
63
+ default?: string;
64
+ };
65
+ height: {
66
+ type?: import("vue").PropType<string>;
67
+ default?: string;
68
+ };
53
69
  }>>, {}>> & Record<string, any>;
54
70
  export default EcanProviderConfig;
55
71
  export * from './props';
@@ -7,6 +7,8 @@ export interface ProviderConfig {
7
7
  [key: string]: string[];
8
8
  };
9
9
  };
10
+ width: string;
11
+ height: string;
10
12
  }
11
13
  export declare const providerConfig: ProviderConfig;
12
14
  export declare const providerConfigComponentProps: {
@@ -34,4 +36,12 @@ export declare const providerConfigComponentProps: {
34
36
  };
35
37
  };
36
38
  };
39
+ width: {
40
+ type?: import("vue").PropType<string>;
41
+ default?: string;
42
+ };
43
+ height: {
44
+ type?: import("vue").PropType<string>;
45
+ default?: string;
46
+ };
37
47
  };
@@ -123,6 +123,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
123
123
  type?: import("vue").PropType<string>;
124
124
  default?: string;
125
125
  };
126
+ stripedShow: {
127
+ type?: import("vue").PropType<boolean>;
128
+ default?: boolean;
129
+ };
126
130
  id: {
127
131
  type?: import("vue").PropType<string>;
128
132
  default?: string;
@@ -261,6 +265,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
261
265
  pageSize: import("vue").Ref<number>;
262
266
  tableRef: import("vue").Ref<any>;
263
267
  headerBgColor: import("vue").ComputedRef<string>;
268
+ rowClassName: (_record: any, index: number) => any;
264
269
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
265
270
  columns: {
266
271
  type?: import("vue").PropType<{
@@ -386,6 +391,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
386
391
  type?: import("vue").PropType<string>;
387
392
  default?: string;
388
393
  };
394
+ stripedShow: {
395
+ type?: import("vue").PropType<boolean>;
396
+ default?: boolean;
397
+ };
389
398
  id: {
390
399
  type?: import("vue").PropType<string>;
391
400
  default?: string;
@@ -123,6 +123,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
123
123
  type?: import("vue").PropType<string>;
124
124
  default?: string;
125
125
  };
126
+ stripedShow: {
127
+ type?: import("vue").PropType<boolean>;
128
+ default?: boolean;
129
+ };
126
130
  id: {
127
131
  type?: import("vue").PropType<string>;
128
132
  default?: string;
@@ -261,6 +265,7 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
261
265
  pageSize: import("vue").Ref<number>;
262
266
  tableRef: import("vue").Ref<any>;
263
267
  headerBgColor: import("vue").ComputedRef<string>;
268
+ rowClassName: (_record: any, index: number) => any;
264
269
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
265
270
  columns: {
266
271
  type?: import("vue").PropType<{
@@ -386,6 +391,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
386
391
  type?: import("vue").PropType<string>;
387
392
  default?: string;
388
393
  };
394
+ stripedShow: {
395
+ type?: import("vue").PropType<boolean>;
396
+ default?: boolean;
397
+ };
389
398
  id: {
390
399
  type?: import("vue").PropType<string>;
391
400
  default?: string;
@@ -35,6 +35,7 @@ export interface TableProps extends Props {
35
35
  [key: string]: any;
36
36
  };
37
37
  headerBackgroundColor: string;
38
+ stripedShow: boolean;
38
39
  }
39
40
  export declare const tableProps: TableProps;
40
41
  export declare const tableComponentProps: {
@@ -162,6 +163,10 @@ export declare const tableComponentProps: {
162
163
  type?: import("vue").PropType<string>;
163
164
  default?: string;
164
165
  };
166
+ stripedShow: {
167
+ type?: import("vue").PropType<boolean>;
168
+ default?: boolean;
169
+ };
165
170
  id: {
166
171
  type?: import("vue").PropType<string>;
167
172
  default?: string;