@netless/slide 1.4.25 → 1.4.27

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.27 (2025-5-15)
8
+ * 修复当自动换片和自动动画被同时开启时, 会导致PPT自动前进两次的问题
9
+
10
+ ### 1.4.26 (2025-5-15)
11
+ * 添加 `enableAutoForward` 参数, 设置为 `true` 时, 可以根据 PPT 内设置的自动换片间隔自动播放, 默认为 `false`
12
+
7
13
  ### 1.4.25 (2025-5-12)
8
14
  * 添加 "三维旋转" 效果
9
15
 
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";