@acuteinfo/common-base 1.2.38-beta.1 → 1.2.38-beta.2

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.
@@ -19,6 +19,9 @@ interface GridWrapperPropsType {
19
19
  headerToolbarStyle?: SxProps;
20
20
  enableEnterToFocus?: boolean;
21
21
  focusScopeId?: string;
22
+ onClickActionEvent?: any;
23
+ handleClickAction?: (event: any, data: any) => void;
24
+ onDataChange?: (data: any[]) => void;
22
25
  }
23
26
  export declare const GridWrapper: React.ForwardRefExoticComponent<GridWrapperPropsType & React.RefAttributes<any>>;
24
27
  export {};
@@ -17,6 +17,7 @@ export interface GridColumnType {
17
17
  sortDescFirst?: boolean;
18
18
  dateFormat?: string;
19
19
  actions?: string[] | string;
20
+ disableSorting?: boolean;
20
21
  }
21
22
  export interface FilterColumnType {
22
23
  Filter?: any;
@@ -14,6 +14,7 @@ export declare const attachAlignmentProps: (columns: GridColumnType[]) => ({
14
14
  sortDescFirst?: boolean | undefined;
15
15
  dateFormat?: string | undefined;
16
16
  actions?: string | string[] | undefined;
17
+ disableSorting?: boolean | undefined;
17
18
  } | {
18
19
  cellHeaderAlignment: string;
19
20
  TableCellProps: {
@@ -32,4 +33,5 @@ export declare const attachAlignmentProps: (columns: GridColumnType[]) => ({
32
33
  sortDescFirst?: boolean | undefined;
33
34
  dateFormat?: string | undefined;
34
35
  actions?: string | string[] | undefined;
36
+ disableSorting?: boolean | undefined;
35
37
  })[];
@@ -14,4 +14,5 @@ export declare const attachCellComponentsToMetaData: (columns: GridColumnType[])
14
14
  sortDescFirst?: boolean | undefined;
15
15
  dateFormat?: string | undefined;
16
16
  actions?: string | string[] | undefined;
17
+ disableSorting?: boolean | undefined;
17
18
  }[];
@@ -14,4 +14,5 @@ export declare const sortColumnsBySequence: (columns: GridColumnType[]) => {
14
14
  sortDescFirst?: boolean | undefined;
15
15
  dateFormat?: string | undefined;
16
16
  actions?: string | string[] | undefined;
17
+ disableSorting?: boolean | undefined;
17
18
  }[];
@@ -155,6 +155,7 @@ export interface GridColumnType {
155
155
  icon: ReactNode;
156
156
  tooltip?: string;
157
157
  };
158
+ disableSortBy?: boolean;
158
159
  }
159
160
  export interface GridConfigType {
160
161
  dense?: boolean;
@@ -84,4 +84,5 @@ export declare const attachcombinedValidationFns: (columns: GridColumnType[], au
84
84
  icon: import("react").ReactNode;
85
85
  tooltip?: string | undefined;
86
86
  } | undefined;
87
+ disableSortBy?: boolean | undefined;
87
88
  }[];
@@ -84,4 +84,5 @@ export declare const attachYupSchemaValidator: (columns: GridColumnType[]) => {
84
84
  icon: import("react").ReactNode;
85
85
  tooltip?: string | undefined;
86
86
  } | undefined;
87
+ disableSortBy?: boolean | undefined;
87
88
  }[];