@hzab/form-render 1.7.13 → 1.7.14

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,3 +1,7 @@
1
+ # @hzab/form-render@1.7.4
2
+
3
+ fix: isAdditionComponent 通过 ArrayTable 导出
4
+
1
5
  # @hzab/form-render@1.7.13
2
6
 
3
7
  feat: ArrayBase 相关 api 暴露
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hzab/form-render",
3
- "version": "1.7.13",
3
+ "version": "1.7.14",
4
4
  "description": "",
5
5
  "main": "src",
6
6
  "scripts": {
@@ -10,7 +10,7 @@ import { ArrayBase, ArrayBaseMixins, IArrayBaseProps } from "../ArrayBase";
10
10
 
11
11
  export type ComposedArrayCards = React.FC<React.PropsWithChildren<CardProps & IArrayBaseProps>> & ArrayBaseMixins;
12
12
 
13
- export const isAdditionComponent = (schema: ISchema) => {
13
+ const isAdditionComponent = (schema: ISchema) => {
14
14
  return schema["x-component"]?.indexOf("Addition") > -1;
15
15
  };
16
16