@netless/window-manager 1.0.7-beta.5 → 1.0.7-beta.6

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/dist/index.mjs CHANGED
@@ -5433,18 +5433,12 @@ class BoxManager {
5433
5433
  this.context.callbacks.emit("onBoxesStatusChange", map);
5434
5434
  this.context.emitter.emit("boxesStatusChange", map);
5435
5435
  }
5436
- setBoxStatus(appId, status) {
5437
- this.teleBoxManager.update(appId, { boxStatus: status }, true);
5438
- }
5439
5436
  setLastNotMinimizedBoxesStatus(status) {
5440
5437
  const map = new Map(Object.entries(status != null ? status : {}));
5441
5438
  this.teleBoxManager.setLastNotMinimizedBoxesStatus(map, true);
5442
5439
  this.context.callbacks.emit("onLastNotMinimizedBoxesStatusChange", map);
5443
5440
  this.context.emitter.emit("lastNotMinimizedBoxesStatusChange", map);
5444
5441
  }
5445
- setLastNotMinimizedBoxStatus(appId, status) {
5446
- this.teleBoxManager.update(appId, { lastNotMinimizedBoxStatus: status }, true);
5447
- }
5448
5442
  setupBoxManager(createTeleBoxManagerConfig) {
5449
5443
  const root = WindowManager.wrapper ? WindowManager.wrapper : document.body;
5450
5444
  const rect = root.getBoundingClientRect();
@@ -19500,7 +19494,7 @@ const reconnectRefresher = new ReconnectRefresher({ emitter: internalEmitter });
19500
19494
  const _WindowManager = class extends InvisiblePlugin {
19501
19495
  constructor(context) {
19502
19496
  super(context);
19503
- this.version = "1.0.7-beta.5";
19497
+ this.version = "1.0.7-beta.6";
19504
19498
  this.dependencies = { "dependencies": { "@juggle/resize-observer": "^3.3.1", "@netless/telebox-insider": "0.3.0-beta.10", "emittery": "^0.9.2", "lodash": "^4.17.21", "p-retry": "^4.6.1", "uuid": "^7.0.3", "video.js": ">=7" }, "peerDependencies": { "jspdf": "2.5.1", "white-web-sdk": "^2.16.52" }, "devDependencies": { "@hyrious/dts": "^0.2.2", "@netless/app-docs-viewer": "^0.2.19", "@netless/app-media-player": "0.1.4", "@rollup/plugin-commonjs": "^20.0.0", "@rollup/plugin-node-resolve": "^13.0.4", "@rollup/plugin-url": "^6.1.0", "@sveltejs/vite-plugin-svelte": "1.0.0-next.30", "@tsconfig/svelte": "^2.0.1", "@types/debug": "^4.1.7", "@types/lodash": "^4.14.182", "@types/lodash-es": "^4.17.4", "@types/uuid": "^8.3.1", "@typescript-eslint/eslint-plugin": "^4.30.0", "@typescript-eslint/parser": "^4.30.0", "@vitest/ui": "^0.14.1", "cypress": "^8.7.0", "dotenv": "^10.0.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-svelte3": "^3.2.0", "jsdom": "^19.0.0", "jspdf": "^2.5.1", "less": "^4.1.1", "prettier": "^2.3.2", "prettier-plugin-svelte": "^2.4.0", "rollup-plugin-analyzer": "^4.0.0", "rollup-plugin-styles": "^3.14.1", "side-effect-manager": "0.1.5", "svelte": "^3.42.4", "typescript": "^4.5.5", "vite": "^2.9.9", "vitest": "^0.14.1", "white-web-sdk": "^2.16.52" } };
19505
19499
  this.emitter = callbacks$1;
19506
19500
  this.viewMode = ViewMode.Broadcaster;
@@ -19925,13 +19919,13 @@ const _WindowManager = class extends InvisiblePlugin {
19925
19919
  var _a;
19926
19920
  if (!this.canOperate)
19927
19921
  return;
19928
- (_a = this.boxManager) == null ? void 0 : _a.setBoxStatus(boxId, boxStatus);
19922
+ (_a = this.appManager) == null ? void 0 : _a.store.setBoxStatus(boxId, boxStatus);
19929
19923
  }
19930
19924
  setLastNotMinimizedBoxStatus(boxId, lastNotMinimizedBoxStatus) {
19931
19925
  var _a;
19932
19926
  if (!this.canOperate)
19933
19927
  return;
19934
- (_a = this.boxManager) == null ? void 0 : _a.setLastNotMinimizedBoxStatus(boxId, lastNotMinimizedBoxStatus);
19928
+ (_a = this.appManager) == null ? void 0 : _a.store.setLastNotMinimizedBoxStatus(boxId, lastNotMinimizedBoxStatus);
19935
19929
  }
19936
19930
  setFullscreen(fullscreen) {
19937
19931
  var _a;