react-resizable 1.11.0 → 1.11.1
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/.flowconfig +2 -1
- package/CHANGELOG.md +4 -0
- package/README.md +1 -1
- package/coverage/clover.xml +2 -2
- package/coverage/lcov-report/Resizable.js.html +1 -1
- package/coverage/lcov-report/ResizableBox.js.html +1 -1
- package/coverage/lcov-report/index.html +1 -1
- package/coverage/lcov-report/propTypes.js.html +1 -1
- package/coverage/lcov-report/utils.js.html +1 -1
- package/package.json +3 -3
package/.flowconfig
CHANGED
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/coverage/clover.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
2
|
+
<coverage generated="1614978391020" clover="3.2.0">
|
|
3
|
+
<project timestamp="1614978391020" name="All files">
|
|
4
4
|
<metrics statements="89" coveredstatements="73" conditionals="80" coveredconditionals="59" methods="14" coveredmethods="11" elements="183" coveredelements="143" complexity="0" loc="89" ncloc="89" packages="1" files="4" classes="4"/>
|
|
5
5
|
<file name="Resizable.js" path="/Users/samuelreed/git/oss/react-resizable/lib/Resizable.js">
|
|
6
6
|
<metrics statements="70" coveredstatements="57" conditionals="62" coveredconditionals="45" methods="9" coveredmethods="6"/>
|
|
@@ -649,7 +649,7 @@ export default class Resizable extends React.Component<Props, ResizableState&
|
|
|
649
649
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
650
650
|
Code coverage generated by
|
|
651
651
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
652
|
-
at
|
|
652
|
+
at Fri Mar 05 2021 16:06:31 GMT-0500 (Eastern Standard Time)
|
|
653
653
|
</div>
|
|
654
654
|
</div>
|
|
655
655
|
<script src="prettify.js"></script>
|
|
@@ -358,7 +358,7 @@ export default class ResizableBox extends React.Component<ResizableBoxProps,
|
|
|
358
358
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
359
359
|
Code coverage generated by
|
|
360
360
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
361
|
-
at
|
|
361
|
+
at Fri Mar 05 2021 16:06:31 GMT-0500 (Eastern Standard Time)
|
|
362
362
|
</div>
|
|
363
363
|
</div>
|
|
364
364
|
<script src="prettify.js"></script>
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
141
141
|
Code coverage generated by
|
|
142
142
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
143
|
-
at
|
|
143
|
+
at Fri Mar 05 2021 16:06:31 GMT-0500 (Eastern Standard Time)
|
|
144
144
|
</div>
|
|
145
145
|
</div>
|
|
146
146
|
<script src="prettify.js"></script>
|
|
@@ -469,7 +469,7 @@ export const resizableProps = {
|
|
|
469
469
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
470
470
|
Code coverage generated by
|
|
471
471
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
472
|
-
at
|
|
472
|
+
at Fri Mar 05 2021 16:06:31 GMT-0500 (Eastern Standard Time)
|
|
473
473
|
</div>
|
|
474
474
|
</div>
|
|
475
475
|
<script src="prettify.js"></script>
|
|
@@ -106,7 +106,7 @@ export function cloneElement(element: ReactElement<any>, props: Object): R
|
|
|
106
106
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
107
107
|
Code coverage generated by
|
|
108
108
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
109
|
-
at
|
|
109
|
+
at Fri Mar 05 2021 16:06:31 GMT-0500 (Eastern Standard Time)
|
|
110
110
|
</div>
|
|
111
111
|
</div>
|
|
112
112
|
<script src="prettify.js"></script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-resizable",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "A component that is resizable with handles.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"react-draggable": "^4.0.3"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"react": "0.14.x || 15.x || 16.x",
|
|
70
|
-
"react-dom": "0.14.x || 15.x || 16.x"
|
|
69
|
+
"react": "0.14.x || 15.x || 16.x || 17.x",
|
|
70
|
+
"react-dom": "0.14.x || 15.x || 16.x || 17.x"
|
|
71
71
|
},
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"registry": "https://registry.npmjs.org"
|