@bluemarble/bm-components 0.0.53 → 0.0.54

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.
@@ -11,7 +11,7 @@ export declare type UseGridResponseProps<T> = {
11
11
  set: (data: T[]) => void;
12
12
  columns: ColumnsProps[];
13
13
  sortedBy: string;
14
- sortedDirection: string;
14
+ sortedDirection: 'desc' | 'asc';
15
15
  onSortBy: (prop: string) => void;
16
16
  currentPage: number;
17
17
  totalNumberOfPages: number;
package/dist/index.d.ts CHANGED
@@ -255,7 +255,7 @@ declare type UseGridResponseProps<T> = {
255
255
  set: (data: T[]) => void;
256
256
  columns: ColumnsProps[];
257
257
  sortedBy: string;
258
- sortedDirection: string;
258
+ sortedDirection: 'desc' | 'asc';
259
259
  onSortBy: (prop: string) => void;
260
260
  currentPage: number;
261
261
  totalNumberOfPages: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluemarble/bm-components",
3
- "version": "0.0.53",
3
+ "version": "0.0.54",
4
4
  "description": "BM components",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",