flexlayout-react 0.7.14 → 0.8.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/ChangeLog.txt +26 -0
- package/README.md +157 -330
- package/Screenshot_light.png +0 -0
- package/Screenshot_rounded.png +0 -0
- package/declarations/Attribute.d.ts +1 -1
- package/declarations/AttributeDefinitions.d.ts +1 -1
- package/declarations/DockLocation.d.ts +12 -12
- package/declarations/DropInfo.d.ts +12 -12
- package/declarations/I18nLabel.d.ts +12 -14
- package/declarations/Orientation.d.ts +7 -7
- package/declarations/PopupMenu.d.ts +1 -1
- package/declarations/Rect.d.ts +41 -28
- package/declarations/Types.d.ts +95 -79
- package/declarations/examples/demo/Utils.d.ts +4 -0
- package/declarations/index.d.ts +21 -22
- package/declarations/model/Action.d.ts +5 -5
- package/declarations/model/Actions.d.ts +127 -110
- package/declarations/model/BorderNode.d.ts +30 -34
- package/declarations/model/BorderSet.d.ts +3 -4
- package/declarations/model/ICloseType.d.ts +5 -5
- package/declarations/model/IDraggable.d.ts +2 -2
- package/declarations/model/IDropTarget.d.ts +2 -2
- package/declarations/model/IJsonModel.d.ts +811 -149
- package/declarations/model/LayoutWindow.d.ts +28 -0
- package/declarations/model/Model.d.ts +91 -86
- package/declarations/model/Node.d.ts +17 -17
- package/declarations/model/RowNode.d.ts +10 -11
- package/declarations/model/TabNode.d.ts +44 -37
- package/declarations/model/TabSetNode.d.ts +44 -41
- package/declarations/model/Utils.d.ts +1 -1
- package/declarations/model/WindowLayout.d.ts +24 -0
- package/declarations/src/Attribute.d.ts +1 -0
- package/declarations/src/AttributeDefinitions.d.ts +1 -0
- package/declarations/src/DockLocation.d.ts +12 -0
- package/declarations/src/DropInfo.d.ts +12 -0
- package/declarations/src/I18nLabel.d.ts +10 -0
- package/declarations/src/Orientation.d.ts +7 -0
- package/declarations/src/PopupMenu.d.ts +1 -0
- package/declarations/src/Rect.d.ts +31 -0
- package/declarations/src/Types.d.ts +92 -0
- package/declarations/src/index.d.ts +20 -0
- package/declarations/src/model/Action.d.ts +5 -0
- package/declarations/src/model/Actions.d.ts +110 -0
- package/declarations/src/model/BorderNode.d.ts +28 -0
- package/declarations/src/model/BorderSet.d.ts +3 -0
- package/declarations/src/model/ICloseType.d.ts +5 -0
- package/declarations/src/model/IDraggable.d.ts +2 -0
- package/declarations/src/model/IDropTarget.d.ts +2 -0
- package/declarations/src/model/IJsonModel.d.ts +153 -0
- package/declarations/src/model/Model.d.ts +98 -0
- package/declarations/src/model/Node.d.ts +16 -0
- package/declarations/src/model/RowNode.d.ts +11 -0
- package/declarations/src/model/TabNode.d.ts +36 -0
- package/declarations/src/model/TabSetNode.d.ts +37 -0
- package/declarations/src/model/Utils.d.ts +1 -0
- package/declarations/src/view/BorderButton.d.ts +1 -0
- package/declarations/src/view/BorderTab.d.ts +2 -0
- package/declarations/src/view/BorderTabSet.d.ts +1 -0
- package/declarations/src/view/DragContainer.d.ts +1 -0
- package/declarations/src/view/ErrorBoundary.d.ts +1 -0
- package/declarations/src/view/FloatingWindow.d.ts +1 -0
- package/declarations/src/view/Icons.d.ts +7 -0
- package/declarations/src/view/Layout.d.ts +113 -0
- package/declarations/src/view/Overlay.d.ts +1 -0
- package/declarations/src/view/PopupMenu.d.ts +1 -0
- package/declarations/src/view/Row.d.ts +1 -0
- package/declarations/src/view/Splitter.d.ts +1 -0
- package/declarations/src/view/Tab.d.ts +1 -0
- package/declarations/src/view/TabButton.d.ts +1 -0
- package/declarations/src/view/TabButtonStamp.d.ts +1 -0
- package/declarations/src/view/TabOverflowHook.d.ts +1 -0
- package/declarations/src/view/TabSet.d.ts +1 -0
- package/declarations/src/view/Utils.d.ts +4 -0
- package/declarations/view/BorderButton.d.ts +1 -1
- package/declarations/view/BorderTab.d.ts +2 -0
- package/declarations/view/BorderTabSet.d.ts +1 -1
- package/declarations/view/DragContainer.d.ts +1 -0
- package/declarations/view/ErrorBoundary.d.ts +1 -1
- package/declarations/view/ExtendedResizeObserver.d.ts +23 -0
- package/declarations/view/FloatingWindow.d.ts +1 -1
- package/declarations/view/Icons.d.ts +8 -6
- package/declarations/view/Layout.d.ts +139 -160
- package/declarations/view/Overlay.d.ts +1 -0
- package/declarations/view/PopoutWindow.d.ts +1 -0
- package/declarations/view/PopupMenu.d.ts +1 -0
- package/declarations/view/Row.d.ts +1 -0
- package/declarations/view/SizeTracker.d.ts +10 -0
- package/declarations/view/Splitter.d.ts +1 -1
- package/declarations/view/Tab.d.ts +1 -1
- package/declarations/view/TabButton.d.ts +1 -1
- package/declarations/view/TabButtonStamp.d.ts +1 -1
- package/declarations/view/TabOverflowHook.d.ts +1 -1
- package/declarations/view/TabSet.d.ts +1 -1
- package/declarations/view/Utils.d.ts +11 -1
- package/dist/bundles/demo.js +232052 -0
- package/dist/bundles/demo.js.map +1 -0
- package/dist/flexlayout.js +122 -92
- package/dist/flexlayout_min.js +1 -1
- package/lib/Attribute.js +42 -31
- package/lib/Attribute.js.map +1 -1
- package/lib/AttributeDefinitions.js +131 -108
- package/lib/AttributeDefinitions.js.map +1 -1
- package/lib/DockLocation.js +120 -124
- package/lib/DockLocation.js.map +1 -1
- package/lib/DropInfo.js +9 -13
- package/lib/DropInfo.js.map +1 -1
- package/lib/I18nLabel.js +13 -18
- package/lib/I18nLabel.js.map +1 -1
- package/lib/Orientation.js +22 -26
- package/lib/Orientation.js.map +1 -1
- package/lib/Rect.js +104 -72
- package/lib/Rect.js.map +1 -1
- package/lib/Types.js +96 -83
- package/lib/Types.js.map +1 -1
- package/lib/index.js +21 -38
- package/lib/index.js.map +1 -1
- package/lib/model/Action.js +6 -10
- package/lib/model/Action.js.map +1 -1
- package/lib/model/Actions.js +169 -155
- package/lib/model/Actions.js.map +1 -1
- package/lib/model/BorderNode.js +385 -406
- package/lib/model/BorderNode.js.map +1 -1
- package/lib/model/BorderSet.js +66 -121
- package/lib/model/BorderSet.js.map +1 -1
- package/lib/model/ICloseType.js +6 -9
- package/lib/model/ICloseType.js.map +1 -1
- package/lib/model/IDraggable.js +1 -2
- package/lib/model/IDropTarget.js +1 -2
- package/lib/model/IJsonModel.js +1 -2
- package/lib/model/LayoutWindow.js +83 -0
- package/lib/model/LayoutWindow.js.map +1 -0
- package/lib/model/Model.js +614 -496
- package/lib/model/Model.js.map +1 -1
- package/lib/model/Node.js +217 -228
- package/lib/model/Node.js.map +1 -1
- package/lib/model/RowNode.js +491 -504
- package/lib/model/RowNode.js.map +1 -1
- package/lib/model/TabNode.js +289 -184
- package/lib/model/TabNode.js.map +1 -1
- package/lib/model/TabSetNode.js +457 -446
- package/lib/model/TabSetNode.js.map +1 -1
- package/lib/model/Utils.js +47 -82
- package/lib/model/Utils.js.map +1 -1
- package/lib/view/BorderButton.js +124 -138
- package/lib/view/BorderButton.js.map +1 -1
- package/lib/view/BorderTab.js +47 -0
- package/lib/view/BorderTab.js.map +1 -0
- package/lib/view/BorderTabSet.js +134 -128
- package/lib/view/BorderTabSet.js.map +1 -1
- package/lib/view/DragContainer.js +16 -0
- package/lib/view/DragContainer.js.map +1 -0
- package/lib/view/ErrorBoundary.js +23 -27
- package/lib/view/ErrorBoundary.js.map +1 -1
- package/lib/view/Icons.js +40 -40
- package/lib/view/Icons.js.map +1 -1
- package/lib/view/Layout.js +918 -901
- package/lib/view/Layout.js.map +1 -1
- package/lib/view/Overlay.js +9 -0
- package/lib/view/Overlay.js.map +1 -0
- package/lib/view/PopoutWindow.js +129 -0
- package/lib/view/PopoutWindow.js.map +1 -0
- package/lib/view/PopupMenu.js +71 -0
- package/lib/view/PopupMenu.js.map +1 -0
- package/lib/view/Row.js +45 -0
- package/lib/view/Row.js.map +1 -0
- package/lib/view/SizeTracker.js +11 -0
- package/lib/view/SizeTracker.js.map +1 -0
- package/lib/view/Splitter.js +191 -147
- package/lib/view/Splitter.js.map +1 -1
- package/lib/view/Tab.js +86 -60
- package/lib/view/Tab.js.map +1 -1
- package/lib/view/TabButton.js +122 -135
- package/lib/view/TabButton.js.map +1 -1
- package/lib/view/TabButtonStamp.js +16 -21
- package/lib/view/TabButtonStamp.js.map +1 -1
- package/lib/view/TabOverflowHook.js +150 -149
- package/lib/view/TabOverflowHook.js.map +1 -1
- package/lib/view/TabSet.js +267 -234
- package/lib/view/TabSet.js.map +1 -1
- package/lib/view/Utils.js +126 -68
- package/lib/view/Utils.js.map +1 -1
- package/package.json +36 -30
- package/src/Attribute.ts +23 -0
- package/src/AttributeDefinitions.ts +38 -15
- package/src/DockLocation.ts +13 -13
- package/src/I18nLabel.ts +7 -9
- package/src/Rect.ts +53 -1
- package/src/Types.ts +16 -0
- package/src/index.ts +1 -2
- package/src/model/Actions.ts +49 -29
- package/src/model/BorderNode.ts +208 -214
- package/src/model/BorderSet.ts +42 -91
- package/src/model/IJsonModel.ts +883 -103
- package/src/model/LayoutWindow.ts +121 -0
- package/src/model/Model.ts +488 -366
- package/src/model/Node.ts +98 -111
- package/src/model/RowNode.ts +323 -319
- package/src/model/TabNode.ts +294 -110
- package/src/model/TabSetNode.ts +300 -242
- package/src/model/Utils.ts +6 -32
- package/src/view/BorderButton.tsx +32 -52
- package/src/view/BorderTab.tsx +70 -0
- package/src/view/BorderTabSet.tsx +64 -52
- package/src/view/DragContainer.tsx +32 -0
- package/src/view/Icons.tsx +13 -0
- package/src/view/Layout.tsx +1071 -1047
- package/src/view/Overlay.tsx +22 -0
- package/src/view/PopoutWindow.tsx +152 -0
- package/src/{PopupMenu.tsx → view/PopupMenu.tsx} +36 -31
- package/src/view/Row.tsx +68 -0
- package/src/view/SizeTracker.tsx +20 -0
- package/src/view/Splitter.tsx +167 -112
- package/src/view/Tab.tsx +76 -42
- package/src/view/TabButton.tsx +36 -55
- package/src/view/TabButtonStamp.tsx +5 -9
- package/src/view/TabOverflowHook.tsx +14 -9
- package/src/view/TabSet.tsx +217 -176
- package/src/view/Utils.tsx +119 -39
- package/style/_base.scss +143 -35
- package/style/dark.css +685 -577
- package/style/dark.css.map +1 -1
- package/style/dark.scss +4 -1
- package/style/gray.css +668 -560
- package/style/gray.css.map +1 -1
- package/style/gray.scss +4 -1
- package/style/light.css +669 -561
- package/style/light.css.map +1 -1
- package/style/light.scss +6 -3
- package/style/rounded.css +697 -0
- package/style/rounded.css.map +1 -0
- package/style/rounded.scss +194 -0
- package/style/underline.css +690 -582
- package/style/underline.css.map +1 -1
- package/style/underline.scss +4 -1
- package/cypress.config.ts +0 -16
- package/lib/DragDrop.js +0 -316
- package/lib/DragDrop.js.map +0 -1
- package/lib/PopupMenu.js +0 -68
- package/lib/PopupMenu.js.map +0 -1
- package/lib/model/SplitterNode.js +0 -72
- package/lib/model/SplitterNode.js.map +0 -1
- package/lib/view/FloatingWindow.js +0 -123
- package/lib/view/FloatingWindow.js.map +0 -1
- package/lib/view/FloatingWindowTab.js +0 -19
- package/lib/view/FloatingWindowTab.js.map +0 -1
- package/lib/view/TabFloating.js +0 -66
- package/lib/view/TabFloating.js.map +0 -1
- package/src/DragDrop.ts +0 -392
- package/src/model/SplitterNode.ts +0 -78
- package/src/view/FloatingWindow.tsx +0 -140
- package/src/view/FloatingWindowTab.tsx +0 -29
- package/src/view/TabFloating.tsx +0 -101
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Orientation } from "./Orientation";
|
|
2
|
-
export declare class DockLocation {
|
|
3
|
-
static values:
|
|
4
|
-
static TOP: DockLocation;
|
|
5
|
-
static BOTTOM: DockLocation;
|
|
6
|
-
static LEFT: DockLocation;
|
|
7
|
-
static RIGHT: DockLocation;
|
|
8
|
-
static CENTER: DockLocation;
|
|
9
|
-
getName(): string;
|
|
10
|
-
getOrientation(): Orientation;
|
|
11
|
-
toString(): string;
|
|
12
|
-
}
|
|
1
|
+
import { Orientation } from "./Orientation";
|
|
2
|
+
export declare class DockLocation {
|
|
3
|
+
static values: Map<string, DockLocation>;
|
|
4
|
+
static TOP: DockLocation;
|
|
5
|
+
static BOTTOM: DockLocation;
|
|
6
|
+
static LEFT: DockLocation;
|
|
7
|
+
static RIGHT: DockLocation;
|
|
8
|
+
static CENTER: DockLocation;
|
|
9
|
+
getName(): string;
|
|
10
|
+
getOrientation(): Orientation;
|
|
11
|
+
toString(): string;
|
|
12
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { DockLocation } from "./DockLocation";
|
|
2
|
-
import { IDropTarget } from "./model/IDropTarget";
|
|
3
|
-
import { Node } from "./model/Node";
|
|
4
|
-
import { Rect } from "./Rect";
|
|
5
|
-
export declare class DropInfo {
|
|
6
|
-
node: Node & IDropTarget;
|
|
7
|
-
rect: Rect;
|
|
8
|
-
location: DockLocation;
|
|
9
|
-
index: number;
|
|
10
|
-
className: string;
|
|
11
|
-
constructor(node: Node & IDropTarget, rect: Rect, location: DockLocation, index: number, className: string);
|
|
12
|
-
}
|
|
1
|
+
import { DockLocation } from "./DockLocation";
|
|
2
|
+
import { IDropTarget } from "./model/IDropTarget";
|
|
3
|
+
import { Node } from "./model/Node";
|
|
4
|
+
import { Rect } from "./Rect";
|
|
5
|
+
export declare class DropInfo {
|
|
6
|
+
node: Node & IDropTarget;
|
|
7
|
+
rect: Rect;
|
|
8
|
+
location: DockLocation;
|
|
9
|
+
index: number;
|
|
10
|
+
className: string;
|
|
11
|
+
constructor(node: Node & IDropTarget, rect: Rect, location: DockLocation, index: number, className: string);
|
|
12
|
+
}
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
export declare enum I18nLabel {
|
|
2
|
-
Close_Tab = "Close",
|
|
3
|
-
Close_Tabset = "Close
|
|
4
|
-
|
|
5
|
-
Move_Tabset = "Move
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
Error_rendering_component = "Error rendering component"
|
|
14
|
-
}
|
|
1
|
+
export declare enum I18nLabel {
|
|
2
|
+
Close_Tab = "Close",
|
|
3
|
+
Close_Tabset = "Close tab set",
|
|
4
|
+
Active_Tabset = "Active tab set",
|
|
5
|
+
Move_Tabset = "Move tab set",
|
|
6
|
+
Move_Tabs = "Move tabs(?)",
|
|
7
|
+
Maximize = "Maximize tab set",
|
|
8
|
+
Restore = "Restore tab set",
|
|
9
|
+
Popout_Tab = "Popout selected tab",
|
|
10
|
+
Overflow_Menu_Tooltip = "Hidden tabs",
|
|
11
|
+
Error_rendering_component = "Error rendering component"
|
|
12
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export declare class Orientation {
|
|
2
|
-
static HORZ: Orientation;
|
|
3
|
-
static VERT: Orientation;
|
|
4
|
-
static flip(from: Orientation): Orientation;
|
|
5
|
-
getName(): string;
|
|
6
|
-
toString(): string;
|
|
7
|
-
}
|
|
1
|
+
export declare class Orientation {
|
|
2
|
+
static HORZ: Orientation;
|
|
3
|
+
static VERT: Orientation;
|
|
4
|
+
static flip(from: Orientation): Orientation;
|
|
5
|
+
getName(): string;
|
|
6
|
+
toString(): string;
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
package/declarations/Rect.d.ts
CHANGED
|
@@ -1,28 +1,41 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
import { IJsonRect } from "./model/IJsonModel";
|
|
2
|
+
export declare class Rect {
|
|
3
|
+
static empty(): Rect;
|
|
4
|
+
static fromJson(json: IJsonRect): Rect;
|
|
5
|
+
x: number;
|
|
6
|
+
y: number;
|
|
7
|
+
width: number;
|
|
8
|
+
height: number;
|
|
9
|
+
constructor(x: number, y: number, width: number, height: number);
|
|
10
|
+
toJson(): {
|
|
11
|
+
x: number;
|
|
12
|
+
y: number;
|
|
13
|
+
width: number;
|
|
14
|
+
height: number;
|
|
15
|
+
};
|
|
16
|
+
snap(round: number): void;
|
|
17
|
+
static getBoundingClientRect(element: Element): Rect;
|
|
18
|
+
static getContentRect(element: HTMLElement): Rect;
|
|
19
|
+
static fromDomRect(domRect: DOMRect): Rect;
|
|
20
|
+
relativeTo(r: Rect | DOMRect): Rect;
|
|
21
|
+
clone(): Rect;
|
|
22
|
+
equals(rect: Rect | null | undefined): boolean;
|
|
23
|
+
equalSize(rect: Rect | null | undefined): boolean;
|
|
24
|
+
getBottom(): number;
|
|
25
|
+
getRight(): number;
|
|
26
|
+
getCenter(): {
|
|
27
|
+
x: number;
|
|
28
|
+
y: number;
|
|
29
|
+
};
|
|
30
|
+
positionElement(element: HTMLElement, position?: string): void;
|
|
31
|
+
styleWithPosition(style: Record<string, any>, position?: string): Record<string, any>;
|
|
32
|
+
contains(x: number, y: number): boolean;
|
|
33
|
+
removeInsets(insets: {
|
|
34
|
+
top: number;
|
|
35
|
+
left: number;
|
|
36
|
+
bottom: number;
|
|
37
|
+
right: number;
|
|
38
|
+
}): Rect;
|
|
39
|
+
centerInRect(outerRect: Rect): void;
|
|
40
|
+
toString(): string;
|
|
41
|
+
}
|
package/declarations/Types.d.ts
CHANGED
|
@@ -1,79 +1,95 @@
|
|
|
1
|
-
export declare enum CLASSES {
|
|
2
|
-
FLEXLAYOUT__BORDER = "flexlayout__border",
|
|
3
|
-
FLEXLAYOUT__BORDER_ = "flexlayout__border_",
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
export declare enum CLASSES {
|
|
2
|
+
FLEXLAYOUT__BORDER = "flexlayout__border",
|
|
3
|
+
FLEXLAYOUT__BORDER_ = "flexlayout__border_",
|
|
4
|
+
FLEXLAYOUT__BORDER_TAB_CONTENTS = "flexlayout__border_tab_contents",
|
|
5
|
+
FLEXLAYOUT__BORDER_BUTTON = "flexlayout__border_button",
|
|
6
|
+
FLEXLAYOUT__BORDER_BUTTON_ = "flexlayout__border_button_",
|
|
7
|
+
FLEXLAYOUT__BORDER_BUTTON_CONTENT = "flexlayout__border_button_content",
|
|
8
|
+
FLEXLAYOUT__BORDER_BUTTON_LEADING = "flexlayout__border_button_leading",
|
|
9
|
+
FLEXLAYOUT__BORDER_BUTTON_TRAILING = "flexlayout__border_button_trailing",
|
|
10
|
+
FLEXLAYOUT__BORDER_BUTTON__SELECTED = "flexlayout__border_button--selected",
|
|
11
|
+
FLEXLAYOUT__BORDER_BUTTON__UNSELECTED = "flexlayout__border_button--unselected",
|
|
12
|
+
FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW = "flexlayout__border_toolbar_button_overflow",
|
|
13
|
+
FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW_ = "flexlayout__border_toolbar_button_overflow_",
|
|
14
|
+
FLEXLAYOUT__BORDER_INNER = "flexlayout__border_inner",
|
|
15
|
+
FLEXLAYOUT__BORDER_INNER_ = "flexlayout__border_inner_",
|
|
16
|
+
FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER = "flexlayout__border_inner_tab_container",
|
|
17
|
+
FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER_ = "flexlayout__border_inner_tab_container_",
|
|
18
|
+
FLEXLAYOUT__BORDER_TAB_DIVIDER = "flexlayout__border_tab_divider",
|
|
19
|
+
FLEXLAYOUT__BORDER_SIZER = "flexlayout__border_sizer",
|
|
20
|
+
FLEXLAYOUT__BORDER_TOOLBAR = "flexlayout__border_toolbar",
|
|
21
|
+
FLEXLAYOUT__BORDER_TOOLBAR_ = "flexlayout__border_toolbar_",
|
|
22
|
+
FLEXLAYOUT__BORDER_TOOLBAR_BUTTON = "flexlayout__border_toolbar_button",
|
|
23
|
+
FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_FLOAT = "flexlayout__border_toolbar_button-float",
|
|
24
|
+
FLEXLAYOUT__DRAG_RECT = "flexlayout__drag_rect",
|
|
25
|
+
FLEXLAYOUT__EDGE_RECT = "flexlayout__edge_rect",
|
|
26
|
+
FLEXLAYOUT__EDGE_RECT_TOP = "flexlayout__edge_rect_top",
|
|
27
|
+
FLEXLAYOUT__EDGE_RECT_LEFT = "flexlayout__edge_rect_left",
|
|
28
|
+
FLEXLAYOUT__EDGE_RECT_BOTTOM = "flexlayout__edge_rect_bottom",
|
|
29
|
+
FLEXLAYOUT__EDGE_RECT_RIGHT = "flexlayout__edge_rect_right",
|
|
30
|
+
FLEXLAYOUT__ERROR_BOUNDARY_CONTAINER = "flexlayout__error_boundary_container",
|
|
31
|
+
FLEXLAYOUT__ERROR_BOUNDARY_CONTENT = "flexlayout__error_boundary_content",
|
|
32
|
+
FLEXLAYOUT__FLOATING_WINDOW_CONTENT = "flexlayout__floating_window_content",
|
|
33
|
+
FLEXLAYOUT__FLOATING_WINDOW_TAB = "flexlayout__floating_window_tab",
|
|
34
|
+
FLEXLAYOUT__LAYOUT = "flexlayout__layout",
|
|
35
|
+
FLEXLAYOUT__LAYOUT_MOVEABLES = "flexlayout__layout_moveables",
|
|
36
|
+
FLEXLAYOUT__LAYOUT_OVERLAY = "flexlayout__layout_overlay",
|
|
37
|
+
FLEXLAYOUT__LAYOUT_TAB_STAMPS = "flexlayout__layout_tab_stamps",
|
|
38
|
+
FLEXLAYOUT__LAYOUT_MAIN = "flexlayout__layout_main",
|
|
39
|
+
FLEXLAYOUT__LAYOUT_BORDER_CONTAINER = "flexlayout__layout_border_container",
|
|
40
|
+
FLEXLAYOUT__LAYOUT_BORDER_CONTAINER_INNER = "flexlayout__layout_border_container_inner",
|
|
41
|
+
FLEXLAYOUT__OUTLINE_RECT = "flexlayout__outline_rect",
|
|
42
|
+
FLEXLAYOUT__OUTLINE_RECT_EDGE = "flexlayout__outline_rect_edge",
|
|
43
|
+
FLEXLAYOUT__SPLITTER = "flexlayout__splitter",
|
|
44
|
+
FLEXLAYOUT__SPLITTER_EXTRA = "flexlayout__splitter_extra",
|
|
45
|
+
FLEXLAYOUT__SPLITTER_ = "flexlayout__splitter_",
|
|
46
|
+
FLEXLAYOUT__SPLITTER_BORDER = "flexlayout__splitter_border",
|
|
47
|
+
FLEXLAYOUT__SPLITTER_DRAG = "flexlayout__splitter_drag",
|
|
48
|
+
FLEXLAYOUT__SPLITTER_HANDLE = "flexlayout__splitter_handle",
|
|
49
|
+
FLEXLAYOUT__SPLITTER_HANDLE_HORZ = "flexlayout__splitter_handle_horz",
|
|
50
|
+
FLEXLAYOUT__SPLITTER_HANDLE_VERT = "flexlayout__splitter_handle_vert",
|
|
51
|
+
FLEXLAYOUT__ROW = "flexlayout__row",
|
|
52
|
+
FLEXLAYOUT__TAB = "flexlayout__tab",
|
|
53
|
+
FLEXLAYOUT__TAB_POSITION = "flexlayout__tab_position",
|
|
54
|
+
FLEXLAYOUT__TAB_MOVEABLE = "flexlayout__tab_moveable",
|
|
55
|
+
FLEXLAYOUT__TAB_OVERLAY = "flexlayout__tab_overlay",
|
|
56
|
+
FLEXLAYOUT__TABSET = "flexlayout__tabset",
|
|
57
|
+
FLEXLAYOUT__TABSET_CONTAINER = "flexlayout__tabset_container",
|
|
58
|
+
FLEXLAYOUT__TABSET_HEADER = "flexlayout__tabset_header",
|
|
59
|
+
FLEXLAYOUT__TABSET_HEADER_SIZER = "flexlayout__tabset_header_sizer",
|
|
60
|
+
FLEXLAYOUT__TABSET_HEADER_CONTENT = "flexlayout__tabset_header_content",
|
|
61
|
+
FLEXLAYOUT__TABSET_MAXIMIZED = "flexlayout__tabset-maximized",
|
|
62
|
+
FLEXLAYOUT__TABSET_SELECTED = "flexlayout__tabset-selected",
|
|
63
|
+
FLEXLAYOUT__TABSET_SIZER = "flexlayout__tabset_sizer",
|
|
64
|
+
FLEXLAYOUT__TABSET_TAB_DIVIDER = "flexlayout__tabset_tab_divider",
|
|
65
|
+
FLEXLAYOUT__TABSET_CONTENT = "flexlayout__tabset_content",
|
|
66
|
+
FLEXLAYOUT__TABSET_TABBAR_INNER = "flexlayout__tabset_tabbar_inner",
|
|
67
|
+
FLEXLAYOUT__TABSET_TABBAR_INNER_ = "flexlayout__tabset_tabbar_inner_",
|
|
68
|
+
FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER = "flexlayout__tabset_tabbar_inner_tab_container",
|
|
69
|
+
FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER_ = "flexlayout__tabset_tabbar_inner_tab_container_",
|
|
70
|
+
FLEXLAYOUT__TABSET_TABBAR_OUTER = "flexlayout__tabset_tabbar_outer",
|
|
71
|
+
FLEXLAYOUT__TABSET_TABBAR_OUTER_ = "flexlayout__tabset_tabbar_outer_",
|
|
72
|
+
FLEXLAYOUT__TAB_BORDER = "flexlayout__tab_border",
|
|
73
|
+
FLEXLAYOUT__TAB_BORDER_ = "flexlayout__tab_border_",
|
|
74
|
+
FLEXLAYOUT__TAB_BUTTON = "flexlayout__tab_button",
|
|
75
|
+
FLEXLAYOUT__TAB_BUTTON_STRETCH = "flexlayout__tab_button_stretch",
|
|
76
|
+
FLEXLAYOUT__TAB_BUTTON_CONTENT = "flexlayout__tab_button_content",
|
|
77
|
+
FLEXLAYOUT__TAB_BUTTON_LEADING = "flexlayout__tab_button_leading",
|
|
78
|
+
FLEXLAYOUT__TAB_BUTTON_OVERFLOW = "flexlayout__tab_button_overflow",
|
|
79
|
+
FLEXLAYOUT__TAB_BUTTON_OVERFLOW_COUNT = "flexlayout__tab_button_overflow_count",
|
|
80
|
+
FLEXLAYOUT__TAB_BUTTON_TEXTBOX = "flexlayout__tab_button_textbox",
|
|
81
|
+
FLEXLAYOUT__TAB_BUTTON_TRAILING = "flexlayout__tab_button_trailing",
|
|
82
|
+
FLEXLAYOUT__TAB_BUTTON_STAMP = "flexlayout__tab_button_stamp",
|
|
83
|
+
FLEXLAYOUT__TAB_FLOATING = "flexlayout__tab_floating",
|
|
84
|
+
FLEXLAYOUT__TAB_FLOATING_INNER = "flexlayout__tab_floating_inner",
|
|
85
|
+
FLEXLAYOUT__TAB_TOOLBAR = "flexlayout__tab_toolbar",
|
|
86
|
+
FLEXLAYOUT__TAB_TOOLBAR_BUTTON = "flexlayout__tab_toolbar_button",
|
|
87
|
+
FLEXLAYOUT__TAB_TOOLBAR_ICON = "flexlayout__tab_toolbar_icon",
|
|
88
|
+
FLEXLAYOUT__TAB_TOOLBAR_BUTTON_ = "flexlayout__tab_toolbar_button-",
|
|
89
|
+
FLEXLAYOUT__TAB_TOOLBAR_BUTTON_FLOAT = "flexlayout__tab_toolbar_button-float",
|
|
90
|
+
FLEXLAYOUT__TAB_TOOLBAR_STICKY_BUTTONS_CONTAINER = "flexlayout__tab_toolbar_sticky_buttons_container",
|
|
91
|
+
FLEXLAYOUT__TAB_TOOLBAR_BUTTON_CLOSE = "flexlayout__tab_toolbar_button-close",
|
|
92
|
+
FLEXLAYOUT__POPUP_MENU_CONTAINER = "flexlayout__popup_menu_container",
|
|
93
|
+
FLEXLAYOUT__POPUP_MENU_ITEM = "flexlayout__popup_menu_item",
|
|
94
|
+
FLEXLAYOUT__POPUP_MENU = "flexlayout__popup_menu"
|
|
95
|
+
}
|
package/declarations/index.d.ts
CHANGED
|
@@ -1,22 +1,21 @@
|
|
|
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/
|
|
14
|
-
export * from './model/
|
|
15
|
-
export * from './model/
|
|
16
|
-
export * from './DockLocation';
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './Types';
|
|
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/TabNode';
|
|
14
|
+
export * from './model/TabSetNode';
|
|
15
|
+
export * from './model/LayoutWindow';
|
|
16
|
+
export * from './DockLocation';
|
|
17
|
+
export * from './DropInfo';
|
|
18
|
+
export * from './I18nLabel';
|
|
19
|
+
export * from './Orientation';
|
|
20
|
+
export * from './Rect';
|
|
21
|
+
export * from './Types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare class Action {
|
|
2
|
-
type: string;
|
|
3
|
-
data: Record<string, any>;
|
|
4
|
-
constructor(type: string, data: Record<string, any>);
|
|
5
|
-
}
|
|
1
|
+
export declare class Action {
|
|
2
|
+
type: string;
|
|
3
|
+
data: Record<string, any>;
|
|
4
|
+
constructor(type: string, data: Record<string, any>);
|
|
5
|
+
}
|