diff --git a/apps/console/package.json b/apps/console/package.json index 5575397aa55..3bc1653a215 100644 --- a/apps/console/package.json +++ b/apps/console/package.json @@ -67,7 +67,6 @@ "country-language": "^0.1.7", "deep-equal": "^2.2.2", "file-saver": "^2.0.5", - "history": "^4.9.0", "html-react-parser": "^2.0.0", "i18next": "^21.9.1", "i18next-browser-languagedetector": "^6.1.5", @@ -86,7 +85,6 @@ "react-joyride": "^2.3.0", "react-notification-system": "^0.4.0", "react-redux": "^7.2.9", - "react-router-dom": "^4.3.1", "reactflow": "11.7.2", "recharts": "^2.6.2", "reduce-reducers": "^1.0.4", @@ -114,12 +112,8 @@ "@types/lodash-es": "^4.17.4", "@types/node": "^13.9.2", "@types/node-forge": "^0.9.3", - "@types/react": "^18.0.18", - "@types/react-dom": "^18.0.6", "@types/react-notification-system": "0.2.39", "@types/react-redux": "^7.1.25", - "@types/react-router": "^5.1.18", - "@types/react-router-dom": "^5.1.3", "@types/reactour": "^1.18.1", "@types/redux-mock-store": "^1.0.2", "@types/testing-library__jest-dom": "^5.14.3", diff --git a/apps/console/src/app.tsx b/apps/console/src/app.tsx index 43c1315d65d..95ede02de18 100755 --- a/apps/console/src/app.tsx +++ b/apps/console/src/app.tsx @@ -20,10 +20,8 @@ import { BasicUserInfo, DecodedIDTokenPayload, useAuthContext } from "@asgardeo/ import { AccessControlProvider, AllFeatureInterface, FeatureGateInterface } from "@wso2is/access-control"; import useAuthorization from "@wso2is/admin.authorization.v1/hooks/use-authorization"; import { EventPublisher, PreLoader } from "@wso2is/admin.core.v1"; -import { ProtectedRoute } from "@wso2is/admin.core.v1/components"; import { Config, DocumentationLinks, getBaseRoutes } from "@wso2is/admin.core.v1/configs"; import { AppConstants } from "@wso2is/admin.core.v1/constants"; -import { history } from "@wso2is/admin.core.v1/helpers"; import useResourceEndpoints from "@wso2is/admin.core.v1/hooks/use-resource-endpoints"; import { ConfigReducerStateInterface, @@ -59,8 +57,7 @@ import React, { FunctionComponent, ReactElement, Suspense, useEffect, useState } import { Helmet } from "react-helmet"; import { Trans } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; -import { StaticContext } from "react-router"; -import { Redirect, Route, RouteComponentProps, Router, Switch } from "react-router-dom"; +import { Navigate, NavigateFunction, Route, Routes, useNavigate } from "react-router-dom"; import { Dispatch } from "redux"; import "moment/locale/si"; import "moment/locale/fr"; @@ -92,6 +89,7 @@ export const App: FunctionComponent> = (): ReactElement => const theme: string = useSelector((state: AppState) => state?.config?.ui?.theme?.name); const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); const organizationType: string = useSelector((state: AppState) => state?.organization?.organizationType); + const isAuthenticated: boolean = useSelector((state: AppState) => state.auth.isAuthenticated); const [ baseRoutes, setBaseRoutes ] = useState(getBaseRoutes()); const [ sessionTimedOut, setSessionTimedOut ] = useState(false); @@ -103,6 +101,8 @@ export const App: FunctionComponent> = (): ReactElement => error: featureGateAPIException } = useGetAllFeatures(); + const navigate: NavigateFunction = useNavigate(); + /** * Set the deployment configs in redux state. */ @@ -184,13 +184,13 @@ export const App: FunctionComponent> = (): ReactElement => if(has(idToken, "associated_tenants") || isPrivilegedUser) { // If there is an association, the user is likely unauthorized by other criteria. - history.push({ + navigate({ pathname: AppConstants.getPaths().get("UNAUTHORIZED"), search: "?error=" + AppConstants.LOGIN_ERRORS.get("ACCESS_DENIED") }); } else { // If there is no association, the user should be redirected to creation flow. - history.push({ + navigate({ pathname: AppConstants.getPaths().get("CREATE_TENANT") }); } @@ -201,7 +201,7 @@ export const App: FunctionComponent> = (): ReactElement => // Tracked here https://github.com/wso2/product-is/issues/11650. }); } else { - history.push({ + navigate({ pathname: AppConstants.getPaths().get("UNAUTHORIZED"), search: "?error=" + AppConstants.LOGIN_ERRORS.get("ACCESS_DENIED") }); @@ -258,7 +258,7 @@ export const App: FunctionComponent> = (): ReactElement => * @param url - Current URL. */ const handleSessionTimeoutAbort = (url: URL): void => { - history.push({ + navigate({ pathname: url.pathname, search: url.search }); @@ -269,7 +269,7 @@ export const App: FunctionComponent> = (): ReactElement => */ const handleSessionLogout = (): void => { AuthenticateUtils.removeAuthenticationCallbackUrl(CommonAppConstants.CONSOLE_APP); - history.push(AppConstants.getAppLogoutPath()); + navigate(AppConstants.getAppLogoutPath()); }; const sessionStorageDisabled = () => { @@ -277,11 +277,11 @@ export const App: FunctionComponent> = (): ReactElement => const storage: Storage = sessionStorage; if (!storage && location.pathname !== AppConstants.getPaths().get("STORING_DATA_DISABLED")) { - history.push(AppConstants.getPaths().get("STORING_DATA_DISABLED")); + navigate(AppConstants.getPaths().get("STORING_DATA_DISABLED")); } } catch { if (true && location.pathname !== AppConstants.getPaths().get("STORING_DATA_DISABLED")) { - history.push(AppConstants.getPaths().get("STORING_DATA_DISABLED")); + navigate(AppConstants.getPaths().get("STORING_DATA_DISABLED")); } } }; @@ -297,7 +297,7 @@ export const App: FunctionComponent> = (): ReactElement => if (response === false) { AuthenticateUtils.removeAuthenticationCallbackUrl(CommonAppConstants.CONSOLE_APP); - history.push(AppConstants.getAppLogoutPath()); + navigate(AppConstants.getAppLogoutPath()); } else { window.history.replaceState(null, null, window.location.pathname); } @@ -305,7 +305,7 @@ export const App: FunctionComponent> = (): ReactElement => .catch(() => { AuthenticateUtils.removeAuthenticationCallbackUrl(CommonAppConstants.CONSOLE_APP); - history.push(AppConstants.getAppLogoutPath()); + navigate(AppConstants.getAppLogoutPath()); }); }; @@ -314,209 +314,206 @@ export const App: FunctionComponent> = (): ReactElement => } return ( - -
- links={ DocumentationLinks }> - }> - - - + links={ DocumentationLinks }> + }> + + + + } + > When you click on the Go back button, we will try to recover the session if it exists. If you don't have an active session, you will be redirected to the login page - - ), - headingI18nKey: "console:common.modals.sessionTimeoutModal" + + + ), + headingI18nKey: "console:common.modals.sessionTimeoutModal" + ".heading", - loginAgainButtonText: ( - + }> Login again - - ), - primaryButtonText: ( - + ), + primaryButtonText: ( + + }> Go back - - ), - secondaryButtonText: ( - + ), + secondaryButtonText: ( + + }> Logout - - ), - sessionTimedOutDescription: ( - + ), + sessionTimedOutDescription: ( + + }> Please log in again to continue from where you left off. - - ), - sessionTimedOutHeadingI18nKey: "console:common.modals" + + + ), + sessionTimedOutHeadingI18nKey: "console:common.modals" + ".sessionTimeoutModal.sessionTimedOutHeading" - } } - type={ SessionTimeoutModalTypes.DEFAULT } - > - <> - - { appTitle } - { - (window?.themeHash && window?.publicPath && theme) - ? ( - - ) - : null - } - - + } } + type={ SessionTimeoutModalTypes.DEFAULT } + > + <> + + { appTitle } + { + (window?.themeHash && window?.publicPath && theme) + ? ( + + ) + : null + } + + Your session has expired - ) - } - description={ - ( + ) + } + description={ + ( Please try signing in again. - ) - } - primaryActionText={ - ( + ) + } + primaryActionText={ + ( Sign In - ) - } - primaryAction={ - signOut - } - /> - + ) + } + primaryAction={ + signOut + } + /> + Something went wrong - ) - } - description={ - ( + ) + } + description={ + ( An error occurred when serving the requested application. Please try reloading the app. - ) - } - primaryActionText={ - ( + ) + } + primaryActionText={ + ( Reload the App - ) + ) + } + /> + + { + baseRoutes.map((route: RouteInterface, index: number) => { + return ( + route.protected ? + ( + + : () } + path={ route.path } + key={ index } + /> + ) + : + ( + + } + key={ index } + /> + ) + ); + }) + } + ) } /> - - - { - baseRoutes.map((route: RouteInterface, index: number) => { - return ( - route.protected ? - ( - - ) - : - ( - ) => { - return (); - } - } - key={ index } - exact={ route.exact } - /> - ) - ); - }) - } - - - - - - - -
-
+ + + + + + + + ); }; diff --git a/apps/myaccount/src/app.tsx b/apps/myaccount/src/app.tsx index 0e675d2a087..4d50f464933 100644 --- a/apps/myaccount/src/app.tsx +++ b/apps/myaccount/src/app.tsx @@ -40,7 +40,6 @@ import { Navigate, Route, Routes, useNavigate } from "react-router-dom"; import { PreLoader } from "./components"; import { getBaseRoutes } from "./configs"; import { AppConstants } from "./constants"; -import { history } from "./helpers"; import { ConfigReducerStateInterface, FeatureConfigInterface diff --git a/features/admin.core.v1/components/header.tsx b/features/admin.core.v1/components/header.tsx index 556ad4fb4b4..267debb92ff 100644 --- a/features/admin.core.v1/components/header.tsx +++ b/features/admin.core.v1/components/header.tsx @@ -490,9 +490,6 @@ export const Header: FunctionComponent = ( ? ( { eventPublisher.publish( "console-click-visit-my-account" diff --git a/features/admin.core.v1/components/index.ts b/features/admin.core.v1/components/index.ts index 910d9a7e1b3..3bb22edfd06 100644 --- a/features/admin.core.v1/components/index.ts +++ b/features/admin.core.v1/components/index.ts @@ -20,7 +20,6 @@ export * from "./advanced-search-with-basic-filters"; export * from "./authenticator-accordion"; export * from "./footer"; export * from "./header"; -export * from "./protected-route"; export * from "./upload-certificate"; export * from "./groups"; export * from "./roles"; diff --git a/features/admin.core.v1/components/protected-route.tsx b/features/admin.core.v1/components/protected-route.tsx deleted file mode 100644 index 60e165254e8..00000000000 --- a/features/admin.core.v1/components/protected-route.tsx +++ /dev/null @@ -1,70 +0,0 @@ -/** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { AppConstants as AppConstantsCore } from "@wso2is/core/constants"; -import { AuthenticateUtils } from "@wso2is/core/utils"; -import React, { FunctionComponent, ReactElement } from "react"; -import { useSelector } from "react-redux"; -import { Redirect, Route, RouteComponentProps, RouteProps } from "react-router-dom"; -import { AppConstants } from "../constants"; -import { AppState } from "../store"; - -/** - * Protected route component. - * - * @param props - Props injected to the component. - * @returns ProtectedRoute component. - */ -export const ProtectedRoute: FunctionComponent = (props: RouteProps): ReactElement => { - - const { - component: Component, - ...rest - } = props; - - const isAuthenticated: boolean = useSelector((state: AppState) => state.auth.isAuthenticated); - - /** - * Update existing location path in the state to recall upon page refresh or authentication callback. - * The login path and the login error path have been skipped. - */ - if ((window.location.pathname === AppConstants.getAppLoginPath()) - || (window.location.pathname === AppConstants.getPaths().get("UNAUTHORIZED")) - || (window.location.pathname === AppConstants.getPaths().get("PAGE_NOT_FOUND") - || (window.location.pathname === AppConstants.getPaths().get("STORING_DATA_DISABLED")))) { - AuthenticateUtils.updateAuthenticationCallbackUrl(AppConstantsCore.CONSOLE_APP, AppConstants.getAppHomePath()); - } else { - const authCallbackUrl: string = window.location.pathname + window.location.hash; - - AuthenticateUtils.updateAuthenticationCallbackUrl(AppConstantsCore.CONSOLE_APP, authCallbackUrl); - } - - return ( - ) => - isAuthenticated - ? Component - ? - : null - : - } - { ...rest } - /> - ); -}; - diff --git a/features/admin.core.v1/configs/routes.tsx b/features/admin.core.v1/configs/routes.tsx index 5c9a08125ed..5f8ad9941a8 100644 --- a/features/admin.core.v1/configs/routes.tsx +++ b/features/admin.core.v1/configs/routes.tsx @@ -1714,7 +1714,7 @@ export const getBaseRoutes = (): RouteInterface[] => { icon: null, id: "app", name: "App", - path: AppConstants.getPaths().get("ROOT"), + path: `${AppConstants.getPaths().get("ROOT")}*`, protected: false, showOnSidePanel: false } diff --git a/features/admin.layouts.v1/app.tsx b/features/admin.layouts.v1/app.tsx index b2d01c9a810..eed360a6d29 100644 --- a/features/admin.layouts.v1/app.tsx +++ b/features/admin.layouts.v1/app.tsx @@ -17,7 +17,6 @@ */ import { AppState, AppUtils, PreLoader } from "@wso2is/admin.core.v1"; -import { ProtectedRoute } from "@wso2is/admin.core.v1/components"; import { getAppLayoutRoutes, getEmptyPlaceholderIllustrations } from "@wso2is/admin.core.v1/configs"; import { AppConstants } from "@wso2is/admin.core.v1/constants"; import { store } from "@wso2is/admin.core.v1/store"; @@ -32,7 +31,7 @@ import { import React, { FunctionComponent, ReactElement, Suspense, useEffect, useState } from "react"; import { Trans, useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; -import { Redirect, Route, RouteComponentProps, Switch } from "react-router-dom"; +import { Navigate, Route, Routes } from "react-router-dom"; /** * Implementation of the Main app layout skeleton. @@ -48,6 +47,7 @@ export const AppLayout: FunctionComponent> = (): ReactEl const isCookieConsentBannerEnabled: boolean = useSelector((state: AppState) => { return state.config.ui.isCookieConsentBannerEnabled; }); + const isAuthenticated: boolean = useSelector((state: AppState) => state.auth.isAuthenticated); /** * Listen for base name changes and updated the layout routes. @@ -78,35 +78,35 @@ export const AppLayout: FunctionComponent> = (): ReactEl ) } > }> - + { appRoutes.map((route: RouteInterface, index: number) => ( route.redirectTo - ? + ? } key={ index }/> : route.protected ? ( - : null + } path={ route.path } key={ index } - exact={ route.exact } /> ) : ( + element={ route.component - ? + ? : null } key={ index } - exact={ route.exact } /> ) )) } - + { isCookieConsentBannerEnabled && ( diff --git a/features/admin.layouts.v1/auth.tsx b/features/admin.layouts.v1/auth.tsx index e4584039eee..a728087460b 100644 --- a/features/admin.layouts.v1/auth.tsx +++ b/features/admin.layouts.v1/auth.tsx @@ -16,15 +16,14 @@ * under the License. */ -import { PreLoader } from "@wso2is/admin.core.v1"; -import { ProtectedRoute } from "@wso2is/admin.core.v1/components"; +import { AppState, PreLoader } from "@wso2is/admin.core.v1"; import { getAuthLayoutRoutes } from "@wso2is/admin.core.v1/configs"; import { AppConstants } from "@wso2is/admin.core.v1/constants"; import { RouteInterface } from "@wso2is/core/models"; import { AuthLayout as AuthLayoutSkeleton } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, Suspense, useEffect, useState } from "react"; -import { StaticContext } from "react-router"; -import { Redirect, Route, RouteComponentProps, Switch } from "react-router-dom"; +import { useSelector } from "react-redux"; +import { Navigate, Route, Routes } from "react-router-dom"; /** * Auth layout props interface. @@ -52,6 +51,8 @@ export const AuthLayout: FunctionComponent = ( const [ authLayoutRoutes, setAuthLayoutRoutes ] = useState(getAuthLayoutRoutes()); + const isAuthenticated: boolean = useSelector((state: AppState) => state.auth.isAuthenticated); + /** * Listen for base name changes and updated the layout routes. */ @@ -62,37 +63,33 @@ export const AuthLayout: FunctionComponent = ( return ( }> - + { authLayoutRoutes.map((route: RouteInterface, index: number) => ( route.redirectTo - ? + ? } key={ index } /> : route.protected ? ( - ) : ( ) => + element={ route.component - ? + ? : null } key={ index } - exact={ route.exact } /> ) )) } - + ); diff --git a/features/admin.layouts.v1/default.tsx b/features/admin.layouts.v1/default.tsx index 914fc53cc1a..6685dad8171 100644 --- a/features/admin.layouts.v1/default.tsx +++ b/features/admin.layouts.v1/default.tsx @@ -21,7 +21,6 @@ import { AppState, Footer, Header, - ProtectedRoute, UIConstants, getDefaultLayoutRoutes } from "@wso2is/admin.core.v1"; @@ -43,8 +42,7 @@ import React, { } from "react"; import { System } from "react-notification-system"; import { useDispatch, useSelector } from "react-redux"; -import { StaticContext } from "react-router"; -import { Redirect, Route, RouteComponentProps, Switch } from "react-router-dom"; +import { Navigate, Route, Routes } from "react-router-dom"; import { Dispatch } from "redux"; /** @@ -80,6 +78,7 @@ export const DefaultLayout: FunctionComponent = ( const alert: AlertInterface = useSelector((state: AppState) => state.global.alert); const alertSystem: System = useSelector((state: AppState) => state.global.alertSystem); const isAJAXTopLoaderVisible: boolean = useSelector((state: AppState) => state.global.isAJAXTopLoaderVisible); + const isAuthenticated: boolean = useSelector((state: AppState) => state.auth.isAuthenticated); const [ defaultLayoutRoutes, setDefaultLayoutRoutes ] = useState(getDefaultLayoutRoutes()); @@ -128,38 +127,32 @@ export const DefaultLayout: FunctionComponent = ( ) } > }> - + { defaultLayoutRoutes.map((route: RouteInterface, index: number) => ( route.redirectTo - ? + ? } key={ index } /> : route.protected ? ( - : null } path={ route.path } key={ index } - exact={ route.exact } /> ) : ( - ) => route.component - ? - : null + element={ route.component + ? + : null } key={ index } - exact={ route.exact } /> ) )) } - + ); diff --git a/features/admin.layouts.v1/error.tsx b/features/admin.layouts.v1/error.tsx index bb80ac0ef44..93bcfb7470c 100644 --- a/features/admin.layouts.v1/error.tsx +++ b/features/admin.layouts.v1/error.tsx @@ -16,14 +16,14 @@ * under the License. */ -import { ProtectedRoute } from "@wso2is/admin.core.v1/components"; +import { AppState } from "@wso2is/admin.core.v1"; import { getErrorLayoutRoutes } from "@wso2is/admin.core.v1/configs"; import { AppConstants } from "@wso2is/admin.core.v1/constants"; import { RouteInterface } from "@wso2is/core/models"; import { ContentLoader, ErrorLayout as ErrorLayoutSkeleton } from "@wso2is/react-components"; import React, { FunctionComponent, PropsWithChildren, ReactElement, Suspense, useEffect, useState } from "react"; -import { StaticContext } from "react-router"; -import { Redirect, Route, RouteComponentProps, Switch } from "react-router-dom"; +import { useSelector } from "react-redux"; +import { Navigate, Route, Routes } from "react-router-dom"; /** * Error layout Prop types. @@ -49,6 +49,8 @@ export const ErrorLayout: FunctionComponent state.auth.isAuthenticated); + const [ errorLayoutRoutes, setErrorLayoutRoutes ] = useState(getErrorLayoutRoutes()); /** @@ -61,15 +63,19 @@ export const ErrorLayout: FunctionComponent }> - + { errorLayoutRoutes.map((route: RouteInterface, index: number) => ( route.redirectTo - ? + ? } key={ index } /> : route.protected ? ( - + : + } path={ route.path } key={ index } /> @@ -77,17 +83,15 @@ export const ErrorLayout: FunctionComponent) => - () + element={ + } key={ index } /> ) )) } - + ); diff --git a/features/admin.layouts.v1/package.json b/features/admin.layouts.v1/package.json index 82071202c57..1d027999388 100644 --- a/features/admin.layouts.v1/package.json +++ b/features/admin.layouts.v1/package.json @@ -52,6 +52,8 @@ "react-joyride": "^2.3.0", "react-notification-system": "^0.4.0", "react-redux": "^7.2.9", + "react-router": "^6.23.1", + "react-router-dom": "^6.23.1", "reactflow": "^11.7.2", "recharts": "^2.6.2", "reduce-reducers": "^1.0.4", @@ -85,8 +87,11 @@ "@types/lodash-es": "^4.17.4", "@types/node": "^13.9.2", "@types/node-forge": "^0.9.3", + "@types/react": "18.2.22", + "@types/react-dom": "18.2.7", "@types/react-notification-system": "0.2.39", "@types/react-redux": "^7.1.25", + "@types/react-router-dom": "5.3.3", "@types/reactour": "^1.18.1", "@types/redux-mock-store": "^1.0.2", "@types/testing-library__jest-dom": "^5.14.3", diff --git a/features/admin.organizations.v1/components/organization-switch/organization-switch-breadcrumb.tsx b/features/admin.organizations.v1/components/organization-switch/organization-switch-breadcrumb.tsx index 7e3a4a34146..9b715094b7e 100644 --- a/features/admin.organizations.v1/components/organization-switch/organization-switch-breadcrumb.tsx +++ b/features/admin.organizations.v1/components/organization-switch/organization-switch-breadcrumb.tsx @@ -37,6 +37,7 @@ import React, { } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; +import { useLocation } from "react-router-dom"; import { Dispatch } from "redux"; import { Breadcrumb, Dropdown, Icon } from "semantic-ui-react"; import OrganizationSwitchDropdown from "./organization-switch-dropdown"; @@ -107,6 +108,8 @@ export const OrganizationSwitchBreadcrumb: FunctionComponent = useLocation(); + const isSubOrg: boolean = window[ "AppUtils" ].getConfig().organizationName; const isShowSwitcher: boolean = organizationConfigs?.showOrganizationDropdown || isSubOrg; @@ -114,7 +117,7 @@ export const OrganizationSwitchBreadcrumb: FunctionComponent(false); const previousPushedRouteKey: string = "previousPushedRoute"; - const currentPath: string = history.location.pathname; + const currentPath: string = location.pathname; const breadcrumbList: BreadcrumbList = useMemo(() => { if (!breadcrumbListData || breadcrumbListData.length < 1) { @@ -135,7 +138,7 @@ export const OrganizationSwitchBreadcrumb: FunctionComponent = ( - props: RouteComponentProps -): ReactElement => { - const { location } = props; +export const AppView: FunctionComponent = (): ReactElement => { + const location = useLocation() const dispatch: ThunkDispatch = useDispatch(); const { t } = useTranslation(); @@ -100,6 +97,7 @@ export const AppView: FunctionComponent = ( const isMarketingConsentBannerEnabled: boolean = useSelector((state: AppState) => { return state?.config?.ui?.isMarketingConsentBannerEnabled; }); + const isAuthenticated: boolean = useSelector((state: AppState) => state.auth.isAuthenticated); const [ announcement, setAnnouncement ] = useState< AnnouncementBannerInterface @@ -226,24 +224,22 @@ export const AppView: FunctionComponent = ( */ const renderRoute = (route: RouteInterface, key: number): ReactNode => route.redirectTo ? ( - + } key={ key } /> ) : route.protected ? ( - : null } path={ route.path } key={ key } - exact={ route.exact } /> ) : ( + element={ route.component ? ( - + ) : null } key={ key } - exact={ route.exact } /> ); @@ -456,7 +452,7 @@ export const AppView: FunctionComponent = ( isMarketingConsentBannerEnabled && applicationConfig.marketingConsent.getBannerComponent() } - { resolveRoutes() as ReactNode[] } + { resolveRoutes() as ReactNode[] } diff --git a/features/admin.views.v1/full-screen-view.tsx b/features/admin.views.v1/full-screen-view.tsx index d90331cbe87..1941f618ce1 100644 --- a/features/admin.views.v1/full-screen-view.tsx +++ b/features/admin.views.v1/full-screen-view.tsx @@ -21,7 +21,6 @@ import { AppState, AppUtils, FeatureConfigInterface, - ProtectedRoute, RouteUtils, getEmptyPlaceholderIllustrations, getFullScreenViewRoutes @@ -46,7 +45,7 @@ import React, { } from "react"; import { useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; -import { Redirect, Route, RouteComponentProps, Switch } from "react-router-dom"; +import { Navigate, Route, Routes, useLocation } from "react-router-dom"; /** * Full Screen View Prop types. @@ -64,18 +63,15 @@ interface FullScreenViewPropsInterface { * @param props - Props injected to the component. * @returns Full screen view layout component. */ -export const FullScreenView: FunctionComponent = ( - props: FullScreenViewPropsInterface & RouteComponentProps -): ReactElement => { +export const FullScreenView: FunctionComponent = (): ReactElement => { - const { - location - } = props; + const location = useLocation(); const { t } = useTranslation(); const featureConfig: FeatureConfigInterface = useSelector((state: AppState) => state.config.ui.features); const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); + const isAuthenticated: boolean = useSelector((state: AppState) => state.auth.isAuthenticated); const [ filteredRoutes, setFilteredRoutes ] = useState(getFullScreenViewRoutes()); @@ -109,26 +105,24 @@ export const FullScreenView: FunctionComponent = ( */ const renderRoute = (route, key): ReactNode => ( route.redirectTo - ? + ? } /> : route.protected ? ( - ) : ( + element={ route.component - ? + ? : null } key={ key } - exact={ route.exact } /> ) ); @@ -182,9 +176,9 @@ export const FullScreenView: FunctionComponent = ( ) } > }> - + { resolveRoutes() as ReactNode[] } - + diff --git a/features/admin.views.v1/package.json b/features/admin.views.v1/package.json index 10606a3fda6..b6c29a01bfa 100644 --- a/features/admin.views.v1/package.json +++ b/features/admin.views.v1/package.json @@ -38,7 +38,6 @@ "deep-equal": "^2.2.2", "file-saver": "^2.0.5", "framer-motion": "^11.1.9", - "html-react-parser": "^2.0.0", "i18next": "^21.9.1", "i18next-browser-languagedetector": "^6.1.5", @@ -55,6 +54,8 @@ "react-joyride": "^2.3.0", "react-notification-system": "^0.4.0", "react-redux": "^7.2.9", + "react-router": "^6.23.1", + "react-router-dom": "^6.23.1", "reactflow": "^11.7.2", "recharts": "^2.6.2", "reduce-reducers": "^1.0.4", @@ -88,8 +89,11 @@ "@types/lodash-es": "^4.17.4", "@types/node": "^13.9.2", "@types/node-forge": "^0.9.3", + "@types/react": "18.2.22", + "@types/react-dom": "18.2.7", "@types/react-notification-system": "0.2.39", "@types/react-redux": "^7.1.25", + "@types/react-router-dom": "5.3.3", "@types/reactour": "^1.18.1", "@types/redux-mock-store": "^1.0.2", "@types/testing-library__jest-dom": "^5.14.3", diff --git a/features/package.json b/features/package.json index 41b15e10de6..25ea2fd9731 100644 --- a/features/package.json +++ b/features/package.json @@ -62,6 +62,8 @@ "react-joyride": "^2.3.0", "react-notification-system": "^0.4.0", "react-redux": "^7.2.9", + "react-router": "^6.23.1", + "react-router-dom": "^6.23.1", "reactflow": "11.7.2", "recharts": "^2.6.2", "reduce-reducers": "^1.0.4", @@ -95,8 +97,11 @@ "@types/lodash-es": "^4.17.4", "@types/node": "^13.9.2", "@types/node-forge": "^0.9.3", + "@types/react": "18.2.22", + "@types/react-dom": "18.2.7", "@types/react-notification-system": "0.2.39", "@types/react-redux": "^7.1.25", + "@types/react-router-dom": "5.3.3", "@types/reactour": "^1.18.1", "@types/redux-mock-store": "^1.0.2", "@types/testing-library__jest-dom": "^5.14.3", diff --git a/modules/react-components/src/components/route/protected-route.tsx b/modules/react-components/src/components/route/protected-route.tsx index 1e1f457202d..3c56d1c7ede 100644 --- a/modules/react-components/src/components/route/protected-route.tsx +++ b/modules/react-components/src/components/route/protected-route.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -18,7 +18,7 @@ import { IdentifiableComponentInterface, TestableComponentInterface } from "@wso2is/core/models"; import React, { FunctionComponent, ReactElement } from "react"; -import { Redirect, Route } from "react-router-dom"; +import { Navigate, Route } from "react-router-dom"; /** * Proptypes for the protected route component. @@ -82,16 +82,19 @@ export const ProtectedRoute: FunctionComponent = ( onAuthCallbackUrlUpdate(currentPath); } + const ChildComponentWithProps = () => { + return isAuthorized + ? + : ; + }; + return ( - isAuthorized ? - : - - } data-componentid={ componentId } data-testid={ testId } { ...rest } - /> + > + + ); }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6b3516c8e88..cf84cf0ee51 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,8 +5,6 @@ settings: excludeLinksFromLockfile: false overrides: - '@mui/material': 5.13.0 - '@types/react': 18.0.18 webpack: 5.84.1 importers: @@ -40,9 +38,6 @@ importers: final-form: specifier: ^4.20.2 version: 4.20.10 - history: - specifier: ^4.9.0 - version: 4.10.1 i18next-browser-languagedetector: specifier: ^6.1.5 version: 6.1.8 @@ -94,9 +89,12 @@ importers: react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + react-router: + specifier: ^6.23.1 + version: 6.23.1(react@16.14.0) react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) + specifier: ^6.23.1 + version: 6.23.1(react-dom@16.14.0)(react@16.14.0) react-top-loading-bar: specifier: ^1.2.0 version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) @@ -187,16 +185,16 @@ importers: version: 0.5.13(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@storybook/builder-webpack5': specifier: ~6.4.12 - version: 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-server': specifier: ~6.4.12 - version: 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/manager-webpack5': specifier: ~6.4.12 - version: 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/react': specifier: ~6.4.12 - version: 6.4.22(@babel/core@7.24.6)(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + version: 6.4.22(@babel/core@7.24.6)(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) '@swc-node/register': specifier: ^1.4.2 version: 1.9.1(@swc/core@1.5.7)(@swc/types@0.1.7)(typescript@4.9.5) @@ -211,7 +209,7 @@ importers: version: 6.4.5(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1 '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -242,6 +240,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 + '@types/react': + specifier: 18.2.22 + version: 18.2.22 + '@types/react-dom': + specifier: 18.2.7 + version: 18.2.7 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 @@ -249,7 +253,7 @@ importers: specifier: ^7.1.25 version: 7.1.33 '@types/react-router-dom': - specifier: ^5.1.3 + specifier: 5.3.3 version: 5.3.3 '@types/redux-mock-store': specifier: ^1.0.2 @@ -403,7 +407,7 @@ importers: version: 4.0.2(webpack@5.84.1) react-hot-loader: specifier: ^4.13.0 - version: 4.13.1 + version: 4.13.1(@types/react@18.2.22) react-refresh: specifier: ^0.9.0 version: 0.9.0 @@ -469,13 +473,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -490,22 +494,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -566,9 +570,6 @@ importers: file-saver: specifier: ^2.0.5 version: 2.0.5 - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -616,19 +617,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -702,24 +700,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -824,7 +810,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@babel/polyfill': specifier: ^7.0.0 version: 7.12.1 @@ -838,14 +824,14 @@ importers: specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -924,9 +910,6 @@ importers: react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) @@ -964,24 +947,12 @@ importers: '@types/node': specifier: ^13.9.2 version: 13.13.52 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/redux-mock-store': specifier: ^1.0.2 version: 1.0.6 @@ -1077,13 +1048,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -1098,22 +1069,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -1162,9 +1133,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -1212,19 +1180,22 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + react-router: + specifier: ^6.23.1 + version: 6.23.1(react@18.3.1) react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) + specifier: ^6.23.1 + version: 6.23.1(react-dom@18.3.1)(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -1317,22 +1288,19 @@ importers: specifier: ^0.9.3 version: 0.9.10 '@types/react': - specifier: 18.0.18 - version: 18.0.18 + specifier: 18.2.22 + version: 18.2.22 '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 + specifier: 18.2.7 + version: 18.2.7 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 '@types/react-router-dom': - specifier: ^5.1.3 + specifier: 5.3.3 version: 5.3.3 '@types/reactour': specifier: ^1.18.1 @@ -1456,31 +1424,31 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.8 version: link:../../modules/access-control @@ -1523,9 +1491,6 @@ importers: react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -1554,9 +1519,6 @@ importers: '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 @@ -1589,31 +1551,31 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -1659,9 +1621,6 @@ importers: react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -1690,9 +1649,6 @@ importers: '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 @@ -1811,9 +1767,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 @@ -1849,31 +1802,31 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -1990,13 +1943,10 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -2037,15 +1987,9 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 rollup: specifier: ^4.17.2 version: 4.18.0 @@ -2075,31 +2019,31 @@ importers: dependencies: '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -2168,7 +2112,7 @@ importers: version: 7.2.9(react-dom@18.3.1)(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -2203,9 +2147,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 @@ -2241,7 +2182,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@wso2is/admin.authorization.v1': specifier: ^2.20.5 version: link:../admin.authorization.v1 @@ -2278,9 +2219,6 @@ importers: react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -2312,9 +2250,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 @@ -2344,13 +2279,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -2365,22 +2300,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -2429,9 +2364,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -2479,19 +2411,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -2583,24 +2512,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -2781,13 +2698,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -2802,22 +2719,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -2881,9 +2798,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -2931,19 +2845,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -3035,24 +2946,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -3175,13 +3074,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -3196,22 +3095,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -3281,9 +3180,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -3331,19 +3227,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -3435,24 +3328,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -3575,13 +3456,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -3596,22 +3477,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -3663,9 +3544,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -3716,19 +3594,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -3820,24 +3695,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -3960,13 +3823,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -3981,22 +3844,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -4066,9 +3929,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -4116,19 +3976,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -4220,24 +4077,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -4360,13 +4205,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -4381,22 +4226,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -4475,9 +4320,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -4525,19 +4367,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -4629,24 +4468,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -4769,13 +4596,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -4790,22 +4617,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -4887,9 +4714,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -4937,19 +4761,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -5041,24 +4862,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -5181,31 +4990,31 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -5353,9 +5162,6 @@ importers: classnames: specifier: ^2.2.6 version: 2.5.1 - history: - specifier: ^4.9.0 - version: 4.10.1 i18next: specifier: ^21.9.1 version: 21.10.0 @@ -5391,19 +5197,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -5492,24 +5295,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -5632,13 +5423,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -5653,22 +5444,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -5723,9 +5514,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -5773,19 +5561,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -5877,24 +5662,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -6017,13 +5790,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -6038,22 +5811,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -6111,9 +5884,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -6161,19 +5931,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -6265,24 +6032,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -6405,13 +6160,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -6426,22 +6181,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -6493,9 +6248,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -6543,19 +6295,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -6647,24 +6396,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -6787,13 +6524,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -6808,22 +6545,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -6878,9 +6615,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -6928,19 +6662,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -7032,24 +6763,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -7172,13 +6891,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -7193,22 +6912,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -7311,9 +7030,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -7361,19 +7077,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -7465,24 +7178,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -7605,13 +7306,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -7626,22 +7327,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -7696,9 +7397,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -7746,19 +7444,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -7850,24 +7545,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -7990,13 +7673,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -8011,22 +7694,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -8096,9 +7779,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -8146,19 +7826,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -8250,24 +7927,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -8390,13 +8055,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -8411,22 +8076,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -8505,9 +8170,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -8555,19 +8217,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -8659,24 +8318,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -8799,13 +8446,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -8820,22 +8467,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -8890,9 +8537,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -8940,19 +8584,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -9044,24 +8685,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -9184,13 +8813,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -9205,22 +8834,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -9272,9 +8901,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -9322,19 +8948,22 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + react-router: + specifier: ^6.23.1 + version: 6.23.1(react@18.3.1) react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) + specifier: ^6.23.1 + version: 6.23.1(react-dom@18.3.1)(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -9427,22 +9056,19 @@ importers: specifier: ^0.9.3 version: 0.9.10 '@types/react': - specifier: 18.0.18 - version: 18.0.18 + specifier: 18.2.22 + version: 18.2.22 '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 + specifier: 18.2.7 + version: 18.2.7 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 '@types/react-router-dom': - specifier: ^5.1.3 + specifier: 5.3.3 version: 5.3.3 '@types/reactour': specifier: ^1.18.1 @@ -9566,13 +9192,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -9587,22 +9213,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -9669,9 +9295,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -9719,19 +9342,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -9823,24 +9443,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -9963,13 +9571,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -9984,22 +9592,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -10057,9 +9665,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -10107,19 +9712,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -10211,24 +9813,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -10351,13 +9941,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -10372,22 +9962,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -10439,9 +10029,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -10489,19 +10076,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -10593,24 +10177,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -10733,13 +10305,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -10754,22 +10326,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -10824,9 +10396,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -10874,19 +10443,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -10978,24 +10544,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -11118,13 +10672,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -11139,22 +10693,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -11289,19 +10843,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -11393,24 +10944,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -11533,13 +11072,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -11554,22 +11093,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -11624,9 +11163,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -11674,19 +11210,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -11778,24 +11311,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -11918,13 +11439,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -11939,22 +11460,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -12009,9 +11530,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -12059,19 +11577,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -12163,24 +11678,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -12303,13 +11806,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -12324,22 +11827,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -12400,9 +11903,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -12450,19 +11950,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -12554,24 +12051,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -12694,13 +12179,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -12715,22 +12200,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -12782,9 +12267,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -12832,19 +12314,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -12936,24 +12415,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -13076,13 +12543,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -13097,22 +12564,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -13179,9 +12646,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -13229,19 +12693,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -13333,24 +12794,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -13473,13 +12922,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -13494,22 +12943,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -13594,9 +13043,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -13644,19 +13090,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -13748,24 +13191,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -13888,13 +13319,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -13909,22 +13340,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -13976,9 +13407,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -14026,19 +13454,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -14130,24 +13555,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -14270,13 +13683,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -14291,22 +13704,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -14358,9 +13771,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -14408,19 +13818,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -14512,24 +13919,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -14652,13 +14047,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -14673,22 +14068,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -14755,9 +14150,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -14805,19 +14197,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -14909,24 +14298,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -15049,13 +14426,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -15070,22 +14447,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -15140,9 +14517,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -15190,19 +14564,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -15294,24 +14665,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -15434,13 +14793,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -15455,22 +14814,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -15522,9 +14881,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -15572,19 +14928,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -15676,24 +15029,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -15816,13 +15157,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -15837,22 +15178,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -15910,9 +15251,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -15960,19 +15298,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -16064,24 +15399,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -16204,13 +15527,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -16225,22 +15548,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -16298,9 +15621,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -16348,19 +15668,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -16452,24 +15769,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -16592,13 +15897,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -16613,22 +15918,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -16716,9 +16021,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -16766,19 +16068,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -16870,24 +16169,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -17010,13 +16297,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -17031,22 +16318,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -17101,9 +16388,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -17151,19 +16435,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -17255,24 +16536,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -17395,13 +16664,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -17416,22 +16685,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -17495,9 +16764,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -17545,19 +16811,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -17649,24 +16912,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -17789,13 +17040,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -17810,22 +17061,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -17883,9 +17134,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -17933,19 +17181,22 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + react-router: + specifier: ^6.23.1 + version: 6.23.1(react@18.3.1) react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) + specifier: ^6.23.1 + version: 6.23.1(react-dom@18.3.1)(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -18038,22 +17289,19 @@ importers: specifier: ^0.9.3 version: 0.9.10 '@types/react': - specifier: 18.0.18 - version: 18.0.18 + specifier: 18.2.22 + version: 18.2.22 '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 + specifier: 18.2.7 + version: 18.2.7 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 '@types/react-router-dom': - specifier: ^5.1.3 + specifier: 5.3.3 version: 5.3.3 '@types/reactour': specifier: ^1.18.1 @@ -18177,13 +17425,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -18198,22 +17446,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -18265,9 +17513,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -18315,19 +17560,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -18419,24 +17661,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -18559,13 +17789,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -18580,22 +17810,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -18647,9 +17877,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -18697,19 +17924,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -18801,24 +18025,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -18941,13 +18153,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.2) @@ -18962,22 +18174,22 @@ importers: version: 4.6.0(monaco-editor@0.49.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -19029,9 +18241,6 @@ importers: framer-motion: specifier: ^11.1.9 version: 11.2.6(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 html-react-parser: specifier: ^2.0.0 version: 2.0.0(react@18.3.1) @@ -19079,19 +18288,16 @@ importers: version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 version: 2.12.7(react-dom@18.3.1)(react@18.3.1) @@ -19183,24 +18389,12 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@types/reactour': specifier: ^1.18.1 version: 1.18.5 @@ -19323,28 +18517,28 @@ importers: dependencies: '@emotion/react': specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + version: 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 - version: 5.15.14(@types/react@18.0.18)(react@18.3.1) + version: 5.15.14(@types/react@18.2.22)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.core.v1': specifier: ^2.20.12 version: link:../admin.core.v1 @@ -19391,9 +18585,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 @@ -19449,9 +18640,6 @@ importers: specifier: ^29.1.2 version: 29.1.3(@babel/core@7.24.6)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) devDependencies: - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) @@ -19543,9 +18731,6 @@ importers: '@types/node-forge': specifier: ^0.9.3 version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 @@ -19583,11 +18768,11 @@ importers: modules/dynamic-forms: dependencies: '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + specifier: ^5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.48 version: link:../core @@ -19628,9 +18813,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/testing-library__jest-dom': specifier: ^5.14.3 version: 5.14.9 @@ -19675,7 +18857,7 @@ importers: dependencies: '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.48 version: link:../core @@ -19713,9 +18895,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) @@ -19777,9 +18956,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/testing-library__jest-dom': specifier: ^5.14.3 version: 5.14.9 @@ -19900,7 +19076,7 @@ importers: version: 6.2.1(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) @@ -19958,6 +19134,9 @@ importers: react-color: specifier: ^2.19.3 version: 2.19.3(react@18.3.1) + react-dom: + specifier: '*' + version: 18.3.1(react@18.3.1) react-helmet: specifier: '>=5' version: 5.2.1(react@18.3.1) @@ -19970,9 +19149,6 @@ importers: react-notification-system: specifier: ^0.4.0 version: 0.4.0(react-dom@18.3.1)(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) @@ -20046,21 +19222,12 @@ importers: '@types/node': specifier: ^13.9.2 version: 13.13.52 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 '@types/react-color': specifier: ^3.0.6 version: 3.0.12 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 '@types/react-notification-system': specifier: 0.2.39 version: 0.2.39 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) @@ -20100,9 +19267,6 @@ importers: react-docgen-typescript-loader: specifier: ^3.6.0 version: 3.7.2(typescript@4.9.5)(webpack@5.84.1) - react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -20289,7 +19453,7 @@ packages: - debug dev: false - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1): + /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.6)(react-dom@18.3.1)(react-router-dom@6.23.1)(react@18.3.1): resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} peerDependencies: '@babel/runtime-corejs3': ^7.11.2 @@ -20301,7 +19465,7 @@ packages: '@babel/runtime-corejs3': 7.24.6 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-router-dom: 4.3.1(react@18.3.1) + react-router-dom: 6.23.1(react-dom@18.3.1)(react@18.3.1) transitivePeerDependencies: - debug dev: false @@ -22198,7 +21362,7 @@ packages: resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} dev: false - /@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1): + /@emotion/react@11.11.4(@types/react@18.2.22)(react@18.3.1): resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} peerDependencies: '@types/react': '*' @@ -22214,7 +21378,7 @@ packages: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 - '@types/react': 18.0.18 + '@types/react': 18.2.22 hoist-non-react-statics: 3.3.2 react: 18.3.1 dev: false @@ -22271,7 +21435,7 @@ packages: babel-plugin-emotion: 10.2.2 dev: true - /@emotion/styled@11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1): + /@emotion/styled@11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1): resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -22284,11 +21448,11 @@ packages: '@babel/runtime': 7.24.6 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.2 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.2.22)(react@18.3.1) '@emotion/serialize': 1.1.4 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 - '@types/react': 18.0.18 + '@types/react': 18.2.22 react: 18.3.1 dev: false @@ -24181,11 +23345,11 @@ packages: - supports-color dev: true - /@mui/base@5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@mui/base@5.0.0-alpha.108(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-KjzRUts2i/ODlMfywhFTqTzQl+Cr9nlDSZxJcnYjrbOV/iRyQNBTDoiFJt+XEdRi0fZBHnk74AFbnP56ehybsA==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': 18.0.18 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -24194,10 +23358,10 @@ packages: dependencies: '@babel/runtime': 7.24.6 '@emotion/is-prop-valid': 1.2.2 - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) + '@mui/types': 7.2.14(@types/react@18.2.22) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) '@popperjs/core': 2.11.8 - '@types/react': 18.0.18 + '@types/react': 18.2.22 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 @@ -24205,11 +23369,11 @@ packages: react-is: 18.3.1 dev: false - /@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@mui/base@5.0.0-alpha.128(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': 18.0.18 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -24218,10 +23382,10 @@ packages: dependencies: '@babel/runtime': 7.24.6 '@emotion/is-prop-valid': 1.2.2 - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) + '@mui/types': 7.2.14(@types/react@18.2.22) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) '@popperjs/core': 2.11.8 - '@types/react': 18.0.18 + '@types/react': 18.2.22 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 @@ -24229,11 +23393,11 @@ packages: react-is: 18.3.1 dev: false - /@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@mui/base@5.0.0-beta.0(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': 18.0.18 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -24242,10 +23406,10 @@ packages: dependencies: '@babel/runtime': 7.24.6 '@emotion/is-prop-valid': 1.2.2 - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) + '@mui/types': 7.2.14(@types/react@18.2.22) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) '@popperjs/core': 2.11.8 - '@types/react': 18.0.18 + '@types/react': 18.2.22 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 @@ -24257,31 +23421,31 @@ packages: resolution: {integrity: sha512-/9pVk+Al8qxAjwFUADv4BRZgMpZM4m5E+2Q/20qhVPuIJWqKp4Ie4tGExac6zu93rgPTYVQGgu+1vjiT0E+cEw==} dev: false - /@mui/icons-material@5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1): + /@mui/icons-material@5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1): resolution: {integrity: sha512-jGhyw02TSLM0NgW+MDQRLLRUD/K4eN9rlK2pTBTL1OtzyZmQ8nB060zK1wA0b7cVrIiG+zyrRmNAvGWXwm2N9Q==} engines: {node: '>=12.0.0'} peerDependencies: - '@mui/material': 5.13.0 - '@types/react': 18.0.18 + '@mui/material': ^5.0.0 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true dependencies: '@babel/runtime': 7.24.6 - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.0.18 + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@types/react': 18.2.22 react: 18.3.1 dev: false - /@mui/lab@5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@mui/lab@5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-SkX5QNbaWouO7BXvb8zpFzDizLt7UzgaebqKSvFJLF28OXiNDfPVCle6IIB4g7hAyb/o19Kbhxs9V+LwK5gQzA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 '@mui/material': 5.13.0 - '@types/react': 18.0.18 + '@types/react': 18.2.22 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -24293,14 +23457,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.6 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + '@emotion/react': 11.11.4(@types/react@18.2.22)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) + '@mui/base': 5.0.0-alpha.108(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) + '@mui/types': 7.2.14(@types/react@18.2.22) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) + '@types/react': 18.2.22 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 @@ -24308,14 +23472,14 @@ packages: react-is: 18.3.1 dev: false - /@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 - '@mui/material': 5.13.0 - '@types/react': 18.0.18 + '@mui/material': ^5.0.0 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -24327,14 +23491,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.6 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + '@emotion/react': 11.11.4(@types/react@18.2.22)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) + '@mui/base': 5.0.0-alpha.128(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) + '@mui/types': 7.2.14(@types/react@18.2.22) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) + '@types/react': 18.2.22 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 @@ -24342,13 +23506,13 @@ packages: react-is: 18.3.1 dev: false - /@mui/material@5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@mui/material@5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -24360,14 +23524,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.6 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.2.22)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) + '@mui/base': 5.0.0-beta.0(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@mui/core-downloads-tracker': 5.15.18 - '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) + '@mui/types': 7.2.14(@types/react@18.2.22) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) + '@types/react': 18.2.22 '@types/react-transition-group': 4.4.10 clsx: 1.2.1 csstype: 3.1.3 @@ -24378,19 +23542,19 @@ packages: react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) dev: false - /@mui/private-theming@5.15.14(@types/react@18.0.18)(react@18.3.1): + /@mui/private-theming@5.15.14(@types/react@18.2.22)(react@18.3.1): resolution: {integrity: sha512-UH0EiZckOWcxiXLX3Jbb0K7rC8mxTr9L9l6QhOZxYc4r8FHUkefltV9VDGLrzCaWh30SQiJvAEd7djX3XXY6Xw==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': 18.0.18 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true dependencies: '@babel/runtime': 7.24.6 - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) + '@types/react': 18.2.22 prop-types: 15.8.1 react: 18.3.1 dev: false @@ -24410,20 +23574,20 @@ packages: dependencies: '@babel/runtime': 7.24.6 '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.2.22)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 dev: false - /@mui/system@5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1): + /@mui/system@5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1): resolution: {integrity: sha512-aulox6N1dnu5PABsfxVGOZffDVmlxPOVgj56HrUnJE8MCSh8lOvvkd47cebIVQQYAjpwieXQXiDPj5pwM40jTQ==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@emotion/react': @@ -24434,35 +23598,35 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.6 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/private-theming': 5.15.14(@types/react@18.0.18)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.2.22)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) + '@mui/private-theming': 5.15.14(@types/react@18.2.22)(react@18.3.1) '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1) - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + '@mui/types': 7.2.14(@types/react@18.2.22) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) + '@types/react': 18.2.22 clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 dev: false - /@mui/types@7.2.14(@types/react@18.0.18): + /@mui/types@7.2.14(@types/react@18.2.22): resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} peerDependencies: - '@types/react': 18.0.18 + '@types/react': ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 dev: false - /@mui/utils@5.15.14(@types/react@18.0.18)(react@18.3.1): + /@mui/utils@5.15.14(@types/react@18.2.22)(react@18.3.1): resolution: {integrity: sha512-0lF/7Hh/ezDv5X7Pry6enMsbYyGKjADzvHyo3Qrc/SSlTsQ1VkbDMbH0m2t3OR5iIVLwMoxwM7yGd+6FCMtTFA==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': 18.0.18 + '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -24470,25 +23634,25 @@ packages: dependencies: '@babel/runtime': 7.24.6 '@types/prop-types': 15.7.12 - '@types/react': 18.0.18 + '@types/react': 18.2.22 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 dev: false - /@mui/x-data-grid@6.20.0(@mui/material@5.13.0)(@mui/system@5.15.15)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@mui/x-data-grid@6.20.0(@mui/material@5.13.0)(@mui/system@5.15.15)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-N9a4eJRmWgP5zT2AZ41BnBgCSQJiw4dc5Q2U9zQ5aOhOs+8Jb218tX79MIAfwt1s4rbTZmgAdsBUn9Xs93Kmrw==} engines: {node: '>=14.0.0'} peerDependencies: - '@mui/material': 5.13.0 + '@mui/material': ^5.4.1 '@mui/system': ^5.4.1 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.24.6 - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 @@ -25505,14 +24669,14 @@ packages: typescript: 4.9.5 dev: false - /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): + /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} peerDependencies: '@emotion/react': ^11.10.5 '@emotion/styled': ^11.10.5 '@mui/icons-material': ^5.10.16 '@mui/lab': 5.0.0-alpha.110 - '@mui/material': 5.13.0 + '@mui/material': ^5.10.16 '@mui/system': ^5.10.16 '@mui/utils': ^5.10.16 react: '>=18.0.0' @@ -25522,14 +24686,14 @@ packages: typescript: optional: true dependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': 5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) - '@mui/x-data-grid': 6.20.0(@mui/material@5.13.0)(@mui/system@5.15.15)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.2.22)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) + '@mui/icons-material': 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) + '@mui/lab': 5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) + '@mui/x-data-grid': 6.20.0(@mui/material@5.13.0)(@mui/system@5.15.15)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@oxygen-ui/primitives': 1.11.0 '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) clsx: 1.2.1 @@ -25541,14 +24705,14 @@ packages: - '@types/react' dev: false - /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): + /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.18)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.15)(@mui/utils@5.15.14)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} peerDependencies: '@emotion/react': ^11.10.5 '@emotion/styled': ^11.10.5 '@mui/icons-material': ^5.10.16 '@mui/lab': 5.0.0-alpha.110 - '@mui/material': 5.13.0 + '@mui/material': ^5.10.16 '@mui/system': ^5.10.16 '@mui/utils': ^5.10.16 react: '>=18.0.0' @@ -25558,14 +24722,14 @@ packages: typescript: optional: true dependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': 5.15.18(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/utils': 5.15.14(@types/react@18.0.18)(react@18.3.1) - '@mui/x-data-grid': 6.20.0(@mui/material@5.13.0)(@mui/system@5.15.15)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.2.22)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.22)(react@18.3.1) + '@mui/icons-material': 5.15.18(@mui/material@5.13.0)(@types/react@18.2.22)(react@18.3.1) + '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.22)(react@18.3.1) + '@mui/utils': 5.15.14(@types/react@18.2.22)(react@18.3.1) + '@mui/x-data-grid': 6.20.0(@mui/material@5.13.0)(@mui/system@5.15.15)(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@oxygen-ui/primitives': 1.11.0 '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) clsx: 1.2.1 @@ -25758,39 +24922,39 @@ packages: /@popperjs/core@2.11.8: resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - /@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@reactflow/background@11.2.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} peerDependencies: react: '>=17' react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.2(@types/react@18.0.18)(react@18.3.1) + zustand: 4.5.2(@types/react@18.2.22)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer dev: false - /@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@reactflow/controls@11.1.13(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} peerDependencies: react: '>=17' react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.2(@types/react@18.0.18)(react@18.3.1) + zustand: 4.5.2(@types/react@18.2.22)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer dev: false - /@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@reactflow/core@11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} peerDependencies: react: '>=17' @@ -25806,19 +24970,19 @@ packages: d3-zoom: 3.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.2(@types/react@18.0.18)(react@18.3.1) + zustand: 4.5.2(@types/react@18.2.22)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer dev: false - /@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@reactflow/minimap@11.5.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} peerDependencies: react: '>=17' react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) '@types/d3-selection': 3.0.10 '@types/d3-zoom': 3.0.8 classcat: 5.0.5 @@ -25826,41 +24990,41 @@ packages: d3-zoom: 3.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.2(@types/react@18.0.18)(react@18.3.1) + zustand: 4.5.2(@types/react@18.2.22)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer dev: false - /@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@reactflow/node-resizer@2.1.0(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} peerDependencies: react: '>=17' react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 d3-drag: 3.0.0 d3-selection: 3.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.2(@types/react@18.0.18)(react@18.3.1) + zustand: 4.5.2(@types/react@18.2.22)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer dev: false - /@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /@reactflow/node-toolbar@1.2.1(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} peerDependencies: react: '>=17' react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.2(@types/react@18.0.18)(react@18.3.1) + zustand: 4.5.2(@types/react@18.2.22)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer @@ -26672,7 +25836,7 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/builder-webpack4@6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): + /@storybook/builder-webpack4@6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): resolution: {integrity: sha512-A+GgGtKGnBneRFSFkDarUIgUTI8pYFdLmUVKEAGdh2hL+vLXAz9A46sEY7C8LQ85XWa8TKy3OTDxqR4+4iWj3A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26709,7 +25873,7 @@ packages: '@storybook/channels': 6.4.22 '@storybook/client-api': 6.4.22 '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22 + '@storybook/components': 6.4.22(@types/react@18.2.22) '@storybook/core-common': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.4.22 '@storybook/node-logger': 6.4.22 @@ -26718,7 +25882,7 @@ packages: '@storybook/semver': 7.3.2 '@storybook/store': 6.4.22 '@storybook/theming': 6.4.22 - '@storybook/ui': 6.4.22 + '@storybook/ui': 6.4.22(@types/react@18.2.22) '@types/node': 14.18.63 '@types/webpack': 4.41.38 autoprefixer: 9.8.8 @@ -26835,7 +25999,7 @@ packages: - webpack-cli dev: false - /@storybook/builder-webpack5@6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): + /@storybook/builder-webpack5@6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): resolution: {integrity: sha512-vvQ0HgkIIVz+cmaCXIRor0UFZbGZqh4aV0ISSof60BjdW5ld+R+XCr/bdTU6Zg8b2fL9CXh7/LE6fImnIMpRIA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26871,7 +26035,7 @@ packages: '@storybook/channels': 6.4.22 '@storybook/client-api': 6.4.22 '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22 + '@storybook/components': 6.4.22(@types/react@18.2.22) '@storybook/core-common': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.4.22 '@storybook/node-logger': 6.4.22 @@ -27178,7 +26342,7 @@ packages: - supports-color dev: false - /@storybook/components@6.4.22: + /@storybook/components@6.4.22(@types/react@18.2.22): resolution: {integrity: sha512-dCbXIJF9orMvH72VtAfCQsYbe57OP7fAADtR6YTwfCw9Sm1jFuZr8JbblQ1HcrXEoJG21nOyad3Hm5EYVb/sBw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27204,7 +26368,7 @@ packages: react-colorful: 5.6.1 react-popper-tooltip: 3.1.1 react-syntax-highlighter: 13.5.3 - react-textarea-autosize: 8.5.3 + react-textarea-autosize: 8.5.3(@types/react@18.2.22) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 util-deprecate: 1.0.2 @@ -27229,7 +26393,7 @@ packages: regenerator-runtime: 0.13.11 util-deprecate: 1.0.2 - /@storybook/core-client@6.4.22(typescript@4.9.5)(webpack@5.84.1): + /@storybook/core-client@6.4.22(@types/react@18.2.22)(typescript@4.9.5)(webpack@5.84.1): resolution: {integrity: sha512-uHg4yfCBeM6eASSVxStWRVTZrAnb4FT6X6v/xDqr4uXCpCttZLlBzrSDwPBLNNLtCa7ntRicHM8eGKIOD5lMYQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27249,7 +26413,7 @@ packages: '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/preview-web': 6.4.22 '@storybook/store': 6.4.22 - '@storybook/ui': 6.4.22 + '@storybook/ui': 6.4.22(@types/react@18.2.22) airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.37.1 @@ -27456,7 +26620,7 @@ packages: dependencies: core-js: 3.37.1 - /@storybook/core-server@6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): + /@storybook/core-server@6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): resolution: {integrity: sha512-wFh3e2fa0un1d4+BJP+nd3FVWUO7uHTqv3OGBfOmzQMKp4NU1zaBNdSQG7Hz6mw0fYPBPZgBjPfsJRwIYLLZyw==} peerDependencies: '@storybook/builder-webpack5': 6.4.22 @@ -27473,15 +26637,15 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/builder-webpack5': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/core-client': 6.4.22(typescript@4.9.5)(webpack@5.84.1) + '@storybook/builder-webpack4': 6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/builder-webpack5': 6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.4.22(@types/react@18.2.22)(typescript@4.9.5)(webpack@5.84.1) '@storybook/core-common': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.4.22 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.22 - '@storybook/manager-webpack4': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/manager-webpack5': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/manager-webpack4': 6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/manager-webpack5': 6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.4.22 '@storybook/semver': 7.3.2 '@storybook/store': 6.4.22 @@ -27613,7 +26777,7 @@ packages: - webpack-cli dev: false - /@storybook/core@6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): + /@storybook/core@6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): resolution: {integrity: sha512-KZYJt7GM5NgKFXbPRZZZPEONZ5u/tE/cRbMdkn/zWN3He8+VP+65/tz8hbriI/6m91AWVWkBKrODSkeq59NgRA==} peerDependencies: '@storybook/builder-webpack5': 6.4.22 @@ -27627,9 +26791,9 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/core-client': 6.4.22(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-server': 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/builder-webpack5': 6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.4.22(@types/react@18.2.22)(typescript@4.9.5)(webpack@5.84.1) + '@storybook/core-server': 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) typescript: 4.9.5 webpack: 5.84.1(@swc/core@1.5.7)(webpack-cli@4.10.0) transitivePeerDependencies: @@ -27764,7 +26928,7 @@ packages: - react-dom - supports-color - /@storybook/manager-webpack4@6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): + /@storybook/manager-webpack4@6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): resolution: {integrity: sha512-nzhDMJYg0vXdcG0ctwE6YFZBX71+5NYaTGkxg3xT7gbgnP1YFXn9gVODvgq3tPb3gcRapjyOIxUa20rV+r8edA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27778,11 +26942,11 @@ packages: '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6) '@babel/preset-react': 7.24.6(@babel/core@7.24.6) '@storybook/addons': 6.4.22 - '@storybook/core-client': 6.4.22(typescript@4.9.5)(webpack@5.84.1) + '@storybook/core-client': 6.4.22(@types/react@18.2.22)(typescript@4.9.5)(webpack@5.84.1) '@storybook/core-common': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.4.22 '@storybook/theming': 6.4.22 - '@storybook/ui': 6.4.22 + '@storybook/ui': 6.4.22(@types/react@18.2.22) '@types/node': 14.18.63 '@types/webpack': 4.41.38 babel-loader: 8.3.0(@babel/core@7.24.6)(webpack@5.84.1) @@ -27884,7 +27048,7 @@ packages: - webpack-cli dev: false - /@storybook/manager-webpack5@6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): + /@storybook/manager-webpack5@6.4.22(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): resolution: {integrity: sha512-BMkOMselT4jOn7EQGt748FurM5ewtDfZtOQPCVK8MZX+HYE2AgjNOzm562TYODIxk12Fkhgj3EIz7GGMe1U3RA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27898,11 +27062,11 @@ packages: '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6) '@babel/preset-react': 7.24.6(@babel/core@7.24.6) '@storybook/addons': 6.4.22 - '@storybook/core-client': 6.4.22(typescript@4.9.5)(webpack@5.84.1) + '@storybook/core-client': 6.4.22(@types/react@18.2.22)(typescript@4.9.5)(webpack@5.84.1) '@storybook/core-common': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.4.22 '@storybook/theming': 6.4.22 - '@storybook/ui': 6.4.22 + '@storybook/ui': 6.4.22(@types/react@18.2.22) '@types/node': 14.18.63 babel-loader: 8.3.0(@babel/core@7.24.6)(webpack@5.84.1) case-sensitive-paths-webpack-plugin: 2.4.0 @@ -28128,7 +27292,7 @@ packages: - supports-color dev: false - /@storybook/react@6.4.22(@babel/core@7.24.6)(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): + /@storybook/react@6.4.22(@babel/core@7.24.6)(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): resolution: {integrity: sha512-5BFxtiguOcePS5Ty/UoH7C6odmvBYIZutfiy4R3Ua6FYmtxac5vP9r5KjCz1IzZKT8mCf4X+PuK1YvDrPPROgQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -28148,7 +27312,7 @@ packages: '@babel/preset-react': 7.24.6(@babel/core@7.24.6) '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@storybook/addons': 6.4.22 - '@storybook/core': 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) + '@storybook/core': 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.5.7)(@types/react@18.2.22)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) '@storybook/core-common': 6.4.22(@swc/core@1.5.7)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.22 @@ -28453,7 +27617,7 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - /@storybook/ui@6.4.22: + /@storybook/ui@6.4.22(@types/react@18.2.22): resolution: {integrity: sha512-UVjMoyVsqPr+mkS1L7m30O/xrdIEgZ5SCWsvqhmyMUok3F3tRB+6M+OA5Yy+cIVfvObpA7MhxirUT1elCGXsWQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -28464,7 +27628,7 @@ packages: '@storybook/api': 6.4.22 '@storybook/channels': 6.4.22 '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22 + '@storybook/components': 6.4.22(@types/react@18.2.22) '@storybook/core-events': 6.4.22 '@storybook/router': 6.4.22 '@storybook/semver': 7.3.2 @@ -29169,6 +28333,18 @@ packages: redent: 3.0.0 dev: true + /@testing-library/react@14.3.1: + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + dependencies: + '@babel/runtime': 7.24.6 + '@testing-library/dom': 9.3.4 + '@types/react-dom': 18.2.7 + dev: true + /@testing-library/react@14.3.1(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} engines: {node: '>=14'} @@ -29597,7 +28773,7 @@ packages: /@types/hoist-non-react-statics@3.3.5: resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 hoist-non-react-statics: 3.3.2 /@types/html-minifier-terser@5.1.2: @@ -29805,27 +28981,33 @@ packages: /@types/react-color@3.0.12: resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 '@types/reactcss': 1.2.12 dev: true + /@types/react-dom@18.2.7: + resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==} + dependencies: + '@types/react': 18.2.22 + dev: true + /@types/react-dom@18.3.0: resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 dev: true /@types/react-notification-system@0.2.39: resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 dev: true /@types/react-redux@7.1.33: resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} dependencies: '@types/hoist-non-react-statics': 3.3.5 - '@types/react': 18.0.18 + '@types/react': 18.2.22 hoist-non-react-statics: 3.3.2 redux: 4.2.1 @@ -29833,7 +29015,7 @@ packages: resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} dependencies: '@types/history': 4.7.11 - '@types/react': 18.0.18 + '@types/react': 18.2.22 '@types/react-router': 5.1.20 dev: true @@ -29841,23 +29023,23 @@ packages: resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} dependencies: '@types/history': 4.7.11 - '@types/react': 18.0.18 + '@types/react': 18.2.22 dev: true /@types/react-syntax-highlighter@11.0.5: resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 dev: true /@types/react-transition-group@4.4.10: resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 dev: false - /@types/react@18.0.18: - resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} + /@types/react@18.2.22: + resolution: {integrity: sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==} dependencies: '@types/prop-types': 15.7.12 '@types/scheduler': 0.23.0 @@ -29866,13 +29048,13 @@ packages: /@types/reactcss@1.2.12: resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 dev: true /@types/reactour@1.18.5: resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 dev: true /@types/redux-mock-store@1.0.6: @@ -36579,10 +35761,6 @@ packages: '@babel/runtime': 7.24.6 dev: true - /hoist-non-react-statics@2.5.5: - resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} - dev: false - /hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} dependencies: @@ -41925,12 +41103,6 @@ packages: /path-to-regexp@0.1.7: resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - /path-to-regexp@1.8.0: - resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} - dependencies: - isarray: 0.0.1 - dev: false - /path-to-regexp@6.2.2: resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} dev: true @@ -43271,17 +42443,18 @@ packages: react-side-effect: 1.2.0(react@18.3.1) dev: false - /react-hot-loader@4.13.1: + /react-hot-loader@4.13.1(@types/react@18.2.22): resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} engines: {node: '>= 6'} peerDependencies: - '@types/react': 18.0.18 + '@types/react': ^15.0.0 || ^16.0.0 || ^17.0.0 react: ^15.0.0 || ^16.0.0 || ^17.0.0 react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 peerDependenciesMeta: '@types/react': optional: true dependencies: + '@types/react': 18.2.22 fast-levenshtein: 2.0.6 global: 4.4.0 hoist-non-react-statics: 3.3.2 @@ -43312,13 +42485,13 @@ packages: react-dom: 18.3.1(react@18.3.1) dev: false - /react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): + /react-innertext@1.1.5(@types/react@18.2.22)(react@18.3.1): resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} peerDependencies: - '@types/react': 18.0.18 + '@types/react': '>=0.0.0 <=99' react: '>=0.0.0 <=99' dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 react: 18.3.1 dev: false @@ -43342,7 +42515,7 @@ packages: /react-is@18.3.1: resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - /react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /react-joyride@2.8.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} peerDependencies: react: 15 - 18 @@ -43355,7 +42528,7 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-floater: 0.7.9(react-dom@18.3.1)(react@18.3.1) - react-innertext: 1.1.5(@types/react@18.0.18)(react@18.3.1) + react-innertext: 1.1.5(@types/react@18.2.22)(react@18.3.1) react-is: 16.13.1 scroll: 3.0.1 scrollparent: 2.1.0 @@ -43482,20 +42655,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-router-dom@4.3.1(react@18.3.1): - resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} - peerDependencies: - react: '>=15' - dependencies: - history: 4.10.1 - invariant: 2.2.4 - loose-envify: 1.4.0 - prop-types: 15.8.1 - react: 18.3.1 - react-router: 4.3.1(react@18.3.1) - warning: 4.0.3 - dev: false - /react-router-dom@6.23.1(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==} engines: {node: '>=14.0.0'} @@ -43508,19 +42667,17 @@ packages: react-dom: 16.14.0(react@16.14.0) react-router: 6.23.1(react@16.14.0) - /react-router@4.3.1(react@18.3.1): - resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} + /react-router-dom@6.23.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==} + engines: {node: '>=14.0.0'} peerDependencies: - react: '>=15' + react: '>=16.8' + react-dom: '>=16.8' dependencies: - history: 4.10.1 - hoist-non-react-statics: 2.5.5 - invariant: 2.2.4 - loose-envify: 1.4.0 - path-to-regexp: 1.8.0 - prop-types: 15.8.1 + '@remix-run/router': 1.16.1 react: 18.3.1 - warning: 4.0.3 + react-dom: 18.3.1(react@18.3.1) + react-router: 6.23.1(react@18.3.1) dev: false /react-router@6.23.1(react@16.14.0): @@ -43532,6 +42689,16 @@ packages: '@remix-run/router': 1.16.1 react: 16.14.0 + /react-router@6.23.1(react@18.3.1): + resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + dependencies: + '@remix-run/router': 1.16.1 + react: 18.3.1 + dev: false + /react-side-effect@1.2.0(react@18.3.1): resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} peerDependencies: @@ -43575,7 +42742,7 @@ packages: refractor: 3.6.0 dev: true - /react-textarea-autosize@8.5.3: + /react-textarea-autosize@8.5.3(@types/react@18.2.22): resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} engines: {node: '>=10'} peerDependencies: @@ -43583,7 +42750,7 @@ packages: dependencies: '@babel/runtime': 7.24.6 use-composed-ref: 1.3.0 - use-latest: 1.2.1 + use-latest: 1.2.1(@types/react@18.2.22) transitivePeerDependencies: - '@types/react' dev: true @@ -43649,18 +42816,18 @@ packages: react: 18.3.1 dev: false - /reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + /reactflow@11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} peerDependencies: react: '>=17' react-dom: '>=17' dependencies: - '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/background': 11.2.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/controls': 11.1.13(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/minimap': 11.5.2(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/node-resizer': 2.1.0(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/node-toolbar': 1.2.1(@types/react@18.2.22)(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: @@ -47146,7 +46313,7 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dev: true - /use-isomorphic-layout-effect@1.1.2: + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.22): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -47154,9 +46321,11 @@ packages: peerDependenciesMeta: '@types/react': optional: true + dependencies: + '@types/react': 18.2.22 dev: true - /use-latest@1.2.1: + /use-latest@1.2.1(@types/react@18.2.22): resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -47165,7 +46334,8 @@ packages: '@types/react': optional: true dependencies: - use-isomorphic-layout-effect: 1.1.2 + '@types/react': 18.2.22 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.22) dev: true /use-sync-external-store@1.2.0(react@18.3.1): @@ -48229,11 +47399,11 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - /zustand@4.5.2(@types/react@18.0.18)(react@18.3.1): + /zustand@4.5.2(@types/react@18.2.22)(react@18.3.1): resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} engines: {node: '>=12.7.0'} peerDependencies: - '@types/react': 18.0.18 + '@types/react': '>=16.8' immer: '>=9.0.6' react: '>=16.8' peerDependenciesMeta: @@ -48244,7 +47414,7 @@ packages: react: optional: true dependencies: - '@types/react': 18.0.18 + '@types/react': 18.2.22 react: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) dev: false