@fe-free/core 2.1.1 → 2.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @fe-free/core
2
2
 
3
+ ## 2.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: crud
8
+ - @fe-free/tool@2.1.2
9
+
3
10
  ## 2.1.1
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fe-free/core",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
@@ -39,7 +39,7 @@
39
39
  "remark-gfm": "^4.0.1",
40
40
  "vanilla-jsoneditor": "^0.23.1",
41
41
  "zustand": "^4.5.4",
42
- "@fe-free/tool": "2.1.1"
42
+ "@fe-free/tool": "2.1.2"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@ant-design/pro-components": "^2.8.7",
@@ -74,8 +74,6 @@ function CRUDOfSimpleComponent(props: CRUDOfSimpleProps, ref: React.ForwardedRef
74
74
  onChange={(value) => setSearchValue(value)}
75
75
  />
76
76
  ),
77
- // 留更多间隔,避免直接贴右边。
78
- simpleSearchProps && <div key="search-gap" />,
79
77
  // @ts-ignore
80
78
  ...(tableProps.toolBarRender ? tableProps.toolBarRender(...args) : []),
81
79
  ];
@@ -38,6 +38,7 @@
38
38
 
39
39
  & > div {
40
40
  flex: 1;
41
+ margin-right: 8px;
41
42
  }
42
43
  }
43
44
  }