@leafer/interface 1.12.1 → 1.12.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 +1 -1
- package/src/animate/ITransition.ts +1 -0
- package/src/app/ILeafer.ts +4 -1
- package/src/display/ILeaf.ts +3 -1
- package/src/event/IUIEvent.ts +2 -0
- package/src/image/ILeaferImage.ts +28 -3
- package/src/index.ts +1 -1
- package/src/interaction/IInteraction.ts +1 -0
- package/types/index.d.ts +33 -5
package/package.json
CHANGED
package/src/app/ILeafer.ts
CHANGED
|
@@ -44,7 +44,7 @@ export interface ILeaferAttrData {
|
|
|
44
44
|
|
|
45
45
|
transforming: boolean
|
|
46
46
|
|
|
47
|
-
view: unknown
|
|
47
|
+
readonly view: unknown
|
|
48
48
|
|
|
49
49
|
canvas: ILeaferCanvas
|
|
50
50
|
renderer: IRenderer
|
|
@@ -68,6 +68,9 @@ export interface ILeaferAttrData {
|
|
|
68
68
|
readonly clientBounds: IBoundsData
|
|
69
69
|
leafs: number
|
|
70
70
|
|
|
71
|
+
isPullDown?: boolean
|
|
72
|
+
isReachDottom?: boolean
|
|
73
|
+
|
|
71
74
|
__eventIds: IEventListenerId[]
|
|
72
75
|
__nextRenderWait: IFunction[]
|
|
73
76
|
|
package/src/display/ILeaf.ts
CHANGED
|
@@ -74,7 +74,7 @@ export interface IConstraint {
|
|
|
74
74
|
|
|
75
75
|
export type IConstraintType = 'from' | 'center' | 'to' | 'from-to' | 'scale'
|
|
76
76
|
|
|
77
|
-
export type IScaleFixed = boolean | 'zoom-in' // 缩放时是否固定原有比例,zoom-in表示仅在放大时固定比例(缩小时仍跟随缩小)
|
|
77
|
+
export type IScaleFixed = boolean | 'zoom-in' | number // 缩放时是否固定原有比例,zoom-in表示仅在放大时固定比例(缩小时仍跟随缩小)
|
|
78
78
|
|
|
79
79
|
export type IHitType =
|
|
80
80
|
| 'path'
|
|
@@ -248,6 +248,7 @@ export interface ILeafAttrData {
|
|
|
248
248
|
height?: INumber
|
|
249
249
|
scaleX?: INumber
|
|
250
250
|
scaleY?: INumber
|
|
251
|
+
scaleFixed?: IScaleFixed
|
|
251
252
|
rotation?: INumber
|
|
252
253
|
skewX?: INumber
|
|
253
254
|
skewY?: INumber
|
|
@@ -355,6 +356,7 @@ export interface ILeafComputedData {
|
|
|
355
356
|
height?: number
|
|
356
357
|
scaleX?: number
|
|
357
358
|
scaleY?: number
|
|
359
|
+
scaleFixed?: IScaleFixed
|
|
358
360
|
rotation?: number
|
|
359
361
|
skewX?: number
|
|
360
362
|
skewY?: number
|
package/src/event/IUIEvent.ts
CHANGED
|
@@ -23,6 +23,8 @@ export interface IUIEvent extends IEvent {
|
|
|
23
23
|
path?: ILeafList
|
|
24
24
|
throughPath?: ILeafList // 穿透path,不受层级影响,从上到下只要碰撞到区域就算,一般点击的时候
|
|
25
25
|
|
|
26
|
+
time?: number
|
|
27
|
+
|
|
26
28
|
isHoldKeys?(shortcutKeys?: IShortcutKeysCheck | IShortcutKeys): boolean
|
|
27
29
|
|
|
28
30
|
getBoxPoint?(relative?: ILeaf): IPointData
|
|
@@ -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 { IBoundsData, IMatrixData, IPointData } from '../math/IMath'
|
|
5
|
+
import { IBoundsData, IMatrixData, IPointData, ISizeData } from '../math/IMath'
|
|
6
6
|
import { ILeaferCanvas } from '../canvas/ILeaferCanvas'
|
|
7
7
|
import { IProgressData } from '../event/IProgress'
|
|
8
8
|
import { IImageCrossOrigin } from '../platform/IPlatform'
|
|
@@ -11,13 +11,28 @@ import { IRangeSize } from '../display/ILeaf'
|
|
|
11
11
|
|
|
12
12
|
export interface ILeaferImageConfig {
|
|
13
13
|
url: string
|
|
14
|
-
|
|
14
|
+
lod?: IImageLOD
|
|
15
15
|
format?: IExportFileType
|
|
16
16
|
crossOrigin?: IImageCrossOrigin
|
|
17
17
|
showProgress?: boolean | string // 是否显示进度
|
|
18
18
|
view?: IObject | ILeaferImage | ILeaferCanvas
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
export interface IImageLOD {
|
|
22
|
+
url: string // 'thumb-{level}-{width}-{height}.jpg'
|
|
23
|
+
width: number
|
|
24
|
+
height: number
|
|
25
|
+
thumb?: number
|
|
26
|
+
min?: number
|
|
27
|
+
tile?: IImageTileLOD
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface IImageTileLOD {
|
|
31
|
+
url: string // 'tile-{level}-{index}-{x}-{y}-{width}-{height}.jpg'
|
|
32
|
+
size: number
|
|
33
|
+
min?: number
|
|
34
|
+
}
|
|
35
|
+
|
|
21
36
|
export interface ILeaferImageOnLoaded {
|
|
22
37
|
(image?: ILeaferImage): any
|
|
23
38
|
}
|
|
@@ -60,6 +75,7 @@ export interface ILeaferImageLevel {
|
|
|
60
75
|
export interface ILeaferImage {
|
|
61
76
|
readonly innerId: InnerId
|
|
62
77
|
readonly url: string
|
|
78
|
+
readonly crossOrigin: IImageCrossOrigin
|
|
63
79
|
|
|
64
80
|
view: any
|
|
65
81
|
width: number
|
|
@@ -76,22 +92,31 @@ export interface ILeaferImage {
|
|
|
76
92
|
isPlacehold?: boolean // 是否显示占位符,一般在加载100ms后自动判断
|
|
77
93
|
|
|
78
94
|
largeThumb?: ILeaferImageLevel
|
|
95
|
+
thumb?: ILeaferImageLevel
|
|
79
96
|
levels?: ILeaferImageLevel[]
|
|
80
97
|
levelsRange?: IRangeSize
|
|
81
98
|
minLevel?: number
|
|
99
|
+
loadId?: any
|
|
82
100
|
|
|
83
101
|
progress?: IProgressData // 加载进度
|
|
84
102
|
|
|
85
103
|
use: number // 引用次数
|
|
86
104
|
config: ILeaferImageConfig
|
|
87
105
|
|
|
88
|
-
load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError): number
|
|
106
|
+
load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError, thumbSize?: ISizeData): number
|
|
89
107
|
unload(index: number, stopEvent?: boolean): void
|
|
90
108
|
getFull(filters?: IObject): any
|
|
91
109
|
getCanvas(width: number, height: number, opacity?: number, filters?: IObject, xGap?: number, yGap?: number, smooth?: boolean): any
|
|
92
110
|
getPattern(canvas: any, repeat: string | null, transform?: IMatrixData, paint?: IObject): ICanvasPattern
|
|
93
111
|
|
|
112
|
+
getLoadUrl(thumbSize?: ISizeData): string
|
|
113
|
+
setThumbView(view: number): void
|
|
114
|
+
getThumbSize(): ISizeData
|
|
115
|
+
|
|
116
|
+
getMinLevel(): number
|
|
117
|
+
getLevelData(_level: number): ILeaferImageLevel
|
|
94
118
|
clearLevels(checkUse?: boolean): void
|
|
119
|
+
|
|
95
120
|
destroy(): void
|
|
96
121
|
}
|
|
97
122
|
|
package/src/index.ts
CHANGED
|
@@ -40,7 +40,7 @@ export { IMotionPathData } from './path/IPathData'
|
|
|
40
40
|
export { IWindingRule, ICanvasContext2D, ICanvasContext2DSettings, ITextMetrics, IPath2D, ICanvasPattern } from './canvas/ICanvas'
|
|
41
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
|
-
export { ILeaferImage, ILeaferImageConfig, ILeaferImageSliceData, ILeaferImageSlice, ILeaferImageLevel, ILeaferImageOnLoaded, ILeaferImageOnError, ILeaferImageCacheCanvas, ILeaferImagePatternPaint } from './image/ILeaferImage'
|
|
43
|
+
export { ILeaferImage, ILeaferImageConfig, IImageLOD, IImageTileLOD, ILeaferImageSliceData, ILeaferImageSlice, ILeaferImageLevel, ILeaferImageOnLoaded, ILeaferImageOnError, ILeaferImageCacheCanvas, ILeaferImagePatternPaint } from './image/ILeaferImage'
|
|
44
44
|
export { IResource } from './file/IResource'
|
|
45
45
|
export { IExportFileType, IExportImageType } from './file/IFileType'
|
|
46
46
|
export { IExportOptions, IJSONOptions, IExportResult, IExportResultFunction, IExportOnCanvasFunction } from './file/IExport'
|
|
@@ -77,6 +77,7 @@ export interface IInteraction extends IControl {
|
|
|
77
77
|
isFocus(leaf: ILeaf): boolean
|
|
78
78
|
|
|
79
79
|
cancelHover(): void
|
|
80
|
+
stopDragAnimate(): void
|
|
80
81
|
|
|
81
82
|
updateDownData(data?: IPointerEvent, options?: IPickOptions, merge?: boolean): void
|
|
82
83
|
updateHoverData(data: IPointerEvent): void
|
package/types/index.d.ts
CHANGED
|
@@ -1395,6 +1395,7 @@ interface IAnimateOptions {
|
|
|
1395
1395
|
loopDelay?: number;
|
|
1396
1396
|
speed?: number;
|
|
1397
1397
|
join?: boolean;
|
|
1398
|
+
jump?: boolean;
|
|
1398
1399
|
autoplay?: boolean;
|
|
1399
1400
|
attrs?: string[];
|
|
1400
1401
|
event?: IAnimateEvents;
|
|
@@ -1469,7 +1470,7 @@ interface IConstraint {
|
|
|
1469
1470
|
y: IConstraintType;
|
|
1470
1471
|
}
|
|
1471
1472
|
type IConstraintType = 'from' | 'center' | 'to' | 'from-to' | 'scale';
|
|
1472
|
-
type IScaleFixed = boolean | 'zoom-in';
|
|
1473
|
+
type IScaleFixed = boolean | 'zoom-in' | number;
|
|
1473
1474
|
type IHitType = 'path' | 'pixel' | 'all' | 'none';
|
|
1474
1475
|
type IMaskType = 'path' | 'pixel' | 'grayscale' | 'clipping' | 'clipping-path';
|
|
1475
1476
|
type IEraserType = 'path' | 'pixel';
|
|
@@ -1517,6 +1518,7 @@ interface ILeafAttrData {
|
|
|
1517
1518
|
height?: INumber;
|
|
1518
1519
|
scaleX?: INumber;
|
|
1519
1520
|
scaleY?: INumber;
|
|
1521
|
+
scaleFixed?: IScaleFixed;
|
|
1520
1522
|
rotation?: INumber;
|
|
1521
1523
|
skewX?: INumber;
|
|
1522
1524
|
skewY?: INumber;
|
|
@@ -1594,6 +1596,7 @@ interface ILeafComputedData {
|
|
|
1594
1596
|
height?: number;
|
|
1595
1597
|
scaleX?: number;
|
|
1596
1598
|
scaleY?: number;
|
|
1599
|
+
scaleFixed?: IScaleFixed;
|
|
1597
1600
|
rotation?: number;
|
|
1598
1601
|
skewX?: number;
|
|
1599
1602
|
skewY?: number;
|
|
@@ -2015,12 +2018,25 @@ interface ITaskOptions {
|
|
|
2015
2018
|
|
|
2016
2019
|
interface ILeaferImageConfig {
|
|
2017
2020
|
url: string;
|
|
2018
|
-
|
|
2021
|
+
lod?: IImageLOD;
|
|
2019
2022
|
format?: IExportFileType;
|
|
2020
2023
|
crossOrigin?: IImageCrossOrigin;
|
|
2021
2024
|
showProgress?: boolean | string;
|
|
2022
2025
|
view?: IObject | ILeaferImage | ILeaferCanvas;
|
|
2023
2026
|
}
|
|
2027
|
+
interface IImageLOD {
|
|
2028
|
+
url: string;
|
|
2029
|
+
width: number;
|
|
2030
|
+
height: number;
|
|
2031
|
+
thumb?: number;
|
|
2032
|
+
min?: number;
|
|
2033
|
+
tile?: IImageTileLOD;
|
|
2034
|
+
}
|
|
2035
|
+
interface IImageTileLOD {
|
|
2036
|
+
url: string;
|
|
2037
|
+
size: number;
|
|
2038
|
+
min?: number;
|
|
2039
|
+
}
|
|
2024
2040
|
interface ILeaferImageOnLoaded {
|
|
2025
2041
|
(image?: ILeaferImage): any;
|
|
2026
2042
|
}
|
|
@@ -2056,6 +2072,7 @@ interface ILeaferImageLevel {
|
|
|
2056
2072
|
interface ILeaferImage {
|
|
2057
2073
|
readonly innerId: InnerId;
|
|
2058
2074
|
readonly url: string;
|
|
2075
|
+
readonly crossOrigin: IImageCrossOrigin;
|
|
2059
2076
|
view: any;
|
|
2060
2077
|
width: number;
|
|
2061
2078
|
height: number;
|
|
@@ -2067,17 +2084,24 @@ interface ILeaferImage {
|
|
|
2067
2084
|
loading: boolean;
|
|
2068
2085
|
isPlacehold?: boolean;
|
|
2069
2086
|
largeThumb?: ILeaferImageLevel;
|
|
2087
|
+
thumb?: ILeaferImageLevel;
|
|
2070
2088
|
levels?: ILeaferImageLevel[];
|
|
2071
2089
|
levelsRange?: IRangeSize;
|
|
2072
2090
|
minLevel?: number;
|
|
2091
|
+
loadId?: any;
|
|
2073
2092
|
progress?: IProgressData;
|
|
2074
2093
|
use: number;
|
|
2075
2094
|
config: ILeaferImageConfig;
|
|
2076
|
-
load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError): number;
|
|
2095
|
+
load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError, thumbSize?: ISizeData): number;
|
|
2077
2096
|
unload(index: number, stopEvent?: boolean): void;
|
|
2078
2097
|
getFull(filters?: IObject): any;
|
|
2079
2098
|
getCanvas(width: number, height: number, opacity?: number, filters?: IObject, xGap?: number, yGap?: number, smooth?: boolean): any;
|
|
2080
2099
|
getPattern(canvas: any, repeat: string | null, transform?: IMatrixData, paint?: IObject): ICanvasPattern;
|
|
2100
|
+
getLoadUrl(thumbSize?: ISizeData): string;
|
|
2101
|
+
setThumbView(view: number): void;
|
|
2102
|
+
getThumbSize(): ISizeData;
|
|
2103
|
+
getMinLevel(): number;
|
|
2104
|
+
getLevelData(_level: number): ILeaferImageLevel;
|
|
2081
2105
|
clearLevels(checkUse?: boolean): void;
|
|
2082
2106
|
destroy(): void;
|
|
2083
2107
|
}
|
|
@@ -2096,6 +2120,7 @@ interface IUIEvent extends IEvent {
|
|
|
2096
2120
|
buttons?: number;
|
|
2097
2121
|
path?: ILeafList;
|
|
2098
2122
|
throughPath?: ILeafList;
|
|
2123
|
+
time?: number;
|
|
2099
2124
|
isHoldKeys?(shortcutKeys?: IShortcutKeysCheck | IShortcutKeys): boolean;
|
|
2100
2125
|
getBoxPoint?(relative?: ILeaf): IPointData;
|
|
2101
2126
|
getInnerPoint?(relative?: ILeaf): IPointData;
|
|
@@ -2223,6 +2248,7 @@ interface IInteraction extends IControl {
|
|
|
2223
2248
|
isHover(leaf: ILeaf): boolean;
|
|
2224
2249
|
isFocus(leaf: ILeaf): boolean;
|
|
2225
2250
|
cancelHover(): void;
|
|
2251
|
+
stopDragAnimate(): void;
|
|
2226
2252
|
updateDownData(data?: IPointerEvent, options?: IPickOptions, merge?: boolean): void;
|
|
2227
2253
|
updateHoverData(data: IPointerEvent): void;
|
|
2228
2254
|
updateCursor(hoverData?: IPointerEvent): void;
|
|
@@ -2339,7 +2365,7 @@ interface ILeaferAttrData {
|
|
|
2339
2365
|
viewCompleted: boolean;
|
|
2340
2366
|
layoutLocked: boolean;
|
|
2341
2367
|
transforming: boolean;
|
|
2342
|
-
view: unknown;
|
|
2368
|
+
readonly view: unknown;
|
|
2343
2369
|
canvas: ILeaferCanvas;
|
|
2344
2370
|
renderer: IRenderer;
|
|
2345
2371
|
watcher: IWatcher;
|
|
@@ -2355,6 +2381,8 @@ interface ILeaferAttrData {
|
|
|
2355
2381
|
readonly cursorPoint: IPointData;
|
|
2356
2382
|
readonly clientBounds: IBoundsData;
|
|
2357
2383
|
leafs: number;
|
|
2384
|
+
isPullDown?: boolean;
|
|
2385
|
+
isReachDottom?: boolean;
|
|
2358
2386
|
__eventIds: IEventListenerId[];
|
|
2359
2387
|
__nextRenderWait: IFunction[];
|
|
2360
2388
|
init(userConfig?: ILeaferConfig, parentApp?: IAppBase): void;
|
|
@@ -2488,4 +2516,4 @@ interface ITransformer {
|
|
|
2488
2516
|
}
|
|
2489
2517
|
|
|
2490
2518
|
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 };
|
|
2519
|
+
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, IImageLOD, IImageManager, IImageTileLOD, 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 };
|