@leafer/interface 1.0.0-beta.11 → 1.0.0-beta.15
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 +4 -2
- package/src/index.ts +2 -2
- package/types/index.d.ts +1672 -0
- package/src/app/IApp.ts +0 -6
- package/src/app/ILeafer.ts +0 -96
- package/src/canvas/ICanvas.ts +0 -334
- package/src/canvas/ICanvasManager.ts +0 -10
- package/src/canvas/IHitCanvasManager.ts +0 -10
- package/src/canvas/ILeaferCanvas.ts +0 -201
- package/src/canvas/ISkiaCanvas.ts +0 -20
- package/src/control/IControl.ts +0 -5
- package/src/data/IData.ts +0 -29
- package/src/data/ILeafData.ts +0 -27
- package/src/data/IList.ts +0 -45
- package/src/display/IBranch.ts +0 -9
- package/src/display/ILeaf.ts +0 -293
- package/src/display/IView.ts +0 -10
- package/src/display/module/IBranchRender.ts +0 -10
- package/src/display/module/ILeafBounds.ts +0 -21
- package/src/display/module/ILeafDataProxy.ts +0 -10
- package/src/display/module/ILeafEventer.ts +0 -18
- package/src/display/module/ILeafHit.ts +0 -12
- package/src/display/module/ILeafMask.ts +0 -12
- package/src/display/module/ILeafMatrix.ts +0 -8
- package/src/display/module/ILeafRender.ts +0 -16
- package/src/event/IEvent.ts +0 -111
- package/src/event/IEventer.ts +0 -43
- package/src/event/IUIEvent.ts +0 -85
- package/src/file/IFileType.ts +0 -2
- package/src/function/IFunction.ts +0 -13
- package/src/image/IImageManager.ts +0 -18
- package/src/image/ILeaferImage.ts +0 -41
- package/src/interaction/IInteraction.ts +0 -92
- package/src/layout/ILeafLayout.ts +0 -95
- package/src/layouter/ILayouter.ts +0 -60
- package/src/math/IMath.ts +0 -183
- package/src/path/IPathCommand.ts +0 -50
- package/src/path/IPathDrawer.ts +0 -36
- package/src/platform/IPlatform.ts +0 -46
- package/src/plugin/IPlugin.ts +0 -10
- package/src/renderer/IRenderer.ts +0 -53
- package/src/selector/ISelector.ts +0 -35
- package/src/task/ITaskProcessor.ts +0 -44
- package/src/watcher/IWatcher.ts +0 -30
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer/interface",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.15",
|
|
4
4
|
"description": "@leafer/interface",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "src/index.ts",
|
|
8
|
+
"types": "types/index.d.ts",
|
|
8
9
|
"files": [
|
|
9
|
-
"
|
|
10
|
+
"types",
|
|
11
|
+
"dist"
|
|
10
12
|
],
|
|
11
13
|
"repository": {
|
|
12
14
|
"type": "git",
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { IApp } from './app/IApp'
|
|
2
2
|
export { ILeafer, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILeaferConfig, ICreator, IUICreator } from './app/ILeafer'
|
|
3
|
-
export { ILeaf, ILeafAttrData, ILeafComputedData, ILeafInputData, ICachedLeaf, IHitType, IBlendMode } from './display/ILeaf'
|
|
3
|
+
export { ILeaf, ILeafAttrData, ILeafComputedData, ILeafInputData, ICachedLeaf, IHitType, IBlendMode, IResizeType, ICursorType, ICursorTypeMap, IAround } from './display/ILeaf'
|
|
4
4
|
export { IBranch } from './display/IBranch'
|
|
5
5
|
export { IZoomView } from './display/IView'
|
|
6
6
|
|
|
@@ -51,5 +51,5 @@ export { IInteraction, IInteractionCanvas, IInteractionConfig, IWheelConfig, IPo
|
|
|
51
51
|
|
|
52
52
|
export { __Number, __Boolean, __String, __Object, __Value, IPathString, ITimer, IObject, INumberMap, IStringMap, IBooleanMap, IDataTypeHandle } from './data/IData'
|
|
53
53
|
export { ILeafList, ILeafArrayMap, ILeafMap, ILeafLevelList, ILeafListItemCallback } from './data/IList'
|
|
54
|
-
export { IPoint, IPointData, IRadiusPointData, ISize, ISizeData, IScreenSizeData, IBounds, IBoundsData, IBoundsDataHandle, IOffsetBoundsData, ITwoPointBounds, ITwoPointBoundsData, IAutoBounds, IAutoBoundsData, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixDecompositionData, IMatrixDecompositionAttr } from './math/IMath'
|
|
54
|
+
export { IPoint, IPointData, IRadiusPointData, ISize, ISizeData, IScreenSizeData, IBounds, IBoundsData, IBoundsDataHandle, IOffsetBoundsData, ITwoPointBounds, ITwoPointBoundsData, IAutoBounds, IAutoBoundsData, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithLayoutData, IMatrixDecompositionData, IMatrixDecompositionAttr } from './math/IMath'
|
|
55
55
|
export { IFunction } from './function/IFunction'
|