Skip to content

Commit 44354aa

Browse files
committedFeb 16, 2021
fix bugs
1 parent 4af2f6b commit 44354aa

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed
 

‎.DS_Store

-1 Bytes
Binary file not shown.

‎lib/index.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1875,24 +1875,24 @@ module.exports = function (e) {
18751875

18761876
ue.propTypes = {
18771877
id: a.a.oneOfType([a.a.number, a.a.string]),
1878-
mode: a.a.string.isRequired,
1878+
mode: a.a.string,
18791879
transition: K,
18801880
relations: Q,
18811881
getContainer: a.a.oneOfType([a.a.func, a.a.object]),
18821882
style: a.a.object,
18831883
contentStyle: a.a.object,
18841884
className: a.a.any,
18851885
contentClass: a.a.any,
1886-
children: a.a.element,
1887-
config: {
1886+
children: a.a.node,
1887+
config: a.a.shape({
18881888
id: a.a.oneOfType([a.a.number, a.a.string]),
1889-
mode: a.a.string.isRequired,
1889+
mode: a.a.string,
18901890
transition: K,
18911891
relations: Q,
18921892
getContainer: a.a.oneOfType([a.a.func, a.a.object]),
18931893
style: a.a.object,
18941894
contentStyle: a.a.object
1895-
}
1895+
})
18961896
}, ue.defaultProps = {};
18971897
var le = ue;
18981898
t.default = {

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "react-scale-view",
3-
"version": "1.1.0",
3+
"version": "1.1.2",
44
"private": false,
55
"description": "react-scale-view is a component used for large-screen-data-visualization",
66
"main": "index.js",
77
"files": [
88
"lib"
99
],
1010
"homepage": "https://github.com/xiaohaijoe/ReactScaleView",
11-
"license": "MIT",
11+
"license": "MIT License",
1212
"scripts": {
1313
"analyze": "source-map-explorer build/static/js/*.js",
1414
"start": "react-app-rewired start",

‎publish/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/components/ScaleView/ScaleViewItem/ScaleViewItem.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ ScaleViewItem.propTypes = {
167167
* Set the scale mode of the Item.
168168
* There are five scale mode: 'standard', 'fixed', 'scaleXFix', 'scaleYFix', 'adaptWidth', 'adaptHeight'.
169169
*/
170-
mode: PropTypes.string.isRequired,
170+
mode: PropTypes.string,
171171

172172
/**
173173
* Set the enter animation of the Item.
@@ -191,7 +191,6 @@ ScaleViewItem.propTypes = {
191191
contentStyle: PropTypes.object,
192192
className: PropTypes.any,
193193
contentClass: PropTypes.any,
194-
children: PropTypes.element,
195194
/**
196195
* For the convenience of setting the item parameters, component provide 'config' props to unify them.
197196
* It's recommended to setting all the parameters in a config file.
@@ -210,15 +209,15 @@ ScaleViewItem.propTypes = {
210209
* }
211210
*
212211
*/
213-
config: {
212+
config: PropTypes.shape({
214213
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
215-
mode: PropTypes.string.isRequired,
214+
mode: PropTypes.string,
216215
transition: transitionShape,
217216
relations: relationsShape,
218217
getContainer: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
219218
style: PropTypes.object,
220219
contentStyle: PropTypes.object,
221-
},
220+
}),
222221
};
223222

224223
ScaleViewItem.defaultProps = {};

0 commit comments

Comments
 (0)