@leafer-ui/interface 1.2.1 → 1.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer-ui/interface",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
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.2.1"
25
+ "@leafer/interface": "1.3.0"
26
26
  }
27
27
  }
package/src/IAnimation.ts CHANGED
@@ -134,7 +134,7 @@ export interface IAnimateEventFunction {
134
134
 
135
135
 
136
136
  export interface IAnimate extends IAnimateOptions, IEventer {
137
- target: IUI
137
+ target: IUI | IObject
138
138
 
139
139
  keyframes: IKeyframe[]
140
140
  config?: IAnimateOptions
@@ -142,6 +142,7 @@ export interface IAnimate extends IAnimateOptions, IEventer {
142
142
 
143
143
  readonly frames: IComputedKeyframe[]
144
144
 
145
+ readonly style: IUIInputData
145
146
  readonly fromStyle: IUIInputData
146
147
  readonly toStyle: IUIInputData
147
148
  readonly endingStyle: IUIInputData
@@ -156,13 +157,13 @@ export interface IAnimate extends IAnimateOptions, IEventer {
156
157
 
157
158
  readonly realEnding: IAnimateEnding
158
159
 
159
- init(target: IUI, keyframe: IUIInputData | IKeyframe[], options?: ITransition, isTemp?: boolean): void
160
+ init(target: IUI | IObject, keyframe: IUIInputData | IKeyframe[], options?: ITransition, isTemp?: boolean): void
160
161
 
161
162
  play(): void
162
163
  pause(): void
163
164
  stop(): void
164
165
  seek(time: number | IPercentData): void
165
- kill(): void
166
+ kill(complete?: boolean, killStyle?: IUIInputData): void
166
167
 
167
168
  destroy(complete?: boolean): void
168
169
  }
@@ -1,5 +1,5 @@
1
1
  import { INumber, IBoolean, IString, IFourNumber, IUnitData } from '@leafer/interface'
2
- import { IStrokeAlign, IStrokeCap, IStrokeJoin, IBlurEffect, IFontWeight, ITextCase, ITextDecoration, IShadowEffect, IGrayscaleEffect, ITextAlign, IVerticalAlign, IOverflow, ITextWrap, IStroke, IFill, IArrowType } from './type/IType'
2
+ import { IStrokeAlign, IStrokeCap, IStrokeJoin, IBlurEffect, IFontWeight, ITextCase, ITextDecoration, IShadowEffect, IGrayscaleEffect, ITextAlign, IVerticalAlign, IOverflow, ITextWrap, IStroke, IFill, IArrowType, IWritingMode } 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
 
@@ -97,6 +97,7 @@ export interface ITextStyleAttrData {
97
97
  paraIndent?: INumber
98
98
  paraSpacing?: INumber
99
99
 
100
+ writingMode?: IWritingMode
100
101
  textAlign?: ITextAlign
101
102
  verticalAlign?: IVerticalAlign
102
103
  autoSizeAlign?: IBoolean
@@ -117,6 +118,7 @@ export interface ITextStyleInputData {
117
118
  paraIndent?: INumber
118
119
  paraSpacing?: INumber
119
120
 
121
+ writingMode?: IWritingMode
120
122
  textAlign?: ITextAlign
121
123
  verticalAlign?: IVerticalAlign
122
124
  autoSizeAlign?: IBoolean
@@ -137,6 +139,7 @@ export interface ITextStyleComputedData {
137
139
  paraIndent?: number
138
140
  paraSpacing?: number
139
141
 
142
+ writingMode?: IWritingMode
140
143
  textAlign?: ITextAlign
141
144
  verticalAlign?: IVerticalAlign
142
145
  autoSizeAlign?: boolean // 自动宽高的文本,是否仍进行整体对齐操作
package/src/IUI.ts CHANGED
@@ -290,6 +290,7 @@ export interface ICanvas extends ICanvasAttrData, IRect {
290
290
  }
291
291
  interface ICanvasAttrData {
292
292
  smooth?: boolean
293
+ safeResize?: boolean
293
294
  contextSettings?: ICanvasContext2DSettings
294
295
  url?: string
295
296
  }
@@ -372,8 +373,8 @@ export interface IUI extends IUIAttrData, IFillAttrData, IStrokeAttrData, ICorne
372
373
  proxyData?: IUIInputData
373
374
  __proxyData?: IUIInputData
374
375
 
375
- animation?: IAnimation
376
- animationOut?: IAnimation
376
+ animation?: IAnimation | IAnimation[]
377
+ animationOut?: IAnimation | IAnimation[]
377
378
 
378
379
  editConfig?: IEditorConfig
379
380
  editOuter: string
@@ -408,8 +409,8 @@ export interface IUI extends IUIAttrData, IFillAttrData, IStrokeAttrData, ICorne
408
409
  __drawAfterFill?(canvas: ILeaferCanvas, options: IRenderOptions): void
409
410
  __drawContent?(canvas: ILeaferCanvas, options: IRenderOptions): void
410
411
 
411
- animate(keyframe?: IUIInputData | IKeyframe[] | IAnimation, options?: ITransition, type?: IAnimateType, isTemp?: boolean): IAnimate
412
- killAnimate(type?: IAnimateType): void
412
+ animate(keyframe?: IUIInputData | IKeyframe[] | IAnimation | IAnimation[], options?: ITransition, type?: IAnimateType, isTemp?: boolean): IAnimate
413
+ killAnimate(type?: IAnimateType, killStyle?: IUIInputData): void
413
414
 
414
415
  export(filename: string, options?: IExportOptions | number | boolean): Promise<IExportResult>
415
416
  clone(data?: IUIInputData): IUI
@@ -430,8 +431,8 @@ export type IStateName = string
430
431
 
431
432
 
432
433
  interface IUIAttrData {
433
- animation?: IAnimation
434
- animationOut?: IAnimation
434
+ animation?: IAnimation | IAnimation[]
435
+ animationOut?: IAnimation | IAnimation[]
435
436
 
436
437
  transition?: ITransition
437
438
  transitionOut?: ITransition
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, 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, 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'
package/src/type/IType.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { IPointData, IPathCommandData, IWindingRule, IBlendMode, IExportFileType, ISizeData, IFourNumber, IAlign, IUnitPointData, IObject } from '@leafer/interface'
1
+ import { IPointData, IPathCommandData, IWindingRule, IBlendMode, IExportFileType, ISizeData, IFourNumber, IAlign, IUnitPointData, IObject, IAxis, IAxisReverse } from '@leafer/interface'
2
2
  import { IColorString, IPaintString } from './IStringType'
3
3
 
4
4
  export type IPaint = ISolidPaint | IGradientPaint | IImagePaint
@@ -132,6 +132,7 @@ export type IFontWeightString =
132
132
  | 'black'
133
133
  export type ITextDecoration = 'none' | 'under' | 'delete'
134
134
  export type ITextWrap = 'normal' | 'none' | 'break'
135
+ export type IWritingMode = IAxis | IAxisReverse
135
136
 
136
137
  // 路径
137
138
  export interface IVectorPath {
package/types/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { IBlendMode, IAlign, IUnitPointData, IExportFileType, IFourNumber, IPointData, ISizeData, IPathCommandData, IWindingRule, IObject, IMatrixData, ILeaferImage, ITaskItem, IBoolean, INumber, IString, IUnitData, IEventer, IEventMap, IPercentData, IBoundsData as IBoundsData$1, IPathCreator, ILeaferCanvas, ICanvasContext2D, ICanvasContext2DSettings, IRenderOptions, IPickOptions, IPickResult, ILeaf as ILeaf$1, IFindCondition, IJSONOptions, IValue, IPathString, IPathDrawer, IExportOptions, IExportResult, IAnswer, ILeafData, ILeafComputedData, ILeafInputData, ILeaferAttrData, IControl, ILeaferType, ILeaferConfig, ILeafRender, ILeafBounds, ILeafHit, ICachedLeaf, IBooleanMap, IAround } from '@leafer/interface';
1
+ import { IBlendMode, IAlign, IUnitPointData, IExportFileType, IFourNumber, IPointData, ISizeData, IPathCommandData, IAxis, IAxisReverse, IWindingRule, IObject, IMatrixData, ILeaferImage, ITaskItem, IBoolean, INumber, IString, IUnitData, IEventer, IEventMap, IPercentData, IBoundsData as IBoundsData$1, IPathCreator, ILeaferCanvas, ICanvasContext2D, ICanvasContext2DSettings, IRenderOptions, IPickOptions, IPickResult, ILeaf as ILeaf$1, IFindCondition, IJSONOptions, IValue, IPathString, IPathDrawer, IExportOptions, IExportResult, IAnswer, ILeafData, ILeafComputedData, ILeafInputData, ILeaferAttrData, IControl, ILeaferType, ILeaferConfig, ILeafRender, ILeafBounds, ILeafHit, ICachedLeaf, IBooleanMap, IAround } from '@leafer/interface';
2
2
  export * from '@leafer/interface';
3
3
  import { IGroup as IGroup$1, ISelectorProxy, IUI as IUI$1, ILeafList, IObject as IObject$1, ILeaf, IEditSize, IDragEvent, IZoomEvent, IRotateEvent, IGroupInputData as IGroupInputData$1, 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, IBox as IBox$1, IRect as IRect$1, IBoundsData, IKeyEvent, IStateName as IStateName$1, IString as IString$1, IBoolean as IBoolean$1, IStateStyle as IStateStyle$1 } from '@leafer-ui/interface';
4
4
 
@@ -102,6 +102,7 @@ type IFontWeightNumer = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
102
102
  type IFontWeightString = 'thin' | 'extra-light' | 'light' | 'normal' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'black';
103
103
  type ITextDecoration = 'none' | 'under' | 'delete';
104
104
  type ITextWrap = 'normal' | 'none' | 'break';
105
+ type IWritingMode = IAxis | IAxisReverse;
105
106
  interface IVectorPath {
106
107
  rule?: IWindingRule;
107
108
  data: string | IPathCommandData;
@@ -246,6 +247,7 @@ interface ITextStyleAttrData {
246
247
  lineHeight?: INumber | IUnitData;
247
248
  paraIndent?: INumber;
248
249
  paraSpacing?: INumber;
250
+ writingMode?: IWritingMode;
249
251
  textAlign?: ITextAlign;
250
252
  verticalAlign?: IVerticalAlign;
251
253
  autoSizeAlign?: IBoolean;
@@ -263,6 +265,7 @@ interface ITextStyleInputData {
263
265
  lineHeight?: INumber | IUnitData;
264
266
  paraIndent?: INumber;
265
267
  paraSpacing?: INumber;
268
+ writingMode?: IWritingMode;
266
269
  textAlign?: ITextAlign;
267
270
  verticalAlign?: IVerticalAlign;
268
271
  autoSizeAlign?: IBoolean;
@@ -280,6 +283,7 @@ interface ITextStyleComputedData {
280
283
  lineHeight?: number;
281
284
  paraIndent?: number;
282
285
  paraSpacing?: number;
286
+ writingMode?: IWritingMode;
283
287
  textAlign?: ITextAlign;
284
288
  verticalAlign?: IVerticalAlign;
285
289
  autoSizeAlign?: boolean;
@@ -383,11 +387,12 @@ interface IAnimateEventFunction {
383
387
  (animate?: IAnimate): any;
384
388
  }
385
389
  interface IAnimate extends IAnimateOptions, IEventer {
386
- target: IUI;
390
+ target: IUI | IObject;
387
391
  keyframes: IKeyframe[];
388
392
  config?: IAnimateOptions;
389
393
  event?: IEventMap;
390
394
  readonly frames: IComputedKeyframe[];
395
+ readonly style: IUIInputData;
391
396
  readonly fromStyle: IUIInputData;
392
397
  readonly toStyle: IUIInputData;
393
398
  readonly endingStyle: IUIInputData;
@@ -398,12 +403,12 @@ interface IAnimate extends IAnimateOptions, IEventer {
398
403
  readonly time: number;
399
404
  readonly looped: number;
400
405
  readonly realEnding: IAnimateEnding;
401
- init(target: IUI, keyframe: IUIInputData | IKeyframe[], options?: ITransition, isTemp?: boolean): void;
406
+ init(target: IUI | IObject, keyframe: IUIInputData | IKeyframe[], options?: ITransition, isTemp?: boolean): void;
402
407
  play(): void;
403
408
  pause(): void;
404
409
  stop(): void;
405
410
  seek(time: number | IPercentData): void;
406
- kill(): void;
411
+ kill(complete?: boolean, killStyle?: IUIInputData): void;
407
412
  destroy(complete?: boolean): void;
408
413
  }
409
414
 
@@ -771,6 +776,7 @@ interface ICanvas extends ICanvasAttrData, IRect {
771
776
  }
772
777
  interface ICanvasAttrData {
773
778
  smooth?: boolean;
779
+ safeResize?: boolean;
774
780
  contextSettings?: ICanvasContext2DSettings;
775
781
  url?: string;
776
782
  }
@@ -834,8 +840,8 @@ interface IUI extends IUIAttrData, IFillAttrData, IStrokeAttrData, ICornerRadius
834
840
  isOverflow?: boolean;
835
841
  proxyData?: IUIInputData;
836
842
  __proxyData?: IUIInputData;
837
- animation?: IAnimation;
838
- animationOut?: IAnimation;
843
+ animation?: IAnimation | IAnimation[];
844
+ animationOut?: IAnimation | IAnimation[];
839
845
  editConfig?: IEditorConfig;
840
846
  editOuter: string;
841
847
  editInner: string;
@@ -858,8 +864,8 @@ interface IUI extends IUIAttrData, IFillAttrData, IStrokeAttrData, ICornerRadius
858
864
  __drawPathByBox(drawer: IPathDrawer): void;
859
865
  __drawAfterFill?(canvas: ILeaferCanvas, options: IRenderOptions): void;
860
866
  __drawContent?(canvas: ILeaferCanvas, options: IRenderOptions): void;
861
- animate(keyframe?: IUIInputData | IKeyframe[] | IAnimation, options?: ITransition, type?: IAnimateType, isTemp?: boolean): IAnimate;
862
- killAnimate(type?: IAnimateType): void;
867
+ animate(keyframe?: IUIInputData | IKeyframe[] | IAnimation | IAnimation[], options?: ITransition, type?: IAnimateType, isTemp?: boolean): IAnimate;
868
+ killAnimate(type?: IAnimateType, killStyle?: IUIInputData): void;
863
869
  export(filename: string, options?: IExportOptions | number | boolean): Promise<IExportResult>;
864
870
  clone(data?: IUIInputData): IUI;
865
871
  }
@@ -870,8 +876,8 @@ interface IStates {
870
876
  }
871
877
  type IStateName = string;
872
878
  interface IUIAttrData {
873
- animation?: IAnimation;
874
- animationOut?: IAnimation;
879
+ animation?: IAnimation | IAnimation[];
880
+ animationOut?: IAnimation | IAnimation[];
875
881
  transition?: ITransition;
876
882
  transitionOut?: ITransition;
877
883
  states?: IStates;
@@ -1068,4 +1074,4 @@ interface IEffectModule {
1068
1074
  backgroundBlur(ui: IUI, current: ILeaferCanvas, shape: ICachedShape): void;
1069
1075
  }
1070
1076
 
1071
- export type { IAnimate, IAnimateEasing, IAnimateEasingFunction, IAnimateEasingName, IAnimateEnding, IAnimateEventFunction, IAnimateEvents, IAnimateKeyframe, IAnimateOptions, IAnimateType, IAnimation, IApp, IAppConfig, IAppData, IAppInputData, IArrow, IArrowData, IArrowInputData, IArrowType, IBlurEffect, IBox, IBoxData, IBoxInputData, ICachedShape, ICanvas, ICanvasData, ICanvasInputData, IColor, IColorConvertModule, IColorStop, IColorString, IComputedKeyframe, ICornerRadiusString, ICubicBezierEasing, ICustomEasingFunction, IDashPatternString, IEditBoxBase, IEditPoint, IEditPointInputData, IEditPointType, IEditToolFunction, IEditorBase, IEditorConfig, IEditorConfigFunction, IEffect, IEffectAttrData, IEffectComputedData, IEffectInputData, IEffectModule, IEllipse, IEllipseData, IEllipseInputData, IExportModule, IFill, 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, IStepsEasing, 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, ITransition, ITransitionFunction, ITransitionMap, ITransitionModule, IUI, IUIBaseInputData, IUIBoundsModule, IUIData, IUIHitModule, IUIInputData, IUIJSONData, IUIRenderModule, IUITag, IVectorPath, IVerticalAlign, IVideo, IVideoData, IVideoInputData };
1077
+ export type { IAnimate, IAnimateEasing, IAnimateEasingFunction, IAnimateEasingName, IAnimateEnding, IAnimateEventFunction, IAnimateEvents, IAnimateKeyframe, IAnimateOptions, IAnimateType, IAnimation, IApp, IAppConfig, IAppData, IAppInputData, IArrow, IArrowData, IArrowInputData, IArrowType, IBlurEffect, IBox, IBoxData, IBoxInputData, ICachedShape, ICanvas, ICanvasData, ICanvasInputData, IColor, IColorConvertModule, IColorStop, IColorString, IComputedKeyframe, ICornerRadiusString, ICubicBezierEasing, ICustomEasingFunction, IDashPatternString, IEditBoxBase, IEditPoint, IEditPointInputData, IEditPointType, IEditToolFunction, IEditorBase, IEditorConfig, IEditorConfigFunction, IEffect, IEffectAttrData, IEffectComputedData, IEffectInputData, IEffectModule, IEllipse, IEllipseData, IEllipseInputData, IExportModule, IFill, 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, IStepsEasing, 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, ITransition, ITransitionFunction, ITransitionMap, ITransitionModule, IUI, IUIBaseInputData, IUIBoundsModule, IUIData, IUIHitModule, IUIInputData, IUIJSONData, IUIRenderModule, IUITag, IVectorPath, IVerticalAlign, IVideo, IVideoData, IVideoInputData, IWritingMode };