@aptre/flex-layout 0.2.2 → 0.2.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/dist/DockLocation.d.ts +1 -1
- package/dist/DropInfo.d.ts +4 -4
- package/dist/index.d.ts +22 -22
- package/dist/index.mjs +560 -459
- package/dist/model/Actions.d.ts +2 -2
- package/dist/model/BorderNode.d.ts +6 -6
- package/dist/model/BorderSet.d.ts +1 -1
- package/dist/model/IJsonModel.d.ts +1 -1
- package/dist/model/Model.d.ts +8 -8
- package/dist/model/Node.d.ts +4 -4
- package/dist/model/RowNode.d.ts +3 -3
- package/dist/model/SplitterNode.d.ts +1 -1
- package/dist/model/TabNode.d.ts +4 -4
- package/dist/model/TabSetNode.d.ts +4 -4
- package/dist/view/Layout.d.ts +10 -10
- package/package.json +31 -22
- package/tsconfig.json +5 -4
- package/typedoc/assets/icons.js +15 -0
- package/typedoc/assets/icons.svg +1 -0
- package/typedoc/assets/main.js +4 -4
- package/typedoc/assets/style.css +5 -7
- package/typedoc/classes/Action.html +4 -4
- package/typedoc/classes/Actions.html +63 -63
- package/typedoc/classes/BorderNode.html +29 -29
- package/typedoc/classes/BorderSet.html +2 -2
- package/typedoc/classes/DockLocation.html +10 -10
- package/typedoc/classes/DragDrop.html +10 -10
- package/typedoc/classes/DropInfo.html +7 -7
- package/typedoc/classes/Layout.html +87 -82
- package/typedoc/classes/Model.html +41 -41
- package/typedoc/classes/Node.html +12 -12
- package/typedoc/classes/Orientation.html +6 -6
- package/typedoc/classes/Rect.html +19 -19
- package/typedoc/classes/RowNode.html +17 -17
- package/typedoc/classes/SplitterNode.html +13 -13
- package/typedoc/classes/TabNode.html +33 -33
- package/typedoc/classes/TabSetNode.html +40 -40
- package/typedoc/enums/CLASSES.html +78 -78
- package/typedoc/enums/I18nLabel.html +13 -13
- package/typedoc/enums/ICloseType.html +4 -4
- package/typedoc/hierarchy.html +1 -1
- package/typedoc/index.html +51 -51
- package/typedoc/interfaces/IBorderAttributes.html +13 -13
- package/typedoc/interfaces/ICustomDropDestination.html +10 -10
- package/typedoc/interfaces/IDraggable.html +1 -1
- package/typedoc/interfaces/IDropTarget.html +1 -1
- package/typedoc/interfaces/IFontValues.html +5 -5
- package/typedoc/interfaces/IGlobalAttributes.html +47 -47
- package/typedoc/interfaces/IIcons.html +8 -8
- package/typedoc/interfaces/IJsonBorderNode.html +15 -15
- package/typedoc/interfaces/IJsonModel.html +4 -4
- package/typedoc/interfaces/IJsonRowNode.html +7 -7
- package/typedoc/interfaces/IJsonTabNode.html +21 -21
- package/typedoc/interfaces/IJsonTabSetNode.html +30 -30
- package/typedoc/interfaces/ILayoutProps.html +25 -25
- package/typedoc/interfaces/ILayoutState.html +9 -9
- package/typedoc/interfaces/IRowAttributes.html +6 -6
- package/typedoc/interfaces/ITabAttributes.html +21 -21
- package/typedoc/interfaces/ITabRenderValues.html +5 -5
- package/typedoc/interfaces/ITabSetAttributes.html +29 -29
- package/typedoc/interfaces/ITabSetRenderValues.html +7 -7
- package/typedoc/interfaces/ITitleObject.html +3 -3
- package/typedoc/types/CustomDragCallback.html +1 -1
- package/typedoc/types/DragRectRenderCallback.html +1 -1
- package/typedoc/types/FloatingTabPlaceholderRenderCallback.html +1 -1
- package/typedoc/types/IBorderLocation.html +1 -1
- package/typedoc/types/IInsets.html +1 -1
- package/typedoc/types/ITabLocation.html +1 -1
- package/typedoc/types/IconFactory.html +1 -1
- package/typedoc/types/NodeMouseEvent.html +1 -1
- package/typedoc/types/ShowOverflowMenuCallback.html +1 -1
- package/typedoc/types/TabSetPlaceHolderCallback.html +1 -1
- package/typedoc/types/TitleFactory.html +1 -1
package/dist/DockLocation.d.ts
CHANGED
package/dist/DropInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { DockLocation } from "./DockLocation";
|
|
2
|
-
import { IDropTarget } from "./model/IDropTarget";
|
|
3
|
-
import { Node } from "./model/Node";
|
|
4
|
-
import { Rect } from "./Rect";
|
|
1
|
+
import { DockLocation } from "./DockLocation.js";
|
|
2
|
+
import { IDropTarget } from "./model/IDropTarget.js";
|
|
3
|
+
import { Node } from "./model/Node.js";
|
|
4
|
+
import { Rect } from "./Rect.js";
|
|
5
5
|
export declare class DropInfo {
|
|
6
6
|
node: Node & IDropTarget;
|
|
7
7
|
rect: Rect;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
export * from "./view/Layout";
|
|
2
|
-
export * from "./model/Action";
|
|
3
|
-
export * from "./model/Actions";
|
|
4
|
-
export * from "./model/BorderNode";
|
|
5
|
-
export * from "./model/BorderSet";
|
|
6
|
-
export * from "./model/ICloseType";
|
|
7
|
-
export * from "./model/IDraggable";
|
|
8
|
-
export * from "./model/IDropTarget";
|
|
9
|
-
export * from "./model/IJsonModel";
|
|
10
|
-
export * from "./model/Model";
|
|
11
|
-
export * from "./model/Node";
|
|
12
|
-
export * from "./model/RowNode";
|
|
13
|
-
export * from "./model/SplitterNode";
|
|
14
|
-
export * from "./model/TabNode";
|
|
15
|
-
export * from "./model/TabSetNode";
|
|
16
|
-
export * from "./DockLocation";
|
|
17
|
-
export * from "./DragDrop";
|
|
18
|
-
export * from "./DropInfo";
|
|
19
|
-
export * from "./I18nLabel";
|
|
20
|
-
export * from "./Orientation";
|
|
21
|
-
export * from "./Rect";
|
|
22
|
-
export * from "./Types";
|
|
1
|
+
export * from "./view/Layout.js";
|
|
2
|
+
export * from "./model/Action.js";
|
|
3
|
+
export * from "./model/Actions.js";
|
|
4
|
+
export * from "./model/BorderNode.js";
|
|
5
|
+
export * from "./model/BorderSet.js";
|
|
6
|
+
export * from "./model/ICloseType.js";
|
|
7
|
+
export * from "./model/IDraggable.js";
|
|
8
|
+
export * from "./model/IDropTarget.js";
|
|
9
|
+
export * from "./model/IJsonModel.js";
|
|
10
|
+
export * from "./model/Model.js";
|
|
11
|
+
export * from "./model/Node.js";
|
|
12
|
+
export * from "./model/RowNode.js";
|
|
13
|
+
export * from "./model/SplitterNode.js";
|
|
14
|
+
export * from "./model/TabNode.js";
|
|
15
|
+
export * from "./model/TabSetNode.js";
|
|
16
|
+
export * from "./DockLocation.js";
|
|
17
|
+
export * from "./DragDrop.js";
|
|
18
|
+
export * from "./DropInfo.js";
|
|
19
|
+
export * from "./I18nLabel.js";
|
|
20
|
+
export * from "./Orientation.js";
|
|
21
|
+
export * from "./Rect.js";
|
|
22
|
+
export * from "./Types.js";
|