@leafer-ui/interface 1.5.0 → 1.5.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/IUI.ts +2 -1
- package/src/editor/IEditor.ts +46 -3
- package/src/index.ts +2 -2
- package/src/type/IType.ts +10 -3
- package/types/index.d.ts +46 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer-ui/interface",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.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": "1.5.
|
|
25
|
+
"@leafer/interface": "1.5.2"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/src/IUI.ts
CHANGED
|
@@ -263,7 +263,8 @@ export interface ITextDrawData {
|
|
|
263
263
|
paraNumber: number
|
|
264
264
|
font: string
|
|
265
265
|
maxWidth?: number // 获取最大的行宽,自动宽度 且非 autoSizeAlign 时才有值
|
|
266
|
-
decorationY?: number
|
|
266
|
+
decorationY?: number[]
|
|
267
|
+
decorationColor?: string
|
|
267
268
|
decorationHeight?: number
|
|
268
269
|
overflow?: number // overflowed row number, not index
|
|
269
270
|
}
|
package/src/editor/IEditor.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IGroup, IUI, IBox, IRectInputData, ISelectorProxy, IEditSize, ICursorType, IAlign, IUnitPointData, IDragEvent, IRotateEvent, IStroke, IFill, ILeaf, ILeafList, IObject, IBoxInputData, IGroupInputData, IImageCursor, IRect, IBoundsData, IKeyEvent, IUIInputData, IZoomEvent, IColorString, IDirection4, IPointData, ILayoutBoundsData } from '@leafer-ui/interface'
|
|
1
|
+
import { IGroup, IUI, IBox, IRectInputData, ISelectorProxy, IEditSize, ICursorType, IAlign, IUnitPointData, IDragEvent, IRotateEvent, IStroke, IFill, ILeaf, ILeafList, IObject, IBoxInputData, IGroupInputData, IImageCursor, IRect, IBoundsData, IKeyEvent, IUIInputData, IZoomEvent, IColorString, IDirection4, IPointData, IScaleData, ISkewData, ILayoutBoundsData } from '@leafer-ui/interface'
|
|
2
2
|
|
|
3
3
|
export interface IEditorBase extends IGroup, ISelectorProxy {
|
|
4
4
|
config: IEditorConfig
|
|
@@ -66,7 +66,6 @@ export interface IEditorBase extends IGroup, ISelectorProxy {
|
|
|
66
66
|
|
|
67
67
|
export interface IEditorConfig extends IObject {
|
|
68
68
|
editSize?: IEditSize
|
|
69
|
-
dualEvent?: boolean
|
|
70
69
|
keyEvent?: boolean
|
|
71
70
|
|
|
72
71
|
stroke?: IStroke
|
|
@@ -110,6 +109,7 @@ export interface IEditorConfig extends IObject {
|
|
|
110
109
|
hoverStyle?: IUIInputData
|
|
111
110
|
select?: 'press' | 'tap'
|
|
112
111
|
selectedStyle?: IUIInputData
|
|
112
|
+
multipleSelect?: boolean
|
|
113
113
|
boxSelect?: boolean
|
|
114
114
|
continuousSelect?: boolean // 点击可以连续选择
|
|
115
115
|
openInner?: 'double' | 'long' // 双击/长按打开内部
|
|
@@ -120,10 +120,53 @@ export interface IEditorConfig extends IObject {
|
|
|
120
120
|
rotateable?: boolean | 'rotate'
|
|
121
121
|
skewable?: boolean
|
|
122
122
|
|
|
123
|
+
beforeMove?: IEditorBeforeMove
|
|
124
|
+
beforeScale?: IEditorBeforeScale
|
|
125
|
+
beforeRotate?: IEditorBeforeRotate
|
|
126
|
+
beforeSkew?: IEditorBeforeSkew
|
|
127
|
+
|
|
123
128
|
textEditor?: IObject
|
|
124
129
|
pathEditor?: IObject
|
|
125
130
|
}
|
|
126
131
|
|
|
132
|
+
export interface IEditorMoveData extends IPointData, IObject {
|
|
133
|
+
target: IUI
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export interface IEditorScaleData extends IScaleData, IObject {
|
|
137
|
+
target: IUI
|
|
138
|
+
origin: IPointData | IAlign
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export interface IEditorRotationData extends IObject {
|
|
142
|
+
target: IUI
|
|
143
|
+
origin: IPointData | IAlign
|
|
144
|
+
rotation: number
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface IEditorSkewData extends ISkewData, IObject {
|
|
148
|
+
target: IUI
|
|
149
|
+
origin: IPointData | IAlign
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
export interface IEditorBeforeMove {
|
|
154
|
+
(data: IEditorMoveData): IPointData | boolean | void
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export interface IEditorBeforeScale {
|
|
158
|
+
(data: IEditorScaleData): IScaleData | boolean | void
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface IEditorBeforeRotate {
|
|
162
|
+
(data: IEditorRotationData): number | boolean | void
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface IEditorBeforeSkew {
|
|
166
|
+
(data: IEditorSkewData): ISkewData | boolean | void
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
|
|
127
170
|
export interface IEditPointInputData extends IBoxInputData {
|
|
128
171
|
direction?: number
|
|
129
172
|
pointType?: IEditPointType
|
|
@@ -133,7 +176,7 @@ export interface IEditPoint extends IBox {
|
|
|
133
176
|
pointType: IEditPointType
|
|
134
177
|
}
|
|
135
178
|
|
|
136
|
-
export type IEditPointType = 'rotate' | '
|
|
179
|
+
export type IEditPointType = 'resize' | 'rotate' | 'skew' | 'resize-rotate' | 'button'
|
|
137
180
|
|
|
138
181
|
export interface IEditBoxBase extends IGroup {
|
|
139
182
|
editor: IEditorBase
|
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, IGradientPaint, IImagePaint, IImagePaintMode, IFontWeight, IFontWeightNumer, IFontWeightString, ITextCase, ITextDecoration, IWritingMode, ITextAlign, IVerticalAlign, IOverflow, ITextWrap, IRepeat, IGradientType, IPaintType, IImageFilters, IPathDataArrowOffset, ISolidPaint, IPaintBase } from './type/IType'
|
|
31
|
+
export { IVectorPath, IShadowEffect, IBlurEffect, IGrayscaleEffect, IEffect, IFill, IStroke, IPaintAttr, IStrokeAlign, IStrokeJoin, IStrokeCap, IArrowType, IPathDataArrow, IPathDataArrowMap, IRGB, IRGBA, IColor, IColorStop, IPaint, IGradientPaint, IImagePaint, IImagePaintMode, IFontWeight, IFontWeightNumer, IFontWeightString, ITextCase, ITextDecoration, ITextDecorationType, ITextDecorationData, IWritingMode, ITextAlign, IVerticalAlign, IOverflow, 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, ITextStyleAttrData, ITextStyleInputData, ITextStyleComputedData, IEffectAttrData, IEffectInputData, IEffectComputedData } from './ICommonAttr'
|
|
@@ -50,4 +50,4 @@ export { IEffectModule } from './module/IEffect'
|
|
|
50
50
|
export { IFilterModule, IFilterProcessor, IFilterFunction } from './module/IFilter'
|
|
51
51
|
export { ICachedShape } from './ICachedShape'
|
|
52
52
|
|
|
53
|
-
export { IEditorBase, IEditorConfig, IEditBoxBase, IEditPoint, IEditPointInputData, IEditPointType, IEditorDragStartData, IEditToolFunction, IEditorConfigFunction } from './editor/IEditor'
|
|
53
|
+
export { IEditorBase, IEditorConfig, IEditBoxBase, IEditPoint, IEditPointInputData, IEditPointType, IEditorDragStartData, IEditToolFunction, IEditorConfigFunction, IEditorBeforeMove, IEditorBeforeScale, IEditorBeforeRotate, IEditorBeforeSkew, IEditorMoveData, IEditorScaleData, IEditorRotationData, IEditorSkewData } from './editor/IEditor'
|
package/src/type/IType.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IPointData, IPathCommandData, IWindingRule, IBlendMode, IExportFileType,
|
|
1
|
+
import { IPointData, IPathCommandData, IWindingRule, IBlendMode, IExportFileType, IFourNumber, IAlign, IUnitPointData, IAxis, IAxisReverse, IFilter, IOptionSizeData } from '@leafer/interface'
|
|
2
2
|
import { IColorString, IPaintString } from './IStringType'
|
|
3
3
|
|
|
4
4
|
export type IPaint = ISolidPaint | IGradientPaint | IImagePaint
|
|
@@ -72,7 +72,7 @@ export interface IImagePaint extends IPaintBase {
|
|
|
72
72
|
align?: IAlign
|
|
73
73
|
offset?: IPointData
|
|
74
74
|
|
|
75
|
-
size?: number |
|
|
75
|
+
size?: number | IOptionSizeData
|
|
76
76
|
scale?: number | IPointData
|
|
77
77
|
rotation?: number
|
|
78
78
|
|
|
@@ -134,7 +134,14 @@ export type IFontWeightString =
|
|
|
134
134
|
| 'bold'
|
|
135
135
|
| 'extra-bold'
|
|
136
136
|
| 'black'
|
|
137
|
-
|
|
137
|
+
|
|
138
|
+
export type ITextDecoration = ITextDecorationType | ITextDecorationData
|
|
139
|
+
export type ITextDecorationType = 'none' | 'under' | 'delete' | 'under-delete'
|
|
140
|
+
export interface ITextDecorationData {
|
|
141
|
+
type: ITextDecorationType
|
|
142
|
+
color: IColor
|
|
143
|
+
}
|
|
144
|
+
|
|
138
145
|
export type ITextWrap = 'normal' | 'none' | 'break'
|
|
139
146
|
export type IWritingMode = IAxis | IAxisReverse
|
|
140
147
|
|
package/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { IBlendMode, IAlign, IUnitPointData, IExportFileType, IFourNumber, IPointData,
|
|
1
|
+
import { IBlendMode, IAlign, IUnitPointData, IExportFileType, IFourNumber, IPointData, IOptionSizeData, IPathCommandData, IAxis, IAxisReverse, IWindingRule, IFilter, IMatrixData, ILeaferImage, ITaskItem, IBoolean, INumber, IString, IUnitData, IAnimateOptions, IAnimateEasing, IEventer, IObject, IEventMap, IAnimateEasingFunction, IAnimateEnding, ITransition, IPercentData, ILeafInputData, ISizeData, ILeaf as ILeaf$1, ILeafComputedData, ILeafData, IBoundsData as IBoundsData$1, IPathCreator, IJSONOptions, IValue, IFindCondition, IAnswer, IPathString, IPathDrawer, ILeaferCanvas, IRenderOptions, IExportOptions, IExportResult, IPickOptions, IPickResult, ICanvasContext2DSettings, ICanvasContext2D, ILeaferAttrData, IControl, ILeaferType, ILeaferConfig, ILeafRender, ILeafBounds, ILeafHit, ICachedLeaf, IBooleanMap, IAround, IMatrixWithBoundsScaleData } from '@leafer/interface';
|
|
2
2
|
export * from '@leafer/interface';
|
|
3
|
-
import { IObject as IObject$1, IEditSize, IStroke as IStroke$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,
|
|
3
|
+
import { IObject as IObject$1, IEditSize, IStroke as IStroke$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, IPointData as IPointData$1, IUI as IUI$1, IScaleData, ISkewData, IGroup as IGroup$1, ISelectorProxy, ILeafList, IBox as IBox$1, IRect as IRect$1, ILayoutBoundsData, IBoundsData, IKeyEvent, ILeaf, IDragEvent, IZoomEvent, IRotateEvent, 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;
|
|
@@ -59,7 +59,7 @@ interface IImagePaint extends IPaintBase {
|
|
|
59
59
|
padding?: IFourNumber;
|
|
60
60
|
align?: IAlign;
|
|
61
61
|
offset?: IPointData;
|
|
62
|
-
size?: number |
|
|
62
|
+
size?: number | IOptionSizeData;
|
|
63
63
|
scale?: number | IPointData;
|
|
64
64
|
rotation?: number;
|
|
65
65
|
repeat?: IRepeat;
|
|
@@ -101,7 +101,12 @@ type ITextCase = 'upper' | 'lower' | 'title' | 'none' | 'small-caps';
|
|
|
101
101
|
type IFontWeight = IFontWeightNumer | IFontWeightString;
|
|
102
102
|
type IFontWeightNumer = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
|
|
103
103
|
type IFontWeightString = 'thin' | 'extra-light' | 'light' | 'normal' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'black';
|
|
104
|
-
type ITextDecoration =
|
|
104
|
+
type ITextDecoration = ITextDecorationType | ITextDecorationData;
|
|
105
|
+
type ITextDecorationType = 'none' | 'under' | 'delete' | 'under-delete';
|
|
106
|
+
interface ITextDecorationData {
|
|
107
|
+
type: ITextDecorationType;
|
|
108
|
+
color: IColor;
|
|
109
|
+
}
|
|
105
110
|
type ITextWrap = 'normal' | 'none' | 'break';
|
|
106
111
|
type IWritingMode = IAxis | IAxisReverse;
|
|
107
112
|
interface IVectorPath {
|
|
@@ -426,7 +431,6 @@ interface IEditorBase extends IGroup$1, ISelectorProxy {
|
|
|
426
431
|
}
|
|
427
432
|
interface IEditorConfig extends IObject$1 {
|
|
428
433
|
editSize?: IEditSize;
|
|
429
|
-
dualEvent?: boolean;
|
|
430
434
|
keyEvent?: boolean;
|
|
431
435
|
stroke?: IStroke$1;
|
|
432
436
|
strokeWidth?: number;
|
|
@@ -460,6 +464,7 @@ interface IEditorConfig extends IObject$1 {
|
|
|
460
464
|
hoverStyle?: IUIInputData$1;
|
|
461
465
|
select?: 'press' | 'tap';
|
|
462
466
|
selectedStyle?: IUIInputData$1;
|
|
467
|
+
multipleSelect?: boolean;
|
|
463
468
|
boxSelect?: boolean;
|
|
464
469
|
continuousSelect?: boolean;
|
|
465
470
|
openInner?: 'double' | 'long';
|
|
@@ -468,9 +473,41 @@ interface IEditorConfig extends IObject$1 {
|
|
|
468
473
|
flipable?: boolean;
|
|
469
474
|
rotateable?: boolean | 'rotate';
|
|
470
475
|
skewable?: boolean;
|
|
476
|
+
beforeMove?: IEditorBeforeMove;
|
|
477
|
+
beforeScale?: IEditorBeforeScale;
|
|
478
|
+
beforeRotate?: IEditorBeforeRotate;
|
|
479
|
+
beforeSkew?: IEditorBeforeSkew;
|
|
471
480
|
textEditor?: IObject$1;
|
|
472
481
|
pathEditor?: IObject$1;
|
|
473
482
|
}
|
|
483
|
+
interface IEditorMoveData extends IPointData$1, IObject$1 {
|
|
484
|
+
target: IUI$1;
|
|
485
|
+
}
|
|
486
|
+
interface IEditorScaleData extends IScaleData, IObject$1 {
|
|
487
|
+
target: IUI$1;
|
|
488
|
+
origin: IPointData$1 | IAlign$1;
|
|
489
|
+
}
|
|
490
|
+
interface IEditorRotationData extends IObject$1 {
|
|
491
|
+
target: IUI$1;
|
|
492
|
+
origin: IPointData$1 | IAlign$1;
|
|
493
|
+
rotation: number;
|
|
494
|
+
}
|
|
495
|
+
interface IEditorSkewData extends ISkewData, IObject$1 {
|
|
496
|
+
target: IUI$1;
|
|
497
|
+
origin: IPointData$1 | IAlign$1;
|
|
498
|
+
}
|
|
499
|
+
interface IEditorBeforeMove {
|
|
500
|
+
(data: IEditorMoveData): IPointData$1 | boolean | void;
|
|
501
|
+
}
|
|
502
|
+
interface IEditorBeforeScale {
|
|
503
|
+
(data: IEditorScaleData): IScaleData | boolean | void;
|
|
504
|
+
}
|
|
505
|
+
interface IEditorBeforeRotate {
|
|
506
|
+
(data: IEditorRotationData): number | boolean | void;
|
|
507
|
+
}
|
|
508
|
+
interface IEditorBeforeSkew {
|
|
509
|
+
(data: IEditorSkewData): ISkewData | boolean | void;
|
|
510
|
+
}
|
|
474
511
|
interface IEditPointInputData extends IBoxInputData$1 {
|
|
475
512
|
direction?: number;
|
|
476
513
|
pointType?: IEditPointType;
|
|
@@ -479,7 +516,7 @@ interface IEditPoint extends IBox$1 {
|
|
|
479
516
|
direction: number;
|
|
480
517
|
pointType: IEditPointType;
|
|
481
518
|
}
|
|
482
|
-
type IEditPointType = 'rotate' | '
|
|
519
|
+
type IEditPointType = 'resize' | 'rotate' | 'skew' | 'resize-rotate' | 'button';
|
|
483
520
|
interface IEditBoxBase extends IGroup$1 {
|
|
484
521
|
editor: IEditorBase;
|
|
485
522
|
dragging: boolean;
|
|
@@ -727,7 +764,8 @@ interface ITextDrawData {
|
|
|
727
764
|
paraNumber: number;
|
|
728
765
|
font: string;
|
|
729
766
|
maxWidth?: number;
|
|
730
|
-
decorationY?: number;
|
|
767
|
+
decorationY?: number[];
|
|
768
|
+
decorationColor?: string;
|
|
731
769
|
decorationHeight?: number;
|
|
732
770
|
overflow?: number;
|
|
733
771
|
}
|
|
@@ -1071,4 +1109,4 @@ interface IFilterFunction {
|
|
|
1071
1109
|
(filter: IFilter, ui: IUI, bounds: IMatrixWithBoundsScaleData, currentCanvas: ILeaferCanvas, originCanvas: ILeaferCanvas, shape: ICachedShape): void;
|
|
1072
1110
|
}
|
|
1073
1111
|
|
|
1074
|
-
export type { IAnimate, IAnimateKeyframe, IAnimateList, IAnimateType, IAnimation, IApp, IAppConfig, IAppData, IAppInputData, IArrow, IArrowData, IArrowInputData, IArrowType, IBlurEffect, IBox, IBoxData, IBoxInputData, ICachedShape, ICanvas, ICanvasData, ICanvasInputData, IColor, IColorConvertModule, IColorStop, IColorString, IComputedKeyframe, ICornerRadiusString, IDashPatternString, IEditBoxBase, IEditPoint, IEditPointInputData, IEditPointType, IEditToolFunction, IEditorBase, IEditorConfig, IEditorConfigFunction, IEditorDragStartData, 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, IShadowEffect, IShadowString, ISolidPaint, IStar, IStarData, IStarInputData, IStateModule, IStateName, IStateStyle, IStates, IStroke, IStrokeAlign, IStrokeAttrData, IStrokeCap, IStrokeComputedData, IStrokeInputData, IStrokeJoin, IStrokeWidthString, IStyleAnimation, IText, ITextAlign, ITextCase, ITextCharData, ITextConvertModule, ITextData, ITextDecoration, ITextDrawData, ITextInputData, ITextRenderModule, ITextRowData, ITextStyleAttrData, ITextStyleComputedData, ITextStyleInputData, ITextWordData, ITextWrap, ITransitionFunction, ITransitionMap, ITransitionModule, IUI, IUIBaseInputData, IUIBoundsModule, IUIData, IUIHitModule, IUIInputData, IUIJSONData, IUIRenderModule, IUITag, IVectorPath, IVerticalAlign, IVideo, IVideoData, IVideoInputData, IWritingMode };
|
|
1112
|
+
export type { IAnimate, IAnimateKeyframe, IAnimateList, IAnimateType, IAnimation, IApp, IAppConfig, IAppData, IAppInputData, IArrow, IArrowData, IArrowInputData, IArrowType, IBlurEffect, IBox, IBoxData, IBoxInputData, ICachedShape, ICanvas, ICanvasData, ICanvasInputData, IColor, IColorConvertModule, IColorStop, IColorString, IComputedKeyframe, ICornerRadiusString, IDashPatternString, IEditBoxBase, IEditPoint, IEditPointInputData, IEditPointType, IEditToolFunction, IEditorBase, IEditorBeforeMove, IEditorBeforeRotate, IEditorBeforeScale, IEditorBeforeSkew, IEditorConfig, IEditorConfigFunction, IEditorDragStartData, IEditorMoveData, IEditorRotationData, IEditorScaleData, 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, IShadowEffect, IShadowString, ISolidPaint, IStar, IStarData, IStarInputData, IStateModule, IStateName, IStateStyle, IStates, IStroke, IStrokeAlign, IStrokeAttrData, IStrokeCap, IStrokeComputedData, IStrokeInputData, IStrokeJoin, IStrokeWidthString, IStyleAnimation, IText, ITextAlign, ITextCase, ITextCharData, ITextConvertModule, ITextData, ITextDecoration, ITextDecorationData, ITextDecorationType, ITextDrawData, ITextInputData, ITextRenderModule, ITextRowData, ITextStyleAttrData, ITextStyleComputedData, ITextStyleInputData, ITextWordData, ITextWrap, ITransitionFunction, ITransitionMap, ITransitionModule, IUI, IUIBaseInputData, IUIBoundsModule, IUIData, IUIHitModule, IUIInputData, IUIJSONData, IUIRenderModule, IUITag, IVectorPath, IVerticalAlign, IVideo, IVideoData, IVideoInputData, IWritingMode };
|