flexlayout-react 0.8.13 → 0.8.14
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/declarations/view/Layout.d.ts +1 -1
- package/lib/index.js +1 -1
- package/package.json +3 -2
|
@@ -226,7 +226,7 @@ export declare class LayoutInternal extends React.Component<ILayoutInternalProps
|
|
|
226
226
|
onDragLeave: (event: React.DragEvent<HTMLElement>) => void;
|
|
227
227
|
onDrop: (event: React.DragEvent<HTMLElement>) => void;
|
|
228
228
|
}
|
|
229
|
-
export declare const FlexLayoutVersion = "0.8.
|
|
229
|
+
export declare const FlexLayoutVersion = "0.8.14";
|
|
230
230
|
export type DragRectRenderCallback = (content: React.ReactNode | undefined, node?: Node, json?: IJsonTabNode) => React.ReactNode | undefined;
|
|
231
231
|
export type NodeMouseEvent = (node: TabNode | TabSetNode | BorderNode, event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
232
232
|
export type ShowOverflowMenuCallback = (node: TabSetNode | BorderNode, mouseEvent: React.MouseEvent<HTMLElement, MouseEvent>, items: {
|
package/lib/index.js
CHANGED
|
@@ -6348,7 +6348,7 @@ const _LayoutInternal = class _LayoutInternal extends React.Component {
|
|
|
6348
6348
|
};
|
|
6349
6349
|
__publicField(_LayoutInternal, "dragState");
|
|
6350
6350
|
let LayoutInternal = _LayoutInternal;
|
|
6351
|
-
const FlexLayoutVersion = "0.8.
|
|
6351
|
+
const FlexLayoutVersion = "0.8.14";
|
|
6352
6352
|
const defaultIcons = {
|
|
6353
6353
|
close: /* @__PURE__ */ jsx(CloseIcon, {}),
|
|
6354
6354
|
closeTabset: /* @__PURE__ */ jsx(CloseIcon, {}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flexlayout-react",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.14",
|
|
4
4
|
"description": "A multi-tab docking layout manager",
|
|
5
5
|
"author": "Caplin Systems Ltd",
|
|
6
6
|
"repository": "https://github.com/caplin/FlexLayout",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"types": "./declarations/index.d.ts",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
|
-
"import": "./lib/index.js"
|
|
14
|
+
"import": "./lib/index.js",
|
|
15
|
+
"types": "./declarations/index.d.ts"
|
|
15
16
|
},
|
|
16
17
|
"./style/*": "./style/*"
|
|
17
18
|
},
|