Skip to content

Commit 6f8b1f9

Browse files
committed
v0.8.12
1 parent 1574635 commit 6f8b1f9

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

.npmignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ fonts/
1010
node_modules/
1111
spec/
1212
typedoc/
13+
tests/
14+
tests_playwright/
15+
playwright.config.ts
16+
playwright-report/
17+
screenshots/
18+
test-results/
19+
tests-playwright/
20+
eslint.config.mjs
21+
vitest.config.ts
1322
test/
1423
package-lock.json
1524
tsconfig.json

ChangeLog.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
0.8.11
1+
0.8.12
22
Updated dependencies
33
Fix for initial tab flash
44
Disabled popout of MUI tabs in demo (because Emotion generated styles (in production) cannot be copied to popout window)
55
Converted Cypress tests to Playwright
66
Updated demo app to use React hooks
77

8+
0.8.11 - deprecated - published with additional files by mistake
9+
810
0.8.10
911
Fix for #481 Numpad Enter doesn't confirm rename
1012
Work around <StrictMode> issue in React 19 (https://github.com/facebook/react/issues/29585) causing

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flexlayout-react",
3-
"version": "0.8.11",
3+
"version": "0.8.12",
44
"description": "A multi-tab docking layout manager",
55
"main": "lib/index.js",
66
"types": "./declarations/index.d.ts",

src/view/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ export class LayoutInternal extends React.Component<ILayoutInternalProps, ILayou
12321232
// *************************** End Drag Drop *************************************
12331233
}
12341234

1235-
export const FlexLayoutVersion = "0.8.11";
1235+
export const FlexLayoutVersion = "0.8.12";
12361236

12371237
export type DragRectRenderCallback = (
12381238
content: React.ReactNode | undefined,

0 commit comments

Comments
 (0)