@acuteinfo/common-base 1.2.77 → 1.2.78

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.
@@ -53,6 +53,8 @@ interface GridTableType {
53
53
  enableShortcut?: boolean;
54
54
  shortcut?: "alt" | "ctrl" | "shift" | "meta";
55
55
  eventKey?: string;
56
+ hidden?: boolean;
57
+ disabled?: boolean;
56
58
  }[];
57
59
  getReportData?: (filters: any[], queryFilters: any, globalFilter: string | undefined, originalData: any, filteredData: any) => void;
58
60
  disableFilters?: boolean;
@@ -196,6 +196,11 @@ export interface ReportGridProps {
196
196
  buttonStyle?: SxProps;
197
197
  buttonName: ReactNode;
198
198
  callback: (event: any, originalData: any, rows: any, nonGroupedRawRows: any) => void;
199
+ enableShortcut?: boolean;
200
+ shortcut?: "alt" | "ctrl" | "shift" | "meta";
201
+ eventKey?: string;
202
+ hidden?: boolean;
203
+ disabled?: boolean;
199
204
  }[];
200
205
  /**
201
206
  * The callback function to extract out current report data.