@ecan-bi/datav 1.6.15 → 1.6.16

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.6.15",
3
+ "version": "1.6.16",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "types/index.d.ts",
@@ -48,6 +48,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
48
48
  type?: import("vue").PropType<"column" | "row">;
49
49
  default?: "column" | "row";
50
50
  };
51
+ tabWidth: {
52
+ type?: import("vue").PropType<string>;
53
+ default?: string;
54
+ };
51
55
  graphicConfig: {
52
56
  type?: import("vue").PropType<{
53
57
  [key: string]: any;
@@ -289,6 +293,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
289
293
  type?: import("vue").PropType<"column" | "row">;
290
294
  default?: "column" | "row";
291
295
  };
296
+ tabWidth: {
297
+ type?: import("vue").PropType<string>;
298
+ default?: string;
299
+ };
292
300
  graphicConfig: {
293
301
  type?: import("vue").PropType<{
294
302
  [key: string]: any;
@@ -47,6 +47,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
47
47
  type?: import("vue").PropType<"column" | "row">;
48
48
  default?: "column" | "row";
49
49
  };
50
+ tabWidth: {
51
+ type?: import("vue").PropType<string>;
52
+ default?: string;
53
+ };
50
54
  graphicConfig: {
51
55
  type?: import("vue").PropType<{
52
56
  [key: string]: any;
@@ -288,6 +292,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
288
292
  type?: import("vue").PropType<"column" | "row">;
289
293
  default?: "column" | "row";
290
294
  };
295
+ tabWidth: {
296
+ type?: import("vue").PropType<string>;
297
+ default?: string;
298
+ };
291
299
  graphicConfig: {
292
300
  type?: import("vue").PropType<{
293
301
  [key: string]: any;
@@ -19,6 +19,7 @@ export interface RadioProps extends Props {
19
19
  tabVerticalPadding: string;
20
20
  tabBarGutter: string;
21
21
  tabFlexDirection: 'row' | 'column';
22
+ tabWidth: string;
22
23
  graphicConfig: {
23
24
  [key: string]: any;
24
25
  };
@@ -76,6 +77,10 @@ export declare const radioComponentProps: {
76
77
  type?: import("vue").PropType<"column" | "row">;
77
78
  default?: "column" | "row";
78
79
  };
80
+ tabWidth: {
81
+ type?: import("vue").PropType<string>;
82
+ default?: string;
83
+ };
79
84
  graphicConfig: {
80
85
  type?: import("vue").PropType<{
81
86
  [key: string]: any;
@@ -61,6 +61,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
61
61
  defaultValue: string;
62
62
  searchLoading: import("vue").Ref<boolean>;
63
63
  downloading: import("vue").Ref<boolean>;
64
+ summaryList: import("vue").Ref<any[]>;
65
+ summaryHeight: import("vue").Ref<number>;
64
66
  handleTableChange: (_page: any, _filters: any, sorter: any) => void;
65
67
  handlePageChange: (current: any, pageSize: any) => void;
66
68
  getContainer: () => Element;