@geotab/zenith 3.0.0-beta.1 → 3.0.0-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.
@@ -15,7 +15,7 @@ export interface ISortableColumnsListProps<T> {
15
15
  columns: ISortableColumn<T>[];
16
16
  options: ISortableColumnsSettingsOptions;
17
17
  onSortChange: (newSortSettings: ISortableColumnSettings) => void;
18
- ref: RefObject<HTMLElement | null>;
18
+ ref?: RefObject<HTMLElement | null>;
19
19
  }
20
20
  export declare const withSortableColumns: {
21
21
  <T extends IEntityWithId, P extends IDataGrid<T, T>>(DataGridComponent: ComponentType<P>): (props: ISortableColumnsListProps<T> & P) => import("react/jsx-runtime").JSX.Element;
@@ -15,7 +15,7 @@ export interface ISortableColumnsListProps<T> {
15
15
  columns: ISortableColumn<T>[];
16
16
  options: ISortableColumnsSettingsOptions;
17
17
  onSortChange: (newSortSettings: ISortableColumnSettings) => void;
18
- ref: RefObject<HTMLElement | null>;
18
+ ref?: RefObject<HTMLElement | null>;
19
19
  }
20
20
  export declare const withSortableColumns: {
21
21
  <T extends IEntityWithId, P extends IDataGrid<T, T>>(DataGridComponent: ComponentType<P>): (props: ISortableColumnsListProps<T> & P) => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geotab/zenith",
3
- "version": "3.0.0-beta.1",
3
+ "version": "3.0.0-beta.2",
4
4
  "description": "Zenith components library on React",
5
5
  "main": "dist/index.js",
6
6
  "types": "esm/index.d.ts",