@acuteinfo/common-base 1.2.26 → 1.2.27

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.
@@ -14,6 +14,7 @@ interface GridWrapperPropsType {
14
14
  enableExport?: boolean;
15
15
  reportTemplateCode?: string;
16
16
  variant?: "standard" | "contained" | "outlined";
17
+ autoFetch?: boolean;
17
18
  }
18
19
  export declare const GridWrapper: React.ForwardRefExoticComponent<GridWrapperPropsType & React.RefAttributes<any>>;
19
20
  export {};
@@ -195,6 +195,10 @@ export interface GridConfigType {
195
195
  hideActionBar?: boolean;
196
196
  enablePaginationInput?: boolean;
197
197
  enablePdfPrint?: boolean;
198
+ /**
199
+ * Set false to prevent auto fetch api for server grid
200
+ */
201
+ autoFetch?: boolean;
198
202
  }
199
203
  export interface GridMetaDataType {
200
204
  columns: GridColumnType[];