diff --git a/designer/client/cypress/e2e/__image_snapshots__/electron/Linux/Fragment should display dead-ended fragment correct #0.png b/designer/client/cypress/e2e/__image_snapshots__/electron/Linux/Fragment should display dead-ended fragment correct #0.png index dc885402122..cc171721195 100644 Binary files a/designer/client/cypress/e2e/__image_snapshots__/electron/Linux/Fragment should display dead-ended fragment correct #0.png and b/designer/client/cypress/e2e/__image_snapshots__/electron/Linux/Fragment should display dead-ended fragment correct #0.png differ diff --git a/designer/client/package-lock.json b/designer/client/package-lock.json index 9c0213eeb3c..633f240ed85 100644 --- a/designer/client/package-lock.json +++ b/designer/client/package-lock.json @@ -22,7 +22,7 @@ "@mui/lab": "5.0.0-alpha.165", "@mui/material": "5.15.7", "@touk/federated-component": "1.0.0", - "@touk/window-manager": "1.9.0-beta.8", + "@touk/window-manager": "1.9.0", "ace-builds": "1.34.2", "axios": "1.7.4", "d3-transition": "3.0.1", @@ -6087,9 +6087,9 @@ } }, "node_modules/@touk/window-manager": { - "version": "1.9.0-beta.8", - "resolved": "https://registry.npmjs.org/@touk/window-manager/-/window-manager-1.9.0-beta.8.tgz", - "integrity": "sha512-ztpDp34ZLYiXRjab3bMZw+Wn3f7T6Sxq5yUC+EsnJoxwFnPUpFlnJpPFu+cky9M6N9gX0RIcX5ETLKCIR7V+RA==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@touk/window-manager/-/window-manager-1.9.0.tgz", + "integrity": "sha512-CDBgbFL7quxO0Y50+k4efxgOISNOrvLC3WARXC+NTh8QGCrE2dUJlmA7/0SBpUTd2Ykq/ay48JTloBaOfGeZNg==", "hasInstallScript": true, "dependencies": { "@emotion/css": "11.11.2", @@ -32085,9 +32085,9 @@ } }, "@touk/window-manager": { - "version": "1.9.0-beta.8", - "resolved": "https://registry.npmjs.org/@touk/window-manager/-/window-manager-1.9.0-beta.8.tgz", - "integrity": "sha512-ztpDp34ZLYiXRjab3bMZw+Wn3f7T6Sxq5yUC+EsnJoxwFnPUpFlnJpPFu+cky9M6N9gX0RIcX5ETLKCIR7V+RA==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@touk/window-manager/-/window-manager-1.9.0.tgz", + "integrity": "sha512-CDBgbFL7quxO0Y50+k4efxgOISNOrvLC3WARXC+NTh8QGCrE2dUJlmA7/0SBpUTd2Ykq/ay48JTloBaOfGeZNg==", "requires": { "@emotion/css": "11.11.2", "@emotion/react": "11.11.4", diff --git a/designer/client/package.json b/designer/client/package.json index 429bff51739..b1bd96dd684 100644 --- a/designer/client/package.json +++ b/designer/client/package.json @@ -15,7 +15,7 @@ "@mui/lab": "5.0.0-alpha.165", "@mui/material": "5.15.7", "@touk/federated-component": "1.0.0", - "@touk/window-manager": "1.9.0-beta.8", + "@touk/window-manager": "1.9.0", "ace-builds": "1.34.2", "axios": "1.7.4", "d3-transition": "3.0.1", diff --git a/designer/client/src/bootstrap.tsx b/designer/client/src/bootstrap.tsx index 5790d3ce549..5983e55cf68 100644 --- a/designer/client/src/bootstrap.tsx +++ b/designer/client/src/bootstrap.tsx @@ -1,17 +1,17 @@ +import { css } from "@emotion/css"; import React from "react"; +import { createRoot } from "react-dom/client"; import { createBrowserRouter, RouterProvider } from "react-router-dom"; +import { ErrorBoundary } from "./components/common/error-boundary"; +import { GlideGridPortal } from "./components/graph/node-modal/editors/expression/Table/glideGridPortal"; +import { BASE_PATH } from "./config"; +import { BuildInfoProvider } from "./containers/BuildInfoProvider"; import NussknackerInitializer from "./containers/NussknackerInitializer"; +import rootRoutes from "./containers/RootRoutes"; import { SettingsProvider } from "./containers/SettingsInitializer"; import "./i18n"; -import { StoreProvider } from "./store/provider"; -import rootRoutes from "./containers/RootRoutes"; -import { BASE_PATH } from "./config"; -import { css } from "@emotion/css"; import { NuThemeProvider } from "./containers/theme/nuThemeProvider"; -import { GlideGridPortal } from "./components/graph/node-modal/editors/expression/Table/glideGridPortal"; -import { createRoot } from "react-dom/client"; -import { BuildInfoProvider } from "./containers/BuildInfoProvider"; -import { ErrorBoundary } from "./components/common/error-boundary"; +import { StoreProvider } from "./store/provider"; const rootContainer = document.createElement(`div`); rootContainer.id = "root"; @@ -25,25 +25,23 @@ const router = createBrowserRouter(rootRoutes, { basename: BASE_PATH.replace(/\/ const root = createRoot(rootContainer); -const Root = () => { - return ( - <> - - - - - - - - - - - - - - - - ); -}; +const Root = () => ( + <> + + + + + + + + + + + + + + + +); root.render();