@netless/app-slide 0.2.102 → 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 +4 -0
- package/dist/main.cjs.js +295 -294
- package/dist/main.cjs.js.map +1 -1
- package/dist/main.es.js +3626 -2366
- package/dist/main.es.js.map +1 -1
- package/dist/main.iife.js +295 -294
- package/dist/main.iife.js.map +1 -1
- package/package.json +2 -2
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;
|