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 CHANGED
@@ -26,4 +26,5 @@ experimental.strict_call_arity=true
26
26
  module.system.node.allow_root_relative=true
27
27
  module.use_strict=true
28
28
  server.max_workers=6
29
- exact_by_default=true
29
+ exact_by_default=true
30
+ sharedmemory.heap_size=3221225472
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### 1.11.1 (Mar 5, 2021)
4
+
5
+ - Added React 17 to peerDependencies.
6
+
3
7
  ### 1.11.0 (Sep 3, 2020)
4
8
 
5
9
  - ⚠ Important Notice!
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ### React-Resizable
2
2
 
3
- [View the Demo](https://strml.github.io/react-resizable/examples/1.html)
3
+ [View the Demo](https://react-grid-layout.github.io/react-resizable/examples/1.html)
4
4
 
5
5
  A simple widget that can be resized via one or more handles.
6
6
 
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1599153161187" clover="3.2.0">
3
- <project timestamp="1599153161187" name="All files">
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&lt;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 Thu Sep 03 2020 13:12:41 GMT-0400 (Eastern Daylight Time)
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&lt;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 Thu Sep 03 2020 13:12:41 GMT-0400 (Eastern Daylight Time)
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 Thu Sep 03 2020 13:12:41 GMT-0400 (Eastern Daylight Time)
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 Thu Sep 03 2020 13:12:41 GMT-0400 (Eastern Daylight Time)
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&lt;any&gt;, 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 Thu Sep 03 2020 13:12:41 GMT-0400 (Eastern Daylight Time)
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.0",
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"