@hzab/form-render-mobile 1.2.4 → 1.2.6

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-mobile@1.2.5
2
+
3
+ fix: 缩略图后缀名更换
4
+
1
5
  # @hzab/form-render-mobile@1.2.4
2
6
 
3
7
  feat: scenario form-render-m
package/package.json CHANGED
@@ -1,15 +1,19 @@
1
1
  {
2
2
  "name": "@hzab/form-render-mobile",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "formily-form-render-mobile",
5
5
  "main": "src",
6
6
  "scripts": {
7
7
  "dev": "npm run prepare && 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
  "prepare": "husky install",
14
18
  "mac-chmod": "chmod +x .husky && chmod +x .husky/pre-commit",
15
19
  "docs": "typedoc"
@@ -43,7 +43,7 @@ function Uploader(props, ref) {
43
43
  // cordova插件上传类型 cordova-plugin-chooser | cordova-plugin-camera
44
44
  cordovaPlugin = "cordova-plugin-camera",
45
45
  uploaderProps,
46
- thumbnailParams = "image_process=resize,p_30",
46
+ thumbnailParams = "image_process=resize,w_200",
47
47
  selfUrlList = ["https://self-oss.abt.hzabjt.com"]
48
48
  } = props;
49
49
  const [loading, setLoading] = useState(false);