@leafer/interface 1.5.2 → 1.6.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 +1 -1
- package/src/canvas/ILeaferCanvas.ts +8 -4
- package/src/display/ILeaf.ts +8 -3
- package/src/index.ts +1 -1
- package/src/interaction/IInteraction.ts +4 -0
- package/src/math/IMath.ts +5 -1
- package/src/renderer/IRenderer.ts +2 -3
- package/types/index.d.ts +22 -10
package/package.json
CHANGED
|
@@ -13,6 +13,8 @@ export interface ILeaferCanvasConfig extends IAutoBoundsData {
|
|
|
13
13
|
canvas?: string | IObject
|
|
14
14
|
fill?: string
|
|
15
15
|
pixelRatio?: number
|
|
16
|
+
pixelSnap?: boolean // 是否对齐物理像素,避免图片/居中线条存在浮点坐标导致模糊
|
|
17
|
+
pointSnap?: boolean // 是否对齐逻辑像素,尽力避免元素坐标点出现小数
|
|
16
18
|
smooth?: boolean
|
|
17
19
|
hittable?: boolean
|
|
18
20
|
webgl?: boolean
|
|
@@ -149,13 +151,15 @@ export interface ILeaferCanvas extends ICanvasAttr, ICanvasMethod, IPathDrawer {
|
|
|
149
151
|
|
|
150
152
|
manager: ICanvasManager
|
|
151
153
|
|
|
152
|
-
width: number
|
|
153
|
-
height: number
|
|
154
|
+
readonly width: number
|
|
155
|
+
readonly height: number
|
|
154
156
|
|
|
155
|
-
pixelRatio: number
|
|
157
|
+
readonly pixelRatio: number
|
|
156
158
|
readonly pixelWidth: number
|
|
157
159
|
readonly pixelHeight: number
|
|
158
160
|
|
|
161
|
+
pixelSnap: boolean
|
|
162
|
+
|
|
159
163
|
readonly allowBackgroundColor?: boolean
|
|
160
164
|
backgroundColor?: string
|
|
161
165
|
hittable?: boolean
|
|
@@ -197,7 +201,7 @@ export interface ILeaferCanvas extends ICanvasAttr, ICanvasMethod, IPathDrawer {
|
|
|
197
201
|
getClientBounds(update?: boolean): IBoundsData
|
|
198
202
|
|
|
199
203
|
// other
|
|
200
|
-
isSameSize(
|
|
204
|
+
isSameSize(canvas: IScreenSizeData): boolean
|
|
201
205
|
getSameCanvas(useSameWorldTransform?: boolean, useSameSmooth?: boolean): ILeaferCanvas
|
|
202
206
|
recycle(clearBounds?: IBoundsData): void
|
|
203
207
|
|
package/src/display/ILeaf.ts
CHANGED
|
@@ -117,6 +117,7 @@ export type IBlendMode =
|
|
|
117
117
|
| 'destination-out'
|
|
118
118
|
| 'destination-atop'
|
|
119
119
|
| 'xor'
|
|
120
|
+
| 'copy'
|
|
120
121
|
|
|
121
122
|
export type IEditSize = 'size' | 'font-size' | 'scale'
|
|
122
123
|
export interface IImageCursor {
|
|
@@ -218,6 +219,7 @@ export interface ILeafAttrData {
|
|
|
218
219
|
className?: IString
|
|
219
220
|
|
|
220
221
|
blendMode?: IBlendMode
|
|
222
|
+
|
|
221
223
|
opacity?: INumber
|
|
222
224
|
visible?: IBoolean | 0 // 0 = display: none
|
|
223
225
|
selected?: IBoolean
|
|
@@ -225,6 +227,9 @@ export interface ILeafAttrData {
|
|
|
225
227
|
locked?: IBoolean
|
|
226
228
|
zIndex?: INumber
|
|
227
229
|
|
|
230
|
+
dim?: IBoolean | INumber // 是否弱化内容,可设置具体透明度
|
|
231
|
+
dimskip?: IBoolean // 跳过弱化,突出显示内容,不受dim影响
|
|
232
|
+
|
|
228
233
|
mask?: IBoolean | IMaskType
|
|
229
234
|
eraser?: IBoolean | IEraserType
|
|
230
235
|
filter?: IFilter | IFilter[]
|
|
@@ -309,9 +314,6 @@ export interface ILeafInputData extends ILeafAttrData {
|
|
|
309
314
|
tag?: string
|
|
310
315
|
|
|
311
316
|
children?: ILeafInputData[]
|
|
312
|
-
|
|
313
|
-
// other
|
|
314
|
-
noBounds?: boolean
|
|
315
317
|
}
|
|
316
318
|
|
|
317
319
|
export interface ILeafComputedData {
|
|
@@ -328,6 +330,9 @@ export interface ILeafComputedData {
|
|
|
328
330
|
locked?: boolean
|
|
329
331
|
zIndex?: number
|
|
330
332
|
|
|
333
|
+
dim?: boolean | number // 是否弱化内容,可设置具体透明度
|
|
334
|
+
dimskip?: boolean // 跳过弱化,突出显示内容,不受dim影响
|
|
335
|
+
|
|
331
336
|
mask?: boolean | IMaskType
|
|
332
337
|
eraser?: boolean | IEraserType
|
|
333
338
|
filter?: IFilter[]
|
package/src/index.ts
CHANGED
|
@@ -54,7 +54,7 @@ export { ITransformer } from './interaction/ITransformer'
|
|
|
54
54
|
|
|
55
55
|
export { INumber, IBoolean, IString, IValue, IFourNumber, IPathString, ITimer, IObject, INumberMap, IStringMap, IBooleanMap, IFunctionMap, IPointDataMap, IDataTypeHandle } from './data/IData'
|
|
56
56
|
export { ILeafList, ILeafArrayMap, ILeafMap, ILeafLevelList, ILeafListItemCallback } from './data/IList'
|
|
57
|
-
export { IPoint, IPointData, IFromToData, IUnitPointData, IRotationPointData, IScrollPointData, IClientPointData, IRadiusPointData, ISize, ISizeData, IOptionSizeData, IScreenSizeData, IBounds, IBoundsData, IBoundsDataFn, IOffsetBoundsData, ITwoPointBoundsData, IAutoBounds, IAutoBoxData, IAutoBoundsData, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithScaleData, IMatrixWithOptionScaleData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IScaleRotationData, IScaleData, ISkewData, ILayoutBoundsData, ILayoutData, ILayoutAttr } from './math/IMath'
|
|
57
|
+
export { IPoint, IPointData, IFromToData, IUnitPointData, IRotationPointData, IScrollPointData, IClientPointData, IRadiusPointData, ISize, ISizeData, IOptionSizeData, IScreenSizeData, IBounds, IBoundsData, IBoundsDataFn, IOffsetBoundsData, ITwoPointBoundsData, IAutoBounds, IAutoBoxData, IAutoBoundsData, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithScaleData, IMatrixWithOptionScaleData, IMatrixWithOptionHalfData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IScaleRotationData, IScaleData, ISkewData, ILayoutBoundsData, ILayoutData, ILayoutAttr } from './math/IMath'
|
|
58
58
|
export { IFunction, IStringFunction, INumberFunction, IObjectFunction, IValueFunction, IPointDataFunction, IAttrDecorator } from './function/IFunction'
|
|
59
59
|
|
|
60
60
|
export { ITransition, IAnimateEasing, ICubicBezierEasing, IStepsEasing, IAnimateEasingFunction, IAnimateEasingName, IAnimateEnding, IAnimateEvents, IAnimateEventFunction, ICustomEasingFunction, IAnimateOptions } from './animate/ITransition'
|
|
@@ -130,12 +130,16 @@ export interface IWheelConfig {
|
|
|
130
130
|
moveSpeed?: number
|
|
131
131
|
rotateSpeed?: number // 取值范围 0 ~ 1, 默认0.5
|
|
132
132
|
delta?: IPointData // 以chrome为基准, 鼠标滚动一格的距离
|
|
133
|
+
posDeltaSpeed?: number // 正数delta的滚动速度,可设为负数进行反向delta
|
|
134
|
+
negDeltaSpeed?: number // 负数delta的滚动速度,可设为负数进行反向delta
|
|
133
135
|
getScale?: INumberFunction
|
|
134
136
|
getMove?: IPointDataFunction
|
|
135
137
|
preventDefault?: boolean
|
|
136
138
|
}
|
|
137
139
|
|
|
138
140
|
export interface IPointerConfig {
|
|
141
|
+
snap?: boolean // 交互操作坐标是否对齐屏幕像素,避免出现小数
|
|
142
|
+
|
|
139
143
|
hitRadius?: number
|
|
140
144
|
through?: boolean
|
|
141
145
|
tapMore?: boolean
|
package/src/math/IMath.ts
CHANGED
|
@@ -247,6 +247,10 @@ export interface IMatrixWithOptionScaleData extends IMatrixData {
|
|
|
247
247
|
scaleY?: number
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
-
export interface
|
|
250
|
+
export interface IMatrixWithOptionHalfData extends IMatrixData {
|
|
251
|
+
half?: number // hasHalfPixel, 是否存在半像素(奇数线宽的居中线条),可以半像素为起点绘制,防止模糊
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
export interface IMatrixWithBoundsScaleData extends IMatrixWithOptionHalfData, IBoundsData, IScaleData { }
|
|
251
255
|
|
|
252
256
|
export interface IMatrixWithLayoutData extends IMatrixData, ILayoutBoundsData { }
|
|
@@ -10,6 +10,7 @@ export interface IRenderOptions {
|
|
|
10
10
|
hideBounds?: IBounds,
|
|
11
11
|
matrix?: IMatrixWithScaleData,
|
|
12
12
|
inCamera?: boolean
|
|
13
|
+
dimOpacity?: number
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
export interface IRendererConfig {
|
|
@@ -40,6 +41,7 @@ export interface IRenderer extends IControl {
|
|
|
40
41
|
|
|
41
42
|
requestLayout(): void
|
|
42
43
|
|
|
44
|
+
checkRender(): void
|
|
43
45
|
render(callback?: IFunction): void
|
|
44
46
|
renderAgain(): void
|
|
45
47
|
renderOnce(callback?: IFunction): void
|
|
@@ -47,9 +49,6 @@ export interface IRenderer extends IControl {
|
|
|
47
49
|
clipRender(bounds: IBounds): void
|
|
48
50
|
fullRender(): void
|
|
49
51
|
|
|
50
|
-
renderHitView(options: IRenderOptions): void
|
|
51
|
-
renderBoundsView(options: IRenderOptions): void
|
|
52
|
-
|
|
53
52
|
addBlock(block: IBounds): void
|
|
54
53
|
mergeBlocks(): void
|
|
55
54
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -184,7 +184,10 @@ interface IMatrixWithOptionScaleData extends IMatrixData {
|
|
|
184
184
|
scaleX?: number;
|
|
185
185
|
scaleY?: number;
|
|
186
186
|
}
|
|
187
|
-
interface
|
|
187
|
+
interface IMatrixWithOptionHalfData extends IMatrixData {
|
|
188
|
+
half?: number;
|
|
189
|
+
}
|
|
190
|
+
interface IMatrixWithBoundsScaleData extends IMatrixWithOptionHalfData, IBoundsData, IScaleData {
|
|
188
191
|
}
|
|
189
192
|
interface IMatrixWithLayoutData extends IMatrixData, ILayoutBoundsData {
|
|
190
193
|
}
|
|
@@ -965,6 +968,8 @@ interface ILeaferCanvasConfig extends IAutoBoundsData {
|
|
|
965
968
|
canvas?: string | IObject;
|
|
966
969
|
fill?: string;
|
|
967
970
|
pixelRatio?: number;
|
|
971
|
+
pixelSnap?: boolean;
|
|
972
|
+
pointSnap?: boolean;
|
|
968
973
|
smooth?: boolean;
|
|
969
974
|
hittable?: boolean;
|
|
970
975
|
webgl?: boolean;
|
|
@@ -1062,11 +1067,12 @@ interface ILeaferCanvas extends ICanvasAttr, ICanvasMethod, IPathDrawer {
|
|
|
1062
1067
|
readonly innerId: InnerId;
|
|
1063
1068
|
name: string;
|
|
1064
1069
|
manager: ICanvasManager;
|
|
1065
|
-
width: number;
|
|
1066
|
-
height: number;
|
|
1067
|
-
pixelRatio: number;
|
|
1070
|
+
readonly width: number;
|
|
1071
|
+
readonly height: number;
|
|
1072
|
+
readonly pixelRatio: number;
|
|
1068
1073
|
readonly pixelWidth: number;
|
|
1069
1074
|
readonly pixelHeight: number;
|
|
1075
|
+
pixelSnap: boolean;
|
|
1070
1076
|
readonly allowBackgroundColor?: boolean;
|
|
1071
1077
|
backgroundColor?: string;
|
|
1072
1078
|
hittable?: boolean;
|
|
@@ -1093,7 +1099,7 @@ interface ILeaferCanvas extends ICanvasAttr, ICanvasMethod, IPathDrawer {
|
|
|
1093
1099
|
updateViewSize(): void;
|
|
1094
1100
|
updateClientBounds(): void;
|
|
1095
1101
|
getClientBounds(update?: boolean): IBoundsData;
|
|
1096
|
-
isSameSize(
|
|
1102
|
+
isSameSize(canvas: IScreenSizeData): boolean;
|
|
1097
1103
|
getSameCanvas(useSameWorldTransform?: boolean, useSameSmooth?: boolean): ILeaferCanvas;
|
|
1098
1104
|
recycle(clearBounds?: IBoundsData): void;
|
|
1099
1105
|
updateRender(bounds: IBoundsData): void;
|
|
@@ -1114,6 +1120,7 @@ interface IRenderOptions {
|
|
|
1114
1120
|
hideBounds?: IBounds;
|
|
1115
1121
|
matrix?: IMatrixWithScaleData;
|
|
1116
1122
|
inCamera?: boolean;
|
|
1123
|
+
dimOpacity?: number;
|
|
1117
1124
|
}
|
|
1118
1125
|
interface IRendererConfig {
|
|
1119
1126
|
usePartRender?: boolean;
|
|
@@ -1135,14 +1142,13 @@ interface IRenderer extends IControl {
|
|
|
1135
1142
|
config: IRendererConfig;
|
|
1136
1143
|
update(change?: boolean): void;
|
|
1137
1144
|
requestLayout(): void;
|
|
1145
|
+
checkRender(): void;
|
|
1138
1146
|
render(callback?: IFunction): void;
|
|
1139
1147
|
renderAgain(): void;
|
|
1140
1148
|
renderOnce(callback?: IFunction): void;
|
|
1141
1149
|
partRender(): void;
|
|
1142
1150
|
clipRender(bounds: IBounds): void;
|
|
1143
1151
|
fullRender(): void;
|
|
1144
|
-
renderHitView(options: IRenderOptions): void;
|
|
1145
|
-
renderBoundsView(options: IRenderOptions): void;
|
|
1146
1152
|
addBlock(block: IBounds): void;
|
|
1147
1153
|
mergeBlocks(): void;
|
|
1148
1154
|
}
|
|
@@ -1387,7 +1393,7 @@ type IConstraintType = 'from' | 'center' | 'to' | 'from-to' | 'scale';
|
|
|
1387
1393
|
type IHitType = 'path' | 'pixel' | 'all' | 'none';
|
|
1388
1394
|
type IMaskType = 'path' | 'pixel' | 'grayscale' | 'clipping' | 'clipping-path';
|
|
1389
1395
|
type IEraserType = 'path' | 'pixel';
|
|
1390
|
-
type IBlendMode = 'pass-through' | 'normal' | 'multiply' | 'screen' | 'overlay' | 'darken' | 'lighten' | 'color-dodge' | 'color-burn' | 'hard-light' | 'soft-light' | 'difference' | 'exclusion' | 'hue' | 'saturation' | 'color' | 'luminosity' | 'source-over' | 'source-in' | 'source-out' | 'source-atop' | 'destination-over' | 'destination-in' | 'destination-out' | 'destination-atop' | 'xor';
|
|
1396
|
+
type IBlendMode = 'pass-through' | 'normal' | 'multiply' | 'screen' | 'overlay' | 'darken' | 'lighten' | 'color-dodge' | 'color-burn' | 'hard-light' | 'soft-light' | 'difference' | 'exclusion' | 'hue' | 'saturation' | 'color' | 'luminosity' | 'source-over' | 'source-in' | 'source-out' | 'source-atop' | 'destination-over' | 'destination-in' | 'destination-out' | 'destination-atop' | 'xor' | 'copy';
|
|
1391
1397
|
type IEditSize = 'size' | 'font-size' | 'scale';
|
|
1392
1398
|
interface IImageCursor {
|
|
1393
1399
|
url: string;
|
|
@@ -1418,6 +1424,8 @@ interface ILeafAttrData {
|
|
|
1418
1424
|
disabled?: IBoolean;
|
|
1419
1425
|
locked?: IBoolean;
|
|
1420
1426
|
zIndex?: INumber;
|
|
1427
|
+
dim?: IBoolean | INumber;
|
|
1428
|
+
dimskip?: IBoolean;
|
|
1421
1429
|
mask?: IBoolean | IMaskType;
|
|
1422
1430
|
eraser?: IBoolean | IEraserType;
|
|
1423
1431
|
filter?: IFilter | IFilter[];
|
|
@@ -1478,7 +1486,6 @@ interface ILeafAttrData {
|
|
|
1478
1486
|
interface ILeafInputData extends ILeafAttrData {
|
|
1479
1487
|
tag?: string;
|
|
1480
1488
|
children?: ILeafInputData[];
|
|
1481
|
-
noBounds?: boolean;
|
|
1482
1489
|
}
|
|
1483
1490
|
interface ILeafComputedData {
|
|
1484
1491
|
id?: string;
|
|
@@ -1491,6 +1498,8 @@ interface ILeafComputedData {
|
|
|
1491
1498
|
disabled?: boolean;
|
|
1492
1499
|
locked?: boolean;
|
|
1493
1500
|
zIndex?: number;
|
|
1501
|
+
dim?: boolean | number;
|
|
1502
|
+
dimskip?: boolean;
|
|
1494
1503
|
mask?: boolean | IMaskType;
|
|
1495
1504
|
eraser?: boolean | IEraserType;
|
|
1496
1505
|
filter?: IFilter[];
|
|
@@ -1960,11 +1969,14 @@ interface IWheelConfig {
|
|
|
1960
1969
|
moveSpeed?: number;
|
|
1961
1970
|
rotateSpeed?: number;
|
|
1962
1971
|
delta?: IPointData;
|
|
1972
|
+
posDeltaSpeed?: number;
|
|
1973
|
+
negDeltaSpeed?: number;
|
|
1963
1974
|
getScale?: INumberFunction;
|
|
1964
1975
|
getMove?: IPointDataFunction;
|
|
1965
1976
|
preventDefault?: boolean;
|
|
1966
1977
|
}
|
|
1967
1978
|
interface IPointerConfig {
|
|
1979
|
+
snap?: boolean;
|
|
1968
1980
|
hitRadius?: number;
|
|
1969
1981
|
through?: boolean;
|
|
1970
1982
|
tapMore?: boolean;
|
|
@@ -2286,4 +2298,4 @@ interface ITransformer {
|
|
|
2286
2298
|
destroy(): void;
|
|
2287
2299
|
}
|
|
2288
2300
|
|
|
2289
|
-
export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, 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, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICubicBezierEasing, ICursorConfig, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, ICustomEasingFunction, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventMap, IEventOption, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFilter, IFindCondition, IFindMethod, IFinder, 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, IMoveConfig, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IOptionSizeData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandObject, IPathCreator, IPathDrawer, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPicker, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IResource, IRotateEvent, IRotationPointData, IScaleData, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, ISide, ISize, ISizeData, ISkewData, ISkiaCanvas, ISkiaCanvasExportConfig, ISkiaNAPICanvas, IStateStyleType, IStepsEasing, IString, IStringFunction, IStringMap, ISwipeEvent, ITaskItem, ITaskOptions, ITaskProcessor, ITaskProcessorConfig, ITextMetrics, ITimer, ITouchConfig, ITransformer, ITransition, ITwoPointBoundsData, IUICreator, IUIEvent, IUnitData, IUnitPointData, IUpdateEvent, IValue, IValueFunction, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWheelEvent, IWindingRule, IZoomConfig, IZoomEvent, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
|
|
2301
|
+
export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, 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, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICubicBezierEasing, ICursorConfig, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, ICustomEasingFunction, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventMap, IEventOption, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFilter, IFindCondition, IFindMethod, IFinder, 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, IMatrixWithOptionHalfData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveConfig, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IOptionSizeData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandObject, IPathCreator, IPathDrawer, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPicker, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IResource, IRotateEvent, IRotationPointData, IScaleData, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, ISide, ISize, ISizeData, ISkewData, ISkiaCanvas, ISkiaCanvasExportConfig, ISkiaNAPICanvas, IStateStyleType, IStepsEasing, IString, IStringFunction, IStringMap, ISwipeEvent, ITaskItem, ITaskOptions, ITaskProcessor, ITaskProcessorConfig, ITextMetrics, ITimer, ITouchConfig, ITransformer, ITransition, ITwoPointBoundsData, IUICreator, IUIEvent, IUnitData, IUnitPointData, IUpdateEvent, IValue, IValueFunction, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWheelEvent, IWindingRule, IZoomConfig, IZoomEvent, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
|