sera-components 1.8.1 → 1.8.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.
@@ -0,0 +1,2 @@
1
+ import { SeraColumn } from './make-columns';
2
+ export declare function prefetchForeignKeyColumns<R>(records: R[], columns: SeraColumn<R>[]): void;
@@ -29,6 +29,8 @@ export interface SeraColumn<R> {
29
29
  * - >1: this cell spans that many columns
30
30
  */
31
31
  colSpan?: (record: R, rowIndex: number) => number | undefined;
32
+ property?: DOP;
33
+ db?: DB;
32
34
  }
33
35
  /**
34
36
  * Creates a table column configuration for displaying entity properties in a data table.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sera-components",
3
3
  "private": false,
4
- "version": "1.8.1",
4
+ "version": "1.8.2",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -46,7 +46,7 @@
46
46
  "react-dom": "^19.2.3",
47
47
  "react-imask": "^7.6.1",
48
48
  "react-router": "^7.7.1",
49
- "sera-db": "^1.13.2",
49
+ "sera-db": "^1.13.3",
50
50
  "throttle-debounce": "^5.0.2"
51
51
  }
52
52
  }