@leafer-ui/interface 1.5.1 → 1.5.3
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 +54 -3
- package/src/index.ts +2 -2
- package/src/type/IType.ts +10 -3
- package/types/index.d.ts +53 -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.3",
|
|
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.3"
|
|
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,61 @@ export interface IEditorConfig extends IObject {
|
|
|
120
120
|
rotateable?: boolean | 'rotate'
|
|
121
121
|
skewable?: boolean
|
|
122
122
|
|
|
123
|
+
beforeSelect?: IEditorBeforeSelect
|
|
124
|
+
beforeMove?: IEditorBeforeMove
|
|
125
|
+
beforeScale?: IEditorBeforeScale
|
|
126
|
+
beforeRotate?: IEditorBeforeRotate
|
|
127
|
+
beforeSkew?: IEditorBeforeSkew
|
|
128
|
+
|
|
123
129
|
textEditor?: IObject
|
|
124
130
|
pathEditor?: IObject
|
|
125
131
|
}
|
|
126
132
|
|
|
133
|
+
export interface IEditorSelectData {
|
|
134
|
+
target: IUI | IUI[]
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface IEditorMoveData extends IPointData, IObject {
|
|
138
|
+
target: IUI
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export interface IEditorScaleData extends IScaleData, IObject {
|
|
142
|
+
target: IUI
|
|
143
|
+
origin: IPointData | IAlign
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export interface IEditorRotationData extends IObject {
|
|
147
|
+
target: IUI
|
|
148
|
+
origin: IPointData | IAlign
|
|
149
|
+
rotation: number
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface IEditorSkewData extends ISkewData, IObject {
|
|
153
|
+
target: IUI
|
|
154
|
+
origin: IPointData | IAlign
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export interface IEditorBeforeSelect {
|
|
158
|
+
(data: IEditorSelectData): IUI | IUI[] | boolean | void
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface IEditorBeforeMove {
|
|
162
|
+
(data: IEditorMoveData): IPointData | boolean | void
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface IEditorBeforeScale {
|
|
166
|
+
(data: IEditorScaleData): IScaleData | boolean | void
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface IEditorBeforeRotate {
|
|
170
|
+
(data: IEditorRotationData): number | boolean | void
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface IEditorBeforeSkew {
|
|
174
|
+
(data: IEditorSkewData): ISkewData | boolean | void
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
|
|
127
178
|
export interface IEditPointInputData extends IBoxInputData {
|
|
128
179
|
direction?: number
|
|
129
180
|
pointType?: IEditPointType
|
|
@@ -133,7 +184,7 @@ export interface IEditPoint extends IBox {
|
|
|
133
184
|
pointType: IEditPointType
|
|
134
185
|
}
|
|
135
186
|
|
|
136
|
-
export type IEditPointType = 'rotate' | '
|
|
187
|
+
export type IEditPointType = 'resize' | 'rotate' | 'skew' | 'resize-rotate' | 'button'
|
|
137
188
|
|
|
138
189
|
export interface IEditBoxBase extends IGroup {
|
|
139
190
|
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, IEditorBeforeSelect, IEditorBeforeMove, IEditorBeforeScale, IEditorBeforeRotate, IEditorBeforeSkew, IEditorSelectData, 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, IUI as IUI$1, IPointData as IPointData$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,48 @@ interface IEditorConfig extends IObject$1 {
|
|
|
468
473
|
flipable?: boolean;
|
|
469
474
|
rotateable?: boolean | 'rotate';
|
|
470
475
|
skewable?: boolean;
|
|
476
|
+
beforeSelect?: IEditorBeforeSelect;
|
|
477
|
+
beforeMove?: IEditorBeforeMove;
|
|
478
|
+
beforeScale?: IEditorBeforeScale;
|
|
479
|
+
beforeRotate?: IEditorBeforeRotate;
|
|
480
|
+
beforeSkew?: IEditorBeforeSkew;
|
|
471
481
|
textEditor?: IObject$1;
|
|
472
482
|
pathEditor?: IObject$1;
|
|
473
483
|
}
|
|
484
|
+
interface IEditorSelectData {
|
|
485
|
+
target: IUI$1 | IUI$1[];
|
|
486
|
+
}
|
|
487
|
+
interface IEditorMoveData extends IPointData$1, IObject$1 {
|
|
488
|
+
target: IUI$1;
|
|
489
|
+
}
|
|
490
|
+
interface IEditorScaleData extends IScaleData, IObject$1 {
|
|
491
|
+
target: IUI$1;
|
|
492
|
+
origin: IPointData$1 | IAlign$1;
|
|
493
|
+
}
|
|
494
|
+
interface IEditorRotationData extends IObject$1 {
|
|
495
|
+
target: IUI$1;
|
|
496
|
+
origin: IPointData$1 | IAlign$1;
|
|
497
|
+
rotation: number;
|
|
498
|
+
}
|
|
499
|
+
interface IEditorSkewData extends ISkewData, IObject$1 {
|
|
500
|
+
target: IUI$1;
|
|
501
|
+
origin: IPointData$1 | IAlign$1;
|
|
502
|
+
}
|
|
503
|
+
interface IEditorBeforeSelect {
|
|
504
|
+
(data: IEditorSelectData): IUI$1 | IUI$1[] | boolean | void;
|
|
505
|
+
}
|
|
506
|
+
interface IEditorBeforeMove {
|
|
507
|
+
(data: IEditorMoveData): IPointData$1 | boolean | void;
|
|
508
|
+
}
|
|
509
|
+
interface IEditorBeforeScale {
|
|
510
|
+
(data: IEditorScaleData): IScaleData | boolean | void;
|
|
511
|
+
}
|
|
512
|
+
interface IEditorBeforeRotate {
|
|
513
|
+
(data: IEditorRotationData): number | boolean | void;
|
|
514
|
+
}
|
|
515
|
+
interface IEditorBeforeSkew {
|
|
516
|
+
(data: IEditorSkewData): ISkewData | boolean | void;
|
|
517
|
+
}
|
|
474
518
|
interface IEditPointInputData extends IBoxInputData$1 {
|
|
475
519
|
direction?: number;
|
|
476
520
|
pointType?: IEditPointType;
|
|
@@ -479,7 +523,7 @@ interface IEditPoint extends IBox$1 {
|
|
|
479
523
|
direction: number;
|
|
480
524
|
pointType: IEditPointType;
|
|
481
525
|
}
|
|
482
|
-
type IEditPointType = 'rotate' | '
|
|
526
|
+
type IEditPointType = 'resize' | 'rotate' | 'skew' | 'resize-rotate' | 'button';
|
|
483
527
|
interface IEditBoxBase extends IGroup$1 {
|
|
484
528
|
editor: IEditorBase;
|
|
485
529
|
dragging: boolean;
|
|
@@ -727,7 +771,8 @@ interface ITextDrawData {
|
|
|
727
771
|
paraNumber: number;
|
|
728
772
|
font: string;
|
|
729
773
|
maxWidth?: number;
|
|
730
|
-
decorationY?: number;
|
|
774
|
+
decorationY?: number[];
|
|
775
|
+
decorationColor?: string;
|
|
731
776
|
decorationHeight?: number;
|
|
732
777
|
overflow?: number;
|
|
733
778
|
}
|
|
@@ -1071,4 +1116,4 @@ interface IFilterFunction {
|
|
|
1071
1116
|
(filter: IFilter, ui: IUI, bounds: IMatrixWithBoundsScaleData, currentCanvas: ILeaferCanvas, originCanvas: ILeaferCanvas, shape: ICachedShape): void;
|
|
1072
1117
|
}
|
|
1073
1118
|
|
|
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 };
|
|
1119
|
+
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, IEditorBeforeSelect, IEditorBeforeSkew, IEditorConfig, IEditorConfigFunction, IEditorDragStartData, 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, 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 };
|