polarvo-layout 1.0.53 → 1.0.55

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.53",
3
+ "version": "1.0.55",
4
4
  "type": "module",
5
5
  "author": "unigence <unigencelab@gmail.com>",
6
6
  "repository": {
@@ -3,7 +3,7 @@
3
3
  :id="item.id"
4
4
  class="absolute user-select-none"
5
5
  :style="itemStyle"
6
- :class="{ 'z-50': item.id === activeId, 'bg-white border-2 border-blue-400': item.id === activeId, 'bg-white': item.type === 'chart' }"
6
+ :class="{ 'z-50': item.id === activeId, 'bg-white border border-blue-400': item.id === activeId, 'bg-white': item.type === 'chart' }"
7
7
  @mousedown.stop="activeEditMode ? null : handleMouseDown($event, item.id)"
8
8
  >
9
9
  <!-- 크기-->
@@ -17,7 +17,7 @@ export const elementResource = {
17
17
  },
18
18
  searchBar: {
19
19
  w: 660,
20
- h: 25,
20
+ h: 32,
21
21
  },
22
22
  table: {
23
23
  w: 300,
@@ -541,7 +541,7 @@ class FreeDropEngine {
541
541
 
542
542
  // 최소 크기 제한
543
543
  newW = Math.max(40, newW);
544
- newH = Math.max(40, newH);
544
+ newH = Math.max(20, newH);
545
545
 
546
546
  return { newX, newY, newW, newH };
547
547
  }