@leafer-ui/interface 1.9.4 → 1.9.6
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/package.json +2 -2
- package/src/ICommonAttr.ts +7 -7
- package/src/index.ts +1 -1
- package/src/module/IEffect.ts +7 -1
- package/src/module/IPathArrow.ts +4 -2
- package/src/type/IComputedType.ts +7 -1
- package/src/type/IType.ts +16 -3
- package/types/index.d.ts +29 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer-ui/interface",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.6",
|
|
4
4
|
"description": "@leafer-ui/interface",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"leaferjs"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@leafer/interface": "1.9.
|
|
25
|
+
"@leafer/interface": "1.9.6"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/src/ICommonAttr.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { INumber, IBoolean, IString, IFourNumber, IUnitData, IScaleFixed } from '@leafer/interface'
|
|
2
|
-
import { IStrokeAlign, IStrokeCap, IStrokeJoin, IBlurEffect, IFontWeight, ITextCase, ITextDecoration, IShadowEffect, IGrayscaleEffect, ITextAlign, IVerticalAlign, ITextWrap, IStroke, IFill,
|
|
2
|
+
import { IStrokeAlign, IStrokeCap, IStrokeJoin, IBlurEffect, IFontWeight, ITextCase, ITextDecoration, IShadowEffect, IGrayscaleEffect, ITextAlign, IVerticalAlign, ITextWrap, IStroke, IFill, IArrowStyle, IWritingMode, ITextOverflow } from './type/IType'
|
|
3
3
|
import { ILeafStrokePaint, ILeafShadowEffect, ILeafPaint } from './type/IComputedType'
|
|
4
4
|
import { IDashPatternString, IShadowString, IColorString, IStrokeWidthString, ICornerRadiusString } from './type/IStringType'
|
|
5
5
|
|
|
@@ -39,15 +39,15 @@ export interface IBorderComputedData {
|
|
|
39
39
|
export interface IStrokeAttrData extends IStrokeStyle {
|
|
40
40
|
stroke?: IStroke
|
|
41
41
|
|
|
42
|
-
startArrow?:
|
|
43
|
-
endArrow?:
|
|
42
|
+
startArrow?: IArrowStyle
|
|
43
|
+
endArrow?: IArrowStyle
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
export interface IStrokeInputData extends IStrokeStyle {
|
|
47
47
|
stroke?: IStroke
|
|
48
48
|
|
|
49
|
-
startArrow?:
|
|
50
|
-
endArrow?:
|
|
49
|
+
startArrow?: IArrowStyle
|
|
50
|
+
endArrow?: IArrowStyle
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
export interface IStrokeStyle {
|
|
@@ -64,8 +64,8 @@ export interface IStrokeStyle {
|
|
|
64
64
|
export interface IStrokeComputedData extends IStrokeComputedStyle {
|
|
65
65
|
stroke?: IColorString | ILeafStrokePaint[]
|
|
66
66
|
|
|
67
|
-
startArrow?:
|
|
68
|
-
endArrow?:
|
|
67
|
+
startArrow?: IArrowStyle
|
|
68
|
+
endArrow?: IArrowStyle
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
export interface IStrokeComputedStyle {
|
package/src/index.ts
CHANGED
|
@@ -28,7 +28,7 @@ export {
|
|
|
28
28
|
IUITag, IUIInputData, IUIJSONData, IStateStyle, IStates, IStateName
|
|
29
29
|
} from './IUI'
|
|
30
30
|
|
|
31
|
-
export { IVectorPath, IShadowEffect, IBlurEffect, IGrayscaleEffect, IEffect, IFill, IStroke, IPaintAttr, IStrokeAlign, IStrokeJoin, IStrokeCap, IArrowType, IPathDataArrow, IPathDataArrowMap, IRGB, IRGBA, IColor, IColorStop, IPaint, IStrokePaint, IStrokeSolidPaint, IGradientPaint, IStrokeGradientPaint, IImagePaint, IStrokeImagePaint, IImagePaintMode, IFontWeight, IFontWeightNumer, IFontWeightString, ITextCase, ITextDecoration, ITextDecorationType, ITextDecorationData, IWritingMode, ITextAlign, IVerticalAlign, IOverflow, ITextOverflow, ITextWrap, IRepeat, IGradientType, IPaintType, IImageFilters, IPathDataArrowOffset, ISolidPaint, IPaintBase } from './type/IType'
|
|
31
|
+
export { IVectorPath, IShadowEffect, IBlurEffect, IGrayscaleEffect, IEffect, IFill, IStroke, IPaintAttr, IStrokeAlign, IStrokeJoin, IStrokeCap, IArrowStyle, IArrowType, IArrowTypeData, IPathDataArrow, IPathDataArrowMap, IRGB, IRGBA, IColor, IColorStop, IPaint, IStrokePaint, IStrokeSolidPaint, IGradientPaint, IStrokeGradientPaint, IImagePaint, IStrokeImagePaint, IImagePaintMode, IFontWeight, IFontWeightNumer, IFontWeightString, ITextCase, ITextDecoration, ITextDecorationType, ITextDecorationData, IWritingMode, ITextAlign, IVerticalAlign, IOverflow, ITextOverflow, ITextWrap, IRepeat, IGradientType, IPaintType, IImageFilters, IPathDataArrowOffset, ISolidPaint, IPaintBase } from './type/IType'
|
|
32
32
|
export { ICornerRadiusString, IStrokeWidthString, IPaintString, IShadowString, IPercent, IDashPatternString, IColorString } from './type/IStringType'
|
|
33
33
|
export { ILeafFill, ILeafPaint, ILeafPaintPatternData, ILeafPaintColor, ILeafStrokePaint, ILeafShadowEffect } from './type/IComputedType'
|
|
34
34
|
export { IStrokeAttrData, IStrokeInputData, IStrokeComputedData, IStrokeComputedStyle, IStrokeStyle, ITextStyleAttrData, ITextStyleInputData, ITextStyleComputedData, IEffectAttrData, IEffectInputData, IEffectComputedData } from './ICommonAttr'
|
package/src/module/IEffect.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { ILeaferCanvas } from '@leafer/interface'
|
|
1
|
+
import { ILeaferCanvas, IBoundsData } from '@leafer/interface'
|
|
2
2
|
|
|
3
3
|
import { IUI } from '../IUI'
|
|
4
4
|
import { ICachedShape } from '../ICachedShape'
|
|
5
|
+
import { ILeafShadowEffect } from '../type/IComputedType'
|
|
5
6
|
|
|
6
7
|
|
|
7
8
|
export interface IEffectModule {
|
|
@@ -9,4 +10,9 @@ export interface IEffectModule {
|
|
|
9
10
|
innerShadow(ui: IUI, current: ILeaferCanvas, shape: ICachedShape): void
|
|
10
11
|
blur(ui: IUI, current: ILeaferCanvas, origin: ILeaferCanvas): void
|
|
11
12
|
backgroundBlur(ui: IUI, current: ILeaferCanvas, shape: ICachedShape): void
|
|
13
|
+
|
|
14
|
+
// shadow
|
|
15
|
+
getShadowSpread(ui: IUI, shadow: ILeafShadowEffect[]): number
|
|
16
|
+
isTransformShadow(shadow: ILeafShadowEffect): boolean
|
|
17
|
+
renderTransformShadow?(ui: IUI, current: ILeaferCanvas, fromCanvas: ILeaferCanvas, fromWorld: IBoundsData, shadow: ILeafShadowEffect): void
|
|
12
18
|
}
|
package/src/module/IPathArrow.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { IPathDataArrowMap } from '../type/IType'
|
|
1
|
+
import { IPathDataArrow, IPathDataArrowMap } from '../type/IType'
|
|
2
2
|
import { IUI } from '../IUI'
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export interface IPathArrowModule {
|
|
6
6
|
list: IPathDataArrowMap
|
|
7
|
-
addArrows(ui: IUI
|
|
7
|
+
addArrows(ui: IUI): void
|
|
8
|
+
register(name: string, data: IPathDataArrow): void
|
|
9
|
+
get(name: string): IPathDataArrow
|
|
8
10
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IBlendMode, ILeaferImage, IMatrixData, IPointData, IScaleFixed, ITaskItem } from '@leafer/interface'
|
|
1
|
+
import { IBlendMode, IDirection, ILeaferImage, IMatrixData, IPointData, IScaleFixed, ITaskItem } from '@leafer/interface'
|
|
2
2
|
|
|
3
3
|
import { IColorString } from './IStringType'
|
|
4
4
|
import { IStrokeAlign, IStrokeJoin, IStrokeCap, IImagePaintMode, IImageFilters } from './IType'
|
|
@@ -58,4 +58,10 @@ export interface ILeafShadowEffect {
|
|
|
58
58
|
blendMode?: IBlendMode
|
|
59
59
|
box?: boolean
|
|
60
60
|
scaleFixed?: IScaleFixed
|
|
61
|
+
|
|
62
|
+
// 斜切、旋转阴影
|
|
63
|
+
skewX?: number
|
|
64
|
+
skewY?: number
|
|
65
|
+
rotation?: number
|
|
66
|
+
origin?: IDirection // 斜切、旋转原点方位,相对元素的box包围盒,默认为 bottom
|
|
61
67
|
}
|
package/src/type/IType.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IPointData, IPathCommandData, IWindingRule, IBlendMode, IExportFileType, IFourNumber, IAlign, IUnitPointData, IAxis, IAxisReverse, IFilter, IOptionSizeData, ISizeData, IGap, IPointGap, IScaleFixed } from '@leafer/interface'
|
|
1
|
+
import { IPointData, IPathCommandData, IWindingRule, IBlendMode, IExportFileType, IFourNumber, IAlign, IUnitPointData, IAxis, IAxisReverse, IFilter, IOptionSizeData, ISizeData, IGap, IPointGap, IScaleFixed, IDirection } from '@leafer/interface'
|
|
2
2
|
import { IColorString, IPaintString } from './IStringType'
|
|
3
3
|
import { IStrokeStyle } from '../ICommonAttr'
|
|
4
4
|
|
|
@@ -86,7 +86,7 @@ export interface IImagePaint extends IPaintBase {
|
|
|
86
86
|
size?: number | IOptionSizeData
|
|
87
87
|
scale?: number | IPointData
|
|
88
88
|
rotation?: number
|
|
89
|
-
skew?:
|
|
89
|
+
skew?: IPointData
|
|
90
90
|
|
|
91
91
|
freeTransform?: boolean // 平铺模式下是否进行自由变换,默认90度、缩放会进行特殊处理
|
|
92
92
|
|
|
@@ -120,7 +120,13 @@ export type IStrokeCap = 'none' | 'round' | 'square'
|
|
|
120
120
|
export type IStrokeJoin = 'bevel' | 'round' | 'miter'
|
|
121
121
|
|
|
122
122
|
// 箭头
|
|
123
|
-
export type IArrowType =
|
|
123
|
+
export type IArrowType = 'none' | 'angle' | 'angle-side' | 'arrow' | 'triangle' | 'triangle-flip' | 'circle' | 'circle-line' | 'square' | 'square-line' | 'diamond' | 'diamond-line' | 'mark' | (string & {})
|
|
124
|
+
export type IArrowStyle = IPathDataArrow | IArrowType | IArrowTypeData
|
|
125
|
+
|
|
126
|
+
export interface IArrowTypeData {
|
|
127
|
+
type: IArrowType
|
|
128
|
+
scale?: number
|
|
129
|
+
}
|
|
124
130
|
|
|
125
131
|
export interface IPathDataArrowMap {
|
|
126
132
|
[name: string]: IPathDataArrow
|
|
@@ -161,6 +167,7 @@ export type ITextDecorationType = 'none' | 'under' | 'delete' | 'under-delete'
|
|
|
161
167
|
export interface ITextDecorationData {
|
|
162
168
|
type: ITextDecorationType
|
|
163
169
|
color: IColor
|
|
170
|
+
offset?: number
|
|
164
171
|
}
|
|
165
172
|
|
|
166
173
|
export type ITextWrap = 'normal' | 'none' | 'break'
|
|
@@ -183,6 +190,12 @@ export interface IShadowEffect {
|
|
|
183
190
|
visible?: boolean
|
|
184
191
|
box?: boolean
|
|
185
192
|
scaleFixed?: IScaleFixed
|
|
193
|
+
|
|
194
|
+
// 斜切、旋转阴影
|
|
195
|
+
skewX?: number
|
|
196
|
+
skewY?: number
|
|
197
|
+
rotation?: number
|
|
198
|
+
origin?: IDirection // 斜切、旋转原点方位,相对元素的box包围盒,默认为 bottom
|
|
186
199
|
}
|
|
187
200
|
|
|
188
201
|
export interface IBlurEffect {
|
package/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IBlendMode, IAlign, IUnitPointData, IExportFileType, IFourNumber, IPointData, IOptionSizeData, ISizeData, IGap, IPointGap, IScaleFixed, IPathCommandData, IAxis, IAxisReverse, IWindingRule, IFilter, IMatrixData, ILeaferImage, ITaskItem, INumber, IString, IBoolean, IUnitData, IAnimateOptions, IAnimateEasing, IEventer, IObject, IEventParamsMap, IAnimateEasingFunction, IAnimateEnding, ITransition, IPercentData, IBounds, ILeafInputData, ILeaf as ILeaf$1, ILeafComputedData, ILeafData, IBoundsData, IValue, IPathCreator, IJSONOptions, IFindCondition, IAnswer, IPathString, IPathDrawer, ILeaferCanvas, IRenderOptions, IExportOptions, IExportResult, IPickOptions, IPickResult, ICanvasContext2DSettings, ICanvasContext2D, ILeaferAttrData, IControl, ILeaferType, ILeaferConfig, ILeafRender, ILeafBounds, ILeafHit, ICachedLeaf, IBooleanMap, IMatrixWithBoundsScaleData } from '@leafer/interface';
|
|
1
|
+
import { IBlendMode, IAlign, IUnitPointData, IExportFileType, IFourNumber, IPointData, IOptionSizeData, ISizeData, IGap, IPointGap, IScaleFixed, IPathCommandData, IAxis, IAxisReverse, IDirection, IWindingRule, IFilter, IMatrixData, ILeaferImage, ITaskItem, INumber, IString, IBoolean, IUnitData, IAnimateOptions, IAnimateEasing, IEventer, IObject, IEventParamsMap, IAnimateEasingFunction, IAnimateEnding, ITransition, IPercentData, IBounds, ILeafInputData, ILeaf as ILeaf$1, ILeafComputedData, ILeafData, IBoundsData, IValue, IPathCreator, IJSONOptions, IFindCondition, IAnswer, IPathString, IPathDrawer, ILeaferCanvas, IRenderOptions, IExportOptions, IExportResult, IPickOptions, IPickResult, ICanvasContext2DSettings, ICanvasContext2D, ILeaferAttrData, IControl, ILeaferType, ILeaferConfig, ILeafRender, ILeafBounds, ILeafHit, ICachedLeaf, IBooleanMap, IMatrixWithBoundsScaleData } from '@leafer/interface';
|
|
2
2
|
export * from '@leafer/interface';
|
|
3
3
|
import { IObject as IObject$1, IEditSize, IStroke as IStroke$1, IFourNumber as IFourNumber$1, IFill as IFill$1, IBoxInputData as IBoxInputData$1, IRectInputData as IRectInputData$1, IColorString as IColorString$1, IDirection4, ICursorType, IImageCursor, IAlign as IAlign$1, IUnitPointData as IUnitPointData$1, IUIInputData as IUIInputData$1, IShortcutKeysCheck, IShortcutKeys, IUI as IUI$1, IPointData as IPointData$1, IScaleData, ISkewData, IGroup as IGroup$1, ISelectorProxy, IBox as IBox$1, IRect as IRect$1, ILayoutBoundsData, IKeyEvent, IUIEvent, IDragEvent, IMoveEvent, IZoomEvent, IRotateEvent, ITransition as ITransition$1, ILeafList, ILeafer as ILeafer$1, ILeaf, IGroupInputData as IGroupInputData$1, IStateName as IStateName$1, IString as IString$1, IBoolean as IBoolean$1, IStateStyle as IStateStyle$1 } from '@leafer-ui/interface';
|
|
4
4
|
|
|
@@ -95,7 +95,12 @@ type IRepeat = boolean | 'x' | 'y' | IPointData;
|
|
|
95
95
|
type IStrokeAlign = 'inside' | 'outside' | 'center';
|
|
96
96
|
type IStrokeCap = 'none' | 'round' | 'square';
|
|
97
97
|
type IStrokeJoin = 'bevel' | 'round' | 'miter';
|
|
98
|
-
type IArrowType =
|
|
98
|
+
type IArrowType = 'none' | 'angle' | 'angle-side' | 'arrow' | 'triangle' | 'triangle-flip' | 'circle' | 'circle-line' | 'square' | 'square-line' | 'diamond' | 'diamond-line' | 'mark' | (string & {});
|
|
99
|
+
type IArrowStyle = IPathDataArrow | IArrowType | IArrowTypeData;
|
|
100
|
+
interface IArrowTypeData {
|
|
101
|
+
type: IArrowType;
|
|
102
|
+
scale?: number;
|
|
103
|
+
}
|
|
99
104
|
interface IPathDataArrowMap {
|
|
100
105
|
[name: string]: IPathDataArrow;
|
|
101
106
|
}
|
|
@@ -121,6 +126,7 @@ type ITextDecorationType = 'none' | 'under' | 'delete' | 'under-delete';
|
|
|
121
126
|
interface ITextDecorationData {
|
|
122
127
|
type: ITextDecorationType;
|
|
123
128
|
color: IColor;
|
|
129
|
+
offset?: number;
|
|
124
130
|
}
|
|
125
131
|
type ITextWrap = 'normal' | 'none' | 'break';
|
|
126
132
|
type IWritingMode = IAxis | IAxisReverse;
|
|
@@ -138,6 +144,10 @@ interface IShadowEffect {
|
|
|
138
144
|
visible?: boolean;
|
|
139
145
|
box?: boolean;
|
|
140
146
|
scaleFixed?: IScaleFixed;
|
|
147
|
+
skewX?: number;
|
|
148
|
+
skewY?: number;
|
|
149
|
+
rotation?: number;
|
|
150
|
+
origin?: IDirection;
|
|
141
151
|
}
|
|
142
152
|
interface IBlurEffect {
|
|
143
153
|
blur: number;
|
|
@@ -200,6 +210,10 @@ interface ILeafShadowEffect {
|
|
|
200
210
|
blendMode?: IBlendMode;
|
|
201
211
|
box?: boolean;
|
|
202
212
|
scaleFixed?: IScaleFixed;
|
|
213
|
+
skewX?: number;
|
|
214
|
+
skewY?: number;
|
|
215
|
+
rotation?: number;
|
|
216
|
+
origin?: IDirection;
|
|
203
217
|
}
|
|
204
218
|
|
|
205
219
|
interface ICornerRadiusAttrData {
|
|
@@ -229,13 +243,13 @@ interface IBorderComputedData {
|
|
|
229
243
|
}
|
|
230
244
|
interface IStrokeAttrData extends IStrokeStyle {
|
|
231
245
|
stroke?: IStroke;
|
|
232
|
-
startArrow?:
|
|
233
|
-
endArrow?:
|
|
246
|
+
startArrow?: IArrowStyle;
|
|
247
|
+
endArrow?: IArrowStyle;
|
|
234
248
|
}
|
|
235
249
|
interface IStrokeInputData extends IStrokeStyle {
|
|
236
250
|
stroke?: IStroke;
|
|
237
|
-
startArrow?:
|
|
238
|
-
endArrow?:
|
|
251
|
+
startArrow?: IArrowStyle;
|
|
252
|
+
endArrow?: IArrowStyle;
|
|
239
253
|
}
|
|
240
254
|
interface IStrokeStyle {
|
|
241
255
|
strokeAlign?: IStrokeAlign;
|
|
@@ -249,8 +263,8 @@ interface IStrokeStyle {
|
|
|
249
263
|
}
|
|
250
264
|
interface IStrokeComputedData extends IStrokeComputedStyle {
|
|
251
265
|
stroke?: IColorString | ILeafStrokePaint[];
|
|
252
|
-
startArrow?:
|
|
253
|
-
endArrow?:
|
|
266
|
+
startArrow?: IArrowStyle;
|
|
267
|
+
endArrow?: IArrowStyle;
|
|
254
268
|
}
|
|
255
269
|
interface IStrokeComputedStyle {
|
|
256
270
|
strokeAlign?: IStrokeAlign;
|
|
@@ -1133,7 +1147,9 @@ type IUIHitModule = ILeafHit & ThisType<IUI>;
|
|
|
1133
1147
|
|
|
1134
1148
|
interface IPathArrowModule {
|
|
1135
1149
|
list: IPathDataArrowMap;
|
|
1136
|
-
addArrows(ui: IUI
|
|
1150
|
+
addArrows(ui: IUI): void;
|
|
1151
|
+
register(name: string, data: IPathDataArrow): void;
|
|
1152
|
+
get(name: string): IPathDataArrow;
|
|
1137
1153
|
}
|
|
1138
1154
|
|
|
1139
1155
|
interface ITransitionModule {
|
|
@@ -1230,6 +1246,9 @@ interface IEffectModule {
|
|
|
1230
1246
|
innerShadow(ui: IUI, current: ILeaferCanvas, shape: ICachedShape): void;
|
|
1231
1247
|
blur(ui: IUI, current: ILeaferCanvas, origin: ILeaferCanvas): void;
|
|
1232
1248
|
backgroundBlur(ui: IUI, current: ILeaferCanvas, shape: ICachedShape): void;
|
|
1249
|
+
getShadowSpread(ui: IUI, shadow: ILeafShadowEffect[]): number;
|
|
1250
|
+
isTransformShadow(shadow: ILeafShadowEffect): boolean;
|
|
1251
|
+
renderTransformShadow?(ui: IUI, current: ILeaferCanvas, fromCanvas: ILeaferCanvas, fromWorld: IBoundsData, shadow: ILeafShadowEffect): void;
|
|
1233
1252
|
}
|
|
1234
1253
|
|
|
1235
1254
|
interface IFilterModule {
|
|
@@ -1249,4 +1268,4 @@ interface IFilterFunction {
|
|
|
1249
1268
|
(filter: IFilter, ui: IUI, bounds: IMatrixWithBoundsScaleData, currentCanvas: ILeaferCanvas, originCanvas: ILeaferCanvas, shape: ICachedShape): void;
|
|
1250
1269
|
}
|
|
1251
1270
|
|
|
1252
|
-
export type { IAnimate, IAnimateKeyframe, IAnimateList, IAnimateType, IAnimation, IApp, IAppConfig, IAppData, IAppForEachFunction, IAppInputData, IArrow, IArrowData, IArrowInputData, IArrowType, IBackgroundBoxStyle, IBlurEffect, IBox, IBoxData, IBoxInputData, ICachedShape, ICanvas, ICanvasData, ICanvasInputData, IColor, IColorConvertModule, IColorStop, IColorString, IComputedKeyframe, ICornerRadiusString, IDashPatternString, IEditBoxBase, IEditPoint, IEditPointInputData, IEditPointType, IEditToolFunction, IEditorBase, IEditorBeforeEditInner, IEditorBeforeEditOuter, IEditorBeforeMove, IEditorBeforeRotate, IEditorBeforeScale, IEditorBeforeSelect, IEditorBeforeSkew, IEditorConfig, IEditorConfigFunction, IEditorDragStartData, IEditorEditInnerData, IEditorEditOuterData, IEditorMoveData, IEditorRotationData, IEditorScaleData, IEditorSelectData, IEditorSkewData, IEffect, IEffectAttrData, IEffectComputedData, IEffectInputData, IEffectModule, IEllipse, IEllipseData, IEllipseInputData, IExportModule, IFill, IFilterFunction, IFilterModule, IFilterProcessor, IFindUIMethod, IFlow, IFlowData, IFlowInputData, IFontWeight, IFontWeightNumer, IFontWeightString, IFrame, IFrameData, IFrameInputData, IFrameRenderModule, IGIF, IGIFData, IGIFInputData, IGradientPaint, IGradientType, IGrayscaleEffect, IGroup, IGroupData, IGroupInputData, IGroupRenderModule, IImage, IImageData, IImageFilters, IImageInputData, IImagePaint, IImagePaintMode, IImageRenderModule, IKeyframe, IKeyframeId, IKeyframesAnimation, ILeafFill, ILeafPaint, ILeafPaintColor, ILeafPaintPatternData, ILeafShadowEffect, ILeafStrokePaint, ILeafer, ILeaferData, ILeaferInputData, ILine, ILineData, ILineInputData, IOverflow, IPaint, IPaintAttr, IPaintBase, IPaintGradientModule, IPaintImageModule, IPaintModule, IPaintString, IPaintType, IPath, IPathArrowModule, IPathData, IPathDataArrow, IPathDataArrowMap, IPathDataArrowOffset, IPathInputData, IPen, IPenData, IPenInputData, IPercent, IPolygon, IPolygonData, IPolygonInputData, IRGB, IRGBA, IRect, IRectData, IRectInputData, IRectRenderModule, IRepeat, IRobot, IRobotActionName, IRobotActions, IRobotAnimation, IRobotComputedKeyframe, IRobotData, IRobotInputData, IRobotKeyframe, IScrollConfig, IScrollTheme, IScroller, IShadowEffect, IShadowString, ISolidPaint, IStar, IStarData, IStarInputData, IStateModule, IStateName, IStateStyle, IStates, IStroke, IStrokeAlign, IStrokeAttrData, IStrokeCap, IStrokeComputedData, IStrokeComputedStyle, IStrokeGradientPaint, IStrokeImagePaint, IStrokeInputData, IStrokeJoin, IStrokePaint, IStrokeSolidPaint, IStrokeStyle, IStrokeWidthString, IStyleAnimation, IText, ITextAlign, ITextCase, ITextCharData, ITextConvertModule, ITextData, ITextDecoration, ITextDecorationData, ITextDecorationType, ITextDrawData, ITextInputData, ITextOverflow, ITextRenderModule, ITextRowData, ITextStyleAttrData, ITextStyleComputedData, ITextStyleInputData, ITextWordData, ITextWrap, ITransformTool, ITransitionFunction, ITransitionMap, ITransitionModule, IUI, IUIBaseInputData, IUIBoundsModule, IUIData, IUIHitModule, IUIInputData, IUIJSONData, IUIRenderModule, IUITag, IVectorPath, IVerticalAlign, IVideo, IVideoData, IVideoInputData, IWritingMode };
|
|
1271
|
+
export type { IAnimate, IAnimateKeyframe, IAnimateList, IAnimateType, IAnimation, IApp, IAppConfig, IAppData, IAppForEachFunction, IAppInputData, IArrow, IArrowData, IArrowInputData, IArrowStyle, IArrowType, IArrowTypeData, IBackgroundBoxStyle, IBlurEffect, IBox, IBoxData, IBoxInputData, ICachedShape, ICanvas, ICanvasData, ICanvasInputData, IColor, IColorConvertModule, IColorStop, IColorString, IComputedKeyframe, ICornerRadiusString, IDashPatternString, IEditBoxBase, IEditPoint, IEditPointInputData, IEditPointType, IEditToolFunction, IEditorBase, IEditorBeforeEditInner, IEditorBeforeEditOuter, IEditorBeforeMove, IEditorBeforeRotate, IEditorBeforeScale, IEditorBeforeSelect, IEditorBeforeSkew, IEditorConfig, IEditorConfigFunction, IEditorDragStartData, IEditorEditInnerData, IEditorEditOuterData, IEditorMoveData, IEditorRotationData, IEditorScaleData, IEditorSelectData, IEditorSkewData, IEffect, IEffectAttrData, IEffectComputedData, IEffectInputData, IEffectModule, IEllipse, IEllipseData, IEllipseInputData, IExportModule, IFill, IFilterFunction, IFilterModule, IFilterProcessor, IFindUIMethod, IFlow, IFlowData, IFlowInputData, IFontWeight, IFontWeightNumer, IFontWeightString, IFrame, IFrameData, IFrameInputData, IFrameRenderModule, IGIF, IGIFData, IGIFInputData, IGradientPaint, IGradientType, IGrayscaleEffect, IGroup, IGroupData, IGroupInputData, IGroupRenderModule, IImage, IImageData, IImageFilters, IImageInputData, IImagePaint, IImagePaintMode, IImageRenderModule, IKeyframe, IKeyframeId, IKeyframesAnimation, ILeafFill, ILeafPaint, ILeafPaintColor, ILeafPaintPatternData, ILeafShadowEffect, ILeafStrokePaint, ILeafer, ILeaferData, ILeaferInputData, ILine, ILineData, ILineInputData, IOverflow, IPaint, IPaintAttr, IPaintBase, IPaintGradientModule, IPaintImageModule, IPaintModule, IPaintString, IPaintType, IPath, IPathArrowModule, IPathData, IPathDataArrow, IPathDataArrowMap, IPathDataArrowOffset, IPathInputData, IPen, IPenData, IPenInputData, IPercent, IPolygon, IPolygonData, IPolygonInputData, IRGB, IRGBA, IRect, IRectData, IRectInputData, IRectRenderModule, IRepeat, IRobot, IRobotActionName, IRobotActions, IRobotAnimation, IRobotComputedKeyframe, IRobotData, IRobotInputData, IRobotKeyframe, IScrollConfig, IScrollTheme, IScroller, IShadowEffect, IShadowString, ISolidPaint, IStar, IStarData, IStarInputData, IStateModule, IStateName, IStateStyle, IStates, IStroke, IStrokeAlign, IStrokeAttrData, IStrokeCap, IStrokeComputedData, IStrokeComputedStyle, IStrokeGradientPaint, IStrokeImagePaint, IStrokeInputData, IStrokeJoin, IStrokePaint, IStrokeSolidPaint, IStrokeStyle, IStrokeWidthString, IStyleAnimation, IText, ITextAlign, ITextCase, ITextCharData, ITextConvertModule, ITextData, ITextDecoration, ITextDecorationData, ITextDecorationType, ITextDrawData, ITextInputData, ITextOverflow, ITextRenderModule, ITextRowData, ITextStyleAttrData, ITextStyleComputedData, ITextStyleInputData, ITextWordData, ITextWrap, ITransformTool, ITransitionFunction, ITransitionMap, ITransitionModule, IUI, IUIBaseInputData, IUIBoundsModule, IUIData, IUIHitModule, IUIInputData, IUIJSONData, IUIRenderModule, IUITag, IVectorPath, IVerticalAlign, IVideo, IVideoData, IVideoInputData, IWritingMode };
|