ia-table 0.15.2 → 0.15.3

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/pivot.d.ts CHANGED
@@ -872,6 +872,7 @@ declare interface SmartGridCallbackRefCurrent {
872
872
  onSortChange?: ((sortModel: SmartGridSortModel) => void) | null;
873
873
  onFilterChange?: ((filterModel: SmartGridFilterModel) => void) | null;
874
874
  onSearch?: ((searchTerm: SmartGridSearchFunctionParams) => void) | null;
875
+ onContentDensityChange?: ((contentDensity: SmartGridRowHeightType) => void) | null;
875
876
  }
876
877
 
877
878
  declare type SmartGridCellRenderer = {
@@ -1961,8 +1962,11 @@ declare type SmartGridRowGroupStatePagination = {
1961
1962
  error?: boolean;
1962
1963
  };
1963
1964
 
1965
+ declare type SmartGridRowHeightType = "default" | "compact" | "comfortable";
1966
+
1964
1967
  declare type SmartGridRowInfo = {
1965
1968
  isFirst: boolean;
1969
+ isLast: boolean;
1966
1970
  span: number;
1967
1971
  rowIds?: (string | number)[];
1968
1972
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-table",
3
- "version": "0.15.2",
3
+ "version": "0.15.3",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "moment": "^2.0.0",