ia-table 0.15.2 → 0.15.4

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.
package/dist/index.d.ts CHANGED
@@ -107,6 +107,7 @@ declare const ACTION_TYPES: {
107
107
  readonly SET_COMMENT_CONTEXT_REF: "SET_COMMENT_CONTEXT_REF";
108
108
  readonly SET_CHAT_ENABLED: "SET_CHAT_ENABLED";
109
109
  readonly SET_COMMENT_ENABLED: "SET_COMMENT_ENABLED";
110
+ readonly SET_NO_HEADER_SELECTION_CHECKBOX: "SET_NO_HEADER_SELECTION_CHECKBOX";
110
111
  };
111
112
 
112
113
  declare interface ChildHeightsResult {
@@ -916,6 +917,7 @@ export declare interface SmartGridBodyCellProps {
916
917
  isGrandTotalRow?: boolean;
917
918
  isLeftPinnedRowsAvailable?: boolean;
918
919
  style?: CSSProperties | null;
920
+ index: number;
919
921
  }
920
922
 
921
923
  export declare interface SmartGridButtonProps {
@@ -1104,6 +1106,7 @@ export declare interface SmartGridCallbackRefCurrent {
1104
1106
  onSortChange?: ((sortModel: SmartGridSortModel) => void) | null;
1105
1107
  onFilterChange?: ((filterModel: SmartGridFilterModel) => void) | null;
1106
1108
  onSearch?: ((searchTerm: SmartGridSearchFunctionParams) => void) | null;
1109
+ onContentDensityChange?: ((contentDensity: SmartGridRowHeightType) => void) | null;
1107
1110
  }
1108
1111
 
1109
1112
  export declare type SmartGridCellRenderer = {
@@ -4121,6 +4124,8 @@ export declare type SmartGridRowGroupStatePagination = {
4121
4124
 
4122
4125
  export declare type SmartGridRowHeightMap = Record<string | number, number>;
4123
4126
 
4127
+ declare type SmartGridRowHeightType = "default" | "compact" | "comfortable";
4128
+
4124
4129
  export declare interface SmartGridRowHoverEffectParams {
4125
4130
  scrollContainerRef: RefObject<HTMLElement | null>;
4126
4131
  tableInstance: MutableRefObject<HTMLElement | null>;
@@ -4128,6 +4133,7 @@ export declare interface SmartGridRowHoverEffectParams {
4128
4133
 
4129
4134
  export declare type SmartGridRowInfo = {
4130
4135
  isFirst: boolean;
4136
+ isLast: boolean;
4131
4137
  span: number;
4132
4138
  rowIds?: (string | number)[];
4133
4139
  };
@@ -4199,6 +4205,7 @@ export declare interface SmartGridRowSpanInfo {
4199
4205
  export declare interface SmartGridRowSpanInfoDetails {
4200
4206
  span?: number;
4201
4207
  isFirst?: boolean;
4208
+ isLast?: boolean;
4202
4209
  }
4203
4210
 
4204
4211
  export declare type SmartGridRowStyleParams = {
@@ -5102,6 +5109,8 @@ export declare interface SmartGridTableProps extends SmartGridSaveViewCallbackRe
5102
5109
  ChatComponent?: (props: SmartGridTableChatWrapper) => JSX.Element;
5103
5110
  CommentComponent?: FC<SmartGridCommentWrapperProps>;
5104
5111
  commentProps?: SmartGridCommentProps;
5112
+ onContentDensityChange?: ((contentDensity: SmartGridRowHeightType) => void) | null;
5113
+ noHeaderSelection?: boolean;
5105
5114
  }
5106
5115
 
5107
5116
  export declare interface SmartGridTableRef {