@panneau/action-upload 3.0.295 → 3.0.299
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/es/index.js +4 -4
- package/package.json +6 -8
package/es/index.js
CHANGED
|
@@ -36,7 +36,7 @@ var defaultProps = {
|
|
|
36
36
|
onConfirmed: null,
|
|
37
37
|
className: null
|
|
38
38
|
};
|
|
39
|
-
var
|
|
39
|
+
var UploadAction = function UploadAction(_ref) {
|
|
40
40
|
_ref.endpoint;
|
|
41
41
|
_ref.action;
|
|
42
42
|
var label = _ref.label;
|
|
@@ -72,7 +72,7 @@ var ImportAction = function ImportAction(_ref) {
|
|
|
72
72
|
className: className
|
|
73
73
|
}, props));
|
|
74
74
|
};
|
|
75
|
-
|
|
76
|
-
|
|
75
|
+
UploadAction.propTypes = propTypes;
|
|
76
|
+
UploadAction.defaultProps = defaultProps;
|
|
77
77
|
|
|
78
|
-
export {
|
|
78
|
+
export { UploadAction as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panneau/action-upload",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.299",
|
|
4
4
|
"description": "Upload action",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -28,9 +28,7 @@
|
|
|
28
28
|
"type": "module",
|
|
29
29
|
"module": "es/index.js",
|
|
30
30
|
"exports": {
|
|
31
|
-
".": "./es/index.js"
|
|
32
|
-
"./assets/css/styles": "./assets/css/styles.css",
|
|
33
|
-
"./assets/css/styles.css": "./assets/css/styles.css"
|
|
31
|
+
".": "./es/index.js"
|
|
34
32
|
},
|
|
35
33
|
"files": [
|
|
36
34
|
"lib",
|
|
@@ -52,9 +50,9 @@
|
|
|
52
50
|
"dependencies": {
|
|
53
51
|
"@babel/runtime": "^7.12.5",
|
|
54
52
|
"@panneau/core": "^3.0.295",
|
|
55
|
-
"@panneau/element-button": "^3.0.
|
|
56
|
-
"@panneau/field-upload": "^3.0.
|
|
57
|
-
"@panneau/themes": "^3.0.
|
|
53
|
+
"@panneau/element-button": "^3.0.299",
|
|
54
|
+
"@panneau/field-upload": "^3.0.299",
|
|
55
|
+
"@panneau/themes": "^3.0.299",
|
|
58
56
|
"classnames": "^2.5.1",
|
|
59
57
|
"prop-types": "^15.7.2",
|
|
60
58
|
"react-intl": "^5.15.8||^6.0.0"
|
|
@@ -62,5 +60,5 @@
|
|
|
62
60
|
"publishConfig": {
|
|
63
61
|
"access": "public"
|
|
64
62
|
},
|
|
65
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "265c38d01fe6da4ef49ff2792cf07a496424d985"
|
|
66
64
|
}
|