@netless/slide 1.4.39 → 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 +4 -0
- package/lib/Slide.d.ts +1 -1
- package/lib/Slide.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
* 修复带有特效的图形中含有图片时, 图片显示问题
|
|
6
10
|
|
|
7
11
|
### 1.4.39 (2025-09-15)
|
|
8
12
|
* 针对 IOS 15.4 版本开放 antialias 参数, 修复渲染异常问题
|
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;
|
|
@@ -274,7 +275,6 @@ export interface ISlideConfig {
|
|
|
274
275
|
skipActionWhenFrozen?: boolean;
|
|
275
276
|
enableAutoForward?: boolean;
|
|
276
277
|
customLinks?: CustomLink[];
|
|
277
|
-
antialias?: boolean;
|
|
278
278
|
}
|
|
279
279
|
interface MediaState {
|
|
280
280
|
type: "pause" | "play";
|