polarvo-layout 1.0.79 → 1.0.80

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.79",
3
+ "version": "1.0.80",
4
4
  "type": "module",
5
5
  "author": "unigence <unigencelab@gmail.com>",
6
6
  "repository": {
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div
3
3
  :id="preview ? 'previewLayout' : 'baseLayout'"
4
- class="grid h-full p-2 bg-transparent rounded-lg"
4
+ class="grid h-full p-[10px] bg-transparent rounded-lg"
5
5
  :class="[layoutType + '-layout', `grid-cols-${gridNumber?.column}`, { 'mb-4': layoutType === 'three-column-split' }]"
6
6
  :style="getBaseStyle"
7
7
  @contextmenu.prevent
@@ -26,7 +26,7 @@ const props = defineProps({
26
26
  const DEFAULT_DISPLAY_SIZE = {
27
27
  px: 1200,
28
28
  percent: 100,
29
- gridSize: 16,
29
+ gridSize: 10,
30
30
  aspectRatio: '16/9',
31
31
  };
32
32
 
@@ -74,7 +74,7 @@ const containerStyle = computed(() => {
74
74
  linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px)
75
75
  `,
76
76
  backgroundSize: `${DEFAULT_DISPLAY_SIZE.gridSize}px ${DEFAULT_DISPLAY_SIZE.gridSize}px`,
77
- backgroundPosition: '8px 8px', // BaseLayout의 p-2(8px)와 맞춰 좌상단 기준으로 정렬
77
+ backgroundPosition: '10px 10px', // BaseLayout의 p-[10px]와 맞춰 좌상단 기준으로 정렬 (gridSize와 무관한 고정값)
78
78
  };
79
79
  }
80
80
 
@@ -90,7 +90,7 @@ const containerStyle = computed(() => {
90
90
  linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px)
91
91
  `,
92
92
  backgroundSize: `${displaySize.value.gridSize}px ${displaySize.value.gridSize}px`,
93
- backgroundPosition: '8px 8px', // BaseLayout의 p-2(8px)와 맞춰 좌상단 기준으로 정렬
93
+ backgroundPosition: '10px 10px', // BaseLayout의 p-[10px]와 맞춰 좌상단 기준으로 정렬 (gridSize와 무관한 고정값)
94
94
  };
95
95
  });
96
96
  </script>
@@ -7,7 +7,7 @@ import MobileIcon from '../../icons/display/MobileIcon.vue';
7
7
 
8
8
  export const displayResource = (icon = {}) => ({
9
9
  desktop: {
10
- gridSize: 16,
10
+ gridSize: 10,
11
11
  aspectRatio: '16/9',
12
12
  defaultWidth: 1200,
13
13
  icon: markRaw(icon.DesktopIcon || DesktopIcon),
@@ -9,7 +9,7 @@ const DISPLAY_LIMITS = {
9
9
  const DEFAULT_DISPLAY_SIZE = {
10
10
  px: 1200,
11
11
  percent: 100,
12
- gridSize: 16,
12
+ gridSize: 10,
13
13
  aspectRatio: '16/9',
14
14
  };
15
15
 
@@ -542,22 +542,15 @@ class FreeDropEngine {
542
542
  const rawX = event.clientX - layoutRect.left - offsetPos.x;
543
543
  const rawY = event.clientY - layoutRect.top - offsetPos.y;
544
544
 
545
- // const maxX = layoutRect.width - this._activeElement.size.w;
546
- // const maxY = layoutRect.height - this._activeElement.size.h;
545
+ // grid snap을 먼저 적용한 경계로 clamp해야 함
546
+ // (clamp 후 snap하면 반올림으로 인해 경계값(maxX/maxY, grid 배수가 아님)보다 커질 수 있어
547
+ // 우측/하단 경계를 넘어가는 문제가 발생함)
548
+ const gridX = this._snapToGrid(rawX);
549
+ const gridY = this._snapToGrid(rawY);
547
550
 
548
- // // 클램핑: 경계 밖으로 나가도 경계에서 멈추고 마우스를 계속 추적
549
- // const clampedX = Math.min(Math.max(0, rawX), maxX);
550
- // const clampedY = Math.min(Math.max(0, rawY), maxY);
551
+ const clamped = this._clampToLayoutBounds(gridX, gridY, layoutRect);
551
552
 
552
- const clamped = this._clampToLayoutBounds(rawX, rawY, layoutRect);
553
-
554
- // const gridX = this._snapToGrid(rawX);
555
- // const gridY = this._snapToGrid(rawY);
556
-
557
- const gridX = this._snapToGrid(clamped.x);
558
- const gridY = this._snapToGrid(clamped.y);
559
-
560
- return { x: gridX, y: gridY };
553
+ return { x: clamped.x, y: clamped.y };
561
554
  }
562
555
 
563
556
  /** [내부함수] 새로운 크기와 위치 계산