@netless/slide 1.4.24 → 1.4.26

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
@@ -4,6 +4,12 @@
4
4
 
5
5
  ## changelog
6
6
 
7
+ ### 1.4.26 (2025-5-15)
8
+ * 添加 `enableAutoForward` 参数, 设置为 `true` 时, 可以根据 PPT 内设置的自动换片间隔自动播放, 默认为 `false`
9
+
10
+ ### 1.4.25 (2025-5-12)
11
+ * 添加 "三维旋转" 效果
12
+
7
13
  ### 1.4.24 (2025-5-9)
8
14
  * 优化部分 PPT 中图片缓存占用
9
15
  * 优化图形特效 CPU 占用
package/lib/Slide.d.ts CHANGED
@@ -266,6 +266,7 @@ export interface ISlideConfig {
266
266
  enableTracking?: boolean;
267
267
  enableWebAudio?: boolean;
268
268
  skipActionWhenFrozen?: boolean;
269
+ enableAutoForward?: boolean;
269
270
  }
270
271
  interface MediaState {
271
272
  type: "pause" | "play";