@leafer/interface 1.0.4 → 1.0.6
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 +1 -1
- package/src/display/IBranch.ts +2 -2
- package/src/display/ILeaf.ts +7 -4
- package/src/index.ts +2 -2
- package/src/interaction/IInteraction.ts +5 -0
- package/src/path/IPathCommand.ts +37 -0
- package/src/path/IPathDrawer.ts +4 -4
- package/src/selector/ISelector.ts +1 -0
- package/types/index.d.ts +46 -9
package/package.json
CHANGED
package/src/display/IBranch.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ILeaf } from './ILeaf'
|
|
1
|
+
import { ILeaf, ILeafInputData } from './ILeaf'
|
|
2
2
|
import { ILeaferCanvas } from '../canvas/ILeaferCanvas'
|
|
3
3
|
import { IRenderOptions } from '../renderer/IRenderer'
|
|
4
4
|
|
|
5
5
|
export interface IBranch extends ILeaf {
|
|
6
6
|
children: ILeaf[]
|
|
7
7
|
__renderBranch?(canvas: ILeaferCanvas, options: IRenderOptions): void
|
|
8
|
-
addMany(...children: ILeaf[]): void
|
|
8
|
+
addMany(...children: ILeaf[] | ILeafInputData[]): void
|
|
9
9
|
removeAll(destroy?: boolean): void
|
|
10
10
|
clear(): void
|
|
11
11
|
}
|
package/src/display/ILeaf.ts
CHANGED
|
@@ -16,7 +16,7 @@ import { ILeafHit } from './module/ILeafHit'
|
|
|
16
16
|
import { ILeafRender } from './module/ILeafRender'
|
|
17
17
|
import { ILeafData } from '../data/ILeafData'
|
|
18
18
|
import { IFindMethod } from '../selector/ISelector'
|
|
19
|
-
import { IPathCommandData } from '../path/IPathCommand'
|
|
19
|
+
import { IPathCommandObject, IPathCommandData } from '../path/IPathCommand'
|
|
20
20
|
import { IWindingRule, IPath2D } from '../canvas/ICanvas'
|
|
21
21
|
import { IJSONOptions } from '../file/IExport'
|
|
22
22
|
import { IMotionPathData } from '../path/IPathData'
|
|
@@ -246,7 +246,7 @@ export interface ILeafAttrData {
|
|
|
246
246
|
lazy?: IBoolean
|
|
247
247
|
pixelRatio?: INumber
|
|
248
248
|
|
|
249
|
-
path?: IPathCommandData | IPathString
|
|
249
|
+
path?: IPathCommandData | IPathCommandObject[] | IPathString
|
|
250
250
|
windingRule?: IWindingRule
|
|
251
251
|
closed?: IBoolean
|
|
252
252
|
|
|
@@ -429,6 +429,9 @@ export interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix,
|
|
|
429
429
|
parent?: ILeaf
|
|
430
430
|
zoomLayer?: ILeaf
|
|
431
431
|
|
|
432
|
+
readonly leaferIsCreated: boolean
|
|
433
|
+
readonly leaferIsReady: boolean
|
|
434
|
+
|
|
432
435
|
readonly isApp?: boolean
|
|
433
436
|
readonly isLeafer?: boolean
|
|
434
437
|
readonly isBranch?: boolean
|
|
@@ -662,8 +665,8 @@ export interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix,
|
|
|
662
665
|
children?: ILeaf[]
|
|
663
666
|
|
|
664
667
|
__updateSortChildren(): void
|
|
665
|
-
add(child: ILeaf, index?: number): void
|
|
666
|
-
remove(child?: ILeaf, destroy?: boolean): void
|
|
668
|
+
add(child: ILeaf | ILeaf[] | ILeafInputData | ILeafInputData[], index?: number): void
|
|
669
|
+
remove(child?: ILeaf | number | string | IFindMethod, destroy?: boolean): void
|
|
667
670
|
dropTo(parent: ILeaf, index?: number, resize?: boolean): void
|
|
668
671
|
}
|
|
669
672
|
|
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 } 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 } from './path/IPathCommand'
|
|
42
42
|
|
|
43
43
|
export { ILeaferImage, ILeaferImageConfig, ILeaferImageOnLoaded, ILeaferImageOnError, ILeaferImageCacheCanvas, ILeaferImagePatternPaint } from './image/ILeaferImage'
|
|
44
44
|
export { IExportFileType, IExportImageType } from './file/IFileType'
|
|
@@ -48,7 +48,7 @@ export { InnerId, IEventer, IEventMap, IEventListener, IEventOption, IEventListe
|
|
|
48
48
|
export { IEventTarget, IEvent, ILeaferEvent, IPropertyEvent, ILayoutEvent, IRenderEvent, IAnimateEvent, IChildEvent, IResizeEvent, IResizeEventListener, IUpdateEvent, IWatchEvent, IMultiTouchData, IKeepTouchData } from './event/IEvent'
|
|
49
49
|
export { IUIEvent, IPointerEvent, PointerType, IDragEvent, IDropEvent, ISwipeEvent, IMoveEvent, IZoomEvent, IRotateEvent, IKeyEvent, IImageEvent } from './event/IUIEvent'
|
|
50
50
|
export { ICursorTypeMap, ICursorRotate, ICursorRotateMap } from './interaction/ICursor'
|
|
51
|
-
export { IInteraction, IInteractionCanvas, IInteractionConfig, IWheelConfig, ITouchConfig, IPointerConfig } from './interaction/IInteraction'
|
|
51
|
+
export { IInteraction, IInteractionCanvas, IInteractionConfig, IWheelConfig, ITouchConfig, IMultiTouchConfig, IPointerConfig } from './interaction/IInteraction'
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
export { INumber, IBoolean, IString, IValue, IFourNumber, IPathString, ITimer, IObject, INumberMap, IStringMap, IBooleanMap, IFunctionMap, IPointDataMap, IDataTypeHandle } from './data/IData'
|
|
@@ -94,6 +94,7 @@ export interface IInteractionConfig {
|
|
|
94
94
|
wheel?: IWheelConfig
|
|
95
95
|
pointer?: IPointerConfig
|
|
96
96
|
touch?: ITouchConfig
|
|
97
|
+
multiTouch?: IMultiTouchConfig
|
|
97
98
|
zoom?: IZoomConfig
|
|
98
99
|
move?: IMoveConfig
|
|
99
100
|
eventer?: IObject
|
|
@@ -156,6 +157,10 @@ export interface ITouchConfig {
|
|
|
156
157
|
preventDefault?: boolean | 'auto'
|
|
157
158
|
}
|
|
158
159
|
|
|
160
|
+
export interface IMultiTouchConfig {
|
|
161
|
+
disabled?: boolean
|
|
162
|
+
}
|
|
163
|
+
|
|
159
164
|
|
|
160
165
|
export interface ICursorConfig {
|
|
161
166
|
stop?: boolean
|
package/src/path/IPathCommand.ts
CHANGED
|
@@ -48,3 +48,40 @@ export type ArcToCommandData = [Command, x1, y1, x2, y2, radius]
|
|
|
48
48
|
export type CanvasPathCommand = 1 | 2 | 5 | 7 | 11 // M | L | C | Q | Z canvas可以绘制的命令
|
|
49
49
|
|
|
50
50
|
export type IPathCommandData = number[] // ...(MCommandData | LCommandData | CCommandData | QCommandData | ZCommandData)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
// 路径命令对象
|
|
54
|
+
export interface MoveToCommandObject {
|
|
55
|
+
name: 'M'
|
|
56
|
+
x: number
|
|
57
|
+
y: number
|
|
58
|
+
}
|
|
59
|
+
export interface LineToCommandObject {
|
|
60
|
+
name: 'L'
|
|
61
|
+
x: number
|
|
62
|
+
y: number
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface BezierCurveToCommandObject {
|
|
66
|
+
name: 'C'
|
|
67
|
+
x1: number
|
|
68
|
+
y1: number
|
|
69
|
+
x2: number
|
|
70
|
+
y2: number
|
|
71
|
+
x: number
|
|
72
|
+
y: number
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface QuadraticCurveToCommandObject {
|
|
76
|
+
name: 'Q'
|
|
77
|
+
x1: number
|
|
78
|
+
y1: number
|
|
79
|
+
x: number
|
|
80
|
+
y: number
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface ClosePathCommandObject {
|
|
84
|
+
name: 'Z'
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export type IPathCommandObject = MoveToCommandObject | LineToCommandObject | BezierCurveToCommandObject | QuadraticCurveToCommandObject | ClosePathCommandObject // M | L | C | Q | Z canvas可以绘制的命令
|
package/src/path/IPathDrawer.ts
CHANGED
|
@@ -4,8 +4,8 @@ export interface IPathDrawer {
|
|
|
4
4
|
|
|
5
5
|
moveTo(x: number, y: number): void
|
|
6
6
|
lineTo(x: number, y: number): void
|
|
7
|
-
bezierCurveTo(
|
|
8
|
-
quadraticCurveTo(
|
|
7
|
+
bezierCurveTo(x1: number, y1: number, x2: number, y2: number, x: number, y: number): void
|
|
8
|
+
quadraticCurveTo(x1: number, y1: number, x: number, y: number): void
|
|
9
9
|
closePath(): void
|
|
10
10
|
|
|
11
11
|
arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise?: boolean): void
|
|
@@ -24,8 +24,8 @@ export interface IPathCreator extends IPathDrawer {
|
|
|
24
24
|
|
|
25
25
|
moveTo(x: number, y: number): IPathCreator
|
|
26
26
|
lineTo(x: number, y: number): IPathCreator
|
|
27
|
-
bezierCurveTo(
|
|
28
|
-
quadraticCurveTo(
|
|
27
|
+
bezierCurveTo(x1: number, y1: number, x2: number, y2: number, x: number, y: number): IPathCreator
|
|
28
|
+
quadraticCurveTo(x1: number, y1: number, x: number, y: number): IPathCreator
|
|
29
29
|
closePath(): IPathCreator
|
|
30
30
|
|
|
31
31
|
arc(x: number, y: number, radius: number, startAngle?: number, endAngle?: number, anticlockwise?: boolean): IPathCreator
|
package/types/index.d.ts
CHANGED
|
@@ -770,13 +770,43 @@ type ArcCommandData = [Command, x, y, radius, startAngle, endAngle, anticlockwis
|
|
|
770
770
|
type ArcToCommandData = [Command, x1, y1, x2, y2, radius];
|
|
771
771
|
type CanvasPathCommand = 1 | 2 | 5 | 7 | 11;
|
|
772
772
|
type IPathCommandData = number[];
|
|
773
|
+
interface MoveToCommandObject {
|
|
774
|
+
name: 'M';
|
|
775
|
+
x: number;
|
|
776
|
+
y: number;
|
|
777
|
+
}
|
|
778
|
+
interface LineToCommandObject {
|
|
779
|
+
name: 'L';
|
|
780
|
+
x: number;
|
|
781
|
+
y: number;
|
|
782
|
+
}
|
|
783
|
+
interface BezierCurveToCommandObject {
|
|
784
|
+
name: 'C';
|
|
785
|
+
x1: number;
|
|
786
|
+
y1: number;
|
|
787
|
+
x2: number;
|
|
788
|
+
y2: number;
|
|
789
|
+
x: number;
|
|
790
|
+
y: number;
|
|
791
|
+
}
|
|
792
|
+
interface QuadraticCurveToCommandObject {
|
|
793
|
+
name: 'Q';
|
|
794
|
+
x1: number;
|
|
795
|
+
y1: number;
|
|
796
|
+
x: number;
|
|
797
|
+
y: number;
|
|
798
|
+
}
|
|
799
|
+
interface ClosePathCommandObject {
|
|
800
|
+
name: 'Z';
|
|
801
|
+
}
|
|
802
|
+
type IPathCommandObject = MoveToCommandObject | LineToCommandObject | BezierCurveToCommandObject | QuadraticCurveToCommandObject | ClosePathCommandObject;
|
|
773
803
|
|
|
774
804
|
interface IPathDrawer {
|
|
775
805
|
beginPath?(): void;
|
|
776
806
|
moveTo(x: number, y: number): void;
|
|
777
807
|
lineTo(x: number, y: number): void;
|
|
778
|
-
bezierCurveTo(
|
|
779
|
-
quadraticCurveTo(
|
|
808
|
+
bezierCurveTo(x1: number, y1: number, x2: number, y2: number, x: number, y: number): void;
|
|
809
|
+
quadraticCurveTo(x1: number, y1: number, x: number, y: number): void;
|
|
780
810
|
closePath(): void;
|
|
781
811
|
arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise?: boolean): void;
|
|
782
812
|
arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;
|
|
@@ -790,8 +820,8 @@ interface IPathCreator extends IPathDrawer {
|
|
|
790
820
|
beginPath(): IPathCreator;
|
|
791
821
|
moveTo(x: number, y: number): IPathCreator;
|
|
792
822
|
lineTo(x: number, y: number): IPathCreator;
|
|
793
|
-
bezierCurveTo(
|
|
794
|
-
quadraticCurveTo(
|
|
823
|
+
bezierCurveTo(x1: number, y1: number, x2: number, y2: number, x: number, y: number): IPathCreator;
|
|
824
|
+
quadraticCurveTo(x1: number, y1: number, x: number, y: number): IPathCreator;
|
|
795
825
|
closePath(): IPathCreator;
|
|
796
826
|
arc(x: number, y: number, radius: number, startAngle?: number, endAngle?: number, anticlockwise?: boolean): IPathCreator;
|
|
797
827
|
arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): IPathCreator;
|
|
@@ -1189,7 +1219,7 @@ interface ILeafData extends IDataProcessor, ILeafComputedData {
|
|
|
1189
1219
|
interface IBranch extends ILeaf {
|
|
1190
1220
|
children: ILeaf[];
|
|
1191
1221
|
__renderBranch?(canvas: ILeaferCanvas, options: IRenderOptions): void;
|
|
1192
|
-
addMany(...children: ILeaf[]): void;
|
|
1222
|
+
addMany(...children: ILeaf[] | ILeafInputData[]): void;
|
|
1193
1223
|
removeAll(destroy?: boolean): void;
|
|
1194
1224
|
clear(): void;
|
|
1195
1225
|
}
|
|
@@ -1226,6 +1256,7 @@ interface IFindMethod {
|
|
|
1226
1256
|
}
|
|
1227
1257
|
interface ISelectorProxy {
|
|
1228
1258
|
list: ILeaf[];
|
|
1259
|
+
dragHoverExclude: ILeaf[];
|
|
1229
1260
|
}
|
|
1230
1261
|
interface ISelector {
|
|
1231
1262
|
target: ILeaf;
|
|
@@ -1336,7 +1367,7 @@ interface ILeafAttrData {
|
|
|
1336
1367
|
around?: IAlign | IUnitPointData;
|
|
1337
1368
|
lazy?: IBoolean;
|
|
1338
1369
|
pixelRatio?: INumber;
|
|
1339
|
-
path?: IPathCommandData | IPathString;
|
|
1370
|
+
path?: IPathCommandData | IPathCommandObject[] | IPathString;
|
|
1340
1371
|
windingRule?: IWindingRule;
|
|
1341
1372
|
closed?: IBoolean;
|
|
1342
1373
|
flow?: IFlowType;
|
|
@@ -1467,6 +1498,8 @@ interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix, ILeafDa
|
|
|
1467
1498
|
leafer?: ILeaferBase;
|
|
1468
1499
|
parent?: ILeaf;
|
|
1469
1500
|
zoomLayer?: ILeaf;
|
|
1501
|
+
readonly leaferIsCreated: boolean;
|
|
1502
|
+
readonly leaferIsReady: boolean;
|
|
1470
1503
|
readonly isApp?: boolean;
|
|
1471
1504
|
readonly isLeafer?: boolean;
|
|
1472
1505
|
readonly isBranch?: boolean;
|
|
@@ -1628,8 +1661,8 @@ interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix, ILeafDa
|
|
|
1628
1661
|
__emitLifeEvent(type: string): void;
|
|
1629
1662
|
children?: ILeaf[];
|
|
1630
1663
|
__updateSortChildren(): void;
|
|
1631
|
-
add(child: ILeaf, index?: number): void;
|
|
1632
|
-
remove(child?: ILeaf, destroy?: boolean): void;
|
|
1664
|
+
add(child: ILeaf | ILeaf[] | ILeafInputData | ILeafInputData[], index?: number): void;
|
|
1665
|
+
remove(child?: ILeaf | number | string | IFindMethod, destroy?: boolean): void;
|
|
1633
1666
|
dropTo(parent: ILeaf, index?: number, resize?: boolean): void;
|
|
1634
1667
|
}
|
|
1635
1668
|
type ILeafAttrDescriptor = IObject & ThisType<ILeaf>;
|
|
@@ -1809,6 +1842,7 @@ interface IInteractionConfig {
|
|
|
1809
1842
|
wheel?: IWheelConfig;
|
|
1810
1843
|
pointer?: IPointerConfig;
|
|
1811
1844
|
touch?: ITouchConfig;
|
|
1845
|
+
multiTouch?: IMultiTouchConfig;
|
|
1812
1846
|
zoom?: IZoomConfig;
|
|
1813
1847
|
move?: IMoveConfig;
|
|
1814
1848
|
eventer?: IObject;
|
|
@@ -1862,6 +1896,9 @@ interface IPointerConfig {
|
|
|
1862
1896
|
interface ITouchConfig {
|
|
1863
1897
|
preventDefault?: boolean | 'auto';
|
|
1864
1898
|
}
|
|
1899
|
+
interface IMultiTouchConfig {
|
|
1900
|
+
disabled?: boolean;
|
|
1901
|
+
}
|
|
1865
1902
|
|
|
1866
1903
|
interface IHitCanvasManager extends ICanvasManager {
|
|
1867
1904
|
maxTotal: number;
|
|
@@ -2132,4 +2169,4 @@ interface ICursorRotateMap {
|
|
|
2132
2169
|
[name: string]: ICursorRotate;
|
|
2133
2170
|
}
|
|
2134
2171
|
|
|
2135
|
-
export type { ACommandData, ArcCommandData, ArcToCommandData, CCommandData, CanvasPathCommand, EllipseCommandData, HCommandData, IAlign, IAnimateEvent, IAnswer, IAppBase, IAround, IAttrDecorator, IAutoBounds, IAutoBoundsData, IAutoBoxData, IAutoSize, IAxis, IAxisAlign, IAxisReverse, IBaseLineAlign, IBlendMode, IBlob, IBlobFunction, IBoolean, IBooleanMap, IBounds, IBoundsData, IBoundsDataFn, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventMap, IEventOption, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFindCondition, IFindMethod, IFlowAlign, IFlowAxisAlign, IFlowBoxType, IFlowType, IFlowWrap, IFourNumber, IFromToData, IFunction, IFunctionMap, IGap, IHitCanvas, IHitCanvasConfig, IHitCanvasManager, IHitType, IImageCursor, IImageEvent, IImageManager, IInteraction, IInteractionCanvas, IInteractionConfig, IJSONOptions, IKeepTouchData, 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, ILeaferImageOnError, ILeaferImageOnLoaded, ILeaferImagePatternPaint, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILocationType, IMaskType, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveEvent, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCreator, IPathDrawer, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IRotateEvent, IRotationPointData, IScaleData, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, ISide, ISize, ISizeData, ISkewData, ISkiaCanvas, ISkiaCanvasExportConfig, ISkiaNAPICanvas, IStateStyleType, IString, IStringFunction, IStringMap, ISwipeEvent, ITaskItem, ITaskOptions, ITaskProcessor, ITaskProcessorConfig, ITextMetrics, ITimer, ITouchConfig, ITwoPointBoundsData, IUICreator, IUIEvent, IUnitData, IUnitPointData, IUpdateEvent, IValue, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWindingRule, IZoomEvent, IZoomType, IZoomView, InnerId, LCommandData, MCommandData, PointerType, QCommandData, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
|
|
2172
|
+
export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, EllipseCommandData, HCommandData, IAlign, IAnimateEvent, IAnswer, IAppBase, IAround, IAttrDecorator, IAutoBounds, IAutoBoundsData, IAutoBoxData, IAutoSize, IAxis, IAxisAlign, IAxisReverse, IBaseLineAlign, IBlendMode, IBlob, IBlobFunction, IBoolean, IBooleanMap, IBounds, IBoundsData, IBoundsDataFn, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventMap, IEventOption, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFindCondition, IFindMethod, IFlowAlign, IFlowAxisAlign, IFlowBoxType, IFlowType, IFlowWrap, IFourNumber, IFromToData, IFunction, IFunctionMap, IGap, IHitCanvas, IHitCanvasConfig, IHitCanvasManager, IHitType, IImageCursor, IImageEvent, IImageManager, IInteraction, IInteractionCanvas, IInteractionConfig, IJSONOptions, IKeepTouchData, 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, ILeaferImageOnError, ILeaferImageOnLoaded, ILeaferImagePatternPaint, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILocationType, IMaskType, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandObject, IPathCreator, IPathDrawer, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IRotateEvent, IRotationPointData, IScaleData, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, ISide, ISize, ISizeData, ISkewData, ISkiaCanvas, ISkiaCanvasExportConfig, ISkiaNAPICanvas, IStateStyleType, IString, IStringFunction, IStringMap, ISwipeEvent, ITaskItem, ITaskOptions, ITaskProcessor, ITaskProcessorConfig, ITextMetrics, ITimer, ITouchConfig, ITwoPointBoundsData, IUICreator, IUIEvent, IUnitData, IUnitPointData, IUpdateEvent, IValue, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWindingRule, IZoomEvent, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
|