@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
package/package.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hzab/form-render-mobile",
|
|
3
|
-
"version": "1.2.
|
|
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
|
-
"
|
|
10
|
-
"publish
|
|
11
|
-
"
|
|
12
|
-
"publish
|
|
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,
|
|
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);
|