@addev-be/ui 0.2.9 → 0.2.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@addev-be/ui",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "watch": "tsc -b --watch",
@@ -194,7 +194,7 @@ export const useDataGrid = <R,>(
194
194
  typeof column.footer[footerKey] === 'function' &&
195
195
  column.footer[footerKey] !== null
196
196
  ) {
197
- acc[columnKey] = column.footer[footerKey];
197
+ acc[columnKey] = column.footer[footerKey] as any;
198
198
  }
199
199
  return acc;
200
200
  }, {} as Record<string, DataGridFooterFunction<R>>),