@sequent-org/moodboard 1.2.25 → 1.2.27

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": "@sequent-org/moodboard",
3
- "version": "1.2.25",
3
+ "version": "1.2.27",
4
4
  "type": "module",
5
5
  "description": "Interactive moodboard",
6
6
  "main": "./src/index.js",
@@ -24,10 +24,10 @@ export class DotGrid extends BaseGrid {
24
24
  // Рисуем обычные точки
25
25
  this.drawDots();
26
26
 
27
- // Выделяем пересечения (каждые N точек)
28
- if (this.highlightIntersections) {
29
- this.drawIntersections();
30
- }
27
+ // Выделение пересечений отключено для равномерного тона точек (как в Miro)
28
+ // if (this.highlightIntersections) {
29
+ // this.drawIntersections();
30
+ // }
31
31
  }
32
32
 
33
33
  /**
@@ -77,7 +77,7 @@ export class GridFactory {
77
77
  dot: {
78
78
  enabled: true,
79
79
  size: 20,
80
- color: 0xE0E0E0,
80
+ color: 0x6a6aff,
81
81
  opacity: 0.5,
82
82
  dotSize: 2,
83
83
  dotStyle: 'circle',
@@ -86,7 +86,7 @@ export class GridFactory {
86
86
  cross: {
87
87
  enabled: true,
88
88
  size: 40,
89
- color: 0xB0B0B0,
89
+ color: 0x6a6aff,
90
90
  opacity: 0.5,
91
91
  crossHalfSize: 4,
92
92
  crossLineWidth: 1