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.
- package/dist/index.js +1337 -1303
- package/dist/index.umd.cjs +7 -7
- package/dist/table/foreign-key-prefetch.d.ts +2 -0
- package/dist/table/make-columns.d.ts +2 -0
- package/package.json +2 -2
|
@@ -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.
|
|
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.
|
|
49
|
+
"sera-db": "^1.13.3",
|
|
50
50
|
"throttle-debounce": "^5.0.2"
|
|
51
51
|
}
|
|
52
52
|
}
|