ia-table 0.10.2 → 0.10.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.
@@ -1,4 +1,4 @@
1
- import { CSSProperties } from "react";
1
+ import React, { CSSProperties } from "react";
2
2
  import { SmartGridAPI, SmartGridRowData } from "./api";
3
3
  import {
4
4
  SmartGridNewSortModel,
@@ -196,7 +196,7 @@ export interface SmartGridColumnDefinition {
196
196
  columnGroupShow?: "open" | "closed";
197
197
  [key: string]: unknown;
198
198
  };
199
- headerComponent: React.FC<SmartGridHeaderStyleParams>;
199
+ headerComponent?: React.FC<SmartGridHeaderStyleParams>;
200
200
  headerStyle?: (params: SmartGridHeaderStyleParams) => CSSProperties;
201
201
  tooltipValueGetter?: (params: SmartGridTooltipGetterParams) => string;
202
202
  [key: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-table",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "moment": "^2.0.0",