@acuteinfo/common-base 1.2.72 → 1.2.74

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.
@@ -5,6 +5,11 @@ interface HeaderCellProps {
5
5
  rows?: any[];
6
6
  loading?: boolean;
7
7
  children?: React.ReactNode | any;
8
+ pinnedOffsets?: {
9
+ leftMap: Record<string, number>;
10
+ rightMap: Record<string, number>;
11
+ };
12
+ visibleColumns?: any[];
8
13
  }
9
14
  export declare const HeaderCellWrapper: React.FC<HeaderCellProps>;
10
15
  export {};
@@ -170,6 +170,7 @@ export interface GridColumnType {
170
170
  * prevent input characters in editableTextfield
171
171
  */
172
172
  preventSpecialChars?: string | Function | null;
173
+ pinColumn?: "left" | "right";
173
174
  }
174
175
  export interface GridConfigType {
175
176
  dense?: boolean;
@@ -87,4 +87,5 @@ export declare const attachcombinedValidationFns: (columns: GridColumnType[], au
87
87
  } | undefined;
88
88
  disableSortBy?: boolean | undefined;
89
89
  preventSpecialChars?: string | Function | null | undefined;
90
+ pinColumn?: "left" | "right" | undefined;
90
91
  }[];
@@ -87,4 +87,5 @@ export declare const attachYupSchemaValidator: (columns: GridColumnType[]) => {
87
87
  } | undefined;
88
88
  disableSortBy?: boolean | undefined;
89
89
  preventSpecialChars?: string | Function | null | undefined;
90
+ pinColumn?: "left" | "right" | undefined;
90
91
  }[];