@netless/slide 0.7.6 → 0.7.8-legacy

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/README.md CHANGED
@@ -243,3 +243,12 @@
243
243
 
244
244
  * 新增 Slide.snapshot 及 Slide.snapshotWithTimingEnd 两个截图 api
245
245
  * 新增 SLIDE_EVENTS.slideStepEnd 及 SLIDE_EVENTS slideStepStart 两个事件
246
+
247
+ #### 0.7.7
248
+
249
+ * 新增 "@slide/_request_frozen_" 全局事件, 冻结所有 ppt
250
+ * 新增 "@slide/_request_release_" 全局事件, 释放所有 ppt
251
+
252
+ #### 0.7.8
253
+
254
+ * 修复录制参数没有生效
package/lib/Slide.d.ts CHANGED
@@ -307,6 +307,8 @@ export interface SlideEventEmitter {
307
307
  }
308
308
  declare const Slide_base: new () => SlideEventEmitter;
309
309
  export declare class Slide extends Slide_base {
310
+ static instances: Slide[];
311
+ static _tempFrozenIds: string[];
310
312
  static _tempLog: string;
311
313
  static _tempLogIndex: number;
312
314
  static flushLog(force?: boolean): Promise<void>;
@@ -359,6 +361,8 @@ export declare class Slide extends Slide_base {
359
361
  private recoverHandler;
360
362
  private reportError;
361
363
  initSlideConfig(config: ISlideConfig): ISlideConfig;
364
+ static handleFrozenAllSlide: () => void;
365
+ static handleReleaseAllSlide: () => void;
362
366
  static handleLogReport: (sessionId: string) => Promise<void>;
363
367
  static handleLogDownload: () => Promise<void>;
364
368
  private initPlayer;