@netless/app-slide 0.2.101-alpha.0 → 0.2.102

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.d.ts CHANGED
@@ -206,10 +206,6 @@ interface ISlideRenderOptions {
206
206
  */
207
207
  transitionResolutionLevel?: number;
208
208
  antialias?: boolean;
209
- /** Maximum compressed bytes accepted for one client-decoded GIF. */
210
- localGifMaxCompressedBytes?: number;
211
- /** Maximum estimated GIF working set for one cached slide. */
212
- localGifMaxWorkingSetBytes?: number;
213
209
  }
214
210
  interface INavigatorDelegate {
215
211
  gotoPage?: (index: number) => void;
@@ -327,6 +323,7 @@ interface ISlideConfig {
327
323
  interface MediaState {
328
324
  type: "pause" | "play";
329
325
  time: number;
326
+ frozenTime?: number;
330
327
  fullscreen?: boolean;
331
328
  }
332
329
  interface TimeNodeSeqState {
@@ -477,12 +474,12 @@ declare class Slide extends Slide_base {
477
474
  private userInputTime;
478
475
  private isSyncingSlideState;
479
476
  private frozenTaskManager;
480
- private frozenMediaTimes;
481
477
  private randomId;
482
478
  private resize;
483
479
  private isAnimating;
484
480
  private renderingTaskManager;
485
481
  private isLoading;
482
+ private isReleasing;
486
483
  private interactive;
487
484
  private syncCatchUpInputBlocked;
488
485
  private anchor;
@@ -1044,6 +1041,7 @@ declare class ResizableContainer {
1044
1041
  container: HTMLDivElement;
1045
1042
  private scrollContainer;
1046
1043
  onScaleChanged: ((scale: number) => void) | null;
1044
+ onLayoutUpdated: (() => void) | null;
1047
1045
  private parent;
1048
1046
  private whiteboardContainer;
1049
1047
  private slide;