@netless/slide 1.4.38 → 1.4.40

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,16 @@
3
3
  ## [示例及具体文档参考](https://github.com/netless-io/netless-slide-demo)
4
4
 
5
5
  ## changelog
6
+ ### 1.4.40 (2025-10-10)
7
+ * 修复部分 PPT 中含有空 path 时, 渲染报错问题
8
+ * 修复 antialias 参数类型位置错误问题
9
+ * 修复带有特效的图形中含有图片时, 图片显示问题
10
+
11
+ ### 1.4.39 (2025-09-15)
12
+ * 针对 IOS 15.4 版本开放 antialias 参数, 修复渲染异常问题
13
+
14
+ ### 1.4.38 (2025-09-05)
15
+ * 添加文本框旋转行书, 修复部分 PPT 文本倒置问题
6
16
 
7
17
  ### 1.4.37 (2025-7-16)
8
18
  * 添加 `setStageCountLimit` 静态方法, 用于设置强行清除最大限制, 需设置 `window.__nativeTags.platform`
package/lib/Slide.d.ts CHANGED
@@ -176,6 +176,7 @@ export interface ISlideRenderOptions {
176
176
  * [4] 3K 3200 × 1800, greater than 4 is calculated as 4; --- default setting for PC devices.
177
177
  */
178
178
  transitionResolutionLevel?: number;
179
+ antialias?: boolean;
179
180
  }
180
181
  export interface INavigatorDelegate {
181
182
  gotoPage?: (index: number) => void;