@leafer/interface 1.11.1 → 1.12.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/interface",
3
- "version": "1.11.1",
3
+ "version": "1.12.0",
4
4
  "description": "@leafer/interface",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -12,7 +12,12 @@ export interface IImageManager {
12
12
 
13
13
  get(config: ILeaferImageConfig): ILeaferImage
14
14
  recycle(image: ILeaferImage): void
15
- clearRecycled(): void
15
+
16
+ recyclePaint(paint: any): void
17
+
18
+ clearRecycled(force?: boolean): void
19
+ clearLevels(): void
20
+
16
21
  hasAlphaPixel(config: ILeaferImageConfig): boolean // png / svg / webp
17
22
  isFormat(format: IExportFileType, config: ILeaferImageConfig): boolean
18
23
 
@@ -2,7 +2,7 @@ import { ICanvasPattern } from '../canvas/ICanvas'
2
2
  import { IObject } from '../data/IData'
3
3
  import { InnerId } from '../event/IEventer'
4
4
  import { IExportFileType } from '../file/IFileType'
5
- import { IMatrixData, IPointData } from '../math/IMath'
5
+ import { IBoundsData, IMatrixData, IPointData } from '../math/IMath'
6
6
  import { ILeaferCanvas } from '../canvas/ILeaferCanvas'
7
7
  import { IProgressData } from '../event/IProgress'
8
8
  import { IImageCrossOrigin } from '../platform/IPlatform'
@@ -44,6 +44,7 @@ export interface ILeaferImageSliceData {
44
44
 
45
45
  export interface ILeaferImageSlice {
46
46
  view?: any
47
+ bounds?: IBoundsData
47
48
  task?: ITaskItem
48
49
  }
49
50
 
@@ -53,6 +54,7 @@ export interface ILeaferImageLevel {
53
54
  view?: any
54
55
  url?: string
55
56
  slice?: ILeaferImageSliceData
57
+ use?: number // 引用次数
56
58
  }
57
59
 
58
60
  export interface ILeaferImage {
@@ -80,7 +82,7 @@ export interface ILeaferImage {
80
82
 
81
83
  progress?: IProgressData // 加载进度
82
84
 
83
- use: number
85
+ use: number // 引用次数
84
86
  config: ILeaferImageConfig
85
87
 
86
88
  load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError): number
@@ -88,6 +90,8 @@ export interface ILeaferImage {
88
90
  getFull(filters?: IObject): any
89
91
  getCanvas(width: number, height: number, opacity?: number, filters?: IObject, xGap?: number, yGap?: number, smooth?: boolean): any
90
92
  getPattern(canvas: any, repeat: string | null, transform?: IMatrixData, paint?: IObject): ICanvasPattern
93
+
94
+ clearLevels(checkUse?: boolean): void
91
95
  destroy(): void
92
96
  }
93
97
 
package/src/index.ts CHANGED
@@ -38,7 +38,7 @@ export { ISkiaCanvas, ISkiaCanvasExportConfig, ICanvasType, ISkiaNAPICanvas } fr
38
38
  export { IPathDrawer, IPathCreator } from './path/IPathDrawer'
39
39
  export { IMotionPathData } from './path/IPathData'
40
40
  export { IWindingRule, ICanvasContext2D, ICanvasContext2DSettings, ITextMetrics, IPath2D, ICanvasPattern } from './canvas/ICanvas'
41
- export { CanvasPathCommand, IPathCommandData, MCommandData, HCommandData, VCommandData, LCommandData, CCommandData, SCommandData, QCommandData, TCommandData, ZCommandData, ACommandData, RectCommandData, RoundRectCommandData, EllipseCommandData, ArcCommandData, ArcToCommandData, MoveToCommandObject, LineToCommandObject, BezierCurveToCommandObject, QuadraticCurveToCommandObject, IPathCommandObject, IPathCommandNodeBase, MoveToCommandNode, LineToCommandNode, BezierCurveToCommandNode, ClosePathCommandNode, IPathCommandNode, IPathNodeBase } from './path/IPathCommand'
41
+ export { CanvasPathCommand, IPathCommandData, MCommandData, HCommandData, VCommandData, LCommandData, CCommandData, SCommandData, QCommandData, TCommandData, ZCommandData, ACommandData, RectCommandData, RoundRectCommandData, EllipseCommandData, ArcCommandData, ArcToCommandData, MoveToCommandObject, LineToCommandObject, BezierCurveToCommandObject, QuadraticCurveToCommandObject, IPathCommandObject, IPathCommandNodeBase, MoveToCommandNode, LineToCommandNode, BezierCurveToCommandNode, ClosePathCommandNode, IPathCommandNode, PathNodeHandleType, PathNodeHandleName, IPathNodeBase } from './path/IPathCommand'
42
42
 
43
43
  export { ILeaferImage, ILeaferImageConfig, ILeaferImageSliceData, ILeaferImageSlice, ILeaferImageLevel, ILeaferImageOnLoaded, ILeaferImageOnError, ILeaferImageCacheCanvas, ILeaferImagePatternPaint } from './image/ILeaferImage'
44
44
  export { IResource } from './file/IResource'
@@ -28,6 +28,7 @@ export interface IPartLayoutConfig {
28
28
  }
29
29
 
30
30
  export interface ILayouterConfig {
31
+ usePartLayout?: boolean
31
32
  partLayout?: IPartLayoutConfig
32
33
  }
33
34
 
@@ -1,3 +1,5 @@
1
+ import { IPointData } from '../math/IMath'
2
+
1
3
  type Command = number
2
4
  type x = number
3
5
  type y = number
@@ -90,10 +92,12 @@ export type IPathCommandObject = MoveToCommandObject | LineToCommandObject | Bez
90
92
  // 可视化路径节点
91
93
 
92
94
  export interface IPathCommandNodeBase {
95
+ name: 'M^' | 'L^' | 'C^' | 'Z^'
93
96
  x: number
94
97
  y: number
95
- a?: { x: number; y: number } // 第一个手柄,连接上一个节点
96
- b?: { x: number; y: number } // 第二个手柄,连接下一个节点
98
+ a?: IPointData // 第一个手柄,连接上一个节点
99
+ b?: IPointData // 第二个手柄,连接下一个节点
100
+ ab?: PathNodeHandleType // 手柄类型
97
101
  }
98
102
 
99
103
  export interface MoveToCommandNode extends IPathCommandNodeBase {
@@ -109,10 +113,24 @@ export interface BezierCurveToCommandNode extends IPathCommandNodeBase {
109
113
 
110
114
  export interface ClosePathCommandNode {
111
115
  name: 'Z^'
116
+ x?: number
117
+ y?: number
118
+ a?: IPointData
119
+ b?: IPointData
120
+ ab?: PathNodeHandleType
112
121
  }
113
122
 
114
123
  export type IPathCommandNode = MoveToCommandNode | LineToCommandNode | BezierCurveToCommandNode | ClosePathCommandNode // M | L | C | Z 路径节点命令(适合可视化编辑)
115
124
 
125
+ export enum PathNodeHandleType { // 手柄类型
126
+ none = 1, // 无手柄
127
+ free = 2, // 每个手柄自由控制
128
+ mirrorAngle = 3, // 仅镜像角度
129
+ mirror = 4, // 镜像角度和长度
130
+ }
131
+
132
+ export type PathNodeHandleName = 'a' | 'b' // 手柄名称
133
+
116
134
  export interface IPathNodeBase {
117
135
  pathNode: IPathCommandNode
118
136
  }
@@ -39,6 +39,7 @@ export interface IPlatform {
39
39
 
40
40
  origin?: {
41
41
  createCanvas(width: number, height: number, format?: 'svg' | 'pdf'): any
42
+ createOffscreenCanvas?(width: number, height: number, format?: 'svg' | 'pdf'): any
42
43
  canvasToDataURL(canvas: any, type?: IExportImageType, quality?: number): string | Promise<string>
43
44
  canvasToBolb(canvas: any, type?: IExportFileType, quality?: number): Promise<any>
44
45
  canvasSaveAs(canvas: any, filename: string, quality?: number): Promise<void>
@@ -74,7 +75,10 @@ export interface IPlatform {
74
75
  getRealURL: IStringFunction // 处理前缀、后缀
75
76
  resize(image: any, width: number, height: number, xGap?: number, yGap?: number, clip?: IBoundsData, smooth?: boolean, opacity?: number, filters?: IObject): any
76
77
  setPatternTransform(pattern: ICanvasPattern, transform?: IMatrixData, paint?: IObject): void
77
- }
78
+ },
79
+
80
+ canCreateImageBitmap?: boolean // 是否能使用 createImageBitmap
81
+ canClipImageBitmap?: boolean // 是否能使用 createImageBitmap 裁剪图片
78
82
  }
79
83
 
80
84
  export type IImageCrossOrigin = 'anonymous' | 'use-credentials' // 图片跨域设置
@@ -4,6 +4,7 @@ import { IBounds, IMatrixWithScaleData } from '../math/IMath'
4
4
  import { IFunction } from '../function/IFunction'
5
5
  import { IControl } from '../control/IControl'
6
6
  import { ILeafList } from '../data/IList'
7
+ import { IObject } from '../data/IData'
7
8
 
8
9
  export interface IRenderOptions {
9
10
  includes?: boolean,
@@ -21,10 +22,13 @@ export interface IRenderOptions {
21
22
  shape?: boolean
22
23
  ignoreFill?: boolean, // 绘制外形时忽略fill
23
24
  ignoreStroke?: boolean // 绘制外形时忽略stroke
25
+
26
+ cellList?: ILeafList
24
27
  }
25
28
 
26
29
  export interface IRendererConfig {
27
30
  usePartRender?: boolean
31
+ useCellRender?: boolean | IObject
28
32
  maxFPS?: number
29
33
  fill?: string
30
34
  }
@@ -1,12 +1,13 @@
1
1
  import { ILeaf } from '../display/ILeaf'
2
2
  import { ILeafList } from '../data/IList'
3
3
  import { IControl } from '../control/IControl'
4
+ import { ILayouterConfig } from '../layouter/ILayouter'
4
5
 
5
6
  export interface IWatchEventData {
6
7
  updatedList: ILeafList
7
8
  }
8
9
 
9
- export interface IWatcherConfig {
10
+ export interface IWatcherConfig extends ILayouterConfig {
10
11
 
11
12
  }
12
13
 
package/types/index.d.ts CHANGED
@@ -296,27 +296,6 @@ interface IControl {
296
296
  destroy(): void;
297
297
  }
298
298
 
299
- interface IWatchEventData {
300
- updatedList: ILeafList;
301
- }
302
- interface IWatcherConfig {
303
- }
304
- interface IWatcher extends IControl {
305
- target: ILeaf;
306
- totalTimes: number;
307
- disabled: boolean;
308
- running: boolean;
309
- changed: boolean;
310
- hasVisible: boolean;
311
- hasAdd: boolean;
312
- hasRemove: boolean;
313
- readonly childrenChanged: boolean;
314
- config: IWatcherConfig;
315
- updatedList: ILeafList;
316
- disable(): void;
317
- update(): void;
318
- }
319
-
320
299
  interface ILayoutChangedData {
321
300
  matrixList: ILeaf[];
322
301
  boundsList: ILeaf[];
@@ -337,6 +316,7 @@ interface IPartLayoutConfig {
337
316
  maxTimes?: number;
338
317
  }
339
318
  interface ILayouterConfig {
319
+ usePartLayout?: boolean;
340
320
  partLayout?: IPartLayoutConfig;
341
321
  }
342
322
  interface ILayouter extends IControl {
@@ -362,6 +342,27 @@ interface ILayouter extends IControl {
362
342
  addBlocks(current: ILayoutBlockData[]): void;
363
343
  }
364
344
 
345
+ interface IWatchEventData {
346
+ updatedList: ILeafList;
347
+ }
348
+ interface IWatcherConfig extends ILayouterConfig {
349
+ }
350
+ interface IWatcher extends IControl {
351
+ target: ILeaf;
352
+ totalTimes: number;
353
+ disabled: boolean;
354
+ running: boolean;
355
+ changed: boolean;
356
+ hasVisible: boolean;
357
+ hasAdd: boolean;
358
+ hasRemove: boolean;
359
+ readonly childrenChanged: boolean;
360
+ config: IWatcherConfig;
361
+ updatedList: ILeafList;
362
+ disable(): void;
363
+ update(): void;
364
+ }
365
+
365
366
  interface IEvent {
366
367
  origin?: IObject;
367
368
  type?: string;
@@ -828,16 +829,12 @@ interface ClosePathCommandObject {
828
829
  }
829
830
  type IPathCommandObject = MoveToCommandObject | LineToCommandObject | BezierCurveToCommandObject | QuadraticCurveToCommandObject | ClosePathCommandObject;
830
831
  interface IPathCommandNodeBase {
832
+ name: 'M^' | 'L^' | 'C^' | 'Z^';
831
833
  x: number;
832
834
  y: number;
833
- a?: {
834
- x: number;
835
- y: number;
836
- };
837
- b?: {
838
- x: number;
839
- y: number;
840
- };
835
+ a?: IPointData;
836
+ b?: IPointData;
837
+ ab?: PathNodeHandleType;
841
838
  }
842
839
  interface MoveToCommandNode extends IPathCommandNodeBase {
843
840
  name: 'M^';
@@ -850,8 +847,20 @@ interface BezierCurveToCommandNode extends IPathCommandNodeBase {
850
847
  }
851
848
  interface ClosePathCommandNode {
852
849
  name: 'Z^';
850
+ x?: number;
851
+ y?: number;
852
+ a?: IPointData;
853
+ b?: IPointData;
854
+ ab?: PathNodeHandleType;
853
855
  }
854
856
  type IPathCommandNode = MoveToCommandNode | LineToCommandNode | BezierCurveToCommandNode | ClosePathCommandNode;
857
+ declare enum PathNodeHandleType {
858
+ none = 1,// 无手柄
859
+ free = 2,// 每个手柄自由控制
860
+ mirrorAngle = 3,// 仅镜像角度
861
+ mirror = 4
862
+ }
863
+ type PathNodeHandleName = 'a' | 'b';
855
864
  interface IPathNodeBase {
856
865
  pathNode: IPathCommandNode;
857
866
  }
@@ -1184,9 +1193,11 @@ interface IRenderOptions {
1184
1193
  shape?: boolean;
1185
1194
  ignoreFill?: boolean;
1186
1195
  ignoreStroke?: boolean;
1196
+ cellList?: ILeafList;
1187
1197
  }
1188
1198
  interface IRendererConfig {
1189
1199
  usePartRender?: boolean;
1200
+ useCellRender?: boolean | IObject;
1190
1201
  maxFPS?: number;
1191
1202
  fill?: string;
1192
1203
  }
@@ -1909,6 +1920,7 @@ interface IPlatform {
1909
1920
  render?(target: ILeaf, canvas: ILeaferCanvas, options: IRenderOptions): void;
1910
1921
  origin?: {
1911
1922
  createCanvas(width: number, height: number, format?: 'svg' | 'pdf'): any;
1923
+ createOffscreenCanvas?(width: number, height: number, format?: 'svg' | 'pdf'): any;
1912
1924
  canvasToDataURL(canvas: any, type?: IExportImageType, quality?: number): string | Promise<string>;
1913
1925
  canvasToBolb(canvas: any, type?: IExportFileType, quality?: number): Promise<any>;
1914
1926
  canvasSaveAs(canvas: any, filename: string, quality?: number): Promise<void>;
@@ -1941,6 +1953,8 @@ interface IPlatform {
1941
1953
  resize(image: any, width: number, height: number, xGap?: number, yGap?: number, clip?: IBoundsData, smooth?: boolean, opacity?: number, filters?: IObject): any;
1942
1954
  setPatternTransform(pattern: ICanvasPattern, transform?: IMatrixData, paint?: IObject): void;
1943
1955
  };
1956
+ canCreateImageBitmap?: boolean;
1957
+ canClipImageBitmap?: boolean;
1944
1958
  }
1945
1959
  type IImageCrossOrigin = 'anonymous' | 'use-credentials';
1946
1960
  interface IMiniappSelect extends IObject {
@@ -2028,6 +2042,7 @@ interface ILeaferImageSliceData {
2028
2042
  }
2029
2043
  interface ILeaferImageSlice {
2030
2044
  view?: any;
2045
+ bounds?: IBoundsData;
2031
2046
  task?: ITaskItem;
2032
2047
  }
2033
2048
  interface ILeaferImageLevel {
@@ -2036,6 +2051,7 @@ interface ILeaferImageLevel {
2036
2051
  view?: any;
2037
2052
  url?: string;
2038
2053
  slice?: ILeaferImageSliceData;
2054
+ use?: number;
2039
2055
  }
2040
2056
  interface ILeaferImage {
2041
2057
  readonly innerId: InnerId;
@@ -2062,6 +2078,7 @@ interface ILeaferImage {
2062
2078
  getFull(filters?: IObject): any;
2063
2079
  getCanvas(width: number, height: number, opacity?: number, filters?: IObject, xGap?: number, yGap?: number, smooth?: boolean): any;
2064
2080
  getPattern(canvas: any, repeat: string | null, transform?: IMatrixData, paint?: IObject): ICanvasPattern;
2081
+ clearLevels(checkUse?: boolean): void;
2065
2082
  destroy(): void;
2066
2083
  }
2067
2084
 
@@ -2419,7 +2436,9 @@ interface IImageManager {
2419
2436
  patternLocked?: boolean;
2420
2437
  get(config: ILeaferImageConfig): ILeaferImage;
2421
2438
  recycle(image: ILeaferImage): void;
2422
- clearRecycled(): void;
2439
+ recyclePaint(paint: any): void;
2440
+ clearRecycled(force?: boolean): void;
2441
+ clearLevels(): void;
2423
2442
  hasAlphaPixel(config: ILeaferImageConfig): boolean;
2424
2443
  isFormat(format: IExportFileType, config: ILeaferImageConfig): boolean;
2425
2444
  destroy(): void;
@@ -2468,4 +2487,5 @@ interface ITransformer {
2468
2487
  destroy(): void;
2469
2488
  }
2470
2489
 
2471
- export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandNode, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, ClosePathCommandNode, EllipseCommandData, HCommandData, IAlign, IAnimateEasing, IAnimateEasingFunction, IAnimateEasingName, IAnimateEnding, IAnimateEvent, IAnimateEventFunction, IAnimateEvents, IAnimateOptions, IAnswer, IAppBase, IAround, IAttrDecorator, IAutoBounds, IAutoBoundsData, IAutoBoxData, IAutoSize, IAxis, IAxisAlign, IAxisReverse, IBaseLineAlign, IBlendMode, IBlob, IBlobFunction, IBoolean, IBooleanMap, IBounds, IBoundsData, IBoundsDataFn, IBoundsEvent, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasSizeAttr, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICubicBezierEasing, ICursorConfig, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, ICustomEasingFunction, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragBoundsType, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventOption, IEventParams, IEventParamsMap, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFilter, IFindCondition, IFindMethod, IFinder, IFlowAlign, IFlowAxisAlign, IFlowBoxType, IFlowType, IFlowWrap, IFourNumber, IFromToData, IFunction, IFunctionMap, IGap, IGestureType, IHitCanvas, IHitCanvasConfig, IHitCanvasManager, IHitType, IImageCrossOrigin, IImageCursor, IImageEvent, IImageManager, IInteraction, IInteractionCanvas, IInteractionConfig, IJSONOptions, IKeepTouchData, IKeyCodes, IKeyEvent, ILayoutAttr, ILayoutBlockData, ILayoutBoundsData, ILayoutChangedData, ILayoutData, ILayoutEvent, ILayouter, ILayouterConfig, ILeaf, ILeafArrayMap, ILeafAttrData, ILeafAttrDescriptor, ILeafAttrDescriptorFn, ILeafBounds, ILeafBoundsModule, ILeafComputedData, ILeafData, ILeafDataOptions, ILeafDataProxy, ILeafDataProxyModule, ILeafEventer, ILeafEventerModule, ILeafHit, ILeafHitModule, ILeafInputData, ILeafLayout, ILeafLevelList, ILeafList, ILeafListItemCallback, ILeafMap, ILeafMatrix, ILeafMatrixModule, ILeafRender, ILeafRenderModule, ILeaferAttrData, ILeaferBase, ILeaferCanvas, ILeaferCanvasConfig, ILeaferCanvasView, ILeaferConfig, ILeaferEvent, ILeaferImage, ILeaferImageCacheCanvas, ILeaferImageConfig, ILeaferImageLevel, ILeaferImageOnError, ILeaferImageOnLoaded, ILeaferImagePatternPaint, ILeaferImageSlice, ILeaferImageSliceData, ILeaferMode, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILocationType, IMaskType, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IMatrixWithOptionHalfData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveConfig, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IOptionSizeData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandNode, IPathCommandNodeBase, IPathCommandObject, IPathCreator, IPathDrawer, IPathNodeBase, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPicker, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IProgressData, IProgressFunction, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IResource, IRotateEvent, IRotationPointData, IScaleData, IScaleFixed, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, IShortcutKeyCodes, IShortcutKeys, IShortcutKeysCheck, ISide, ISingleGestureConfig, ISize, ISizeData, ISkewData, ISkiaCanvas, ISkiaCanvasExportConfig, ISkiaNAPICanvas, IStateStyleType, IStepsEasing, IString, IStringFunction, IStringMap, ISwipeEvent, ITaskItem, ITaskOptions, ITaskProcessor, ITaskProcessorConfig, ITextMetrics, ITimer, ITouchConfig, ITouchEvent, ITransformer, ITransition, ITwoPointBoundsData, IUICreator, IUIEvent, IUnitData, IUnitPointData, IUpdateEvent, IValue, IValueFunction, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWheelEvent, IWindingRule, IWindingRuleData, IZoomConfig, IZoomEvent, IZoomOptions, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandNode, LineToCommandObject, MCommandData, MoveToCommandNode, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
2490
+ export { PathNodeHandleType };
2491
+ export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandNode, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, ClosePathCommandNode, EllipseCommandData, HCommandData, IAlign, IAnimateEasing, IAnimateEasingFunction, IAnimateEasingName, IAnimateEnding, IAnimateEvent, IAnimateEventFunction, IAnimateEvents, IAnimateOptions, IAnswer, IAppBase, IAround, IAttrDecorator, IAutoBounds, IAutoBoundsData, IAutoBoxData, IAutoSize, IAxis, IAxisAlign, IAxisReverse, IBaseLineAlign, IBlendMode, IBlob, IBlobFunction, IBoolean, IBooleanMap, IBounds, IBoundsData, IBoundsDataFn, IBoundsEvent, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasSizeAttr, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICubicBezierEasing, ICursorConfig, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, ICustomEasingFunction, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragBoundsType, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventOption, IEventParams, IEventParamsMap, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFilter, IFindCondition, IFindMethod, IFinder, IFlowAlign, IFlowAxisAlign, IFlowBoxType, IFlowType, IFlowWrap, IFourNumber, IFromToData, IFunction, IFunctionMap, IGap, IGestureType, IHitCanvas, IHitCanvasConfig, IHitCanvasManager, IHitType, IImageCrossOrigin, IImageCursor, IImageEvent, IImageManager, IInteraction, IInteractionCanvas, IInteractionConfig, IJSONOptions, IKeepTouchData, IKeyCodes, IKeyEvent, ILayoutAttr, ILayoutBlockData, ILayoutBoundsData, ILayoutChangedData, ILayoutData, ILayoutEvent, ILayouter, ILayouterConfig, ILeaf, ILeafArrayMap, ILeafAttrData, ILeafAttrDescriptor, ILeafAttrDescriptorFn, ILeafBounds, ILeafBoundsModule, ILeafComputedData, ILeafData, ILeafDataOptions, ILeafDataProxy, ILeafDataProxyModule, ILeafEventer, ILeafEventerModule, ILeafHit, ILeafHitModule, ILeafInputData, ILeafLayout, ILeafLevelList, ILeafList, ILeafListItemCallback, ILeafMap, ILeafMatrix, ILeafMatrixModule, ILeafRender, ILeafRenderModule, ILeaferAttrData, ILeaferBase, ILeaferCanvas, ILeaferCanvasConfig, ILeaferCanvasView, ILeaferConfig, ILeaferEvent, ILeaferImage, ILeaferImageCacheCanvas, ILeaferImageConfig, ILeaferImageLevel, ILeaferImageOnError, ILeaferImageOnLoaded, ILeaferImagePatternPaint, ILeaferImageSlice, ILeaferImageSliceData, ILeaferMode, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILocationType, IMaskType, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IMatrixWithOptionHalfData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveConfig, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IOptionSizeData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandNode, IPathCommandNodeBase, IPathCommandObject, IPathCreator, IPathDrawer, IPathNodeBase, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPicker, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IProgressData, IProgressFunction, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IResource, IRotateEvent, IRotationPointData, IScaleData, IScaleFixed, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, IShortcutKeyCodes, IShortcutKeys, IShortcutKeysCheck, ISide, ISingleGestureConfig, ISize, ISizeData, ISkewData, ISkiaCanvas, ISkiaCanvasExportConfig, ISkiaNAPICanvas, IStateStyleType, IStepsEasing, IString, IStringFunction, IStringMap, ISwipeEvent, ITaskItem, ITaskOptions, ITaskProcessor, ITaskProcessorConfig, ITextMetrics, ITimer, ITouchConfig, ITouchEvent, ITransformer, ITransition, ITwoPointBoundsData, IUICreator, IUIEvent, IUnitData, IUnitPointData, IUpdateEvent, IValue, IValueFunction, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWheelEvent, IWindingRule, IWindingRuleData, IZoomConfig, IZoomEvent, IZoomOptions, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandNode, LineToCommandObject, MCommandData, MoveToCommandNode, MoveToCommandObject, PathNodeHandleName, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };