flexlayout-react 0.8.4 → 0.8.5
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 +3 -0
- package/declarations/Types.d.ts +2 -1
- package/declarations/view/Layout.d.ts +1 -1
- package/dist/flexlayout.js +6 -6
- package/dist/flexlayout_min.js +1 -1
- package/lib/Types.js +2 -1
- package/lib/Types.js.map +1 -1
- package/lib/view/BorderTabSet.js +11 -5
- package/lib/view/BorderTabSet.js.map +1 -1
- package/lib/view/Layout.js +1 -1
- package/lib/view/PopupMenu.js +11 -5
- package/lib/view/PopupMenu.js.map +1 -1
- package/lib/view/TabOverflowHook.js +104 -21
- package/lib/view/TabOverflowHook.js.map +1 -1
- package/lib/view/TabSet.js +11 -5
- package/lib/view/TabSet.js.map +1 -1
- package/package.json +1 -1
- package/src/Types.ts +3 -2
- package/src/view/BorderTabSet.tsx +38 -24
- package/src/view/Layout.tsx +1 -1
- package/src/view/PopupMenu.tsx +31 -19
- package/src/view/TabOverflowHook.tsx +112 -21
- package/src/view/TabSet.tsx +36 -22
- package/style/_base.scss +42 -17
- package/style/dark.css +727 -701
- package/style/dark.css.map +1 -1
- package/style/dark.scss +4 -0
- package/style/gray.css +710 -684
- package/style/gray.css.map +1 -1
- package/style/gray.scss +6 -2
- package/style/light.css +711 -685
- package/style/light.css.map +1 -1
- package/style/light.scss +5 -1
- package/style/rounded.css +756 -730
- package/style/rounded.css.map +1 -1
- package/style/rounded.scss +6 -1
- package/style/underline.css +731 -705
- package/style/underline.css.map +1 -1
- package/style/underline.scss +4 -0
package/ChangeLog.txt
CHANGED
package/declarations/Types.d.ts
CHANGED
|
@@ -91,7 +91,8 @@ export declare enum CLASSES {
|
|
|
91
91
|
FLEXLAYOUT__TAB_TOOLBAR_BUTTON_CLOSE = "flexlayout__tab_toolbar_button-close",
|
|
92
92
|
FLEXLAYOUT__POPUP_MENU_CONTAINER = "flexlayout__popup_menu_container",
|
|
93
93
|
FLEXLAYOUT__POPUP_MENU_ITEM = "flexlayout__popup_menu_item",
|
|
94
|
+
FLEXLAYOUT__POPUP_MENU_ITEM__SELECTED = "flexlayout__popup_menu_item--selected",
|
|
94
95
|
FLEXLAYOUT__POPUP_MENU = "flexlayout__popup_menu",
|
|
95
96
|
FLEXLAYOUT__MINI_SCROLLBAR = "flexlayout__mini_scrollbar",
|
|
96
|
-
|
|
97
|
+
FLEXLAYOUT__MINI_SCROLLBAR_CONTAINER = "flexlayout__mini_scrollbar_container"
|
|
97
98
|
}
|
|
@@ -96,7 +96,7 @@ export declare class Layout extends React.Component<ILayoutProps> {
|
|
|
96
96
|
/** Get the root div element of the layout */
|
|
97
97
|
getRootDiv(): HTMLDivElement | null;
|
|
98
98
|
}
|
|
99
|
-
export declare const FlexLayoutVersion = "0.8.
|
|
99
|
+
export declare const FlexLayoutVersion = "0.8.5";
|
|
100
100
|
export type DragRectRenderCallback = (content: React.ReactNode | undefined, node?: Node, json?: IJsonTabNode) => React.ReactNode | undefined;
|
|
101
101
|
export type NodeMouseEvent = (node: TabNode | TabSetNode | BorderNode, event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
102
102
|
export type ShowOverflowMenuCallback = (node: TabSetNode | BorderNode, mouseEvent: React.MouseEvent<HTMLElement, MouseEvent>, items: {
|