@sequent-org/moodboard 1.2.70 → 1.2.71

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.70",
3
+ "version": "1.2.71",
4
4
  "type": "module",
5
5
  "description": "Interactive moodboard",
6
6
  "main": "./src/index.js",
@@ -232,9 +232,6 @@ export class MoodBoard {
232
232
  // Смена фона доски по выбору цвета в топбаре
233
233
  this.coreMoodboard.eventBus.on(Events.UI.PaintPick, ({ color }) => {
234
234
  if (!color) return;
235
- try {
236
- console.log('[MB] PaintPick handler: received color', color, 'settingsApplier?', !!this.settingsApplier);
237
- } catch (_) {}
238
235
  // Централизованное применение через SettingsApplier,
239
236
  // чтобы гарантировать эмит события для автосохранения
240
237
  if (this.settingsApplier && typeof this.settingsApplier.set === 'function') {
@@ -14,7 +14,6 @@ export class SettingsApplier {
14
14
  }
15
15
 
16
16
  set(partial) {
17
- try { console.log('[SA] set()', partial); } catch (_) {}
18
17
  this.settings = { ...this.settings, ...(partial || {}) };
19
18
  this.apply(this.settings);
20
19
  // Сообщаем системе об изменении настроек для автосохранения