polarvo-layout 1.0.31 → 1.0.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polarvo-layout",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "type": "module",
5
5
  "author": "unigence <unigencelab@gmail.com>",
6
6
  "repository": {
@@ -379,7 +379,7 @@ class FreeDropEngine {
379
379
  size: elementSource[elName] || { w: 100, h: 100 },
380
380
  section: this._activeSection,
381
381
  isLocked: false,
382
- propDefaults: item.propDefaults || {}, // 아이템의 기본 props 설정
382
+ ...item.propDefaults || {}, // 아이템의 기본 props 설정
383
383
  };
384
384
 
385
385
  this.setActiveElement(element, 'add');
@@ -353,7 +353,7 @@ class GridDropEngine {
353
353
  size: { colSpan: 1, rowSpan: 1 },
354
354
  section: this._activeSection,
355
355
  isLocked: false,
356
- propDefaults: item.propDefaults || {}, // 아이템의 기본 props 설정
356
+ ...item.propDefaults || {}, // 아이템의 기본 props 설정
357
357
  };
358
358
 
359
359
  this.setActiveElement(null, 'add');