@hzab/form-render 1.7.8 → 1.7.9

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.9
2
+
3
+ fix: 缩略图后缀名修改
4
+
1
5
  # @hzab/form-render@1.7.8
2
6
 
3
7
  fix: upload onRemove 数据处理
package/package.json CHANGED
@@ -1,15 +1,19 @@
1
1
  {
2
2
  "name": "@hzab/form-render",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "description": "",
5
5
  "main": "src",
6
6
  "scripts": {
7
7
  "dev": "webpack serve -c ./config/webpack.config.js --env local",
8
8
  "build": "webpack -c ./config/webpack.config.js --env production",
9
- "publish-beta": "npm publish --beta",
10
- "publish-patch": "npm version patch && npm publish --access public",
11
- "publish-minor": "npm version minor && npm publish --access public",
12
- "publish-major": "npm version major && npm publish --access public"
9
+ "version:alpha": "npm version prerelease --preid=alpha",
10
+ "publish:alpha": "npm publish --tag alpha",
11
+ "version:beta": "npm version prerelease --preid=beta",
12
+ "publish:beta": "npm publish --tag beta",
13
+ "version:patch": "npm version patch",
14
+ "version:minior": "npm version minor",
15
+ "version:major": "npm version major",
16
+ "publish:stable": "npm publish --access public"
13
17
  },
14
18
  "files": [
15
19
  "src",
@@ -63,7 +63,7 @@ export function Uploader({ onChange, ...props }) {
63
63
  templateDownloadText = "模板下载",
64
64
  isFileObj = false,
65
65
  isFileJson = false,
66
- thumbnailParams = "image_process=resize,p_30",
66
+ thumbnailParams = "image_process=resize,w_200",
67
67
  selfUrlList = ["https://self-oss.abt.hzabjt.com"],
68
68
  readPretty,
69
69
  } = props;