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.
@@ -0,0 +1 @@
1
+ Patch applied at 2026-05-26T12:41:33.595Z
package/dist/pivot.d.ts CHANGED
@@ -95,6 +95,7 @@ declare const ACTION_TYPES: {
95
95
  readonly SET_COMMENT_CONTEXT_REF: "SET_COMMENT_CONTEXT_REF";
96
96
  readonly SET_CHAT_ENABLED: "SET_CHAT_ENABLED";
97
97
  readonly SET_COMMENT_ENABLED: "SET_COMMENT_ENABLED";
98
+ readonly SET_NO_HEADER_SELECTION_CHECKBOX: "SET_NO_HEADER_SELECTION_CHECKBOX";
98
99
  };
99
100
 
100
101
  declare class InfiniteBlock {
@@ -872,6 +873,7 @@ declare interface SmartGridCallbackRefCurrent {
872
873
  onSortChange?: ((sortModel: SmartGridSortModel) => void) | null;
873
874
  onFilterChange?: ((filterModel: SmartGridFilterModel) => void) | null;
874
875
  onSearch?: ((searchTerm: SmartGridSearchFunctionParams) => void) | null;
876
+ onContentDensityChange?: ((contentDensity: SmartGridRowHeightType) => void) | null;
875
877
  }
876
878
 
877
879
  declare type SmartGridCellRenderer = {
@@ -1961,8 +1963,11 @@ declare type SmartGridRowGroupStatePagination = {
1961
1963
  error?: boolean;
1962
1964
  };
1963
1965
 
1966
+ declare type SmartGridRowHeightType = "default" | "compact" | "comfortable";
1967
+
1964
1968
  declare type SmartGridRowInfo = {
1965
1969
  isFirst: boolean;
1970
+ isLast: boolean;
1966
1971
  span: number;
1967
1972
  rowIds?: (string | number)[];
1968
1973
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-table",
3
- "version": "0.15.2",
3
+ "version": "0.15.4",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "moment": "^2.0.0",