@cundi/refine-xaf 1.0.1 → 1.0.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/antd-column-ext.d.ts +16 -0
- package/package.json +2 -2
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
// Augment definitions for Ant Design Table Column for defaultVisible support in SmartList
|
|
3
|
+
import 'antd/es/table/Column';
|
|
4
|
+
import 'antd/lib/table/Column';
|
|
5
|
+
|
|
6
|
+
declare module 'antd/es/table/Column' {
|
|
7
|
+
export interface ColumnProps<RecordType> {
|
|
8
|
+
defaultVisible?: boolean;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare module 'antd/lib/table/Column' {
|
|
13
|
+
export interface ColumnProps<RecordType> {
|
|
14
|
+
defaultVisible?: boolean;
|
|
15
|
+
}
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cundi/refine-xaf",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Integration SDK for XAF backend and Refine frontend",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -79,4 +79,4 @@
|
|
|
79
79
|
"emoji-picker-react": "^4.16.1",
|
|
80
80
|
"katex": "^0.16.27"
|
|
81
81
|
}
|
|
82
|
-
}
|
|
82
|
+
}
|