@mastergo/plugin-typings 2.3.0 → 2.4.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 +9 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# [2.4.0](https://github.com/mastergo-design/plugin-typings/compare/v2.3.0...v2.4.0) (2024-04-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* 自动布局补充字段 ([495e3a8](https://github.com/mastergo-design/plugin-typings/commit/495e3a8c7f208b81fad659230a092acb93b65c30))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
# [2.3.0](https://github.com/mastergo-design/plugin-typings/compare/v2.2.0...v2.3.0) (2024-01-31)
|
|
2
11
|
|
|
3
12
|
|
package/dist/index.d.ts
CHANGED
|
@@ -690,11 +690,14 @@ declare global {
|
|
|
690
690
|
}
|
|
691
691
|
interface AutoLayout {
|
|
692
692
|
flexMode: 'NONE' | 'HORIZONTAL' | 'VERTICAL'
|
|
693
|
+
flexWrap: 'WRAP' | 'NO_WRAP'
|
|
693
694
|
itemSpacing: number
|
|
694
695
|
mainAxisAlignItems: 'FLEX_START' | 'FLEX_END' | 'CENTER' | 'SPACING_BETWEEN'
|
|
695
696
|
crossAxisAlignItems: 'FLEX_START' | 'FLEX_END' | 'CENTER'
|
|
696
697
|
mainAxisSizingMode: 'FIXED' | 'AUTO'
|
|
697
698
|
crossAxisSizingMode: 'FIXED' | 'AUTO'
|
|
699
|
+
crossAxisAlignContent: 'AUTO' | 'SPACE_BETWEEN'
|
|
700
|
+
crossAxisSpacing: number | null
|
|
698
701
|
strokesIncludedInLayout: boolean
|
|
699
702
|
itemReverseZIndex: boolean
|
|
700
703
|
paddingTop: number
|