@hzab/form-render 1.7.13 → 1.7.15

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,11 @@
1
+ # @hzab/form-render@1.7.15
2
+
3
+ fix: utils ossUpload 引用更新
4
+
5
+ # @hzab/form-render@1.7.14
6
+
7
+ fix: isAdditionComponent 通过 ArrayTable 导出
8
+
1
9
  # @hzab/form-render@1.7.13
2
10
 
3
11
  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.15",
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
 
@@ -1,4 +1,5 @@
1
- import OssUploadUtil, { axios, getSignature } from "@hzab/utils/src/upload/OssUploadUtil";
1
+ import OssUploadUtil from "@hzab/utils/src/upload/ossUpload";
2
+ import { axios, getSignature } from "@hzab/utils/src/upload/OssUploadUtil";
2
3
  import { getFormRenderPCGlobalServeConfig } from "../../../globalConfig.ts";
3
4
 
4
5
  /**