@ecan-bi/datav 1.1.54 → 1.1.56

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.
@@ -18,6 +18,7 @@ export interface TableProps extends Props {
18
18
  borderColor: string;
19
19
  paginationPageSize: number;
20
20
  isUseAction: boolean;
21
+ isUseExport: boolean;
21
22
  actionColumnWidth: number;
22
23
  actionList: {
23
24
  [key: string]: any;
@@ -79,8 +80,8 @@ export declare const tableComponentProps: {
79
80
  default?: boolean;
80
81
  };
81
82
  paginationPosition: {
82
- type?: import("vue").PropType<"topLeft" | "topCenter" | "topRight" | "bottomLeft" | "bottomCenter" | "bottomRight">;
83
- default?: "topLeft" | "topCenter" | "topRight" | "bottomLeft" | "bottomCenter" | "bottomRight";
83
+ type?: import("vue").PropType<"bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "topCenter" | "bottomCenter">;
84
+ default?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
84
85
  };
85
86
  simple: {
86
87
  type?: import("vue").PropType<boolean>;
@@ -102,6 +103,10 @@ export declare const tableComponentProps: {
102
103
  type?: import("vue").PropType<boolean>;
103
104
  default?: boolean;
104
105
  };
106
+ isUseExport: {
107
+ type?: import("vue").PropType<boolean>;
108
+ default?: boolean;
109
+ };
105
110
  actionColumnWidth: {
106
111
  type?: import("vue").PropType<number>;
107
112
  default?: number;
@@ -1,2 +1,4 @@
1
- declare const runCode: (code: string) => any;
1
+ declare const runCode: (code: string, data?: {
2
+ [key: string]: any;
3
+ }) => any;
2
4
  export default runCode;