@fe-free/core 1.1.7 → 1.2.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @fe-free/core
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Patch Changes
6
+
7
+ - @fe-free/tool@1.2.0
8
+
9
+ ## 1.1.8
10
+
11
+ ### Patch Changes
12
+
13
+ - feat: export CRUDDetail
14
+ - @fe-free/tool@1.1.8
15
+
3
16
  ## 1.1.7
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fe-free/core",
3
- "version": "1.1.7",
3
+ "version": "1.2.0",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
@@ -29,7 +29,7 @@
29
29
  "react-syntax-highlighter": "^15.5.0",
30
30
  "vanilla-jsoneditor": "^0.23.1",
31
31
  "zustand": "^4.5.4",
32
- "@fe-free/tool": "1.1.7"
32
+ "@fe-free/tool": "1.2.0"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "@ant-design/pro-components": "^2.7.15",
@@ -188,3 +188,4 @@ function CRUDDetail(props: CRUDDetailProps) {
188
188
  }
189
189
 
190
190
  export { CRUDDetail };
191
+ export type { CRUDDetailProps };
@@ -1,3 +1,5 @@
1
1
  export { CRUD } from './crud';
2
2
  export type { CRUDProps, CRUDMethods } from './crud';
3
+ export { CRUDDetail } from './crud_detail';
4
+ export type { CRUDDetailProps } from './crud_detail';
3
5
  export { useDelete, OperateDelete } from './crud_delete';
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
- export { CRUD, useDelete, OperateDelete } from './crud';
2
- export type { CRUDProps, CRUDMethods } from './crud';
1
+ export { CRUD, useDelete, OperateDelete, CRUDDetail } from './crud';
2
+ export type { CRUDProps, CRUDMethods, CRUDDetailProps } from './crud';
3
3
 
4
4
  export { ProFormJSON, ProFormJavascript, proFormSelectSearchProps } from './form';
5
5