@leafer/interface 1.6.7 → 1.7.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
package/src/app/ILeafer.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ILeaf, ICursorType } from '../display/ILeaf'
|
|
1
|
+
import { ILeaf, ICursorType, IAlign } from '../display/ILeaf'
|
|
2
2
|
import { IRenderer, IRendererConfig } from '../renderer/IRenderer'
|
|
3
3
|
import { IHitCanvas, ILeaferCanvas, ILeaferCanvasConfig, IHitCanvasConfig } from '../canvas/ILeaferCanvas'
|
|
4
4
|
import { ILayouter, ILayouterConfig } from '../layouter/ILayouter'
|
|
@@ -83,7 +83,7 @@ export interface ILeaferAttrData {
|
|
|
83
83
|
waitViewReady(item: IFunction, bind?: IObject): void
|
|
84
84
|
waitViewCompleted(item: IFunction, bind?: IObject): void
|
|
85
85
|
|
|
86
|
-
zoom(zoomType: IZoomType,
|
|
86
|
+
zoom(zoomType: IZoomType, optionsOrPadding?: IZoomOptions | IFourNumber, scroll?: 'x' | 'y' | boolean, transition?: ITransition): IBoundsData
|
|
87
87
|
getValidMove(moveX: number, moveY: number): IPointData
|
|
88
88
|
getValidScale(changeScale: number): number
|
|
89
89
|
|
|
@@ -97,6 +97,13 @@ export interface ILeaferAttrData {
|
|
|
97
97
|
|
|
98
98
|
export type IZoomType = 'in' | 'out' | 'fit' | 'fit-width' | 'fit-height' | number | ILeaf | ILeaf[] | IBoundsData
|
|
99
99
|
|
|
100
|
+
export interface IZoomOptions {
|
|
101
|
+
padding?: IFourNumber
|
|
102
|
+
scroll?: 'x' | 'y' | boolean
|
|
103
|
+
transition?: ITransition
|
|
104
|
+
origin?: IPointData | IAlign
|
|
105
|
+
}
|
|
106
|
+
|
|
100
107
|
export interface ILeaferBase extends IZoomView, IControl, ILeaferAttrData {
|
|
101
108
|
readonly isApp: boolean
|
|
102
109
|
readonly app: ILeaferBase
|
package/src/display/ILeaf.ts
CHANGED
|
@@ -424,6 +424,7 @@ export interface ILeafComputedData {
|
|
|
424
424
|
readonly __isLinePath: boolean
|
|
425
425
|
readonly __blendMode: string
|
|
426
426
|
|
|
427
|
+
__useStroke?: boolean
|
|
427
428
|
__useArrow?: boolean
|
|
428
429
|
__useEffect?: boolean
|
|
429
430
|
|
|
@@ -662,7 +663,8 @@ export interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix,
|
|
|
662
663
|
__draw(canvas: ILeaferCanvas, options: IRenderOptions, originCanvas?: ILeaferCanvas): void
|
|
663
664
|
|
|
664
665
|
__clip(canvas: ILeaferCanvas, options: IRenderOptions): void
|
|
665
|
-
__renderShape(canvas: ILeaferCanvas, options: IRenderOptions
|
|
666
|
+
__renderShape(canvas: ILeaferCanvas, options: IRenderOptions): void
|
|
667
|
+
__drawShape(canvas: ILeaferCanvas, options: IRenderOptions): void
|
|
666
668
|
|
|
667
669
|
__updateWorldOpacity(): void
|
|
668
670
|
__updateChange(): void
|
|
@@ -10,7 +10,8 @@ export interface ILeafRender {
|
|
|
10
10
|
__drawFast?(canvas: ILeaferCanvas, options: IRenderOptions): void
|
|
11
11
|
|
|
12
12
|
__clip?(_canvas: ILeaferCanvas, _options: IRenderOptions): void
|
|
13
|
-
__renderShape?(canvas: ILeaferCanvas, options: IRenderOptions
|
|
13
|
+
__renderShape?(canvas: ILeaferCanvas, options: IRenderOptions): void
|
|
14
|
+
__drawShape?(canvas: ILeaferCanvas, options: IRenderOptions): void
|
|
14
15
|
|
|
15
16
|
__updateWorldOpacity?(): void
|
|
16
17
|
__updateChange?(): void
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { IAppBase } from './app/IApp'
|
|
2
|
-
export { ILeaferBase, ILeaferAttrData, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILeaferConfig, ICreator, IUICreator, IZoomType } from './app/ILeafer'
|
|
2
|
+
export { ILeaferBase, ILeaferAttrData, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILeaferConfig, ICreator, IUICreator, IZoomType, IZoomOptions } from './app/ILeafer'
|
|
3
3
|
export { ILeaf, ILeafAttrData, ILeafComputedData, ILeafInputData, ICachedLeaf, IFlowType, IFlowBoxType, IAlign, IAxisAlign, IFlowAlign, IFlowAxisAlign, ISide, IAxis, IGap, IPointGap, IAxisReverse, IBaseLineAlign, IFlowWrap, IAutoSize, IRangeSize, IPercentData, IUnitData, IConstraint, IConstraintType, IHitType, IMaskType, IEraserType, IBlendMode, IEditSize, IImageCursor, ICursorType, IStateStyleType, IDirection, IDirection4, IAround, IFilter, ILeafAttrDescriptor, ILeafAttrDescriptorFn } from './display/ILeaf'
|
|
4
4
|
export { IBranch } from './display/IBranch'
|
|
5
5
|
export { IZoomView } from './display/IView'
|
|
@@ -12,6 +12,11 @@ export interface IRenderOptions {
|
|
|
12
12
|
inCamera?: boolean
|
|
13
13
|
dimOpacity?: number
|
|
14
14
|
exporting?: boolean // 是否通过 export() 导出渲染
|
|
15
|
+
|
|
16
|
+
// 只渲染外形
|
|
17
|
+
shape?: boolean
|
|
18
|
+
ignoreFill?: boolean, // 绘制外形时忽略fill
|
|
19
|
+
ignoreStroke?: boolean // 绘制外形时忽略stroke
|
|
15
20
|
}
|
|
16
21
|
|
|
17
22
|
export interface IRendererConfig {
|
package/types/index.d.ts
CHANGED
|
@@ -1133,6 +1133,9 @@ interface IRenderOptions {
|
|
|
1133
1133
|
inCamera?: boolean;
|
|
1134
1134
|
dimOpacity?: number;
|
|
1135
1135
|
exporting?: boolean;
|
|
1136
|
+
shape?: boolean;
|
|
1137
|
+
ignoreFill?: boolean;
|
|
1138
|
+
ignoreStroke?: boolean;
|
|
1136
1139
|
}
|
|
1137
1140
|
interface IRendererConfig {
|
|
1138
1141
|
usePartRender?: boolean;
|
|
@@ -1215,7 +1218,8 @@ interface ILeafRender {
|
|
|
1215
1218
|
__draw?(canvas: ILeaferCanvas, options: IRenderOptions, originCanvas?: ILeaferCanvas): void;
|
|
1216
1219
|
__drawFast?(canvas: ILeaferCanvas, options: IRenderOptions): void;
|
|
1217
1220
|
__clip?(_canvas: ILeaferCanvas, _options: IRenderOptions): void;
|
|
1218
|
-
__renderShape?(canvas: ILeaferCanvas, options: IRenderOptions
|
|
1221
|
+
__renderShape?(canvas: ILeaferCanvas, options: IRenderOptions): void;
|
|
1222
|
+
__drawShape?(canvas: ILeaferCanvas, options: IRenderOptions): void;
|
|
1219
1223
|
__updateWorldOpacity?(): void;
|
|
1220
1224
|
__updateChange?(): void;
|
|
1221
1225
|
}
|
|
@@ -1577,6 +1581,7 @@ interface ILeafComputedData {
|
|
|
1577
1581
|
readonly __useNaturalRatio: boolean;
|
|
1578
1582
|
readonly __isLinePath: boolean;
|
|
1579
1583
|
readonly __blendMode: string;
|
|
1584
|
+
__useStroke?: boolean;
|
|
1580
1585
|
__useArrow?: boolean;
|
|
1581
1586
|
__useEffect?: boolean;
|
|
1582
1587
|
__pathInputed?: number;
|
|
@@ -1746,7 +1751,8 @@ interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix, ILeafDa
|
|
|
1746
1751
|
__drawFast(canvas: ILeaferCanvas, options: IRenderOptions): void;
|
|
1747
1752
|
__draw(canvas: ILeaferCanvas, options: IRenderOptions, originCanvas?: ILeaferCanvas): void;
|
|
1748
1753
|
__clip(canvas: ILeaferCanvas, options: IRenderOptions): void;
|
|
1749
|
-
__renderShape(canvas: ILeaferCanvas, options: IRenderOptions
|
|
1754
|
+
__renderShape(canvas: ILeaferCanvas, options: IRenderOptions): void;
|
|
1755
|
+
__drawShape(canvas: ILeaferCanvas, options: IRenderOptions): void;
|
|
1750
1756
|
__updateWorldOpacity(): void;
|
|
1751
1757
|
__updateChange(): void;
|
|
1752
1758
|
__drawPath(canvas: ILeaferCanvas): void;
|
|
@@ -2000,6 +2006,7 @@ interface IWheelConfig {
|
|
|
2000
2006
|
preventDefault?: boolean;
|
|
2001
2007
|
}
|
|
2002
2008
|
interface IPointerConfig {
|
|
2009
|
+
type?: 'mouse' | 'pointer' | 'touch';
|
|
2003
2010
|
snap?: boolean;
|
|
2004
2011
|
hitRadius?: number;
|
|
2005
2012
|
through?: boolean;
|
|
@@ -2082,7 +2089,7 @@ interface ILeaferAttrData {
|
|
|
2082
2089
|
waitReady(item: IFunction, bind?: IObject): void;
|
|
2083
2090
|
waitViewReady(item: IFunction, bind?: IObject): void;
|
|
2084
2091
|
waitViewCompleted(item: IFunction, bind?: IObject): void;
|
|
2085
|
-
zoom(zoomType: IZoomType,
|
|
2092
|
+
zoom(zoomType: IZoomType, optionsOrPadding?: IZoomOptions | IFourNumber, scroll?: 'x' | 'y' | boolean, transition?: ITransition): IBoundsData;
|
|
2086
2093
|
getValidMove(moveX: number, moveY: number): IPointData;
|
|
2087
2094
|
getValidScale(changeScale: number): number;
|
|
2088
2095
|
getWorldPointByClient(clientPoint: IClientPointData, updateClient?: boolean): IPointData;
|
|
@@ -2092,6 +2099,12 @@ interface ILeaferAttrData {
|
|
|
2092
2099
|
receiveEvent(event: any): void;
|
|
2093
2100
|
}
|
|
2094
2101
|
type IZoomType = 'in' | 'out' | 'fit' | 'fit-width' | 'fit-height' | number | ILeaf | ILeaf[] | IBoundsData;
|
|
2102
|
+
interface IZoomOptions {
|
|
2103
|
+
padding?: IFourNumber;
|
|
2104
|
+
scroll?: 'x' | 'y' | boolean;
|
|
2105
|
+
transition?: ITransition;
|
|
2106
|
+
origin?: IPointData | IAlign;
|
|
2107
|
+
}
|
|
2095
2108
|
interface ILeaferBase extends IZoomView, IControl, ILeaferAttrData {
|
|
2096
2109
|
readonly isApp: boolean;
|
|
2097
2110
|
readonly app: ILeaferBase;
|
|
@@ -2323,4 +2336,4 @@ interface ITransformer {
|
|
|
2323
2336
|
destroy(): void;
|
|
2324
2337
|
}
|
|
2325
2338
|
|
|
2326
|
-
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, IBoundsEvent, 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, 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, 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, IProgressData, IProgressFunction, 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, IWindingRuleData, IZoomConfig, IZoomEvent, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
|
|
2339
|
+
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, IBoundsEvent, 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, 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, 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, IProgressData, IProgressFunction, 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, IWindingRuleData, IZoomConfig, IZoomEvent, IZoomOptions, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
|