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
|
@@ -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
|
-
|
|
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
|
-
|
|
356
|
+
...item.propDefaults || {}, // 아이템의 기본 props 설정
|
|
357
357
|
};
|
|
358
358
|
|
|
359
359
|
this.setActiveElement(null, 'add');
|