saltfish 0.2.29 → 0.2.31

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.
@@ -3567,10 +3567,6 @@ const _ManagerOrchestrator = class _ManagerOrchestrator {
3567
3567
  this.uiUpdaterUnsubscribe();
3568
3568
  this.uiUpdaterUnsubscribe = null;
3569
3569
  }
3570
- if (this.eventUpdaterUnsubscribe) {
3571
- this.eventUpdaterUnsubscribe();
3572
- this.eventUpdaterUnsubscribe = null;
3573
- }
3574
3570
  this.managers.transitionManager.destroy();
3575
3571
  this.managers.videoManager.destroy();
3576
3572
  this.managers.cursorManager.destroy();
@@ -3578,7 +3574,6 @@ const _ManagerOrchestrator = class _ManagerOrchestrator {
3578
3574
  this.managers.playlistManager.destroy();
3579
3575
  this.managers.stepTimeoutManager.destroy();
3580
3576
  this.managers.uiManager.destroy();
3581
- store.resetForNewPlaylist();
3582
3577
  log("ManagerOrchestrator: Playlist cleanup completed, trigger monitoring preserved");
3583
3578
  } catch (error2) {
3584
3579
  ErrorHandler.handleCleanupError(
@@ -3715,7 +3710,6 @@ class ShadowDOMManager {
3715
3710
  this.shadowRoot.appendChild(this.styleElement);
3716
3711
  const rootElement = document.createElement("div");
3717
3712
  rootElement.id = "sf-player-root";
3718
- rootElement.style.opacity = "0";
3719
3713
  this.shadowRoot.appendChild(rootElement);
3720
3714
  }
3721
3715
  /**
@@ -9581,9 +9575,6 @@ class UIManager {
9581
9575
  } else {
9582
9576
  this.playerRoot.classList.add("sf-player-root--bottom-right");
9583
9577
  }
9584
- if (store.currentStepId) {
9585
- this.playerRoot.style.opacity = "1";
9586
- }
9587
9578
  if (store.isMinimized) {
9588
9579
  this.playerElement.classList.add(CSS_CLASSES.PLAYER_MINIMIZED);
9589
9580
  } else {