@leafer-ui/interface 2.1.0 → 2.1.2
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/index.ts +1 -1
- package/src/module/IPaint.ts +6 -0
- package/src/type/IComputedType.ts +7 -1
- package/src/type/IType.ts +1 -1
- package/types/index.d.ts +31 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer-ui/interface",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
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": "2.1.
|
|
25
|
+
"@leafer/interface": "2.1.2"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/src/index.ts
CHANGED
|
@@ -36,7 +36,7 @@ export {
|
|
|
36
36
|
|
|
37
37
|
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, IImageFilter, IImageFilterType, IPathDataArrowOffset, ISolidPaint, IPaintBase } from './type/IType'
|
|
38
38
|
export { ICornerRadiusString, IStrokeWidthString, IPaintString, IShadowString, IPercent, IDashPatternString, IColorString } from './type/IStringType'
|
|
39
|
-
export { ILeafFill, ILeafPaint, ILeafPaintPatternData, ILeafPaintColor, ILeafStrokePaint, ILeafShadowEffect } from './type/IComputedType'
|
|
39
|
+
export { ILeafFill, ILeafPaint, ILeafPaintBrush, ILeafPaintPatternData, ILeafPaintColor, ILeafStrokePaint, ILeafShadowEffect } from './type/IComputedType'
|
|
40
40
|
export { IStrokeAttrData, IStrokeInputData, IStrokeComputedData, IStrokeComputedStyle, IStrokeStyle, ITextStyleAttrData, ITextStyleInputData, ITextStyleComputedData, IEffectAttrData, IEffectInputData, IEffectComputedData } from './ICommonAttr'
|
|
41
41
|
|
|
42
42
|
export { IAnimation, IAnimate, IAnimateList, IAnimateType, IKeyframe, IKeyframeId, IAnimateKeyframe, IComputedKeyframe, IStyleAnimation, IKeyframesAnimation } from './IAnimation'
|
package/src/module/IPaint.ts
CHANGED
|
@@ -54,6 +54,12 @@ export interface IPaintImageModule {
|
|
|
54
54
|
fillOrFitMode(data: ILeafPaintPatternData, box: IBoundsData, x: number, y: number, scaleX: number, scaleY: number, rotation: number): void
|
|
55
55
|
clipMode(data: ILeafPaintPatternData, box: IBoundsData, x: number, y: number, scaleX: number, scaleY: number, rotation: number, skew: IPointData, clipScaleX?: number, clipScaleY?: number): void
|
|
56
56
|
repeatMode(data: ILeafPaintPatternData, box: IBoundsData, width: number, height: number, x: number, y: number, scaleX: number, scaleY: number, rotation: number, skew: IPointData, align: IAlign, freeTransform?: boolean): void
|
|
57
|
+
|
|
58
|
+
brush?(paint: ILeafPaint): void
|
|
59
|
+
addBrushScale?(scaleData: IScaleData, paint: ILeafPaint, ui: IUI): void
|
|
60
|
+
getBrushScale?(paint: ILeafPaint, ui: IUI): number
|
|
61
|
+
recycleBrush?(paint: ILeafPaint, ui: IUI): void
|
|
62
|
+
|
|
57
63
|
}
|
|
58
64
|
|
|
59
65
|
export interface IPaintGradientModule {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IBlendMode, IDirection, IFilmPlayOptions, IInterlace, ILeaferImage, IMatrixData, IPointData, IScaleFixed, ITaskItem } from '@leafer/interface'
|
|
1
|
+
import { IBlendMode, IDirection, IFilmPlayOptions, IInterlace, ILeaferImage, IMatrixData, IPointData, IScaleFixed, ITaskItem, ILeaf } from '@leafer/interface'
|
|
2
2
|
|
|
3
3
|
import { IColorString } from './IStringType'
|
|
4
4
|
import { IStrokeAlign, IStrokeJoin, IStrokeCap, IImagePaintMode, IPaint } from './IType'
|
|
@@ -29,6 +29,12 @@ export interface ILeafPaint extends IFilmPlayOptions {
|
|
|
29
29
|
originPaint?: IPaint // 原始paint对象
|
|
30
30
|
|
|
31
31
|
film?: boolean // flim或video类型
|
|
32
|
+
brush?: ILeafPaintBrush // 笔触刷子
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface ILeafPaintBrush {
|
|
36
|
+
render(canvas: any, x: number, y: number, width: number, height: number, leaf: ILeaf, paint: any, imageScaleX: number, imageScaleY: number): void
|
|
37
|
+
destroy(): void
|
|
32
38
|
}
|
|
33
39
|
|
|
34
40
|
export interface ILeafPaintPatternData {
|
package/src/type/IType.ts
CHANGED
|
@@ -125,7 +125,7 @@ export interface IImageFilter {
|
|
|
125
125
|
|
|
126
126
|
export type IImageFilters = IImageFilter[]
|
|
127
127
|
|
|
128
|
-
export type IImagePaintMode = 'normal' | 'cover' | 'fit' | 'stretch' | 'clip' | 'repeat'
|
|
128
|
+
export type IImagePaintMode = 'normal' | 'cover' | 'fit' | 'stretch' | 'clip' | 'repeat' | 'brush'
|
|
129
129
|
export type IRepeat = boolean | 'x' | 'y' | IPointData
|
|
130
130
|
|
|
131
131
|
// 描边
|
package/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { IMultimediaType, IBlendMode, IScaleFixed, IAlign, IUnitPointData, IFilmOptions, IImageLOD, IExportFileType, IFourNumber, IPointData, IOptionSizeData, ISizeData, IGap, IPointGap, IPercentData, IInterlace, IPathCommandData, IAxis, IAxisReverse, IDirection, IWindingRule, IFilter, IFilmPlayOptions, IMatrixData, ILeaferImage, ITaskItem, INumber, IString, IBoolean, IUnitData, IAnimateOptions, IAnimateEasing, IEventer, IObject, IEventParamsMap, IAnimateEasingFunction, IAnimateEnding, ITransition, IBounds, ILeafInputData,
|
|
1
|
+
import { IMultimediaType, IBlendMode, IScaleFixed, IAlign, IUnitPointData, IFilmOptions, IImageLOD, IExportFileType, IFourNumber, IPointData, IOptionSizeData, ISizeData, IGap, IPointGap, IPercentData, IInterlace, IPathCommandData, IAxis, IAxisReverse, IDirection, IWindingRule, IFilter, IFilmPlayOptions, IMatrixData, ILeaferImage, ITaskItem, ILeaf, INumber, IString, IBoolean, IUnitData, IAnimateOptions, IAnimateEasing, IEventer, IObject, IEventParamsMap, IAnimateEasingFunction, IAnimateEnding, ITransition, IBounds, ILeafInputData, ILeafComputedData, ILeafData, IPathCommandDataWithWindingRule, IBoundsData, IValue, IDirection4 as IDirection4$1, IAround, IOptionPointData, IPathCreator, IJSONOptions, IFindCondition, IAnswer, IPathString, IPathDrawer, ILeaferCanvas, IRenderOptions, IExportOptions, IExportResult, IPickOptions, IPickResult, ICanvasContext2DSettings, ICanvasContext2D, ILeaferAttrData, IControl, ILeaferType, ILeaferConfig, ILeafRender, ILeafBounds, ILeafHit, ICachedLeaf, IScaleData as IScaleData$1, IBooleanMap, IFunction, IMatrixWithBoundsScaleData } from '@leafer/interface';
|
|
2
2
|
export * from '@leafer/interface';
|
|
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, 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';
|
|
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, ILayoutBoundsData, IKeyEvent, IUIEvent, IDragEvent, IMoveEvent, IZoomEvent, IRotateEvent, ITransition as ITransition$1, ILeafList, ILeafer as ILeafer$1, ILeaf as ILeaf$1, 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
|
|
|
5
5
|
type IPercent = string;
|
|
6
6
|
type IColorString = string;
|
|
@@ -91,7 +91,7 @@ interface IImageFilter {
|
|
|
91
91
|
value: number;
|
|
92
92
|
}
|
|
93
93
|
type IImageFilters = IImageFilter[];
|
|
94
|
-
type IImagePaintMode = 'normal' | 'cover' | 'fit' | 'stretch' | 'clip' | 'repeat';
|
|
94
|
+
type IImagePaintMode = 'normal' | 'cover' | 'fit' | 'stretch' | 'clip' | 'repeat' | 'brush';
|
|
95
95
|
type IRepeat = boolean | 'x' | 'y' | IPointData;
|
|
96
96
|
type IStrokeAlign = 'inside' | 'outside' | 'center';
|
|
97
97
|
type IStrokeCap = 'none' | 'round' | 'square';
|
|
@@ -183,6 +183,11 @@ interface ILeafPaint extends IFilmPlayOptions {
|
|
|
183
183
|
data?: ILeafPaintPatternData;
|
|
184
184
|
originPaint?: IPaint;
|
|
185
185
|
film?: boolean;
|
|
186
|
+
brush?: ILeafPaintBrush;
|
|
187
|
+
}
|
|
188
|
+
interface ILeafPaintBrush {
|
|
189
|
+
render(canvas: any, x: number, y: number, width: number, height: number, leaf: ILeaf, paint: any, imageScaleX: number, imageScaleY: number): void;
|
|
190
|
+
destroy(): void;
|
|
186
191
|
}
|
|
187
192
|
interface ILeafPaintPatternData {
|
|
188
193
|
scaleX?: number;
|
|
@@ -465,7 +470,7 @@ interface IEditorBase extends IGroup$1, ISelectorProxy, ITransformTool {
|
|
|
465
470
|
getEditTool(name: string): IObject$1;
|
|
466
471
|
updateEditTool(): void;
|
|
467
472
|
unloadEditTool(): void;
|
|
468
|
-
getEditSize(ui: ILeaf): IEditSize;
|
|
473
|
+
getEditSize(ui: ILeaf$1): IEditSize;
|
|
469
474
|
group(group?: IGroup$1 | IGroupInputData$1): IGroup$1;
|
|
470
475
|
ungroup(): IUI$1[];
|
|
471
476
|
openGroup(group: IGroup$1): void;
|
|
@@ -1074,7 +1079,7 @@ interface IGroup extends IUI {
|
|
|
1074
1079
|
addAt(child: IUI | IUI[] | IUIInputData | IUIInputData[], index: number): void;
|
|
1075
1080
|
addAfter(child: IUI | IUI[] | IUIInputData | IUIInputData[], after: IUI): void;
|
|
1076
1081
|
addBefore(child: IUI | IUI[] | IUIInputData | IUIInputData[], before: IUI): void;
|
|
1077
|
-
addMany(...children: ILeaf
|
|
1082
|
+
addMany(...children: ILeaf[] | IUIInputData[]): void;
|
|
1078
1083
|
remove(child?: IUI | number | string | IFindCondition | IFindUIMethod): void;
|
|
1079
1084
|
removeAll(): void;
|
|
1080
1085
|
clear(): void;
|
|
@@ -1083,7 +1088,7 @@ interface IGroupData extends IUIData {
|
|
|
1083
1088
|
}
|
|
1084
1089
|
interface IGroupInputData extends IUIBaseInputData {
|
|
1085
1090
|
}
|
|
1086
|
-
interface IUI extends IUIAttrData, IFillAttrData, IStrokeAttrData, ICornerRadiusAttrData, IEffectAttrData, ILeaf
|
|
1091
|
+
interface IUI extends IUIAttrData, IFillAttrData, IStrokeAttrData, ICornerRadiusAttrData, IEffectAttrData, ILeaf {
|
|
1087
1092
|
__: IUIData;
|
|
1088
1093
|
readonly app: ILeafer;
|
|
1089
1094
|
leafer?: ILeafer;
|
|
@@ -1297,26 +1302,26 @@ interface IColorConvertModule {
|
|
|
1297
1302
|
|
|
1298
1303
|
interface IExportModule {
|
|
1299
1304
|
running?: boolean;
|
|
1300
|
-
export(leaf: ILeaf
|
|
1301
|
-
syncExport(leaf: ILeaf
|
|
1305
|
+
export(leaf: ILeaf, filename: IExportFileType | string, options?: IExportOptions | number | boolean): Promise<IExportResult>;
|
|
1306
|
+
syncExport(leaf: ILeaf, filename: string, options?: IExportOptions | number | boolean): IExportResult;
|
|
1302
1307
|
}
|
|
1303
1308
|
|
|
1304
1309
|
interface IStateModule {
|
|
1305
1310
|
canAnimate: boolean;
|
|
1306
1311
|
animateExcludes: IObject$1;
|
|
1307
|
-
isState(state: IStateName$1, leaf: ILeaf, button?: ILeaf | boolean): boolean;
|
|
1308
|
-
isSelected(leaf: ILeaf, button?: ILeaf | boolean): boolean;
|
|
1309
|
-
isDisabled(leaf: ILeaf, button?: ILeaf | boolean): boolean;
|
|
1310
|
-
isFocus(leaf: ILeaf, button?: ILeaf | boolean): boolean;
|
|
1311
|
-
isHover(leaf: ILeaf, button?: ILeaf | boolean): boolean;
|
|
1312
|
-
isPress(leaf: ILeaf, button?: ILeaf | boolean): boolean;
|
|
1313
|
-
isPlacehold(leaf: ILeaf, button?: ILeaf | boolean): boolean;
|
|
1314
|
-
isDrag(leaf: ILeaf, button?: boolean | ILeaf): boolean;
|
|
1315
|
-
setStyleName(leaf: ILeaf, styleName: IString$1, value: IBoolean$1): void;
|
|
1316
|
-
set(leaf: ILeaf, stateName: IString$1): void;
|
|
1317
|
-
getStyle(leaf: ILeaf): IStateStyle$1;
|
|
1318
|
-
updateStyle(leaf: ILeaf, style?: IStateStyle$1, type?: 'in' | 'out'): void;
|
|
1319
|
-
updateEventStyle(leaf: ILeaf, eventType: string): void;
|
|
1312
|
+
isState(state: IStateName$1, leaf: ILeaf$1, button?: ILeaf$1 | boolean): boolean;
|
|
1313
|
+
isSelected(leaf: ILeaf$1, button?: ILeaf$1 | boolean): boolean;
|
|
1314
|
+
isDisabled(leaf: ILeaf$1, button?: ILeaf$1 | boolean): boolean;
|
|
1315
|
+
isFocus(leaf: ILeaf$1, button?: ILeaf$1 | boolean): boolean;
|
|
1316
|
+
isHover(leaf: ILeaf$1, button?: ILeaf$1 | boolean): boolean;
|
|
1317
|
+
isPress(leaf: ILeaf$1, button?: ILeaf$1 | boolean): boolean;
|
|
1318
|
+
isPlacehold(leaf: ILeaf$1, button?: ILeaf$1 | boolean): boolean;
|
|
1319
|
+
isDrag(leaf: ILeaf$1, button?: boolean | ILeaf$1): boolean;
|
|
1320
|
+
setStyleName(leaf: ILeaf$1, styleName: IString$1, value: IBoolean$1): void;
|
|
1321
|
+
set(leaf: ILeaf$1, stateName: IString$1): void;
|
|
1322
|
+
getStyle(leaf: ILeaf$1): IStateStyle$1;
|
|
1323
|
+
updateStyle(leaf: ILeaf$1, style?: IStateStyle$1, type?: 'in' | 'out'): void;
|
|
1324
|
+
updateEventStyle(leaf: ILeaf$1, eventType: string): void;
|
|
1320
1325
|
}
|
|
1321
1326
|
|
|
1322
1327
|
interface ICachedShape extends ICachedLeaf {
|
|
@@ -1361,6 +1366,10 @@ interface IPaintImageModule {
|
|
|
1361
1366
|
fillOrFitMode(data: ILeafPaintPatternData, box: IBoundsData, x: number, y: number, scaleX: number, scaleY: number, rotation: number): void;
|
|
1362
1367
|
clipMode(data: ILeafPaintPatternData, box: IBoundsData, x: number, y: number, scaleX: number, scaleY: number, rotation: number, skew: IPointData, clipScaleX?: number, clipScaleY?: number): void;
|
|
1363
1368
|
repeatMode(data: ILeafPaintPatternData, box: IBoundsData, width: number, height: number, x: number, y: number, scaleX: number, scaleY: number, rotation: number, skew: IPointData, align: IAlign, freeTransform?: boolean): void;
|
|
1369
|
+
brush?(paint: ILeafPaint): void;
|
|
1370
|
+
addBrushScale?(scaleData: IScaleData$1, paint: ILeafPaint, ui: IUI): void;
|
|
1371
|
+
getBrushScale?(paint: ILeafPaint, ui: IUI): number;
|
|
1372
|
+
recycleBrush?(paint: ILeafPaint, ui: IUI): void;
|
|
1364
1373
|
}
|
|
1365
1374
|
interface IPaintGradientModule {
|
|
1366
1375
|
linearGradient(paint: IGradientPaint, box: IBoundsData): ILeafPaint;
|
|
@@ -1397,4 +1406,4 @@ interface IFilterFunction {
|
|
|
1397
1406
|
(filter: IFilter, ui: IUI, bounds: IMatrixWithBoundsScaleData, currentCanvas: ILeaferCanvas, originCanvas: ILeaferCanvas, shape: ICachedShape): void;
|
|
1398
1407
|
}
|
|
1399
1408
|
|
|
1400
|
-
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, IEditorOnCopy, IEditorRotationData, IEditorScaleData, IEditorSelectData, IEditorSkewData, IEffect, IEffectAttrData, IEffectComputedData, IEffectInputData, IEffectModule, IEllipse, IEllipseBox, IEllipseBoxData, IEllipseBoxInputData, IEllipseData, IEllipseInputData, IExportModule, IFill, IFilm, IFilmData, IFilmInputData, IFilterFunction, IFilterModule, IFilterProcessor, IFindUIMethod, IFlow, IFlowData, IFlowInputData, IFontWeight, IFontWeightNumer, IFontWeightString, IFrame, IFrameData, IFrameInputData, IFrameRenderModule, IGradientPaint, IGradientType, IGrayscaleEffect, IGroup, IGroupData, IGroupInputData, IGroupRenderModule, IImage, IImageBox, IImageBoxData, IImageBoxInputData, IImageData, IImageFilter, IImageFilterType, IImageFilters, IImageInputData, IImagePaint, IImagePaintMode, IImageRenderModule, IKeyframe, IKeyframeId, IKeyframesAnimation, ILeafFill, ILeafPaint, ILeafPaintColor, ILeafPaintPatternData, ILeafShadowEffect, ILeafStrokePaint, ILeafer, ILeaferData, ILeaferInputData, ILine, ILineData, ILineInputData, ILinker, ILinkerComputedPointData, ILinkerData, ILinkerInputData, ILinkerPointData, ILinkerPointOptions, ILinkerPointType, IOverflow, IPaint, IPaintAttr, IPaintBase, IPaintGradientModule, IPaintImageModule, IPaintModule, IPaintString, IPaintType, IPath, IPathArrowModule, IPathBox, IPathBoxData, IPathBoxInputData, IPathData, IPathDataArrow, IPathDataArrowMap, IPathDataArrowOffset, IPathInputData, IPen, IPenData, IPenInputData, IPercent, IPolygon, IPolygonBox, IPolygonBoxData, IPolygonBoxInputData, IPolygonData, IPolygonInputData, IRGB, IRGBA, IRect, IRectData, IRectInputData, IRectRenderModule, IRepeat, IRobot, IRobotActionName, IRobotActions, IRobotAnimation, IRobotComputedKeyframe, IRobotData, IRobotInputData, IRobotKeyframe, IScrollConfig, IScrollTheme, IScroller, IShadowEffect, IShadowString, ISolidPaint, IStar, IStarBox, IStarBoxData, IStarBoxInputData, 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 };
|
|
1409
|
+
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, IEditorOnCopy, IEditorRotationData, IEditorScaleData, IEditorSelectData, IEditorSkewData, IEffect, IEffectAttrData, IEffectComputedData, IEffectInputData, IEffectModule, IEllipse, IEllipseBox, IEllipseBoxData, IEllipseBoxInputData, IEllipseData, IEllipseInputData, IExportModule, IFill, IFilm, IFilmData, IFilmInputData, IFilterFunction, IFilterModule, IFilterProcessor, IFindUIMethod, IFlow, IFlowData, IFlowInputData, IFontWeight, IFontWeightNumer, IFontWeightString, IFrame, IFrameData, IFrameInputData, IFrameRenderModule, IGradientPaint, IGradientType, IGrayscaleEffect, IGroup, IGroupData, IGroupInputData, IGroupRenderModule, IImage, IImageBox, IImageBoxData, IImageBoxInputData, IImageData, IImageFilter, IImageFilterType, IImageFilters, IImageInputData, IImagePaint, IImagePaintMode, IImageRenderModule, IKeyframe, IKeyframeId, IKeyframesAnimation, ILeafFill, ILeafPaint, ILeafPaintBrush, ILeafPaintColor, ILeafPaintPatternData, ILeafShadowEffect, ILeafStrokePaint, ILeafer, ILeaferData, ILeaferInputData, ILine, ILineData, ILineInputData, ILinker, ILinkerComputedPointData, ILinkerData, ILinkerInputData, ILinkerPointData, ILinkerPointOptions, ILinkerPointType, IOverflow, IPaint, IPaintAttr, IPaintBase, IPaintGradientModule, IPaintImageModule, IPaintModule, IPaintString, IPaintType, IPath, IPathArrowModule, IPathBox, IPathBoxData, IPathBoxInputData, IPathData, IPathDataArrow, IPathDataArrowMap, IPathDataArrowOffset, IPathInputData, IPen, IPenData, IPenInputData, IPercent, IPolygon, IPolygonBox, IPolygonBoxData, IPolygonBoxInputData, IPolygonData, IPolygonInputData, IRGB, IRGBA, IRect, IRectData, IRectInputData, IRectRenderModule, IRepeat, IRobot, IRobotActionName, IRobotActions, IRobotAnimation, IRobotComputedKeyframe, IRobotData, IRobotInputData, IRobotKeyframe, IScrollConfig, IScrollTheme, IScroller, IShadowEffect, IShadowString, ISolidPaint, IStar, IStarBox, IStarBoxData, IStarBoxInputData, 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 };
|