publ-echo-test 0.0.214 → 0.0.215

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.
@@ -47,6 +47,7 @@ var GridItem = function (_a) {
47
47
  if (!targetNode || isDragging || isResizing) {
48
48
  return;
49
49
  }
50
+ console.log('targetNode from mutation observer:', targetNode);
50
51
  var prevPaddingL = parseFloat(getComputedStyle(targetNode).paddingLeft);
51
52
  var prevPaddingR = parseFloat(getComputedStyle(targetNode).paddingRight);
52
53
  var prevPaddingT = parseFloat(getComputedStyle(targetNode).paddingTop);
@@ -100,10 +100,6 @@ var Resizable = function (_a) {
100
100
  var listMinHeight = Math.max(oneCompositionMinHeight * numberOfRows + (numberOfRows - 1) * rowGap, 0);
101
101
  minWidth.current = listMinWidth;
102
102
  minHeight.current = listMinHeight;
103
- console.log('compositionMinWidth', oneCompositionMinWidth);
104
- console.log('compositionMinHeight', oneCompositionMinHeight);
105
- console.log('minWidth.current', minWidth.current);
106
- console.log('minHeight.current', minHeight.current);
107
103
  return;
108
104
  }
109
105
  // target.clientHeight -> 실제 "노드"의 height. (gridItem아닌)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "publ-echo-test",
3
- "version": "0.0.214",
3
+ "version": "0.0.215",
4
4
  "private": false,
5
5
  "main": "dist/lib/index.js",
6
6
  "types": "dist/lib/index.d.js",