@ecan-bi/datav 1.5.36 → 1.5.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecan-bi/datav",
3
- "version": "1.5.36",
3
+ "version": "1.5.37",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "types/index.d.ts",
@@ -20,8 +20,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
20
20
  default?: boolean;
21
21
  };
22
22
  size: {
23
- type?: import("vue").PropType<"small" | "default" | "middle">;
24
- default?: "small" | "default" | "middle";
23
+ type?: import("vue").PropType<"" | "small" | "default" | "middle">;
24
+ default?: "" | "small" | "default" | "middle";
25
25
  };
26
26
  isUseSeq: {
27
27
  type?: import("vue").PropType<boolean>;
@@ -255,6 +255,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
255
255
  [key: string]: any;
256
256
  }[];
257
257
  };
258
+ bodyRowHeight: {
259
+ type?: import("vue").PropType<string>;
260
+ default?: string;
261
+ };
262
+ headRowHeight: {
263
+ type?: import("vue").PropType<string>;
264
+ default?: string;
265
+ };
258
266
  id: {
259
267
  type?: import("vue").PropType<string>;
260
268
  default?: string;
@@ -490,8 +498,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
490
498
  default?: boolean;
491
499
  };
492
500
  size: {
493
- type?: import("vue").PropType<"small" | "default" | "middle">;
494
- default?: "small" | "default" | "middle";
501
+ type?: import("vue").PropType<"" | "small" | "default" | "middle">;
502
+ default?: "" | "small" | "default" | "middle";
495
503
  };
496
504
  isUseSeq: {
497
505
  type?: import("vue").PropType<boolean>;
@@ -725,6 +733,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
725
733
  [key: string]: any;
726
734
  }[];
727
735
  };
736
+ bodyRowHeight: {
737
+ type?: import("vue").PropType<string>;
738
+ default?: string;
739
+ };
740
+ headRowHeight: {
741
+ type?: import("vue").PropType<string>;
742
+ default?: string;
743
+ };
728
744
  id: {
729
745
  type?: import("vue").PropType<string>;
730
746
  default?: string;
@@ -20,8 +20,8 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
20
20
  default?: boolean;
21
21
  };
22
22
  size: {
23
- type?: import("vue").PropType<"small" | "default" | "middle">;
24
- default?: "small" | "default" | "middle";
23
+ type?: import("vue").PropType<"" | "small" | "default" | "middle">;
24
+ default?: "" | "small" | "default" | "middle";
25
25
  };
26
26
  isUseSeq: {
27
27
  type?: import("vue").PropType<boolean>;
@@ -255,6 +255,14 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
255
255
  [key: string]: any;
256
256
  }[];
257
257
  };
258
+ bodyRowHeight: {
259
+ type?: import("vue").PropType<string>;
260
+ default?: string;
261
+ };
262
+ headRowHeight: {
263
+ type?: import("vue").PropType<string>;
264
+ default?: string;
265
+ };
258
266
  id: {
259
267
  type?: import("vue").PropType<string>;
260
268
  default?: string;
@@ -490,8 +498,8 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
490
498
  default?: boolean;
491
499
  };
492
500
  size: {
493
- type?: import("vue").PropType<"small" | "default" | "middle">;
494
- default?: "small" | "default" | "middle";
501
+ type?: import("vue").PropType<"" | "small" | "default" | "middle">;
502
+ default?: "" | "small" | "default" | "middle";
495
503
  };
496
504
  isUseSeq: {
497
505
  type?: import("vue").PropType<boolean>;
@@ -725,6 +733,14 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
725
733
  [key: string]: any;
726
734
  }[];
727
735
  };
736
+ bodyRowHeight: {
737
+ type?: import("vue").PropType<string>;
738
+ default?: string;
739
+ };
740
+ headRowHeight: {
741
+ type?: import("vue").PropType<string>;
742
+ default?: string;
743
+ };
728
744
  id: {
729
745
  type?: import("vue").PropType<string>;
730
746
  default?: string;
@@ -7,7 +7,7 @@ export interface TableProps extends Props {
7
7
  [key: string]: any;
8
8
  }[];
9
9
  bordered: boolean;
10
- size: 'default' | 'middle' | 'small';
10
+ size: 'default' | 'middle' | 'small' | '';
11
11
  isUseSeq: boolean;
12
12
  columnsFixedNum: number;
13
13
  scrollX: number;
@@ -70,6 +70,8 @@ export interface TableProps extends Props {
70
70
  conditionList: {
71
71
  [key: string]: any;
72
72
  }[];
73
+ bodyRowHeight: string;
74
+ headRowHeight: string;
73
75
  }
74
76
  export declare const tableProps: TableProps;
75
77
  export declare const tableComponentProps: {
@@ -94,8 +96,8 @@ export declare const tableComponentProps: {
94
96
  default?: boolean;
95
97
  };
96
98
  size: {
97
- type?: import("vue").PropType<"small" | "default" | "middle">;
98
- default?: "small" | "default" | "middle";
99
+ type?: import("vue").PropType<"" | "small" | "default" | "middle">;
100
+ default?: "" | "small" | "default" | "middle";
99
101
  };
100
102
  isUseSeq: {
101
103
  type?: import("vue").PropType<boolean>;
@@ -329,6 +331,14 @@ export declare const tableComponentProps: {
329
331
  [key: string]: any;
330
332
  }[];
331
333
  };
334
+ bodyRowHeight: {
335
+ type?: import("vue").PropType<string>;
336
+ default?: string;
337
+ };
338
+ headRowHeight: {
339
+ type?: import("vue").PropType<string>;
340
+ default?: string;
341
+ };
332
342
  id: {
333
343
  type?: import("vue").PropType<string>;
334
344
  default?: string;