@netless/app-slide 0.2.101 → 0.2.103

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,6 +206,10 @@ 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;
209
213
  }
210
214
  interface INavigatorDelegate {
211
215
  gotoPage?: (index: number) => void;
@@ -1041,6 +1045,7 @@ declare class ResizableContainer {
1041
1045
  container: HTMLDivElement;
1042
1046
  private scrollContainer;
1043
1047
  onScaleChanged: ((scale: number) => void) | null;
1048
+ onLayoutUpdated: (() => void) | null;
1044
1049
  private parent;
1045
1050
  private whiteboardContainer;
1046
1051
  private slide;