@etsoo/react 1.4.26 → 1.4.27

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.
@@ -64,6 +64,7 @@ export function ResponsibleContainer(props) {
64
64
  // Last rect
65
65
  const lastRect = state.rect;
66
66
  // 32 = scroll bar width
67
+ console.log(lastRect, rect);
67
68
  if (lastRect != null &&
68
69
  state.mounted !== true &&
69
70
  Math.abs(rect.width - lastRect.width) <= 32 &&
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.4.26",
3
+ "version": "1.4.27",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -229,6 +229,7 @@ export function ResponsibleContainer<
229
229
  const lastRect = state.rect;
230
230
 
231
231
  // 32 = scroll bar width
232
+ console.log(lastRect, rect);
232
233
  if (
233
234
  lastRect != null &&
234
235
  state.mounted !== true &&