@netless/slide 1.4.40 → 1.4.43

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
@@ -3,6 +3,14 @@
3
3
  ## [示例及具体文档参考](https://github.com/netless-io/netless-slide-demo)
4
4
 
5
5
  ## changelog
6
+ ### 1.4.43 (2025-10-31)
7
+ * 修复部分 PPT 动画中含有空 to 属性时, 渲染报错问题
8
+
9
+ ### 1.4.41 (2025-10-22)
10
+ * 修复图形渐变色填充带有透明度时渲染异常问题
11
+ * 修复矩形判断误判, 导致空心矩形渲染异常问题
12
+ * 添加 `slide.getNotesForCurrentSlide` 方法, 用于获取当前页面的备注
13
+
6
14
  ### 1.4.40 (2025-10-10)
7
15
  * 修复部分 PPT 中含有空 path 时, 渲染报错问题
8
16
  * 修复 antialias 参数类型位置错误问题
package/lib/Slide.d.ts CHANGED
@@ -469,6 +469,7 @@ export declare class Slide extends Slide_base {
469
469
  private resizeView;
470
470
  private handleViewClick;
471
471
  static trackLogger: AliTrackLogger;
472
+ private slideNots;
472
473
  private resourceList;
473
474
  private get dispatchIncrId();
474
475
  constructor(initConfig: ISlideConfig);
@@ -705,4 +706,5 @@ export declare class Slide extends Slide_base {
705
706
  * @deprecated This API is no longer functional. Please use `slideInstance.clearSlideCache` and `Slide.clearLocalCache` instead.
706
707
  */
707
708
  static disposeLocalCache(): void;
709
+ getNoteForCurrentSlide(slideIndex: number): Promise<any>;
708
710
  }