@acuteinfo/common-base 1.2.81 → 1.2.82

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.
@@ -66,6 +66,8 @@ interface GridTableType {
66
66
  shortcut?: "alt" | "ctrl" | "shift" | "meta";
67
67
  eventKey?: string;
68
68
  };
69
+ footerNote?: string;
70
+ footerNoteStyles?: SxProps;
69
71
  }
70
72
  export declare const GridTable: FC<GridTableType>;
71
73
  export {};
@@ -57,6 +57,8 @@ interface GridTableType {
57
57
  shortcut?: "alt" | "ctrl" | "shift" | "meta";
58
58
  eventKey?: string;
59
59
  };
60
+ footerNote: string;
61
+ footerNoteStyles: SxProps;
60
62
  }
61
63
  export declare const GridTable: FC<GridTableType>;
62
64
  export {};
@@ -161,6 +161,8 @@ export interface ReportGridProps {
161
161
  title: string;
162
162
  options?: any;
163
163
  hideFooter?: boolean | "Y" | "N";
164
+ footerNote?: string;
165
+ footerNoteStyles?: SxProps;
164
166
  showSerialNoColumn?: boolean | "Y" | "N";
165
167
  onClose?: Function | null;
166
168
  reportName?: string;