polarvo-layout 1.0.78 → 1.0.79

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.78",
3
+ "version": "1.0.79",
4
4
  "type": "module",
5
5
  "author": "unigence <unigencelab@gmail.com>",
6
6
  "repository": {
@@ -4,7 +4,7 @@
4
4
  v-for="(item, index) in currentElements"
5
5
  :key="index"
6
6
  class="flex flex-col items-center justify-center border border-gray-200 rounded-lg p-2 hover:bg-gray-50 transition-colors cursor-pointer active:scale-95"
7
- @mousedown.stop="sectionMode == 'free' ? addElementToFree($event, item) : addElementToGrid(item)"
7
+ @mousedown.stop="handleAddElement($event, item)"
8
8
  >
9
9
  <img :src="item.imgurl" alt="" class="w-24 h-auto rounded" />
10
10
  <h4 class="text-sm">{{ item.label }}</h4>
@@ -39,8 +39,23 @@ const props = defineProps({
39
39
  required: false,
40
40
  default: () => [],
41
41
  },
42
+ generalStyle: {
43
+ type: Object,
44
+ default: () => ({}),
45
+ },
42
46
  });
43
47
 
48
+ function resolveCustomStyle(item) {
49
+ // custom 요소는 기존 세팅된 customStyle을 따름
50
+ const base = props.elType === 'custom' ? item.propDefaults?.customStyle : props.generalStyle?.[item.elName];
51
+ return { ...(base ?? {}) };
52
+ }
53
+
54
+ function handleAddElement(event, item) {
55
+ const payload = { ...item, customStyle: resolveCustomStyle(item) };
56
+ sectionMode.value === 'free' ? addElementToFree(event, payload) : addElementToGrid(payload);
57
+ }
58
+
44
59
  const { addElement: addElementToFree } = props.polarvo.freeDrop;
45
60
  const { addElement: addElementToGrid } = props.polarvo.gridDrop;
46
61
 
@@ -432,6 +432,7 @@ class FreeDropEngine {
432
432
  section: this._activeSection,
433
433
  isLocked: false,
434
434
  ...(item.propDefaults || {}), // 아이템의 기본 props 설정
435
+ customStyle: {...item.customStyle ?? null},
435
436
  };
436
437
 
437
438
  this.setActiveElement(element, 'add');
@@ -94,7 +94,7 @@ class GridDropEngine {
94
94
  const index = this._elements.findIndex((x) => x.id === elementId);
95
95
 
96
96
  if (index !== -1) {
97
- this._elements[index] = element; // 업데이트
97
+ this._elements[index] = element; // 업데이트
98
98
  this._elementsUpdate = true;
99
99
  }
100
100
 
@@ -362,6 +362,7 @@ class GridDropEngine {
362
362
  section: this._activeSection,
363
363
  isLocked: false,
364
364
  ...(item.propDefaults || {}), // 아이템의 기본 props 설정
365
+ customStyle: { ...(item.customStyle ?? null) },
365
366
  };
366
367
 
367
368
  this.setActiveElement(null, 'add');