@mastergo/plugin-typings 2.0.0 → 2.2.0
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/CHANGELOG.md +19 -0
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [2.2.0](https://github.com/mastergo-design/plugin-typings/compare/v2.0.0...v2.2.0) (2023-11-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* 文字分段样式增加fillStyleId ([f508d08](https://github.com/mastergo-design/plugin-typings/commit/f508d08096a16bce33c37d90f01cba13d0fe0dfe))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# [2.1.0](https://github.com/mastergo-design/plugin-typings/compare/v2.0.0...v2.1.0) (2023-10-12)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* 更新pkg ([f708fc7](https://github.com/mastergo-design/plugin-typings/commit/f708fc79d7b590e8a79b3bcd6a064be4cb53ef1a))
|
|
16
|
+
* saveVersionHistoryAsync增加标题参数 ([1fef69d](https://github.com/mastergo-design/plugin-typings/commit/1fef69db64abe6f12e09a4996db31bb0db9f8353))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
1
20
|
# [2.0.0](https://github.com/mastergo-design/plugin-typings/compare/v1.21.0...v2.0.0) (2023-09-25)
|
|
2
21
|
|
|
3
22
|
|
package/dist/index.d.ts
CHANGED
|
@@ -96,7 +96,7 @@ declare global {
|
|
|
96
96
|
exclude(children: SceneNode[]): BooleanOperationNode
|
|
97
97
|
flatten(nodes: SceneNode[]): PenNode | null
|
|
98
98
|
|
|
99
|
-
saveVersionHistoryAsync(desc: string): Promise<void>
|
|
99
|
+
saveVersionHistoryAsync(desc: string, title?: string): Promise<void>
|
|
100
100
|
|
|
101
101
|
notify(message: string, options?: NotifyOptions): NotificationHandler
|
|
102
102
|
|
|
@@ -297,6 +297,7 @@ declare global {
|
|
|
297
297
|
fontWeight: number
|
|
298
298
|
}
|
|
299
299
|
fills: Paint[]
|
|
300
|
+
fillStyleId: string
|
|
300
301
|
}
|
|
301
302
|
|
|
302
303
|
interface ListStyle {
|