From ae0c295f4f0bd4fd776615f99e75f70c8817c400 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sun, 15 May 2022 16:16:18 -0400 Subject: [PATCH 01/29] Remove demo dependency on connected-react-router (#1159) * Remove connected-react-router from inspector demo * test-tab --- .../demo/package.json | 7 +-- .../demo/src/DemoApp.tsx | 9 ++- .../demo/src/DevTools.tsx | 12 +--- .../demo/src/getOptions.ts | 4 +- .../demo/src/index.tsx | 16 ++--- .../demo/src/reducers.ts | 17 +----- .../demo/package.json | 7 +-- .../demo/src/DemoApp.tsx | 23 ++++--- .../demo/src/DevTools.tsx | 12 +--- .../demo/src/getOptions.ts | 4 +- .../demo/src/index.tsx | 16 ++--- .../demo/src/reducers.ts | 17 +----- pnpm-lock.yaml | 60 +++---------------- 13 files changed, 53 insertions(+), 151 deletions(-) diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json index 75acf40e..d45d91c1 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json @@ -15,15 +15,13 @@ "@redux-devtools/inspector-monitor": "^2.1.2", "@redux-devtools/inspector-monitor-test-tab": "^0.8.6", "@redux-devtools/ui": "^1.2.1", - "connected-react-router": "^6.9.2", - "history": "^4.10.1", "immutable": "^4.0.0", "lodash.shuffle": "^4.2.0", "react": "^17.0.2", "react-dom": "^17.0.2", "react-is": "^17.0.2", "react-redux": "^7.2.8", - "react-router": "^5.3.1", + "react-router-dom": "^5.3.1", "redux": "^4.2.0", "redux-logger": "^3.0.6", "styled-components": "^5.3.5" @@ -33,13 +31,12 @@ "@babel/preset-env": "^7.17.10", "@babel/preset-react": "^7.16.7", "@babel/preset-typescript": "^7.16.7", - "@types/history": "^4.7.11", "@types/lodash.shuffle": "^4.2.7", "@types/node": "^16.11.33", "@types/react": "^17.0.45", "@types/react-dom": "^17.0.16", "@types/react-redux": "^7.1.24", - "@types/react-router": "^5.1.18", + "@types/react-router-dom": "^5.3.3", "@types/redux-logger": "^3.0.9", "@types/styled-components": "^5.1.25", "@types/webpack-env": "^1.16.4", diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx index cb94daea..9646552a 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx @@ -1,8 +1,8 @@ import React, { CSSProperties } from 'react'; import { connect } from 'react-redux'; import { Button, Toolbar, Spacer } from '@redux-devtools/ui'; -import { push as pushRoute } from 'connected-react-router'; import pkg from '@redux-devtools/inspector-monitor-test-tab/package.json'; +import { RouteComponentProps, withRouter } from 'react-router-dom'; import getOptions from './getOptions'; import { DemoAppState } from './reducers'; import { @@ -69,11 +69,11 @@ interface Props shuffleArray: () => void; } -class DemoApp extends React.Component { +class DemoApp extends React.Component { timeout?: number; render() { - const options = getOptions(this.props.router.location); + const options = getOptions(this.props.location); return (
@@ -180,5 +180,4 @@ export default connect((state: DemoAppState) => state, { addFunction: (): AddFunctionAction => ({ type: 'ADD_FUNCTION' }), addSymbol: (): AddSymbolAction => ({ type: 'ADD_SYMBOL' }), shuffleArray: (): ShuffleArrayAction => ({ type: 'SHUFFLE_ARRAY' }), - pushRoute, -})(DemoApp); +})(withRouter(DemoApp)); diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx index 3dfd5e23..f2988a51 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import { connect } from 'react-redux'; import { createDevTools } from '@redux-devtools/core'; import { InspectorMonitor, @@ -7,10 +6,9 @@ import { Tab, } from '@redux-devtools/inspector-monitor'; import { DockMonitor } from '@redux-devtools/dock-monitor'; -import { Location } from 'history'; +import { RouteComponentProps, withRouter } from 'react-router-dom'; import getOptions from './getOptions'; import { TestTab } from '@redux-devtools/inspector-monitor-test-tab'; -import { DemoAppState } from './reducers'; import { Action } from 'redux'; export const getDevTools = (location: { search: string }) => @@ -38,13 +36,9 @@ export const getDevTools = (location: { search: string }) => ); -const UnconnectedDevTools = ({ location }: { location: Location }) => { +const UnconnectedDevTools = ({ location }: RouteComponentProps) => { const DevTools = getDevTools(location); return ; }; -const mapStateToProps = (state: DemoAppState) => ({ - location: state.router.location, -}); - -export const ConnectedDevTools = connect(mapStateToProps)(UnconnectedDevTools); +export const ConnectedDevTools = withRouter(UnconnectedDevTools); diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/getOptions.ts b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/getOptions.ts index 2b8a0071..99aa45c8 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/getOptions.ts +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/getOptions.ts @@ -9,12 +9,12 @@ export default function getOptions(location: { search: string }) { return { useExtension: location.search.indexOf('ext') !== -1, supportImmutable: location.search.indexOf('immutable') !== -1, - theme: getTheme(), + theme: getTheme(location), dark: location.search.indexOf('dark') !== -1, }; } -function getTheme() { +function getTheme(location: { search: string }) { const match = /theme=([^&]+)/.exec(location.search); return match ? match[1] : 'inspector'; } diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx index 675ba777..83120306 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx @@ -10,12 +10,10 @@ import { StoreEnhancerStoreCreator, } from 'redux'; import logger from 'redux-logger'; -import { Route } from 'react-router'; -import { createBrowserHistory } from 'history'; -import { ConnectedRouter, routerMiddleware } from 'connected-react-router'; +import { BrowserRouter, Route } from 'react-router-dom'; import { persistState } from '@redux-devtools/core'; import DemoApp from './DemoApp'; -import createRootReducer from './reducers'; +import { rootReducer } from './reducers'; import getOptions from './getOptions'; import { ConnectedDevTools, getDevTools } from './DevTools'; @@ -31,14 +29,12 @@ const ROOT = const DevTools = getDevTools(window.location); -const history = createBrowserHistory(); - const useDevtoolsExtension = !!(window as unknown as { __REDUX_DEVTOOLS_EXTENSION__: unknown }) && getOptions(window.location).useExtension; const enhancer = compose( - applyMiddleware(logger, routerMiddleware(history)), + applyMiddleware(logger), (next: StoreEnhancerStoreCreator) => { const instrument = useDevtoolsExtension ? ( @@ -52,11 +48,11 @@ const enhancer = compose( persistState(getDebugSessionKey()) ); -const store = createStore(createRootReducer(history), enhancer); +const store = createStore(rootReducer, enhancer); render( - + {!useDevtoolsExtension && } - + , document.getElementById('root') ); diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/reducers.ts b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/reducers.ts index cf39dba0..1481c51f 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/reducers.ts +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/reducers.ts @@ -1,12 +1,6 @@ import Immutable from 'immutable'; import shuffle from 'lodash.shuffle'; import { combineReducers, Reducer } from 'redux'; -import { - connectRouter, - LocationChangeAction, - RouterState, -} from 'connected-react-router'; -import { History } from 'history'; type Nested = { long: { nested: { path: { to: { a: string } } }[] } }; @@ -139,11 +133,9 @@ type DemoAppAction = | HugePayloadAction | AddFunctionAction | AddSymbolAction - | ShuffleArrayAction - | LocationChangeAction; + | ShuffleArrayAction; export interface DemoAppState { - router: RouterState; timeoutUpdateEnabled: boolean; store: number; undefined: { val: undefined }; @@ -162,11 +154,8 @@ export interface DemoAppState { shuffleArray: unknown[]; } -const createRootReducer = ( - history: History -): Reducer => +export const rootReducer: Reducer = combineReducers({ - router: connectRouter(history) as Reducer, timeoutUpdateEnabled: (state = false, action) => action.type === 'TOGGLE_TIMEOUT_UPDATE' ? action.timeoutUpdateEnabled @@ -231,5 +220,3 @@ const createRootReducer = ( shuffleArray: (state = DEFAULT_SHUFFLE_ARRAY, action) => action.type === 'SHUFFLE_ARRAY' ? shuffle(state) : state, }); - -export default createRootReducer; diff --git a/packages/redux-devtools-inspector-monitor/demo/package.json b/packages/redux-devtools-inspector-monitor/demo/package.json index c696b879..899c7e4e 100644 --- a/packages/redux-devtools-inspector-monitor/demo/package.json +++ b/packages/redux-devtools-inspector-monitor/demo/package.json @@ -14,15 +14,13 @@ "@redux-devtools/dock-monitor": "^2.1.1", "@redux-devtools/inspector-monitor": "^2.1.2", "base16": "^1.0.0", - "connected-react-router": "^6.9.2", - "history": "^4.10.1", "immutable": "^4.0.0", "lodash.shuffle": "^4.2.0", "react": "^17.0.2", "react-bootstrap": "^2.3.1", "react-dom": "^17.0.2", "react-redux": "^7.2.8", - "react-router": "^5.3.1", + "react-router-dom": "^5.3.1", "redux": "^4.2.0", "redux-logger": "^3.0.6" }, @@ -32,13 +30,12 @@ "@babel/preset-react": "^7.16.7", "@babel/preset-typescript": "^7.16.7", "@types/base16": "^1.0.2", - "@types/history": "^4.7.11", "@types/lodash.shuffle": "^4.2.7", "@types/node": "^16.11.33", "@types/react": "^17.0.45", "@types/react-dom": "^17.0.16", "@types/react-redux": "^7.1.24", - "@types/react-router": "^5.1.18", + "@types/react-router-dom": "^5.3.3", "@types/redux-logger": "^3.0.9", "@types/webpack-env": "^1.16.4", "@typescript-eslint/eslint-plugin": "^5.22.0", diff --git a/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx b/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx index a1cd466c..fb183e70 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx @@ -10,9 +10,8 @@ import Col from 'react-bootstrap/Col'; import InputGroup from 'react-bootstrap/InputGroup'; import Row from 'react-bootstrap/Row'; import * as base16 from 'base16'; -import { push as pushRoute } from 'connected-react-router'; -import { Path } from 'history'; import { inspectorThemes } from '@redux-devtools/inspector-monitor'; +import { RouteComponentProps, withRouter } from 'react-router-dom'; import getOptions, { Options } from './getOptions'; import { AddFunctionAction, @@ -140,14 +139,13 @@ interface Props addFunction: () => void; addSymbol: () => void; shuffleArray: () => void; - pushRoute: (path: Path) => void; } -class DemoApp extends React.Component { +class DemoApp extends React.Component { timeout?: number; render() { - const options = getOptions(this.props.router.location); + const options = getOptions(this.props.location); return (
@@ -265,7 +263,7 @@ class DemoApp extends React.Component { } toggleExtension = () => { - const options = getOptions(this.props.router.location); + const options = getOptions(this.props.location); window.location.href = buildUrl({ ...options, @@ -274,21 +272,21 @@ class DemoApp extends React.Component { }; toggleImmutableSupport = () => { - const options = getOptions(this.props.router.location); + const options = getOptions(this.props.location); - this.props.pushRoute( + this.props.history.push( buildUrl({ ...options, supportImmutable: !options.supportImmutable }) ); }; toggleTheme = () => { - const options = getOptions(this.props.router.location); + const options = getOptions(this.props.location); - this.props.pushRoute(buildUrl({ ...options, dark: !options.dark })); + this.props.history.push(buildUrl({ ...options, dark: !options.dark })); }; setTheme = (options: Options, theme: string) => { - this.props.pushRoute(buildUrl({ ...options, theme })); + this.props.history.push(buildUrl({ ...options, theme })); }; toggleTimeoutUpdate = () => { @@ -332,5 +330,4 @@ export default connect((state: DemoAppState) => state, { addFunction: (): AddFunctionAction => ({ type: 'ADD_FUNCTION' }), addSymbol: (): AddSymbolAction => ({ type: 'ADD_SYMBOL' }), shuffleArray: (): ShuffleArrayAction => ({ type: 'SHUFFLE_ARRAY' }), - pushRoute, -})(DemoApp); +})(withRouter(DemoApp)); diff --git a/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx b/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx index 829474e6..cd8a5890 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx @@ -1,14 +1,12 @@ import React from 'react'; -import { connect } from 'react-redux'; import { createDevTools } from '@redux-devtools/core'; import { DockMonitor } from '@redux-devtools/dock-monitor'; -import { Location } from 'history'; import { InspectorMonitor, base16Themes, } from '@redux-devtools/inspector-monitor'; +import { RouteComponentProps, withRouter } from 'react-router-dom'; import getOptions from './getOptions'; -import { DemoAppState } from './reducers'; const CustomComponent = () => (
); -const UnconnectedDevTools = ({ location }: { location: Location }) => { +const UnconnectedDevTools = ({ location }: RouteComponentProps) => { const DevTools = getDevTools(location); return ; }; -const mapStateToProps = (state: DemoAppState) => ({ - location: state.router.location, -}); - -export const ConnectedDevTools = connect(mapStateToProps)(UnconnectedDevTools); +export const ConnectedDevTools = withRouter(UnconnectedDevTools); diff --git a/packages/redux-devtools-inspector-monitor/demo/src/getOptions.ts b/packages/redux-devtools-inspector-monitor/demo/src/getOptions.ts index 2b8a0071..99aa45c8 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/getOptions.ts +++ b/packages/redux-devtools-inspector-monitor/demo/src/getOptions.ts @@ -9,12 +9,12 @@ export default function getOptions(location: { search: string }) { return { useExtension: location.search.indexOf('ext') !== -1, supportImmutable: location.search.indexOf('immutable') !== -1, - theme: getTheme(), + theme: getTheme(location), dark: location.search.indexOf('dark') !== -1, }; } -function getTheme() { +function getTheme(location: { search: string }) { const match = /theme=([^&]+)/.exec(location.search); return match ? match[1] : 'inspector'; } diff --git a/packages/redux-devtools-inspector-monitor/demo/src/index.tsx b/packages/redux-devtools-inspector-monitor/demo/src/index.tsx index 82015be0..e690bf22 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/index.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/index.tsx @@ -9,12 +9,10 @@ import { StoreEnhancer, } from 'redux'; import logger from 'redux-logger'; -import { Route } from 'react-router'; -import { createBrowserHistory } from 'history'; -import { ConnectedRouter, routerMiddleware } from 'connected-react-router'; +import { BrowserRouter, Route } from 'react-router-dom'; import { persistState } from '@redux-devtools/core'; import DemoApp from './DemoApp'; -import createRootReducer from './reducers'; +import { rootReducer } from './reducers'; import getOptions from './getOptions'; import { ConnectedDevTools, getDevTools } from './DevTools'; @@ -30,14 +28,12 @@ const ROOT = const DevTools = getDevTools(window.location); -const history = createBrowserHistory(); - const useDevtoolsExtension = !!(window as unknown as { __REDUX_DEVTOOLS_EXTENSION__: unknown }) .__REDUX_DEVTOOLS_EXTENSION__ && getOptions(window.location).useExtension; const enhancer = compose( - applyMiddleware(logger, routerMiddleware(history)), + applyMiddleware(logger), (next: StoreEnhancerStoreCreator) => { const instrument = useDevtoolsExtension ? ( @@ -51,16 +47,16 @@ const enhancer = compose( persistState(getDebugSessionKey()) ); -const store = createStore(createRootReducer(history), enhancer); +const store = createStore(rootReducer, enhancer); render( - + {!useDevtoolsExtension && } - + , document.getElementById('root') ); diff --git a/packages/redux-devtools-inspector-monitor/demo/src/reducers.ts b/packages/redux-devtools-inspector-monitor/demo/src/reducers.ts index a90e4646..f98b19ae 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/reducers.ts +++ b/packages/redux-devtools-inspector-monitor/demo/src/reducers.ts @@ -1,12 +1,6 @@ import Immutable from 'immutable'; import shuffle from 'lodash.shuffle'; import { combineReducers, Reducer } from 'redux'; -import { - connectRouter, - LocationChangeAction, - RouterState, -} from 'connected-react-router'; -import { History } from 'history'; type Nested = { long: { nested: { path: { to: { a: string } } }[] } }; @@ -168,11 +162,9 @@ type DemoAppAction = | HugePayloadAction | AddFunctionAction | AddSymbolAction - | ShuffleArrayAction - | LocationChangeAction; + | ShuffleArrayAction; export interface DemoAppState { - router: RouterState; timeoutUpdateEnabled: boolean; store: number; undefined: { val: undefined }; @@ -192,11 +184,8 @@ export interface DemoAppState { shuffleArray: unknown[]; } -const createRootReducer = ( - history: History -): Reducer => +export const rootReducer: Reducer = combineReducers({ - router: connectRouter(history) as Reducer, timeoutUpdateEnabled: (state = false, action) => action.type === 'TOGGLE_TIMEOUT_UPDATE' ? action.timeoutUpdateEnabled @@ -263,5 +252,3 @@ const createRootReducer = ( shuffleArray: (state = DEFAULT_SHUFFLE_ARRAY, action) => action.type === 'SHUFFLE_ARRAY' ? shuffle(state) : state, }); - -export default createRootReducer; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a4d331d2..6efe3381 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1362,20 +1362,18 @@ importers: '@redux-devtools/inspector-monitor': ^2.1.2 '@redux-devtools/inspector-monitor-test-tab': ^0.8.6 '@redux-devtools/ui': ^1.2.1 - '@types/history': ^4.7.11 '@types/lodash.shuffle': ^4.2.7 '@types/node': ^16.11.33 '@types/react': ^17.0.45 '@types/react-dom': ^17.0.16 '@types/react-redux': ^7.1.24 - '@types/react-router': ^5.1.18 + '@types/react-router-dom': ^5.3.3 '@types/redux-logger': ^3.0.9 '@types/styled-components': ^5.1.25 '@types/webpack-env': ^1.16.4 '@typescript-eslint/eslint-plugin': ^5.22.0 '@typescript-eslint/parser': ^5.22.0 babel-loader: ^8.2.5 - connected-react-router: ^6.9.2 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.15.0 @@ -1383,7 +1381,6 @@ importers: eslint-plugin-react: ~7.28.0 eslint-plugin-react-hooks: ^4.5.0 fork-ts-checker-webpack-plugin: ^7.2.11 - history: ^4.10.1 html-webpack-plugin: ^5.5.0 immutable: ^4.0.0 lodash.shuffle: ^4.2.0 @@ -1391,7 +1388,7 @@ importers: react-dom: ^17.0.2 react-is: ^17.0.2 react-redux: ^7.2.8 - react-router: ^5.3.1 + react-router-dom: ^5.3.1 redux: ^4.2.0 redux-logger: ^3.0.6 style-loader: ^3.3.1 @@ -1407,15 +1404,13 @@ importers: '@redux-devtools/inspector-monitor': link:../../redux-devtools-inspector-monitor '@redux-devtools/inspector-monitor-test-tab': link:.. '@redux-devtools/ui': link:../../redux-devtools-ui - connected-react-router: 6.9.2_00712eb8f791d7f1c28c0ddcca5e8608 - history: 4.10.1 immutable: 4.0.0 lodash.shuffle: 4.2.0 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 react-is: 17.0.2 react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 - react-router: 5.3.1_react@17.0.2 + react-router-dom: 5.3.1_react@17.0.2 redux: 4.2.0 redux-logger: 3.0.6 styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 @@ -1424,13 +1419,12 @@ importers: '@babel/preset-env': 7.17.10_@babel+core@7.17.10 '@babel/preset-react': 7.16.7_@babel+core@7.17.10 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/history': 4.7.11 '@types/lodash.shuffle': 4.2.7 '@types/node': 16.11.33 '@types/react': 17.0.45 '@types/react-dom': 17.0.16 '@types/react-redux': 7.1.24 - '@types/react-router': 5.1.18 + '@types/react-router-dom': 5.3.3 '@types/redux-logger': 3.0.9 '@types/styled-components': 5.1.25 '@types/webpack-env': 1.16.4 @@ -1549,27 +1543,24 @@ importers: '@redux-devtools/dock-monitor': ^2.1.1 '@redux-devtools/inspector-monitor': ^2.1.2 '@types/base16': ^1.0.2 - '@types/history': ^4.7.11 '@types/lodash.shuffle': ^4.2.7 '@types/node': ^16.11.33 '@types/react': ^17.0.45 '@types/react-dom': ^17.0.16 '@types/react-redux': ^7.1.24 - '@types/react-router': ^5.1.18 + '@types/react-router-dom': ^5.3.3 '@types/redux-logger': ^3.0.9 '@types/webpack-env': ^1.16.4 '@typescript-eslint/eslint-plugin': ^5.22.0 '@typescript-eslint/parser': ^5.22.0 babel-loader: ^8.2.5 base16: ^1.0.0 - connected-react-router: ^6.9.2 cross-env: ^7.0.3 eslint: ^8.15.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ~7.28.0 eslint-plugin-react-hooks: ^4.5.0 fork-ts-checker-webpack-plugin: ^7.2.11 - history: ^4.10.1 html-webpack-plugin: ^5.5.0 immutable: ^4.0.0 lodash.shuffle: ^4.2.0 @@ -1577,7 +1568,7 @@ importers: react-bootstrap: ^2.3.1 react-dom: ^17.0.2 react-redux: ^7.2.8 - react-router: ^5.3.1 + react-router-dom: ^5.3.1 redux: ^4.2.0 redux-logger: ^3.0.6 ts-node: ^10.7.0 @@ -1590,15 +1581,13 @@ importers: '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/inspector-monitor': link:.. base16: 1.0.0 - connected-react-router: 6.9.2_00712eb8f791d7f1c28c0ddcca5e8608 - history: 4.10.1 immutable: 4.0.0 lodash.shuffle: 4.2.0 react: 17.0.2 react-bootstrap: 2.3.1_569957a51d469c962fcce166a59b9f78 react-dom: 17.0.2_react@17.0.2 react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 - react-router: 5.3.1_react@17.0.2 + react-router-dom: 5.3.1_react@17.0.2 redux: 4.2.0 redux-logger: 3.0.6 devDependencies: @@ -1607,13 +1596,12 @@ importers: '@babel/preset-react': 7.16.7_@babel+core@7.17.10 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 '@types/base16': 1.0.2 - '@types/history': 4.7.11 '@types/lodash.shuffle': 4.2.7 '@types/node': 16.11.33 '@types/react': 17.0.45 '@types/react-dom': 17.0.16 '@types/react-redux': 7.1.24 - '@types/react-router': 5.1.18 + '@types/react-router-dom': 5.3.3 '@types/redux-logger': 3.0.9 '@types/webpack-env': 1.16.4 '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 @@ -10979,27 +10967,6 @@ packages: engines: {node: '>=0.8'} dev: true - /connected-react-router/6.9.2_00712eb8f791d7f1c28c0ddcca5e8608: - resolution: {integrity: sha512-bE8kNBiZv9Mivp7pYn9JvLH5ItTjLl45kk1/Vha0rmAK9I/ETb5JPJrAm0h2KCG9qLfv7vqU3Jo4UUDo0oJnQg==} - peerDependencies: - history: ^4.7.2 - react: ^16.4.0 || ^17.0.0 - react-redux: ^6.0.0 || ^7.1.0 - react-router: ^4.3.1 || ^5.0.0 - redux: ^3.6.0 || ^4.0.0 - dependencies: - history: 4.10.1 - lodash.isequalwith: 4.4.0 - prop-types: 15.8.1 - react: 17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 - react-router: 5.3.1_react@17.0.2 - redux: 4.2.0 - optionalDependencies: - immutable: 4.0.0 - seamless-immutable: 7.1.4 - dev: false - /console-browserify/1.2.0: resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} dev: true @@ -15582,6 +15549,7 @@ packages: chalk: 2.4.2 diff-match-patch: 1.0.5 dev: false + bundledDependencies: [] /jsonfile/2.4.0: resolution: {integrity: sha1-NzaitCi4e72gzIO1P6PWM6NcKug=} @@ -16081,10 +16049,6 @@ packages: resolution: {integrity: sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=} dev: false - /lodash.isequalwith/4.4.0: - resolution: {integrity: sha1-Jmcm3dUo+FTyH06pigZWBuD7xrA=} - dev: false - /lodash.isinteger/4.0.4: resolution: {integrity: sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=} dev: false @@ -19418,12 +19382,6 @@ packages: ajv-keywords: 5.1.0_ajv@8.11.0 dev: true - /seamless-immutable/7.1.4: - resolution: {integrity: sha512-XiUO1QP4ki4E2PHegiGAlu6r82o5A+6tRh7IkGGTVg/h+UoeX4nFBeCGPOhb4CYjvkqsfm/TUtvOMYC1xmV30A==} - requiresBuild: true - dev: false - optional: true - /select-hose/2.0.0: resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=} dev: true From a90481a672f6ff382110a37e3366d8fdd5efbbc6 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sun, 15 May 2022 16:37:41 -0400 Subject: [PATCH 02/29] Add missing peer dependencies (#1160) --- packages/d3-state-visualizer/package.json | 1 + packages/d3tooltip/package.json | 1 + packages/map2tree/package.json | 1 + packages/react-json-tree/package.json | 1 + .../package.json | 1 + pnpm-lock.yaml | 31 +++++++++++++------ 6 files changed, 26 insertions(+), 10 deletions(-) diff --git a/packages/d3-state-visualizer/package.json b/packages/d3-state-visualizer/package.json index 20e20fd1..6d70158e 100644 --- a/packages/d3-state-visualizer/package.json +++ b/packages/d3-state-visualizer/package.json @@ -60,6 +60,7 @@ "@rollup/plugin-babel": "^5.3.1", "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", + "@types/node": "^16.11.33", "@types/ramda": "^0.28.12", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", diff --git a/packages/d3tooltip/package.json b/packages/d3tooltip/package.json index f779d550..bb5b9dc0 100644 --- a/packages/d3tooltip/package.json +++ b/packages/d3tooltip/package.json @@ -52,6 +52,7 @@ "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", "@types/d3": "^3.5.47", + "@types/node": "^16.11.33", "@types/ramda": "^0.28.12", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", diff --git a/packages/map2tree/package.json b/packages/map2tree/package.json index 64f82792..5860eb9a 100755 --- a/packages/map2tree/package.json +++ b/packages/map2tree/package.json @@ -57,6 +57,7 @@ "@rollup/plugin-node-resolve": "^13.3.0", "@types/jest": "^27.5.0", "@types/lodash": "^4.14.182", + "@types/node": "^16.11.33", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", "eslint": "^8.15.0", diff --git a/packages/react-json-tree/package.json b/packages/react-json-tree/package.json index f1b0e0bb..9168f9c2 100644 --- a/packages/react-json-tree/package.json +++ b/packages/react-json-tree/package.json @@ -63,6 +63,7 @@ "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", "@types/jest": "^27.5.0", + "@types/node": "^16.11.33", "@types/react": "^17.0.45", "@types/react-test-renderer": "^17.0.2", "@typescript-eslint/eslint-plugin": "^5.22.0", diff --git a/packages/redux-devtools-slider-monitor/package.json b/packages/redux-devtools-slider-monitor/package.json index f01eab9e..f4d1a26f 100644 --- a/packages/redux-devtools-slider-monitor/package.json +++ b/packages/redux-devtools-slider-monitor/package.json @@ -49,6 +49,7 @@ "@babel/preset-typescript": "^7.16.7", "@redux-devtools/core": "^3.12.0", "@rollup/plugin-babel": "^5.3.1", + "@types/node": "^16.11.33", "@types/react": "^17.0.45", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6efe3381..25553093 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -185,6 +185,7 @@ importers: '@rollup/plugin-commonjs': ^22.0.0 '@rollup/plugin-node-resolve': ^13.3.0 '@types/d3': ^3.5.47 + '@types/node': ^16.11.33 '@types/ramda': ^0.28.12 '@typescript-eslint/eslint-plugin': ^5.22.0 '@typescript-eslint/parser': ^5.22.0 @@ -219,6 +220,7 @@ importers: '@rollup/plugin-babel': 5.3.1_18dfcb1ca7050ba6f445f613f30091b1 '@rollup/plugin-commonjs': 22.0.0_rollup@2.72.1 '@rollup/plugin-node-resolve': 13.3.0_rollup@2.72.1 + '@types/node': 16.11.33 '@types/ramda': 0.28.12 '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 @@ -227,7 +229,7 @@ importers: rimraf: 3.0.2 rollup: 2.72.1 rollup-plugin-terser: 7.0.2_rollup@2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 + rollup-plugin-typescript2: 0.31.2_bde7e3c526181af230ede5fa8141c771 tslib: 2.4.0 typescript: 4.6.4 @@ -287,6 +289,7 @@ importers: '@rollup/plugin-commonjs': ^22.0.0 '@rollup/plugin-node-resolve': ^13.3.0 '@types/d3': ^3.5.47 + '@types/node': ^16.11.33 '@types/ramda': ^0.28.12 '@typescript-eslint/eslint-plugin': ^5.22.0 '@typescript-eslint/parser': ^5.22.0 @@ -314,6 +317,7 @@ importers: '@rollup/plugin-commonjs': 22.0.0_rollup@2.72.1 '@rollup/plugin-node-resolve': 13.3.0_rollup@2.72.1 '@types/d3': 3.5.47 + '@types/node': 16.11.33 '@types/ramda': 0.28.12 '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 @@ -323,7 +327,7 @@ importers: rimraf: 3.0.2 rollup: 2.72.1 rollup-plugin-terser: 7.0.2_rollup@2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 + rollup-plugin-typescript2: 0.31.2_bde7e3c526181af230ede5fa8141c771 tslib: 2.4.0 typescript: 4.6.4 @@ -341,6 +345,7 @@ importers: '@rollup/plugin-node-resolve': ^13.3.0 '@types/jest': ^27.5.0 '@types/lodash': ^4.14.182 + '@types/node': ^16.11.33 '@typescript-eslint/eslint-plugin': ^5.22.0 '@typescript-eslint/parser': ^5.22.0 eslint: ^8.15.0 @@ -371,6 +376,7 @@ importers: '@rollup/plugin-node-resolve': 13.3.0_rollup@2.72.1 '@types/jest': 27.5.0 '@types/lodash': 4.14.182 + '@types/node': 16.11.33 '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 eslint: 8.15.0 @@ -381,7 +387,7 @@ importers: rimraf: 3.0.2 rollup: 2.72.1 rollup-plugin-terser: 7.0.2_rollup@2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 + rollup-plugin-typescript2: 0.31.2_bde7e3c526181af230ede5fa8141c771 ts-jest: 27.1.4_6b62438663b23957550c965172b78733 tslib: 2.4.0 typescript: 4.6.4 @@ -584,6 +590,7 @@ importers: '@rollup/plugin-node-resolve': ^13.3.0 '@types/jest': ^27.5.0 '@types/lodash': ^4.14.182 + '@types/node': ^16.11.33 '@types/prop-types': ^15.7.5 '@types/react': ^17.0.45 '@types/react-test-renderer': ^17.0.2 @@ -624,6 +631,7 @@ importers: '@rollup/plugin-commonjs': 22.0.0_rollup@2.72.1 '@rollup/plugin-node-resolve': 13.3.0_rollup@2.72.1 '@types/jest': 27.5.0 + '@types/node': 16.11.33 '@types/react': 17.0.45 '@types/react-test-renderer': 17.0.2 '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 @@ -639,7 +647,7 @@ importers: rimraf: 3.0.2 rollup: 2.72.1 rollup-plugin-terser: 7.0.2_rollup@2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 + rollup-plugin-typescript2: 0.31.2_bde7e3c526181af230ede5fa8141c771 ts-jest: 27.1.4_6b62438663b23957550c965172b78733 tslib: 2.4.0 typescript: 4.6.4 @@ -2017,6 +2025,7 @@ importers: '@redux-devtools/core': ^3.12.0 '@redux-devtools/ui': ^1.2.1 '@rollup/plugin-babel': ^5.3.1 + '@types/node': ^16.11.33 '@types/prop-types': ^15.7.5 '@types/react': ^17.0.45 '@types/redux-devtools-themes': ^1.0.0 @@ -2052,6 +2061,7 @@ importers: '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 '@redux-devtools/core': link:../redux-devtools '@rollup/plugin-babel': 5.3.1_18dfcb1ca7050ba6f445f613f30091b1 + '@types/node': 16.11.33 '@types/react': 17.0.45 '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 @@ -2063,7 +2073,7 @@ importers: redux: 4.2.0 rimraf: 3.0.2 rollup: 2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 + rollup-plugin-typescript2: 0.31.2_bde7e3c526181af230ede5fa8141c771 tslib: 2.4.0 typescript: 4.6.4 @@ -8941,12 +8951,12 @@ packages: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} dev: true - /@yarn-tool/resolve-package/1.0.46: + /@yarn-tool/resolve-package/1.0.46_@types+node@16.11.33: resolution: {integrity: sha512-RJcBGTVywUqYGRtGkPSgJC/ozf0wK/xjUy66tXkbpL35U0o1oef4S0v23euxA/CiukqBWr2fRGtGY6FidESdTg==} dependencies: pkg-dir: 5.0.0 tslib: 2.4.0 - upath2: 3.1.12 + upath2: 3.1.12_@types+node@16.11.33 transitivePeerDependencies: - '@types/node' dev: true @@ -19155,14 +19165,14 @@ packages: terser: 5.13.1 dev: true - /rollup-plugin-typescript2/0.31.2_rollup@2.72.1+typescript@4.6.4: + /rollup-plugin-typescript2/0.31.2_bde7e3c526181af230ede5fa8141c771: resolution: {integrity: sha512-hRwEYR1C8xDGVVMFJQdEVnNAeWRvpaY97g5mp3IeLnzhNXzSVq78Ye/BJ9PAaUfN4DXa/uDnqerifMOaMFY54Q==} peerDependencies: rollup: '>=1.26.3' typescript: '>=2.4.0' dependencies: '@rollup/pluginutils': 4.2.1 - '@yarn-tool/resolve-package': 1.0.46 + '@yarn-tool/resolve-package': 1.0.46_@types+node@16.11.33 find-cache-dir: 3.3.2 fs-extra: 10.1.0 resolve: 1.22.0 @@ -21225,11 +21235,12 @@ packages: dev: true optional: true - /upath2/3.1.12: + /upath2/3.1.12_@types+node@16.11.33: resolution: {integrity: sha512-yC3eZeCyCXFWjy7Nu4pgjLhXNYjuzuUmJiRgSSw6TJp8Emc+E4951HGPJf+bldFC5SL7oBLeNbtm1fGzXn2gxw==} peerDependencies: '@types/node': '*' dependencies: + '@types/node': 16.11.33 path-is-network-drive: 1.0.13 path-strip-sep: 1.0.10 tslib: 2.4.0 From 6d2787951544eb930cbad3e61b5ee65739a17d2f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 15 May 2022 21:47:09 +0000 Subject: [PATCH 03/29] fix(deps): update dependency react-router-dom to v6 (#940) * fix(deps): update dependency react-router-dom to v6 * inspector-monitor demo * test-tab demo * rtk-query-monitor * Fix Co-authored-by: Renovate Bot Co-authored-by: Nathan Bierema --- .../demo/package.json | 3 +- .../demo/src/DemoApp.tsx | 151 +++++----- .../demo/src/DevTools.tsx | 9 +- .../demo/src/index.tsx | 8 +- .../demo/package.json | 3 +- .../demo/src/DemoApp.tsx | 273 +++++++++--------- .../demo/src/DevTools.tsx | 9 +- .../demo/src/index.tsx | 8 +- .../demo/package.json | 3 +- .../demo/src/features/posts/PostDetail.tsx | 12 +- .../demo/src/features/posts/PostsManager.tsx | 25 +- .../demo/src/features/posts/PostsView.tsx | 8 +- pnpm-lock.yaml | 102 +------ 13 files changed, 259 insertions(+), 355 deletions(-) diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json index d45d91c1..8aed33ed 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json @@ -21,7 +21,7 @@ "react-dom": "^17.0.2", "react-is": "^17.0.2", "react-redux": "^7.2.8", - "react-router-dom": "^5.3.1", + "react-router-dom": "^6.3.0", "redux": "^4.2.0", "redux-logger": "^3.0.6", "styled-components": "^5.3.5" @@ -36,7 +36,6 @@ "@types/react": "^17.0.45", "@types/react-dom": "^17.0.16", "@types/react-redux": "^7.1.24", - "@types/react-router-dom": "^5.3.3", "@types/redux-logger": "^3.0.9", "@types/styled-components": "^5.1.25", "@types/webpack-env": "^1.16.4", diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx index 9646552a..5f68b080 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx @@ -1,8 +1,8 @@ -import React, { CSSProperties } from 'react'; +import React, { CSSProperties, useRef } from 'react'; import { connect } from 'react-redux'; import { Button, Toolbar, Spacer } from '@redux-devtools/ui'; import pkg from '@redux-devtools/inspector-monitor-test-tab/package.json'; -import { RouteComponentProps, withRouter } from 'react-router-dom'; +import { useLocation } from 'react-router-dom'; import getOptions from './getOptions'; import { DemoAppState } from './reducers'; import { @@ -69,87 +69,84 @@ interface Props shuffleArray: () => void; } -class DemoApp extends React.Component { - timeout?: number; +function DemoApp(props: Props) { + const timeout = useRef(); + const location = useLocation(); - render() { - const options = getOptions(this.props.location); + const options = getOptions(location); - return ( -
-

{pkg.name || Package Name}

-
- {pkg.description || ( - Package Description - )} -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- {options.useExtension ? ( - - Disable browser extension - - ) : ( - - Use browser extension - - )} -
-
- ); - } - - toggleTimeoutUpdate = () => { - const enabled = !this.props.timeoutUpdateEnabled; - this.props.toggleTimeoutUpdate(enabled); + const toggleTimeoutUpdate = () => { + const enabled = !props.timeoutUpdateEnabled; + props.toggleTimeoutUpdate(enabled); if (enabled) { - this.timeout = window.setInterval(this.props.timeoutUpdate, 1000); + timeout.current = window.setInterval(props.timeoutUpdate, 1000); } else { - clearTimeout(this.timeout); + clearTimeout(timeout.current); } }; + + return ( +
+

{pkg.name || Package Name}

+
+ {pkg.description || ( + Package Description + )} +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ {options.useExtension ? ( + + Disable browser extension + + ) : ( + + Use browser extension + + )} +
+
+ ); } export default connect((state: DemoAppState) => state, { @@ -180,4 +177,4 @@ export default connect((state: DemoAppState) => state, { addFunction: (): AddFunctionAction => ({ type: 'ADD_FUNCTION' }), addSymbol: (): AddSymbolAction => ({ type: 'ADD_SYMBOL' }), shuffleArray: (): ShuffleArrayAction => ({ type: 'SHUFFLE_ARRAY' }), -})(withRouter(DemoApp)); +})(DemoApp); diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx index f2988a51..fe45c903 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx @@ -6,7 +6,7 @@ import { Tab, } from '@redux-devtools/inspector-monitor'; import { DockMonitor } from '@redux-devtools/dock-monitor'; -import { RouteComponentProps, withRouter } from 'react-router-dom'; +import { useLocation } from 'react-router-dom'; import getOptions from './getOptions'; import { TestTab } from '@redux-devtools/inspector-monitor-test-tab'; import { Action } from 'redux'; @@ -36,9 +36,8 @@ export const getDevTools = (location: { search: string }) => ); -const UnconnectedDevTools = ({ location }: RouteComponentProps) => { +export function ConnectedDevTools() { + const location = useLocation(); const DevTools = getDevTools(location); return ; -}; - -export const ConnectedDevTools = withRouter(UnconnectedDevTools); +} diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx index 83120306..1e3e0203 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx @@ -10,7 +10,7 @@ import { StoreEnhancerStoreCreator, } from 'redux'; import logger from 'redux-logger'; -import { BrowserRouter, Route } from 'react-router-dom'; +import { BrowserRouter, Route, Routes } from 'react-router-dom'; import { persistState } from '@redux-devtools/core'; import DemoApp from './DemoApp'; import { rootReducer } from './reducers'; @@ -60,9 +60,9 @@ render( colorPreference: 'auto', }} > - - - + + } /> + {!useDevtoolsExtension && } diff --git a/packages/redux-devtools-inspector-monitor/demo/package.json b/packages/redux-devtools-inspector-monitor/demo/package.json index 899c7e4e..47637704 100644 --- a/packages/redux-devtools-inspector-monitor/demo/package.json +++ b/packages/redux-devtools-inspector-monitor/demo/package.json @@ -20,7 +20,7 @@ "react-bootstrap": "^2.3.1", "react-dom": "^17.0.2", "react-redux": "^7.2.8", - "react-router-dom": "^5.3.1", + "react-router-dom": "^6.3.0", "redux": "^4.2.0", "redux-logger": "^3.0.6" }, @@ -35,7 +35,6 @@ "@types/react": "^17.0.45", "@types/react-dom": "^17.0.16", "@types/react-redux": "^7.1.24", - "@types/react-router-dom": "^5.3.3", "@types/redux-logger": "^3.0.9", "@types/webpack-env": "^1.16.4", "@typescript-eslint/eslint-plugin": "^5.22.0", diff --git a/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx b/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx index fb183e70..deea8812 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx @@ -1,4 +1,4 @@ -import React, { CSSProperties } from 'react'; +import React, { CSSProperties, useRef } from 'react'; import { connect } from 'react-redux'; import pkg from '@redux-devtools/inspector-monitor/package.json'; import Button from 'react-bootstrap/Button'; @@ -11,7 +11,7 @@ import InputGroup from 'react-bootstrap/InputGroup'; import Row from 'react-bootstrap/Row'; import * as base16 from 'base16'; import { inspectorThemes } from '@redux-devtools/inspector-monitor'; -import { RouteComponentProps, withRouter } from 'react-router-dom'; +import { useLocation, useNavigate } from 'react-router-dom'; import getOptions, { Options } from './getOptions'; import { AddFunctionAction, @@ -141,129 +141,13 @@ interface Props shuffleArray: () => void; } -class DemoApp extends React.Component { - timeout?: number; +function DemoApp(props: Props) { + const timeout = useRef(); + const location = useLocation(); + const navigate = useNavigate(); - render() { - const options = getOptions(this.props.location); - - return ( -
-

- {pkg.name || Package Name} -

-
- {pkg.description || ( - Package Description - )} -
-
-
-
- - - Theme: - - - - - this.setTheme(options, event.currentTarget.value) - } - > - {themeOptions.map((theme) => ( - - - {options.dark ? 'Light theme' : 'Dark theme'} - - - - -
-
-
-
-
- - - - - - - - - - - - - - - - - -
-
- -
- ); - } - - toggleExtension = () => { - const options = getOptions(this.props.location); + const toggleExtension = () => { + const options = getOptions(location); window.location.href = buildUrl({ ...options, @@ -271,34 +155,147 @@ class DemoApp extends React.Component { }); }; - toggleImmutableSupport = () => { - const options = getOptions(this.props.location); + const toggleImmutableSupport = () => { + const options = getOptions(location); - this.props.history.push( + navigate( buildUrl({ ...options, supportImmutable: !options.supportImmutable }) ); }; - toggleTheme = () => { - const options = getOptions(this.props.location); + const toggleTheme = () => { + const options = getOptions(location); - this.props.history.push(buildUrl({ ...options, dark: !options.dark })); + navigate(buildUrl({ ...options, dark: !options.dark })); }; - setTheme = (options: Options, theme: string) => { - this.props.history.push(buildUrl({ ...options, theme })); + const setTheme = (options: Options, theme: string) => { + navigate(buildUrl({ ...options, theme })); }; - toggleTimeoutUpdate = () => { - const enabled = !this.props.timeoutUpdateEnabled; - this.props.toggleTimeoutUpdate(enabled); + const toggleTimeoutUpdate = () => { + const enabled = !props.timeoutUpdateEnabled; + props.toggleTimeoutUpdate(enabled); if (enabled) { - this.timeout = window.setInterval(this.props.timeoutUpdate, 1000); + timeout.current = window.setInterval(props.timeoutUpdate, 1000); } else { - clearTimeout(this.timeout); + clearTimeout(timeout.current); } }; + + const options = getOptions(location); + + return ( +
+

+ {pkg.name || Package Name} +

+
+ {pkg.description || ( + Package Description + )} +
+
+
+
+ + + Theme: + + + + + setTheme(options, event.currentTarget.value) + } + > + {themeOptions.map((theme) => ( + + + {options.dark ? 'Light theme' : 'Dark theme'} + + + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + +
+
+ +
+ ); } export default connect((state: DemoAppState) => state, { @@ -330,4 +327,4 @@ export default connect((state: DemoAppState) => state, { addFunction: (): AddFunctionAction => ({ type: 'ADD_FUNCTION' }), addSymbol: (): AddSymbolAction => ({ type: 'ADD_SYMBOL' }), shuffleArray: (): ShuffleArrayAction => ({ type: 'SHUFFLE_ARRAY' }), -})(withRouter(DemoApp)); +})(DemoApp); diff --git a/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx b/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx index cd8a5890..4042f2a0 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx @@ -5,7 +5,7 @@ import { InspectorMonitor, base16Themes, } from '@redux-devtools/inspector-monitor'; -import { RouteComponentProps, withRouter } from 'react-router-dom'; +import { useLocation } from 'react-router-dom'; import getOptions from './getOptions'; const CustomComponent = () => ( @@ -46,9 +46,8 @@ export const getDevTools = (location: { search: string }) => ); -const UnconnectedDevTools = ({ location }: RouteComponentProps) => { +export function ConnectedDevTools() { + const location = useLocation(); const DevTools = getDevTools(location); return ; -}; - -export const ConnectedDevTools = withRouter(UnconnectedDevTools); +} diff --git a/packages/redux-devtools-inspector-monitor/demo/src/index.tsx b/packages/redux-devtools-inspector-monitor/demo/src/index.tsx index e690bf22..3ce6495b 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/index.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/index.tsx @@ -9,7 +9,7 @@ import { StoreEnhancer, } from 'redux'; import logger from 'redux-logger'; -import { BrowserRouter, Route } from 'react-router-dom'; +import { BrowserRouter, Route, Routes } from 'react-router-dom'; import { persistState } from '@redux-devtools/core'; import DemoApp from './DemoApp'; import { rootReducer } from './reducers'; @@ -52,9 +52,9 @@ const store = createStore(rootReducer, enhancer); render( - - - + + } /> + {!useDevtoolsExtension && } , diff --git a/packages/redux-devtools-rtk-query-monitor/demo/package.json b/packages/redux-devtools-rtk-query-monitor/demo/package.json index f1ceab42..f9eae22b 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/package.json +++ b/packages/redux-devtools-rtk-query-monitor/demo/package.json @@ -26,7 +26,7 @@ "react-icons": "^4.3.1", "react-is": "^17.0.2", "react-redux": "^7.2.8", - "react-router-dom": "^5.3.1", + "react-router-dom": "^6.3.0", "styled-components": "^5.3.5" }, "devDependencies": { @@ -40,7 +40,6 @@ "@types/react": "^17.0.45", "@types/react-dom": "^17.0.16", "@types/react-redux": "^7.1.24", - "@types/react-router-dom": "^5.3.3", "@types/styled-components": "^5.1.25", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", diff --git a/packages/redux-devtools-rtk-query-monitor/demo/src/features/posts/PostDetail.tsx b/packages/redux-devtools-rtk-query-monitor/demo/src/features/posts/PostDetail.tsx index 35ed2ced..99811e49 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/src/features/posts/PostDetail.tsx +++ b/packages/redux-devtools-rtk-query-monitor/demo/src/features/posts/PostDetail.tsx @@ -1,5 +1,5 @@ import React, { useState } from 'react'; -import { useHistory, useParams } from 'react-router-dom'; +import { useNavigate, useParams } from 'react-router-dom'; import { useDeletePostMutation, useGetPostQuery, @@ -73,13 +73,13 @@ const PostJsonDetail = ({ id }: { id: string }) => { export const PostDetail = () => { const { id } = useParams<{ id: string }>(); - const history = useHistory(); + const navigate = useNavigate(); const toast = useToast(); const [isEditing, setIsEditing] = useState(false); - const { data: post, isLoading } = useGetPostQuery(id); + const { data: post, isLoading } = useGetPostQuery(id!); const [updatePost, { isLoading: isUpdating }] = useUpdatePostMutation(); @@ -106,7 +106,7 @@ export const PostDetail = () => { name={post.name} onUpdate={async (name) => { try { - await updatePost({ id, name }).unwrap(); + await updatePost({ id: id!, name }).unwrap(); } catch { toast({ title: 'An error occurred', @@ -137,9 +137,7 @@ export const PostDetail = () => { {isUpdating ? 'Updating...' : 'Edit'} ); - userEvent.click(screen.getByRole('button')); + await userEvent.click(screen.getByRole('button')); expect(onClick).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/ContextMenu.test.tsx b/packages/redux-devtools-ui/test/ContextMenu.test.tsx index d50a81e2..57d43528 100644 --- a/packages/redux-devtools-ui/test/ContextMenu.test.tsx +++ b/packages/redux-devtools-ui/test/ContextMenu.test.tsx @@ -18,13 +18,13 @@ describe('ContextMenu', function () { ); expect(container.firstChild).toMatchSnapshot(); }); - it('should handle the click event', () => { + it('should handle the click event', async () => { const onClick = jest.fn(); render( ); - userEvent.click(screen.getByRole('button', { name: 'Menu Item 1' })); + await userEvent.click(screen.getByRole('button', { name: 'Menu Item 1' })); expect(onClick).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Dialog.test.tsx b/packages/redux-devtools-ui/test/Dialog.test.tsx index 6397d478..c81868de 100644 --- a/packages/redux-devtools-ui/test/Dialog.test.tsx +++ b/packages/redux-devtools-ui/test/Dialog.test.tsx @@ -52,7 +52,7 @@ describe('Dialog', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should handle dismiss event', () => { + it('should handle dismiss event', async () => { const onDismiss = jest.fn(); render( ); - userEvent.click(screen.getByRole('button', { name: 'Cancel' })); + await userEvent.click(screen.getByRole('button', { name: 'Cancel' })); expect(onDismiss).toHaveBeenCalled(); }); - it('should handle submit event', () => { + it('should handle submit event', async () => { const onSubmit = jest.fn(); render( ); - userEvent.click(screen.getByRole('button', { name: 'Submit' })); + await userEvent.click(screen.getByRole('button', { name: 'Submit' })); expect(onSubmit).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Form.test.tsx b/packages/redux-devtools-ui/test/Form.test.tsx index 6521ccea..a44be26b 100644 --- a/packages/redux-devtools-ui/test/Form.test.tsx +++ b/packages/redux-devtools-ui/test/Form.test.tsx @@ -44,7 +44,7 @@ describe('Form', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should handle the submit event', () => { + it('should handle the submit event', async () => { const onSubmit = jest.fn(); render(
); - userEvent.click(screen.getByRole('button', { name: 'Submit' })); + await userEvent.click(screen.getByRole('button', { name: 'Submit' })); expect(onSubmit).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Notification.test.tsx b/packages/redux-devtools-ui/test/Notification.test.tsx index 7b92cdfa..e5e55a9f 100644 --- a/packages/redux-devtools-ui/test/Notification.test.tsx +++ b/packages/redux-devtools-ui/test/Notification.test.tsx @@ -23,11 +23,11 @@ describe('Notification', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should handle the click event', () => { + it('should handle the click event', async () => { const onClose = jest.fn(); render(Message); - userEvent.click(screen.getByRole('button')); + await userEvent.click(screen.getByRole('button')); expect(onClose).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/SegmentedControl.test.tsx b/packages/redux-devtools-ui/test/SegmentedControl.test.tsx index 5d2c8460..c9c4c78e 100644 --- a/packages/redux-devtools-ui/test/SegmentedControl.test.tsx +++ b/packages/redux-devtools-ui/test/SegmentedControl.test.tsx @@ -17,7 +17,7 @@ describe('SegmentedControl', function () { ); expect(container.firstChild).toMatchSnapshot(); }); - it('should handle the click event', () => { + it('should handle the click event', async () => { const onClick = jest.fn(); render( ); - userEvent.click(screen.getByRole('button', { name: 'Button1' })); + await userEvent.click(screen.getByRole('button', { name: 'Button1' })); expect(onClick).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Select.test.tsx b/packages/redux-devtools-ui/test/Select.test.tsx index 8e6e1f68..a946c745 100644 --- a/packages/redux-devtools-ui/test/Select.test.tsx +++ b/packages/redux-devtools-ui/test/Select.test.tsx @@ -37,27 +37,27 @@ describe('Select', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should select another option', () => { + it('should select another option', async () => { const onChange = jest.fn(); const { container } = render( ); - userEvent.type(screen.getByRole('combobox'), 'text'); + await userEvent.type(screen.getByRole('combobox'), 'text'); expect(container.firstChild).toMatchSnapshot(); - userEvent.type(screen.getByRole('combobox'), '{enter}'); + await userEvent.type(screen.getByRole('combobox'), '{enter}'); expect(onChange).not.toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Tabs.test.tsx b/packages/redux-devtools-ui/test/Tabs.test.tsx index 257d9de0..73dbac07 100644 --- a/packages/redux-devtools-ui/test/Tabs.test.tsx +++ b/packages/redux-devtools-ui/test/Tabs.test.tsx @@ -43,11 +43,11 @@ describe('Tabs', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should select tab', () => { + it('should select tab', async () => { const onClick = jest.fn(); render(); - userEvent.click(screen.getByRole('button', { name: 'Tab1' })); + await userEvent.click(screen.getByRole('button', { name: 'Tab1' })); expect(onClick).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools/examples/counter/package.json b/packages/redux-devtools/examples/counter/package.json index db461a20..80384782 100644 --- a/packages/redux-devtools/examples/counter/package.json +++ b/packages/redux-devtools/examples/counter/package.json @@ -23,8 +23,8 @@ "@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/log-monitor": "^4.0.0", "prop-types": "^15.8.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "react": "^18.1.0", + "react-dom": "^18.1.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "redux-thunk": "^2.4.1" @@ -36,8 +36,8 @@ "@babel/preset-typescript": "^7.17.12", "@types/node": "^16.11.38", "@types/prop-types": "^15.7.5", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.17", + "@types/react": "^18.0.12", + "@types/react-dom": "^18.0.5", "@types/webpack-env": "^1.17.0", "@typescript-eslint/eslint-plugin": "^5.27.0", "@typescript-eslint/parser": "^5.27.0", diff --git a/packages/redux-devtools/examples/counter/src/index.tsx b/packages/redux-devtools/examples/counter/src/index.tsx index d731d108..6f7fc48a 100644 --- a/packages/redux-devtools/examples/counter/src/index.tsx +++ b/packages/redux-devtools/examples/counter/src/index.tsx @@ -1,8 +1,9 @@ import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import configureStore from './store/configureStore'; import Root from './containers/Root'; const store = configureStore(); -render(, document.getElementById('root')); +const root = createRoot(document.getElementById('root')!); +root.render(); diff --git a/packages/redux-devtools/examples/todomvc/package.json b/packages/redux-devtools/examples/todomvc/package.json index 475afe03..2ce848b1 100644 --- a/packages/redux-devtools/examples/todomvc/package.json +++ b/packages/redux-devtools/examples/todomvc/package.json @@ -36,8 +36,8 @@ "@redux-devtools/log-monitor": "^4.0.0", "classnames": "^2.3.1", "prop-types": "^15.8.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "react": "^18.1.0", + "react-dom": "^18.1.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "todomvc-app-css": "^2.4.2" @@ -50,8 +50,8 @@ "@types/classnames": "^2.3.1", "@types/node": "^16.11.38", "@types/prop-types": "^15.7.5", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.17", + "@types/react": "^18.0.12", + "@types/react-dom": "^18.0.5", "@types/webpack-env": "^1.17.0", "@typescript-eslint/eslint-plugin": "^5.27.0", "@typescript-eslint/parser": "^5.27.0", diff --git a/packages/redux-devtools/examples/todomvc/src/index.tsx b/packages/redux-devtools/examples/todomvc/src/index.tsx index ea5cd00e..1aa83dbb 100644 --- a/packages/redux-devtools/examples/todomvc/src/index.tsx +++ b/packages/redux-devtools/examples/todomvc/src/index.tsx @@ -1,9 +1,10 @@ import 'todomvc-app-css/index.css'; import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import configureStore from './store/configureStore'; import Root from './containers/Root'; const store = configureStore(); -render(, document.getElementById('root')); +const root = createRoot(document.getElementById('root')!); +root.render(); diff --git a/packages/redux-devtools/package.json b/packages/redux-devtools/package.json index 67712faa..75758fa3 100644 --- a/packages/redux-devtools/package.json +++ b/packages/redux-devtools/package.json @@ -58,7 +58,7 @@ "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", "@types/node": "^16.11.38", - "@types/react": "^17.0.45", + "@types/react": "^18.0.12", "@typescript-eslint/eslint-plugin": "^5.27.0", "@typescript-eslint/parser": "^5.27.0", "eslint": "^8.17.0", @@ -67,8 +67,8 @@ "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "jest": "^27.5.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "react": "^18.1.0", + "react-dom": "^18.1.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "rimraf": "^3.0.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2a54ee7d..7afcef57 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -55,12 +55,12 @@ importers: '@redux-devtools/ui': ^1.3.0 '@redux-devtools/utils': ^2.0.0 '@testing-library/jest-dom': ^5.16.4 - '@testing-library/react': ^12.1.5 + '@testing-library/react': ^13.3.0 '@types/chrome': ^0.0.188 '@types/jsan': ^3.1.2 '@types/lodash': ^4.14.182 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 babel-loader: ^8.2.5 bestzip: ^2.2.1 @@ -85,10 +85,10 @@ importers: path-browserify: ^1.0.1 pug-html-loader: ^1.1.5 raw-loader: ^4.0.2 - react: ^17.0.2 - react-dom: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 react-icons: ^4.4.0 - react-is: ^17.0.2 + react-is: ^18.1.0 react-json-tree: ^0.17.0 react-redux: ^8.0.2 react-transform-catch-errors: ^1.0.2 @@ -117,15 +117,15 @@ importers: jsan: 3.1.14 localforage: 1.10.0 lodash: 4.17.21 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-icons: 4.4.0_react@17.0.2 - react-is: 17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-icons: 4.4.0_react@18.1.0 + react-is: 18.1.0 react-json-tree: link:../packages/react-json-tree - react-redux: 8.0.2_lc2dihjbtf6eny6pheutrryeay + react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua redux: 4.2.0 - redux-persist: 6.0.0_react@17.0.2+redux@4.2.0 - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + redux-persist: 6.0.0_react@18.1.0+redux@4.2.0 + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq devDependencies: '@babel/core': 7.18.2 '@babel/preset-env': 7.18.2_@babel+core@7.18.2 @@ -133,11 +133,11 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@babel/register': 7.17.7_@babel+core@7.18.2 '@testing-library/jest-dom': 5.16.4 - '@testing-library/react': 12.1.5_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm '@types/chrome': 0.0.188 '@types/lodash': 4.14.182 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu bestzip: 2.2.1 @@ -459,8 +459,8 @@ importers: '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-test-renderer': ^17.0.2 + '@types/react': ^18.0.12 + '@types/react-test-renderer': ^18.0.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 eslint: ^8.17.0 @@ -471,8 +471,8 @@ importers: jest: ^27.5.1 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^17.0.2 - react-test-renderer: ^17.0.2 + react: ^18.1.0 + react-test-renderer: ^18.1.0 rimraf: ^3.0.2 ts-jest: ^27.1.5 typescript: ~4.7.3 @@ -492,8 +492,8 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@types/jest': 27.5.2 '@types/lodash.debounce': 4.0.7 - '@types/react': 17.0.45 - '@types/react-test-renderer': 17.0.2 + '@types/react': 18.0.12 + '@types/react-test-renderer': 18.0.0 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 @@ -502,8 +502,8 @@ importers: eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 jest: 27.5.1 - react: 17.0.2 - react-test-renderer: 17.0.2_react@17.0.2 + react: 18.1.0 + react-test-renderer: 18.1.0_react@18.1.0 rimraf: 3.0.2 ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya typescript: 4.7.3 @@ -515,8 +515,8 @@ importers: '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 '@types/node': ^16.11.38 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -528,12 +528,12 @@ importers: eslint-plugin-react-hooks: ^4.5.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 - react: ^17.0.2 + react: ^18.1.0 react-bootstrap: ^2.4.0 react-dock: ^0.6.0 - react-dom: ^17.0.2 + react-dom: ^18.1.0 react-icons: ^4.4.0 - react-is: ^17.0.2 + react-is: ^18.1.0 styled-components: ^5.3.5 ts-node: ^10.8.1 typescript: ~4.7.3 @@ -541,21 +541,21 @@ importers: webpack-cli: ^4.9.2 webpack-dev-server: ^4.9.1 dependencies: - react: 17.0.2 - react-bootstrap: 2.4.0_k2mvpji5i2ojml6m4ftklg47pa + react: 18.1.0 + react-bootstrap: 2.4.0_eurjwfem4ie5nnznw6gmhlbswe react-dock: link:.. - react-dom: 17.0.2_react@17.0.2 - react-icons: 4.4.0_react@17.0.2 - react-is: 17.0.2 - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + react-dom: 18.1.0_react@18.1.0 + react-icons: 4.4.0_react@18.1.0 + react-is: 18.1.0 + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq devDependencies: '@babel/core': 7.18.2 '@babel/preset-env': 7.18.2_@babel+core@7.18.2 '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@types/node': 16.11.38 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 @@ -590,8 +590,8 @@ importers: '@types/lodash': ^4.14.182 '@types/node': ^16.11.38 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-test-renderer': ^17.0.2 + '@types/react': ^18.0.12 + '@types/react-test-renderer': ^18.0.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 eslint: ^8.17.0 @@ -601,9 +601,9 @@ importers: eslint-plugin-react-hooks: ^4.5.0 jest: ^27.5.1 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.1.0 react-base16-styling: ^0.9.1 - react-test-renderer: ^17.0.2 + react-test-renderer: ^18.1.0 rimraf: ^3.0.2 rollup: ^2.75.5 rollup-plugin-terser: ^7.0.2 @@ -630,8 +630,8 @@ importers: '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.5 '@types/jest': 27.5.2 '@types/node': 16.11.38 - '@types/react': 17.0.45 - '@types/react-test-renderer': 17.0.2 + '@types/react': 18.0.12 + '@types/react-test-renderer': 18.0.0 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 @@ -640,8 +640,8 @@ importers: eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 jest: 27.5.1 - react: 17.0.2 - react-test-renderer: 17.0.2_react@17.0.2 + react: 18.1.0 + react-test-renderer: 18.1.0_react@18.1.0 rimraf: 3.0.2 rollup: 2.75.5 rollup-plugin-terser: 7.0.2_rollup@2.75.5 @@ -657,8 +657,8 @@ importers: '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 '@types/node': ^16.11.38 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 babel-loader: ^8.2.5 @@ -670,9 +670,9 @@ importers: fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 immutable: ^4.1.0 - react: ^17.0.2 + react: ^18.1.0 react-base16-styling: ^0.9.1 - react-dom: ^17.0.2 + react-dom: ^18.1.0 react-json-tree: ^0.17.0 ts-node: ^10.8.1 typescript: ~4.7.3 @@ -681,9 +681,9 @@ importers: webpack-dev-server: ^4.9.1 dependencies: immutable: 4.1.0 - react: 17.0.2 + react: 18.1.0 react-base16-styling: link:../../react-base16-styling - react-dom: 17.0.2_react@17.0.2 + react-dom: 18.1.0_react@18.1.0 react-json-tree: link:.. devDependencies: '@babel/core': 7.18.2 @@ -691,8 +691,8 @@ importers: '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@types/node': 16.11.38 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu @@ -724,7 +724,7 @@ importers: '@types/lodash': ^4.14.182 '@types/node': ^16.11.38 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 eslint: ^8.17.0 @@ -735,8 +735,8 @@ importers: jest: ^27.5.1 lodash: ^4.17.21 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 react-redux: ^8.0.2 redux: ^4.2.0 rimraf: ^3.0.2 @@ -759,7 +759,7 @@ importers: '@types/jest': 27.5.2 '@types/lodash': 4.14.182 '@types/node': 16.11.38 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 @@ -768,9 +768,9 @@ importers: eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 jest: 27.5.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-redux: 8.0.2_4a7fqdea4vmms5temxtq47oufa + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-redux: 8.0.2_6gdrmwzkzbo4b6pqvtgyt7rzjm redux: 4.2.0 rimraf: 3.0.2 ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya @@ -798,15 +798,15 @@ importers: '@reduxjs/toolkit': ^1.8.2 '@rjsf/core': ^4.2.0 '@testing-library/jest-dom': ^5.16.4 - '@testing-library/react': ^12.1.5 + '@testing-library/react': ^13.3.0 '@types/jest': ^27.5.2 '@types/jsan': ^3.1.2 '@types/json-schema': ^7.0.11 '@types/lodash': ^4.14.182 '@types/node': ^16.11.38 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/socketcluster-client': ^13.0.5 '@types/styled-components': ^5.1.25 '@types/testing-library__jest-dom': ^5.14.3 @@ -833,10 +833,10 @@ importers: lodash: ^4.17.21 path-browserify: ^1.0.1 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 react-icons: ^4.4.0 - react-is: ^17.0.2 + react-is: ^18.1.0 react-redux: ^8.0.2 redux: ^4.2.0 redux-persist: ^6.0.0 @@ -861,7 +861,7 @@ importers: '@redux-devtools/rtk-query-monitor': link:../redux-devtools-rtk-query-monitor '@redux-devtools/slider-monitor': link:../redux-devtools-slider-monitor '@redux-devtools/ui': link:../redux-devtools-ui - '@reduxjs/toolkit': 1.8.2_thunyjspsylz6iliyoygaytnnq + '@reduxjs/toolkit': 1.8.2_ctm756ikdwcjcvyfxxwskzbr6q '@types/prop-types': 15.7.5 d3-state-visualizer: link:../d3-state-visualizer javascript-stringify: 2.1.0 @@ -870,11 +870,11 @@ importers: localforage: 1.10.0 lodash: 4.17.21 prop-types: 15.8.1 - react-icons: 4.4.0_react@17.0.2 - react-is: 17.0.2 - react-redux: 8.0.2_lc2dihjbtf6eny6pheutrryeay + react-icons: 4.4.0_react@18.1.0 + react-is: 18.1.0 + react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua redux: 4.2.0 - redux-persist: 6.0.0_react@17.0.2+redux@4.2.0 + redux-persist: 6.0.0_react@18.1.0+redux@4.2.0 socketcluster-client: 14.3.2 devDependencies: '@babel/cli': 7.17.10_@babel+core@7.18.2 @@ -884,16 +884,16 @@ importers: '@babel/preset-env': 7.18.2_@babel+core@7.18.2 '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@rjsf/core': 4.2.0_react@17.0.2 + '@rjsf/core': 4.2.0_react@18.1.0 '@testing-library/jest-dom': 5.16.4 - '@testing-library/react': 12.1.5_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm '@types/jest': 27.5.2 '@types/jsan': 3.1.2 '@types/json-schema': 7.0.11 '@types/lodash': 4.14.182 '@types/node': 16.11.38 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/socketcluster-client': 13.0.5 '@types/styled-components': 5.1.25 '@types/testing-library__jest-dom': 5.14.3 @@ -913,11 +913,11 @@ importers: html-webpack-plugin: 5.5.0_webpack@5.73.0 jest: 27.5.1_ts-node@10.8.1 path-browserify: 1.0.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 rimraf: 3.0.2 style-loader: 3.3.1_webpack@5.73.0 - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 typescript: 4.7.3 @@ -937,7 +937,7 @@ importers: '@babel/runtime': ^7.18.3 '@redux-devtools/core': ^3.13.1 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/redux-devtools-themes': ^1.0.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -948,7 +948,7 @@ importers: eslint-plugin-react: ^7.30.0 eslint-plugin-react-hooks: ^4.5.0 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.1.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 @@ -970,14 +970,14 @@ importers: '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@redux-devtools/core': link:../redux-devtools - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 eslint-config-prettier: 8.5.0_eslint@8.17.0 eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 17.0.2 + react: 18.1.0 redux: 4.2.0 rimraf: 3.0.2 typescript: 4.7.3 @@ -994,7 +994,7 @@ importers: '@types/minimist': ^1.2.2 '@types/morgan': ^1.9.3 '@types/node': ^16.11.38 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/semver': ^7.3.9 '@types/socketcluster': ^14.0.4 '@types/socketcluster-client': ^13.0.5 @@ -1023,9 +1023,9 @@ importers: morgan: ^1.10.0 ncp: ^2.0.0 open: ^8.4.0 - react: ^17.0.2 - react-dom: ^17.0.2 - react-is: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 + react-is: ^18.1.0 rimraf: ^3.0.2 semver: ^7.3.7 socketcluster: ^14.4.2 @@ -1038,7 +1038,7 @@ importers: uuid: ^8.3.2 dependencies: '@redux-devtools/app': link:../redux-devtools-app - '@types/react': 17.0.45 + '@types/react': 18.0.12 apollo-server-express: 3.8.2_g7snex6epo2tsaz6yhvyva23iq body-parser: 1.20.0 chalk: 4.1.2 @@ -1053,13 +1053,13 @@ importers: minimist: 1.2.6 morgan: 1.10.0 open: 8.4.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-is: 18.1.0 semver: 7.3.7 socketcluster: 14.4.2 sqlite3: 5.0.8 - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq uuid: 8.3.2 devDependencies: '@types/body-parser': 1.19.2 @@ -1104,7 +1104,7 @@ importers: '@redux-devtools/core': ^3.13.1 '@types/parse-key': ^0.2.0 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 eslint: ^8.17.0 @@ -1113,7 +1113,7 @@ importers: eslint-plugin-react-hooks: ^4.5.0 parse-key: ^0.2.1 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.1.0 react-dock: ^0.6.0 redux: ^4.2.0 rimraf: ^3.0.2 @@ -1134,14 +1134,14 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@redux-devtools/core': link:../redux-devtools '@types/parse-key': 0.2.0 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 eslint-config-prettier: 8.5.0_eslint@8.17.0 eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 17.0.2 + react: 18.1.0 redux: 4.2.0 rimraf: 3.0.2 typescript: 4.7.3 @@ -1197,7 +1197,7 @@ importers: '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/react-dragula': ^1.1.0 '@types/redux-devtools-themes': ^1.0.0 '@typescript-eslint/eslint-plugin': ^5.27.0 @@ -1215,7 +1215,7 @@ importers: jss-preset-default: ^10.9.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.1.0 react-base16-styling: ^0.9.1 react-dragula: ^1.1.17 react-json-tree: ^0.17.0 @@ -1254,7 +1254,7 @@ importers: '@types/hex-rgba': 1.0.1 '@types/history': 4.7.11 '@types/lodash.debounce': 4.0.7 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@types/react-dragula': 1.1.0 '@types/redux-devtools-themes': 1.0.0 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la @@ -1263,7 +1263,7 @@ importers: eslint-config-prettier: 8.5.0_eslint@8.17.0 eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 17.0.2 + react: 18.1.0 redux: 4.2.0 rimraf: 3.0.2 typescript: 4.7.3 @@ -1281,13 +1281,13 @@ importers: '@redux-devtools/core': ^3.13.0 '@redux-devtools/inspector-monitor': ^3.0.0 '@redux-devtools/ui': ^1.3.0 - '@testing-library/react': ^12.1.5 + '@testing-library/react': ^13.3.0 '@types/es6template': ^1.0.0 '@types/jest': ^27.5.2 '@types/jsan': ^3.1.2 '@types/object-path': ^0.11.1 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/simple-diff': ^1.6.1 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -1302,8 +1302,8 @@ importers: jsan: ^3.1.14 object-path: ^0.11.8 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 react-icons: ^4.4.0 redux: ^4.2.0 rimraf: ^3.0.2 @@ -1319,7 +1319,7 @@ importers: jsan: 3.1.14 object-path: 0.11.8 prop-types: 15.8.1 - react-icons: 4.4.0_react@17.0.2 + react-icons: 4.4.0_react@18.1.0 simple-diff: 1.6.0 devDependencies: '@babel/cli': 7.17.10_@babel+core@7.18.2 @@ -1331,12 +1331,12 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor - '@testing-library/react': 12.1.5_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm '@types/es6template': 1.0.0 '@types/jest': 27.5.2 '@types/jsan': 3.1.2 '@types/object-path': 0.11.1 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@types/simple-diff': 1.6.1 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 @@ -1346,8 +1346,8 @@ importers: eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 jest: 27.5.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 redux: 4.2.0 rimraf: 3.0.2 ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya @@ -1366,8 +1366,8 @@ importers: '@redux-devtools/ui': ^1.3.0 '@types/lodash.shuffle': ^4.2.7 '@types/node': ^16.11.38 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/redux-logger': ^3.0.9 '@types/styled-components': ^5.1.25 '@types/webpack-env': ^1.17.0 @@ -1384,9 +1384,9 @@ importers: html-webpack-plugin: ^5.5.0 immutable: ^4.1.0 lodash.shuffle: ^4.2.0 - react: ^17.0.2 - react-dom: ^17.0.2 - react-is: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 + react-is: ^18.1.0 react-redux: ^8.0.2 react-router-dom: ^6.3.0 redux: ^4.2.0 @@ -1406,14 +1406,14 @@ importers: '@redux-devtools/ui': link:../../redux-devtools-ui immutable: 4.1.0 lodash.shuffle: 4.2.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 - react-redux: 8.0.2_lc2dihjbtf6eny6pheutrryeay - react-router-dom: 6.3.0_sfoxds7t5ydpegc3knd667wn6m + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-is: 18.1.0 + react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua + react-router-dom: 6.3.0_ef5jwxihqo6n7gxfmzogljlgcm redux: 4.2.0 redux-logger: 3.0.6 - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq devDependencies: '@babel/core': 7.18.2 '@babel/preset-env': 7.18.2_@babel+core@7.18.2 @@ -1421,8 +1421,8 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@types/lodash.shuffle': 4.2.7 '@types/node': 16.11.38 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/redux-logger': 3.0.9 '@types/styled-components': 5.1.25 '@types/webpack-env': 1.17.0 @@ -1457,14 +1457,14 @@ importers: '@babel/runtime': ^7.18.3 '@redux-devtools/core': ^3.13.0 '@redux-devtools/inspector-monitor': ^3.0.0 - '@testing-library/react': ^12.1.5 + '@testing-library/react': ^13.3.0 '@types/babel__code-frame': ^7.0.3 '@types/chrome': ^0.0.188 '@types/html-entities': ^1.3.4 '@types/jest': ^27.5.2 '@types/node': ^16.11.38 '@types/path-browserify': ^1.0.0 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/redux-devtools-themes': ^1.0.0 '@types/source-map': 0.5.2 '@typescript-eslint/eslint-plugin': ^5.27.0 @@ -1478,9 +1478,9 @@ importers: html-entities: ^2.3.3 jest: ^27.5.1 path-browserify: ^1.0.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-test-renderer: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 + react-test-renderer: ^18.1.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 @@ -1506,13 +1506,13 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor - '@testing-library/react': 12.1.5_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm '@types/babel__code-frame': 7.0.3 '@types/html-entities': 1.3.4 '@types/jest': 27.5.2 '@types/node': 16.11.38 '@types/path-browserify': 1.0.0 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@types/redux-devtools-themes': 1.0.0 '@types/source-map': 0.5.2 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la @@ -1523,9 +1523,9 @@ importers: eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 jest: 27.5.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-test-renderer: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-test-renderer: 18.1.0_react@18.1.0 redux: 4.2.0 rimraf: 3.0.2 ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya @@ -1543,8 +1543,8 @@ importers: '@types/base16': ^1.0.2 '@types/lodash.shuffle': ^4.2.7 '@types/node': ^16.11.38 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/redux-logger': ^3.0.9 '@types/webpack-env': ^1.17.0 '@typescript-eslint/eslint-plugin': ^5.27.0 @@ -1560,9 +1560,9 @@ importers: html-webpack-plugin: ^5.5.0 immutable: ^4.1.0 lodash.shuffle: ^4.2.0 - react: ^17.0.2 + react: ^18.1.0 react-bootstrap: ^2.4.0 - react-dom: ^17.0.2 + react-dom: ^18.1.0 react-redux: ^8.0.2 react-router-dom: ^6.3.0 redux: ^4.2.0 @@ -1579,11 +1579,11 @@ importers: base16: 1.0.0 immutable: 4.1.0 lodash.shuffle: 4.2.0 - react: 17.0.2 - react-bootstrap: 2.4.0_k2mvpji5i2ojml6m4ftklg47pa - react-dom: 17.0.2_react@17.0.2 - react-redux: 8.0.2_lc2dihjbtf6eny6pheutrryeay - react-router-dom: 6.3.0_sfoxds7t5ydpegc3knd667wn6m + react: 18.1.0 + react-bootstrap: 2.4.0_eurjwfem4ie5nnznw6gmhlbswe + react-dom: 18.1.0_react@18.1.0 + react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua + react-router-dom: 6.3.0_ef5jwxihqo6n7gxfmzogljlgcm redux: 4.2.0 redux-logger: 3.0.6 devDependencies: @@ -1594,8 +1594,8 @@ importers: '@types/base16': 1.0.2 '@types/lodash.shuffle': 4.2.7 '@types/node': 16.11.38 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/redux-logger': 3.0.9 '@types/webpack-env': 1.17.0 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la @@ -1676,7 +1676,7 @@ importers: '@redux-devtools/core': ^3.13.1 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/redux-devtools-themes': ^1.0.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -1686,7 +1686,7 @@ importers: eslint-plugin-react-hooks: ^4.5.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.1.0 react-json-tree: ^0.17.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 @@ -1710,14 +1710,14 @@ importers: '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@redux-devtools/core': link:../redux-devtools - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 eslint-config-prettier: 8.5.0_eslint@8.17.0 eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 17.0.2 + react: 18.1.0 redux: 4.2.0 rimraf: 3.0.2 typescript: 4.7.3 @@ -1792,7 +1792,7 @@ importers: '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/redux-devtools-themes': ^1.0.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -1806,7 +1806,7 @@ importers: jss-preset-default: ^10.9.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.1.0 react-base16-styling: ^0.9.1 react-json-tree: ^0.17.0 redux: ^4.2.0 @@ -1837,17 +1837,17 @@ importers: '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@redux-devtools/core': link:../redux-devtools - '@reduxjs/toolkit': 1.8.2_react@17.0.2 + '@reduxjs/toolkit': 1.8.2_react@18.1.0 '@types/hex-rgba': 1.0.1 '@types/lodash.debounce': 4.0.7 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 eslint-config-prettier: 8.5.0_eslint@8.17.0 eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 17.0.2 + react: 18.1.0 redux: 4.2.0 rimraf: 3.0.2 typescript: 4.7.3 @@ -1860,7 +1860,7 @@ importers: '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 - '@chakra-ui/react': ^1.8.8 + '@chakra-ui/react': ^2.1.2 '@emotion/react': ^11.9.0 '@emotion/styled': ^11.8.1 '@mswjs/data': ^0.10.1 @@ -1870,8 +1870,8 @@ importers: '@reduxjs/toolkit': ^1.8.2 '@types/copy-webpack-plugin': ^8.0.1 '@types/node': ^16.11.38 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -1887,10 +1887,10 @@ importers: framer-motion: ^6.3.10 html-webpack-plugin: ^5.5.0 msw: ^0.42.0 - react: ^17.0.2 - react-dom: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 react-icons: ^4.4.0 - react-is: ^17.0.2 + react-is: ^18.1.0 react-redux: ^8.0.2 react-router-dom: ^6.3.0 style-loader: ^3.3.1 @@ -1902,23 +1902,23 @@ importers: webpack-dev-server: ^4.9.1 dependencies: '@babel/runtime': 7.18.3 - '@chakra-ui/react': 1.8.8_35m6iuyn7qvwsjtignyl5fhroi - '@emotion/react': 11.9.0_ddpcdz72weezmodm7yk4v5n3v4 - '@emotion/styled': 11.8.1_74quhjy2o5fky35ibrqgdmklba + '@chakra-ui/react': 2.1.2_igbwp4hc33gbgqcw4wgvguo2hq + '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u + '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i '@mswjs/data': 0.10.1_typescript@4.7.3 '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/rtk-query-monitor': link:.. - '@reduxjs/toolkit': 1.8.2_thunyjspsylz6iliyoygaytnnq - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m + '@reduxjs/toolkit': 1.8.2_ctm756ikdwcjcvyfxxwskzbr6q + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm msw: 0.42.0_typescript@4.7.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-icons: 4.4.0_react@17.0.2 - react-is: 17.0.2 - react-redux: 8.0.2_zn5uodkvigq2cma2dm4r3u5424 - react-router-dom: 6.3.0_sfoxds7t5ydpegc3knd667wn6m - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-icons: 4.4.0_react@18.1.0 + react-is: 18.1.0 + react-redux: 8.0.2_zlkrlo2xsersbascmmsr65fm34 + react-router-dom: 6.3.0_ef5jwxihqo6n7gxfmzogljlgcm + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq devDependencies: '@babel/core': 7.18.2 '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 @@ -1927,8 +1927,8 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@types/copy-webpack-plugin': 8.0.1_webpack-cli@4.9.2 '@types/node': 16.11.38 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 @@ -2009,7 +2009,7 @@ importers: '@rollup/plugin-babel': ^5.3.1 '@types/node': ^16.11.38 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/redux-devtools-themes': ^1.0.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -2018,7 +2018,7 @@ importers: eslint-plugin-react: ^7.30.0 eslint-plugin-react-hooks: ^4.5.0 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.1.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 @@ -2044,14 +2044,14 @@ importers: '@redux-devtools/core': link:../redux-devtools '@rollup/plugin-babel': 5.3.1_xrrjiapkmykkmovg76xtzegu3a '@types/node': 16.11.38 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 eslint-config-prettier: 8.5.0_eslint@8.17.0 eslint-plugin-react: 7.30.0_eslint@8.17.0 eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 17.0.2 + react: 18.1.0 redux: 4.2.0 rimraf: 3.0.2 rollup: 2.75.5 @@ -2072,8 +2072,8 @@ importers: '@types/classnames': ^2.3.1 '@types/node': ^16.11.38 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 '@types/webpack-env': ^1.17.0 '@typescript-eslint/eslint-plugin': ^5.27.0 @@ -2089,9 +2089,9 @@ importers: fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-is: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 + react-is: ^18.1.0 react-redux: ^8.0.2 redux: ^4.2.0 style-loader: ^3.3.1 @@ -2109,12 +2109,12 @@ importers: '@redux-devtools/slider-monitor': link:../.. classnames: 2.3.1 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 - react-redux: 8.0.2_lc2dihjbtf6eny6pheutrryeay + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-is: 18.1.0 + react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua redux: 4.2.0 - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq todomvc-app-css: 2.4.2 devDependencies: '@babel/core': 7.18.2 @@ -2124,8 +2124,8 @@ importers: '@types/classnames': 2.3.1 '@types/node': 16.11.38 '@types/prop-types': 15.7.5 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 '@types/webpack-env': 1.17.0 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la @@ -2160,15 +2160,15 @@ importers: '@storybook/addon-essentials': ^6.5.7 '@storybook/react': ^6.5.7 '@testing-library/dom': ^8.13.0 - '@testing-library/react': ^12.1.5 - '@testing-library/user-event': ^13.5.0 + '@testing-library/react': ^13.3.0 + '@testing-library/user-event': ^14.2.0 '@types/base16': ^1.0.2 '@types/codemirror': ^5.60.5 '@types/color': ^3.0.3 '@types/jest': ^27.5.2 '@types/json-schema': ^7.0.11 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.12 '@types/redux-devtools-themes': ^1.0.0 '@types/simple-element-resize-detector': ^1.3.0 '@types/styled-components': ^5.1.25 @@ -2187,10 +2187,10 @@ importers: jest: ^27.5.1 ncp: ^2.0.0 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 react-icons: ^4.4.0 - react-is: ^17.0.2 + react-is: ^18.1.0 react-select: ^5.3.2 redux-devtools-themes: ^1.0.0 require-from-string: ^2.0.2 @@ -2207,7 +2207,7 @@ importers: webpack: ^5.73.0 dependencies: '@babel/runtime': 7.18.3 - '@rjsf/core': 4.2.0_react@17.0.2 + '@rjsf/core': 4.2.0_react@18.1.0 '@types/base16': 1.0.2 '@types/codemirror': 5.60.5 '@types/json-schema': 7.0.11 @@ -2218,8 +2218,8 @@ importers: codemirror: 5.65.5 color: 4.2.3 prop-types: 15.8.1 - react-icons: 4.4.0_react@17.0.2 - react-select: 5.3.2_mk7blnrphnoord32peccbqkdtq + react-icons: 4.4.0_react@18.1.0 + react-select: 5.3.2_oo3emjpi3bbjzqzdmt4yuasdq4 redux-devtools-themes: 1.0.0 simple-element-resize-detector: 1.3.0 devDependencies: @@ -2230,14 +2230,14 @@ importers: '@babel/preset-env': 7.18.2_@babel+core@7.18.2 '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@storybook/addon-essentials': 6.5.7_sek6bz6pqvpk5cfqv7oklkg3zm - '@storybook/react': 6.5.7_qmoiwc7i44wxgv4fy57zmk2wy4 + '@storybook/addon-essentials': 6.5.7_o33xyr6fnetv6pqyclkfmq3bn4 + '@storybook/react': 6.5.7_4o7xaollaaxmemegmn2rsjw3jy '@testing-library/dom': 8.13.0 - '@testing-library/react': 12.1.5_sfoxds7t5ydpegc3knd667wn6m - '@testing-library/user-event': 13.5.0_tlwynutqiyp5mns3woioasuxnq + '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm + '@testing-library/user-event': 14.2.0_tlwynutqiyp5mns3woioasuxnq '@types/color': 3.0.3 '@types/jest': 27.5.2 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@types/styled-components': 5.1.25 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 @@ -2250,12 +2250,12 @@ importers: eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 jest: 27.5.1 ncp: 2.0.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-is: 18.1.0 require-from-string: 2.0.2 rimraf: 3.0.2 - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq stylelint: 14.8.5 stylelint-config-prettier: 9.0.3_stylelint@14.8.5 stylelint-config-standard: 25.0.0_stylelint@14.8.5 @@ -2331,8 +2331,8 @@ importers: '@redux-devtools/log-monitor': ^4.0.0 '@types/node': ^16.11.38 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/webpack-env': ^1.17.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -2345,8 +2345,8 @@ importers: fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 react-redux: ^8.0.2 redux: ^4.2.0 redux-thunk: ^2.4.1 @@ -2360,9 +2360,9 @@ importers: '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor '@redux-devtools/log-monitor': link:../../../redux-devtools-log-monitor prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-redux: 8.0.2_lc2dihjbtf6eny6pheutrryeay + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 devDependencies: @@ -2372,8 +2372,8 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 '@types/node': 16.11.38 '@types/prop-types': 15.7.5 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/webpack-env': 1.17.0 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 @@ -2403,8 +2403,8 @@ importers: '@types/classnames': ^2.3.1 '@types/node': ^16.11.38 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.17 + '@types/react': ^18.0.12 + '@types/react-dom': ^18.0.5 '@types/webpack-env': ^1.17.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 @@ -2419,8 +2419,8 @@ importers: fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 + react: ^18.1.0 + react-dom: ^18.1.0 react-redux: ^8.0.2 redux: ^4.2.0 style-loader: ^3.3.1 @@ -2436,9 +2436,9 @@ importers: '@redux-devtools/log-monitor': link:../../../redux-devtools-log-monitor classnames: 2.3.1 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-redux: 8.0.2_lc2dihjbtf6eny6pheutrryeay + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua redux: 4.2.0 todomvc-app-css: 2.4.2 devDependencies: @@ -2449,8 +2449,8 @@ importers: '@types/classnames': 2.3.1 '@types/node': 16.11.38 '@types/prop-types': 15.7.5 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/webpack-env': 1.17.0 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 @@ -4083,773 +4083,775 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@chakra-ui/accordion/1.4.11_5q4dia636cx7ayc3jmkztslefe: - resolution: {integrity: sha512-d/gvSgGwcZaJXxXqGmecpAgko/tUYb5vR0E0B2/V/z9AVbS8ei//fbiO9+8Ouyl/K46oWHWYj5vt8iTadlZleg==} + /@chakra-ui/accordion/2.0.2_eyugdzcckvrfjzqf6jbbg6u4am: + resolution: {integrity: sha512-GPs84OQNEtLhDrDFJGzLl55zA1YOFspIBHKGgcMzpbuhoikJ65GuZKDnXsUQx0Qs34Ew4ctvj1muEUhrsssY5g==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/descendant': 2.1.3_react@17.0.2 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 + '@chakra-ui/descendant': 3.0.1_react@18.1.0 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i + '@chakra-ui/utils': 2.0.1 + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 dev: false - /@chakra-ui/alert/1.3.7_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-fFpJYBpHOIK/BX4BVl/xafYiDBUW+Bq/gUYDOo4iAiO4vHgxo74oa+yOwSRNlNjAgIX7pi2ridsYQALKyWyxxQ==} + /@chakra-ui/alert/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-Vs/9+EmNiT6W3fqVRVsBpldVrhYgvgYHhpGZ+peWPiyn6EP36+4ZgQwlGsPbsGNrqHlzq4B62FnhaAmQZLr7FA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/spinner': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/anatomy/1.3.0_@chakra-ui+system@1.12.1: - resolution: {integrity: sha512-vj/lcHkCuq/dtbl69DkNsftZTnrGEegB90ODs1B6rxw8iVMdDSYkthPPFAkqzNs4ppv1y2IBjELuVzpeta1OHA==} + /@chakra-ui/anatomy/2.0.0_@chakra-ui+system@2.1.1: + resolution: {integrity: sha512-fcLWW/vtUsLVZrmkgZvbTXyn1zFpszGq7dqU0UYB0X6x7RouajOzBU//JQChlnqsW4qSGLWBU6IMAbRoTLzGpw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' + '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/theme-tools': 2.0.1_@chakra-ui+system@2.1.1 dev: false - /@chakra-ui/avatar/1.3.11_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-/eRRK48Er92/QWAfWhxsJIN0gZBBvk+ew4Hglo+pxt3/NDnfTF2yPE7ZN29Dl6daPNbyTOpoksMwaU2mZIqLgA==} + /@chakra-ui/avatar/2.0.2_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-cfX/n0DGlSvpf2oGa5l29jXDyNXQXfVD3jT/pEYaEbNsZ7Z+uUHDcJYoriUcXx8u/lpVCr97Fu2iwjrhczSkyQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/image': 1.1.10_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/image': 2.0.2_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/breadcrumb/1.3.6_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-iXxienBO6RUnJEcDvyDWyRt+mzPyl7/b6N8i0vrjGKGLpgtayJFvIdo33tFcvx6TCy7V9hiE3HTtZnNomWdR6A==} + /@chakra-ui/breadcrumb/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-ytoVBCkdosf4TiyBqs14Y8eCD9ypisPfztgcdEJYUvgQ2eUO7rrmIpsu+Sc+Ah3o7Lu5yHcIyu94aIQJ/ix35Q==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/button/1.5.10_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-IVEOrleI378CckAa3b3CTUHMPZRfpy6LPwn1Mx3sMpHEkDTKu8zJcjgEvCE8HYzNC1KbwBsa1PfTgk40ui6EtA==} + /@chakra-ui/button/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-8ye7Bg+kpu0u+jtpbcND0FMhRyXFdNcIbjBMIj+IpWEGptSZyKYnHsdUPQKGstUNGXlf10sDpsHWI+h8m1HfWQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/spinner': 1.2.6_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/spinner': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/checkbox/1.7.1_5q4dia636cx7ayc3jmkztslefe: - resolution: {integrity: sha512-9Io97yn8OrdaIynCj+3Z/neJV7lTT1MtcdYh3BKMd7WnoJDkRY/GlBM8zsdgC5Wvm+ZQ1M83t0YvRPKLLzusyA==} + /@chakra-ui/checkbox/2.0.2_eyugdzcckvrfjzqf6jbbg6u4am: + resolution: {integrity: sha512-dYWU7y3w4Q35UlMyfeJs958CUQXXffALBIUNHsIyUjbC/eN+p8V0vur8n0zAb3NV3WXFGXzJGHsp4JJa1HLnAg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 + '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 dev: false - /@chakra-ui/clickable/1.2.6_react@17.0.2: - resolution: {integrity: sha512-89SsrQwwwAadcl/bN8nZqqaaVhVNFdBXqQnxVy1t07DL5ezubmNb5SgFh9LDznkm9YYPQhaGr3W6HFro7iAHMg==} + /@chakra-ui/clickable/2.0.1_react@18.1.0: + resolution: {integrity: sha512-VfU+PpaGD4TdNm3qnYefIzcJLrKYj84suKDAulTacCTEzIluriXlXXEZ+3hIoctjfDG3iIHnnh1LrytXVhi2/A==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/close-button/1.2.7_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-cYTxfgrIlPU4IZm1sehZXxx/TNQBk9c3LBPvTpywEM8GVRGINh4YLq8WiMaPtO+TDNBnKoWS/jS4IHnR+abADw==} + /@chakra-ui/close-button/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-d3i/VGC3jO6HCOK7K6REv32JOkqYaA02OUQh4fgE7l/0SGbLLI9F8CzZfg2iz32du0XHe4ZIqenNYcc+3pqRaA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/color-mode/1.4.8_react@17.0.2: - resolution: {integrity: sha512-iD4126DVQi06c6ARr3uf3R2rtEu8aBVjW8rhZ+lOsV26Z15iCJA7OAut13Xu06fcZvgjSB/ChDy6Sx9sV9UjHA==} + /@chakra-ui/color-mode/2.0.3_react@18.1.0: + resolution: {integrity: sha512-nIULe9IgmznDKr/9QrqZ0sSYt6vMSRAcpmYpU5QRuyIncIXLdCYpfyo8zxEIOf8yXgxRuaRYdSl9QJh4NLI8yQ==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-env': 1.1.6_react@17.0.2 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/control-box/1.1.6_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-EUcq5f854puG6ZA6wAWl4107OPl8+bj4MMHJCa48BB0qec0U8HCEtxQGnFwJmaYLalIAjMfHuY3OwO2A3Hi9hA==} + /@chakra-ui/control-box/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-PpSn4jrvREpiKyz2gLWQXz2Bp1kzzK6XweMqSBOtHzj0b/53b2IzkNsgqTjv1FdoWdlzChRCY7p2ViL7jpv8dQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/counter/1.2.10_react@17.0.2: - resolution: {integrity: sha512-HQd09IuJ4z8M8vWajH+99jBWWSHDesQZmnN95jUg3HKOuNleLaipf2JFdrqbO1uWQyHobn2PM6u+B+JCAh2nig==} + /@chakra-ui/counter/2.0.1_react@18.1.0: + resolution: {integrity: sha512-6LnSkF3NRNd6hGmceKgYWKBDilWOfxQAbCLG462ARWHw8ym71W5IZURmC90QqKf4hTQP5mNAdWkYzv2qN0Rnsg==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/css-reset/1.1.3_qy3iey4iudt25gp34xnq4xoic4: - resolution: {integrity: sha512-AgfrE7bRTJvNi/4zIfacI/kBHmHmHEIeQtHwCvk/0qM9V2gK1VM3ctYlnibf7BTh17F/UszweOGRb1lHSPfWjw==} + /@chakra-ui/css-reset/2.0.0_btguaf77hpuxici4esujjeifki: + resolution: {integrity: sha512-9L+/5t+QdV5lSoJptn+zCkt23mdFoQYLdpJadKgRQ5jBxl640e+LGLu/3GV1MGdyqHN0V+GSAJqQiojRJPH/gg==} peerDependencies: '@emotion/react': '>=10.0.35' - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@emotion/react': 11.9.0_ddpcdz72weezmodm7yk4v5n3v4 - react: 17.0.2 + '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u + react: 18.1.0 dev: false - /@chakra-ui/descendant/2.1.3_react@17.0.2: - resolution: {integrity: sha512-aNYNv99gEPENCdw2N5y3FvL5wgBVcLiOzJ2TxSwb4EVYszbgBZ8Ry1pf7lkoSfysdxD0scgy2cVyxO8TsYTU4g==} + /@chakra-ui/descendant/3.0.1_react@18.1.0: + resolution: {integrity: sha512-V86JwFb80iZqRxAoj9lmITv+/Hj8Mw3p3SZy+TdcwPzIYCDdbJUxuMM6FGQjjiygul1H4NPoCZk0AaobbVVHcA==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - react: 17.0.2 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + react: 18.1.0 dev: false - /@chakra-ui/editable/1.4.2_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-a5zKghA/IvG7yNkmFl7Z9c2KSsf0FgyijsNPTg/4S5jxyz13QJtoTg40tdpyaxHHCT25y25iUcV4FYCj6Jd01w==} + /@chakra-ui/editable/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-4BAFKRs5eMS89nV4UcAqTBKxrv0LQwUjGZuR1KVxxmy4TJaQHnEFrxTc1MdI6+Vpg+99NYDDN0RRMTPRPhF8mg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/focus-lock/1.2.6_hx2b44akkvgcgvvtmk7ds2qk6q: - resolution: {integrity: sha512-ZJNE1oNdUM1aGWuCJ+bxFa/d3EwxzfMWzTKzSvKDK50GWoUQQ10xFTT9nY/yFpkcwhBvx1KavxKf44mIhIbSog==} + /@chakra-ui/focus-lock/2.0.2_cbpnieqasrszcwkqeh5i7z7nse: + resolution: {integrity: sha512-h+Ulm7R/EwXay9Wzyf7/ZXoc6ZIvbCvFDuML+XxXD9/oUbc+7Tpe49+TMmB4fMFqFEDXDCrFxh5dHDCMDWNJJA==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 - react-focus-lock: 2.5.2_hx2b44akkvgcgvvtmk7ds2qk6q + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 + react-focus-lock: 2.9.1_cbpnieqasrszcwkqeh5i7z7nse transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/form-control/1.6.0_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-MtUE98aocP2QTgvyyJ/ABuG33mhT3Ox56phKreG3HzbUKByMwrbQSm1QcAgyYdqSZ9eKB2tXx+qgGNh+avAfDA==} + /@chakra-ui/form-control/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-j7pmUux478sEmmTsOJk6C69xCr9Bfu1xmaW6VqmeNDo79PhtQbXa3M2uj4goCLqGkjONlhDMNkN49dCEaBbEAw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/hooks/1.9.1_react@17.0.2: - resolution: {integrity: sha512-SEeh1alDKzrP9gMLWMnXOUDBQDKF/URL6iTmkumTn6vhawWNla6sPrcMyoCzWdMzwUhZp3QNtCKbUm7dxBXvPw==} + /@chakra-ui/hooks/2.0.1_react@18.1.0: + resolution: {integrity: sha512-z11Bci1SKbB5Hc0e1kI2mJR7InqmpiY5fTm4b0slbAB8y4bWiLekCYKP/ulEKcocObOQXWvumlGR7xoMO/GtEQ==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/utils': 1.10.4 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/utils': 2.0.1 compute-scroll-into-view: 1.0.14 copy-to-clipboard: 3.3.1 - react: 17.0.2 + react: 18.1.0 dev: false - /@chakra-ui/icon/2.0.5_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-ZrqRvCCIxGr4qFd/r1pmtd9tobRmv8KAxV7ygFoc/t4vOSKTcVIjhE12gsI3FzgvXM15ZFVwsxa1zodwgo5neQ==} + /@chakra-ui/icon/3.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-8Pcp7p6abLbYSx4xsEns5/iiNtGl291pt/Bl87xfWfbnDl1H03NHBMtIK+w+2sf31486cJlknbz5G4cXK8mhJA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/image/1.1.10_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-PJZmhQ/R1PgdMyCRjALfoyq1FNh/WzMAw70sliHLtLcb9hBXniwQZuckYfUshCkUoFBj/ow9d4byn9Culdpk7Q==} + /@chakra-ui/image/2.0.2_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-4fDYhwnLk1NvzOm+nxGitnp3OQyZP+8YqwL7AF844BUexGolR37M1Uox4t49dn+rP2n2KdXRQPOLrA2Qe14R5g==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/input/1.4.6_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-Ljy/NbOhh9cNQxKTWQRsT4aQiXs2vVya+Cj5NpMAz08NFFjPZovsTawhI7m6ejT5Vsh76QYjh2rOLLI3fWqQQw==} + /@chakra-ui/input/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-FDpEbIBGzTXHedI2q/C23vDeRxDpaJAS1oD4mvCatvZtWqJ83oxsFM0TcilZbP+F7VRNVs8X7NrW2Q5AN1Wxzw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/layout/1.8.0_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-GJtEKez5AZu0XQTxI6a6jwA/hMDD36pP0HBxBOGuHP1hWCebDzMjraiMfWiP9w7hKERFE4j19kocHxIXyocfJA==} + /@chakra-ui/layout/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-fC4Q1IMo2BYwuS0tDitIGJ0ziwQhI/vmRdOd8M091m3hM/Odl6NAHPRVCKxdHOe9TZd/nWVdF+Gcl9TLu/wOCQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/live-region/1.1.6_react@17.0.2: - resolution: {integrity: sha512-9gPQHXf7oW0jXyT5R/JzyDMfJ3hF70TqhN8bRH4fMyfNr2Se+SjztMBqCrv5FS5rPjcCeua+e0eArpoB3ROuWQ==} + /@chakra-ui/live-region/2.0.1_react@18.1.0: + resolution: {integrity: sha512-c4vHKE5Mb1zjEa1M2oKVD+4OKqeFJowmiME5vrBV2Brh9z+8lM6fhn5Ulkd41U+YnduUvhBtE9CiDu6z0jTs4A==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/media-query/2.0.4_sxr25aaor3bltw4csjjk62xw3q: - resolution: {integrity: sha512-kn6g/L0IFFUHz2v4yiCsBnhg9jUeA7525Z+AWl+BPtvryi7i9J+AJ27y/QAge7vUGy4dwDeFyxOZTs2oZ9/BsA==} + /@chakra-ui/media-query/3.0.2_lkrij7qeqj624bfjtusxj2gvoy: + resolution: {integrity: sha512-v1FcJebws2DEZ6G+pFkS8nWqIEB2mnaxykXGETYrG7Tv/Jx7LGsqXu9aAhhW1nnc5Ecw56yfUpz6go86Vsyqcw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - '@chakra-ui/theme': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/theme': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-env': 1.1.6_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/react-env': 2.0.1_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/theme': 2.0.3_@chakra-ui+system@2.1.1 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/menu/1.8.11_5q4dia636cx7ayc3jmkztslefe: - resolution: {integrity: sha512-8K65xItPsdMvSfuGWYIGigOF/QMcy7+D48UIEO/Hu0u0ckd11/JXbpSIFPddH5fYedclJ18PGRohTne487OVjQ==} + /@chakra-ui/menu/2.0.2_eyugdzcckvrfjzqf6jbbg6u4am: + resolution: {integrity: sha512-YnjFgtiRgeDPnMO/4binlOlA0x6SiwJhyxn4SwE22JmHpkzNQ7S3WWIVlkdxY9Kdxwk8dAMegoxVo59xwRcIPg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/clickable': 1.2.6_react@17.0.2 - '@chakra-ui/descendant': 2.1.3_react@17.0.2 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/popper': 2.4.3_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 + '@chakra-ui/clickable': 2.0.1_react@18.1.0 + '@chakra-ui/descendant': 3.0.1_react@18.1.0 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/popper': 3.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i + '@chakra-ui/utils': 2.0.1 + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 dev: false - /@chakra-ui/modal/1.11.1_o6or5jvbm37b3mcyk4iaof2csi: - resolution: {integrity: sha512-B2BBDonHb04vbPLAWgko1JYBwgW8ZNSLyhTJK+rbrCsRSgazuLTcwq4hdyJqrYNWtaQEfSwpAXqJ7joMZdv59A==} + /@chakra-ui/modal/2.0.2_55xxg4lafxoewpwqhala4tjpga: + resolution: {integrity: sha512-1XL4vzRzzLfGyPvq7/rPBkVKEEldetuv3VFqv2WUPlQjw/SBg6zxA67B6T3eiLOnPykw2PcDVcuXylr7CYuoYA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' - react-dom: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' + react-dom: '>=18' dependencies: - '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/focus-lock': 1.2.6_hx2b44akkvgcgvvtmk7ds2qk6q - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu - '@chakra-ui/utils': 1.10.4 + '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/focus-lock': 2.0.2_cbpnieqasrszcwkqeh5i7z7nse + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i + '@chakra-ui/utils': 2.0.1 aria-hidden: 1.1.3 - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-remove-scroll: 2.4.1_hx2b44akkvgcgvvtmk7ds2qk6q + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-remove-scroll: 2.5.4_cbpnieqasrszcwkqeh5i7z7nse transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/number-input/1.4.7_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-LorGRZFMipom8vCUEbLi2s7bTHF2Fgiu766W0jTbzMje+8Z1ZoRQunH9OZWQnxnWQTUfUM2KBW8KwToYh1ojfQ==} + /@chakra-ui/number-input/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-O2lF52I9OIUJzfKZJlUw/oHGiBvCFdYRS7oG6c9t3nN6SKlbS+iLRKsCQ9+xp6NV0UpA70hMRZdLLdErqigZtA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/counter': 1.2.10_react@17.0.2 - '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/counter': 2.0.1_react@18.1.0 + '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/pin-input/1.7.10_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-Uz5vFK+ZevQtdYHBkddSFCrY44bweXLanpSv9X/D0pWpdML09qfPiKX4ydGzfRoS2u4L8NUtN86IcvdOQLhHQg==} + /@chakra-ui/pin-input/2.0.2_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-D3Ip+UIch7UmmjdIujapGeAa/TWXK26yGgQBDqeC5sGjXgukv0dybq0TVl276Ej4c0OtfRrnHsYe/s6qrQMgAQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/descendant': 2.1.3_react@17.0.2 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/descendant': 3.0.1_react@18.1.0 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/popover/1.11.9_5q4dia636cx7ayc3jmkztslefe: - resolution: {integrity: sha512-hJ1/Lwukox3ryTN7W1wnj+nE44utfLwQYvfUSdatt5dznnh8k0P6Wx7Hmjm1cYffRavBhqzwua/QZDWjJN9N0g==} + /@chakra-ui/popover/2.0.1_eyugdzcckvrfjzqf6jbbg6u4am: + resolution: {integrity: sha512-RL14IqclGVW9/DGve/LEY0kDULnQ+X4V93VmYAaaQpTWEjhKWehp01I+OJn76BQ0i4Lhy7b+XUMPaqkXsk3mAw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/popper': 2.4.3_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 + '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/popper': 3.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 dev: false - /@chakra-ui/popper/2.4.3_react@17.0.2: - resolution: {integrity: sha512-TGzFnYt3mtIVkIejtYIAu4Ka9DaYLzMR4NgcqI6EtaTvgK7Xep+6RTiY/Nq+ZT3l/eaNUwqHRFoNrDUg1XYasA==} + /@chakra-ui/popper/3.0.1_react@18.1.0: + resolution: {integrity: sha512-dEnW3QJxMyIIKCt3D5K1LWS6EbaDIRpzmlV4K4HeHHL08So6UFzQb8RgzoKuc2ZC5tJ7lKGdLWcSvHpiONVMmg==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 '@popperjs/core': 2.11.5 - react: 17.0.2 + react: 18.1.0 dev: false - /@chakra-ui/portal/1.3.10_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-t2KQ6MXbyf1qFYxWw/bs//CnwD+Clq7mbsP1Y7g+THCz2FvlLlMj45BWocLB30NoNyA8WCS2zyMBszW2/qvDiA==} + /@chakra-ui/portal/2.0.1_ef5jwxihqo6n7gxfmzogljlgcm: + resolution: {integrity: sha512-Yfe4ASpPLlpiPAzHq+yKsjhz6gfM9gUhCDBG97WQJc8WVoY/fg/aQHNtx69arS5p2a3ka9hXqdGtZwx8rxCD7Q==} peerDependencies: - react: '>=16.8.6' - react-dom: '>=16.8.6' + react: '>=18 || 18' + react-dom: '>=18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 dev: false - /@chakra-ui/progress/1.2.6_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-thaHRIYTVktgV78vJMNwzfCX+ickhSpn2bun6FtGVUphFx4tjV+ggz+IGohm6AH2hapskoR1mQU2iNZb6BK0hQ==} + /@chakra-ui/progress/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-sWw94BWC3LHfHc0Xg012IKf1L66X6hX0jclCt0Gg57isbdHbzpF0ApxF74g5oa2+AE+y0NuH7gnhsBAo/b5yUw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/theme-tools': 2.0.1_@chakra-ui+system@2.1.1 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/provider/1.7.14_rikzftoujo3cmwul4lespwcm6i: - resolution: {integrity: sha512-FCA33CZy/jFzExglKMioeri8sr9NtDTcNVPnx95ZJiA7WpfFo0xuZ6/fMC4DwIQPkJKbSIZBXYLZ3U10Ntylrw==} + /@chakra-ui/provider/2.0.4_gqsuqdqel52o6agzkiicszkmha: + resolution: {integrity: sha512-EsyapR3NynYof94Crn51gAcLteNKxVae7w+10zK0HafL4/u/2oISCPhPiefKiXT5ZtyVqaxA976hG6MDZh8yUw==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 - react: '>=16.8.6' - react-dom: '>=16.8.6' + react: '>=18 || 18' + react-dom: '>=18' dependencies: - '@chakra-ui/css-reset': 1.1.3_qy3iey4iudt25gp34xnq4xoic4 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m - '@chakra-ui/react-env': 1.1.6_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.9.0_ddpcdz72weezmodm7yk4v5n3v4 - '@emotion/styled': 11.8.1_74quhjy2o5fky35ibrqgdmklba - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/css-reset': 2.0.0_btguaf77hpuxici4esujjeifki + '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm + '@chakra-ui/react-env': 2.0.1_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u + '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 dev: false - /@chakra-ui/radio/1.5.1_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-zO5eShz+j68A7935jJ2q5u3brX/bjPEGh9Pj2+bnKbmC9Vva6jEzBSJsAx9n4WbkAzR3xDMGWsbpivFp8X1tJw==} + /@chakra-ui/radio/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-K/4RF54LXxrSZ6DuIsdGkh4eAgtjvebj+4I1Fv5/tJbG/0oG1YpkDkP1DV+W8HUm3BGIvg9doCU9IMCAzdoMUg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca - react: 17.0.2 + '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq + react: 18.1.0 dev: false - /@chakra-ui/react-env/1.1.6_react@17.0.2: - resolution: {integrity: sha512-L90LNvCfe04FTkN9OPok/o2e60zLJNBH8Im/5dUHvqy7dXLXok8ZDad5vEL46XmGbhe7O8fbxhG6FmAYdcCHrQ==} + /@chakra-ui/react-env/2.0.1_react@18.1.0: + resolution: {integrity: sha512-jgebRKe968Eyypv15W4DWhL2xwy1d7vRbd1F23yJu8hJaVFPBjYhIF0NFOUswPcFm/UGZhPx6avA2r3PyAWSuA==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/react-utils/1.2.3_react@17.0.2: - resolution: {integrity: sha512-r8pUwCVVB7UPhb0AiRa9ZzSp4xkMz64yIeJ4O4aGy4WMw7TRH4j4QkbkE1YC9tQitrXrliOlvx4WWJR4VyiGpw==} + /@chakra-ui/react-utils/2.0.0_react@18.1.0: + resolution: {integrity: sha512-QcDt2/e3xhfbDcR0FF/E+E1LYGiPMRh8U6160mcgDaG+IzEXtr2ELgZI5EYNpS5HyujpNBt7ivajgi5JQ8h6ew==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/react/1.8.8_35m6iuyn7qvwsjtignyl5fhroi: - resolution: {integrity: sha512-/XqL25J0i0h+usAXBngn/RTG2u1oQRzbhHe9tNHwFyNbx/izIADhQW/6ji06QU0KtaRIU77XvgSAyTtMJY1KmA==} + /@chakra-ui/react/2.1.2_igbwp4hc33gbgqcw4wgvguo2hq: + resolution: {integrity: sha512-4Lly69/sUBp1j35zyzC/N6YttA/lspg4eGuE3PemeCY6SdlDyc0ne1i+WZJ+iipG9eSYDOSQgpnDZ9hnnz4i9w==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' - react-dom: '>=16.8.6' + framer-motion: '>=4.0.0' + react: '>=18 || 18' + react-dom: '>=18' dependencies: - '@chakra-ui/accordion': 1.4.11_5q4dia636cx7ayc3jmkztslefe - '@chakra-ui/alert': 1.3.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/avatar': 1.3.11_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/breadcrumb': 1.3.6_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/button': 1.5.10_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/checkbox': 1.7.1_5q4dia636cx7ayc3jmkztslefe - '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/control-box': 1.1.6_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/counter': 1.2.10_react@17.0.2 - '@chakra-ui/css-reset': 1.1.3_qy3iey4iudt25gp34xnq4xoic4 - '@chakra-ui/editable': 1.4.2_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/image': 1.1.10_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/input': 1.4.6_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/layout': 1.8.0_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/live-region': 1.1.6_react@17.0.2 - '@chakra-ui/media-query': 2.0.4_sxr25aaor3bltw4csjjk62xw3q - '@chakra-ui/menu': 1.8.11_5q4dia636cx7ayc3jmkztslefe - '@chakra-ui/modal': 1.11.1_o6or5jvbm37b3mcyk4iaof2csi - '@chakra-ui/number-input': 1.4.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/pin-input': 1.7.10_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/popover': 1.11.9_5q4dia636cx7ayc3jmkztslefe - '@chakra-ui/popper': 2.4.3_react@17.0.2 - '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m - '@chakra-ui/progress': 1.2.6_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/provider': 1.7.14_rikzftoujo3cmwul4lespwcm6i - '@chakra-ui/radio': 1.5.1_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/react-env': 1.1.6_react@17.0.2 - '@chakra-ui/select': 1.2.11_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/skeleton': 1.2.14_4duuylh6eevzah5xrjjxhtcphy - '@chakra-ui/slider': 1.5.11_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/spinner': 1.2.6_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/stat': 1.2.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/switch': 1.3.10_5q4dia636cx7ayc3jmkztslefe - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/table': 1.3.6_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/tabs': 1.6.10_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/tag': 1.2.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/textarea': 1.2.11_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/toast': 1.5.9_7caotp2y6herssdqxdkjkxoivy - '@chakra-ui/tooltip': 1.5.1_7caotp2y6herssdqxdkjkxoivy - '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca - '@emotion/react': 11.9.0_ddpcdz72weezmodm7yk4v5n3v4 - '@emotion/styled': 11.8.1_74quhjy2o5fky35ibrqgdmklba - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/accordion': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am + '@chakra-ui/alert': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/avatar': 2.0.2_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/breadcrumb': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/button': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/checkbox': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am + '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/control-box': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/counter': 2.0.1_react@18.1.0 + '@chakra-ui/css-reset': 2.0.0_btguaf77hpuxici4esujjeifki + '@chakra-ui/editable': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/image': 2.0.2_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/input': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/layout': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/live-region': 2.0.1_react@18.1.0 + '@chakra-ui/media-query': 3.0.2_lkrij7qeqj624bfjtusxj2gvoy + '@chakra-ui/menu': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am + '@chakra-ui/modal': 2.0.2_55xxg4lafxoewpwqhala4tjpga + '@chakra-ui/number-input': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/pin-input': 2.0.2_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/popover': 2.0.1_eyugdzcckvrfjzqf6jbbg6u4am + '@chakra-ui/popper': 3.0.1_react@18.1.0 + '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm + '@chakra-ui/progress': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/provider': 2.0.4_gqsuqdqel52o6agzkiicszkmha + '@chakra-ui/radio': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/react-env': 2.0.1_react@18.1.0 + '@chakra-ui/select': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/skeleton': 2.0.4_qe4bp7ml2j5zoi7isckfhsj454 + '@chakra-ui/slider': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/spinner': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/stat': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/switch': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/table': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/tabs': 2.0.2_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/tag': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/textarea': 2.0.2_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/theme': 2.0.3_@chakra-ui+system@2.1.1 + '@chakra-ui/toast': 2.0.5_yn5echb7wvba63k2cyn3aupfu4 + '@chakra-ui/tooltip': 2.0.1_jmmv256z2f2q7oqs26eg46msx4 + '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i + '@chakra-ui/utils': 2.0.1 + '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u + '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/select/1.2.11_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-6Tis1+ZrRjQeWhQfziQn3ZdPphV5ccafpZOhiPdTcM2J1XcXOlII+9rHxvaW+jx7zQ5ly5o8kd7iXzalDgl5wA==} + /@chakra-ui/select/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-oIo58h92nNH4TIumXPwKzKhEugOUivhO1aXbPPsF0aRsoyv9fpd2WrD4HJRpeXnp0muEeO2J6jpuVp3EiLYlrw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/skeleton/1.2.14_4duuylh6eevzah5xrjjxhtcphy: - resolution: {integrity: sha512-R0v4DfQ2yjXCJf9SzhTmDb2PLx5//LxsRbjjgRa8qJCR4MZaGswPrekp4dP8YjY8aEYzuZbvHU12T3vqZBk2GA==} + /@chakra-ui/skeleton/2.0.4_qe4bp7ml2j5zoi7isckfhsj454: + resolution: {integrity: sha512-9hPUOfV9Pe+c86Nne7Fly+Q5Epy1wXeU8uEZmdyK5ID4i2zir7aeR7AMLlBFKLjoLHAgc0WXXn9qS5x3+MoRHg==} peerDependencies: - '@chakra-ui/theme': '>=1.0.0' + '@chakra-ui/theme': '>=2.0.0-next.0' '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/media-query': 2.0.4_sxr25aaor3bltw4csjjk62xw3q - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.9.0_ddpcdz72weezmodm7yk4v5n3v4 - '@emotion/styled': 11.8.1_74quhjy2o5fky35ibrqgdmklba - react: 17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/media-query': 3.0.2_lkrij7qeqj624bfjtusxj2gvoy + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/theme': 2.0.3_@chakra-ui+system@2.1.1 + '@chakra-ui/utils': 2.0.1 + '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u + '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i + react: 18.1.0 dev: false - /@chakra-ui/slider/1.5.11_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-THkGU2BsA6XMosXcEVQkWVRftqUIAKCb+y4iEpR3C2ztqL7Fl/CbIGwyr5majhPhKc275rb8dfxwp8R0L0ZIiQ==} + /@chakra-ui/slider/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-osA+atOf5xLzZhpONAM1/UcdXxYUQkMHqB08BYR0lLVJgU9ljD0iLOPp3M9PMQefzjuG/AC8IyFGv/2qwqCuwg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/spinner/1.2.6_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-GoUCccN120fGRVgUtfuwcEjeoaxffB+XsgpxX7jhWloXf8b6lkqm68bsxX4Ybb2vGN1fANI98/45JmrnddZO/A==} + /@chakra-ui/spinner/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-JiJZWtulV+cdKNHgsJlzaPdzudzkC1LHhCocaW4IU6LQGf7jRcWK2lxtsrLSjOu+IfXIs02cv835Qk40dD5NJA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca - react: 17.0.2 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq + react: 18.1.0 dev: false - /@chakra-ui/stat/1.2.7_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-m76jumFW1N+mCG4ytrUz9Mh09nZtS4OQcADEvOslfdI5StwwuzasTA1tueaelPzdhBioMwFUWL05Fr1fXbPJ/Q==} + /@chakra-ui/stat/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-ZSvGmeKoX0bzhkfs6IRl/PklcKKanvj/B8q8qlykqDoetLulEQ5mPQZp9YTg4RINBCCz8MQ3jf2Zpqmf8T0V7g==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca - react: 17.0.2 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq + react: 18.1.0 dev: false - /@chakra-ui/styled-system/1.19.0: - resolution: {integrity: sha512-z+bMfWs6jQGkpgarge1kmk78DuDhJIXRUMyRqZ3+CiIkze88bIIsww6mV2i8tEfUfTAvALeMnlYZ1DYsHsTTJw==} + /@chakra-ui/styled-system/2.1.1: + resolution: {integrity: sha512-uRnefdzvR+3DkLomABUj8EfqBp2pBXe4nEYHRsArNQ2B7OH2zuE2jdr64Hs3QjpEvWGfoIcpj0OuzwSaDI+41A==} dependencies: - '@chakra-ui/utils': 1.10.4 - csstype: 3.0.9 + '@chakra-ui/utils': 2.0.1 + csstype: 3.1.0 dev: false - /@chakra-ui/switch/1.3.10_5q4dia636cx7ayc3jmkztslefe: - resolution: {integrity: sha512-V6qDLY6oECCbPyu7alWWOAhSBI4+SAuT6XW/zEQbelkwuUOiGO1ax67rTXOmZ59A2AaV1gqQFxDh8AcbvwO5XQ==} + /@chakra-ui/switch/2.0.2_eyugdzcckvrfjzqf6jbbg6u4am: + resolution: {integrity: sha512-4j6f0bqCOkaF6u21QNJlJDn20o9xy4cZQdmlPBg3AgerVGDvTv81kTSL2CFhb5hgZ8jQhMpirNNOVnJIAH44jQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/checkbox': 1.7.1_5q4dia636cx7ayc3jmkztslefe - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 + '@chakra-ui/checkbox': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 dev: false - /@chakra-ui/system/1.12.1_bgqmsvm4hz6izcmpcwescmz73y: - resolution: {integrity: sha512-Rp09/rMuPA3hF38OJxeQciGO9N0Ie1GxwHRAw1AFA/TY3fVyK9pNI5oN+J/1cAxq7v9yKdIr1YfnruJTI9xfEg==} + /@chakra-ui/system/2.1.1_t4r7icl7x3elshpaxc4xm7jrem: + resolution: {integrity: sha512-hiIz/OsWtKgtp8dSfrjWxvGBFEpBbOuTB0uvq2zpEnRSU7cjFYOnGRVdTf+gE6KiuUPw6/rHgoczbQx4ZOGmDw==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/color-mode': 1.4.8_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/styled-system': 1.19.0 - '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.9.0_ddpcdz72weezmodm7yk4v5n3v4 - '@emotion/styled': 11.8.1_74quhjy2o5fky35ibrqgdmklba - react: 17.0.2 + '@chakra-ui/color-mode': 2.0.3_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/styled-system': 2.1.1 + '@chakra-ui/utils': 2.0.1 + '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u + '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i + react: 18.1.0 react-fast-compare: 3.2.0 dev: false - /@chakra-ui/table/1.3.6_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-7agZAgAeDFKviqStvixqnLAH54+setzhx67EztioZTr5Xu+6hQ4rotfJbu8L4i587pcbNg98kCEXEkidjw0XRQ==} + /@chakra-ui/table/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-Ns0RDJCHYi2826lpWo1fWmySDRAya4BA6Z34IJ0S1UmWyHe1/xwEbNMoROMIrIe+dRtfwD9B1oiPPQlpvB4rrg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/tabs/1.6.10_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-ClOOHT3Wnf3l9X4F2S6ysPsHMDgKSTgkXpB9Qe0odwpT49ZXNjSAYYaXzO16l+Eq/m2u1HzLkXVsL42HIeOiNQ==} + /@chakra-ui/tabs/2.0.2_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-WKm+jmakV7Gssgw/3yZGU/yx7akn+iSQv92sFeUvVbiRsVwT2cE3EeDzdcOO7X++EchvUekjejx5gFY1x+jrXw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/clickable': 1.2.6_react@17.0.2 - '@chakra-ui/descendant': 2.1.3_react@17.0.2 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/clickable': 2.0.1_react@18.1.0 + '@chakra-ui/descendant': 3.0.1_react@18.1.0 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/tag/1.2.7_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-RKrKOol4i/CnpFfo3T9LMm1abaqM+5Bs0soQLbo1iJBbBACY09sWXrQYvveQ2GYzU/OrAUloHqqmKjyVGOlNtg==} + /@chakra-ui/tag/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-A+haLDV1IEefAP41JNFtaPa74npiZZFd5sK/ZjXJnREYXW2MzcMN9Kype2jRIaR6zJ8iq9yHvxN2AfewMB1o9g==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/textarea/1.2.11_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-RDWbMyC87/AFRX98EnVum5eig/7hhcvS1BrqW5lvmTgrpr7KVr80Dfa8hUj58Iq37Z7AqZijDPkBn/zg7bPdIg==} + /@chakra-ui/textarea/2.0.2_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-oFZn62fhVIagDq1CWeiVeKDM6dBJlC5AuQ9PoGwo1FgTGh038a+HT9UeriML9vEwvTcleepBeLyTVNl0/H9+Xg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false - /@chakra-ui/theme-tools/1.3.6_@chakra-ui+system@1.12.1: - resolution: {integrity: sha512-Wxz3XSJhPCU6OwCHEyH44EegEDQHwvlsx+KDkUDGevOjUU88YuNqOVkKtgTpgMLNQcsrYZ93oPWZUJqqCVNRew==} + /@chakra-ui/theme-tools/2.0.1_@chakra-ui+system@2.1.1: + resolution: {integrity: sha512-CQn87uYxe3X8JmTAA52+jVS3A9FtioT4NDRUISN178yRnOly1Z6s01iYlbT37LemLSP2T3bCnHqFhdQKgS5yew==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' + '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 '@ctrl/tinycolor': 3.4.1 dev: false - /@chakra-ui/theme/1.14.1_@chakra-ui+system@1.12.1: - resolution: {integrity: sha512-VeNZi+zD3yDwzvZm234Cy3vnalCzQ+dhAgpHdIYzGO1CYO8DPa+ROcQ70rUueL7dSvUz15KOiGTw6DAl7LXlGA==} + /@chakra-ui/theme/2.0.3_@chakra-ui+system@2.1.1: + resolution: {integrity: sha512-zHNMYFlDSDI14+Fqao8/8b2qa9wr0zJV9mWVxGUvt4J6NNgD37LSrzhEgx/HM6cD/el++1UMrKCGcqPqO3jexw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' + '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/anatomy': 1.3.0_@chakra-ui+system@1.12.1 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1 - '@chakra-ui/utils': 1.10.4 + '@chakra-ui/anatomy': 2.0.0_@chakra-ui+system@2.1.1 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/theme-tools': 2.0.1_@chakra-ui+system@2.1.1 + '@chakra-ui/utils': 2.0.1 dev: false - /@chakra-ui/toast/1.5.9_7caotp2y6herssdqxdkjkxoivy: - resolution: {integrity: sha512-rns04bGdMcG7Ijg45L+PfuEW4rCd0Ycraix4EJQhcl9RXI18G9sphmlp9feidhZAkI6Ukafq1YvyvkBfkKnIzQ==} + /@chakra-ui/toast/2.0.5_yn5echb7wvba63k2cyn3aupfu4: + resolution: {integrity: sha512-J0iKPvq8kp3mUWXu4dkhGUlsZsMvHIWI7r/jpumMpNe39ngxOYNpRykzrHKW4/l96Uc0OhLzZhB5iIp6rq/bDg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' - react-dom: '>=16.8.6' + framer-motion: '>=4.0.0' + react: '>=18 || 18' + react-dom: '>=18' dependencies: - '@chakra-ui/alert': 1.3.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu - '@chakra-ui/utils': 1.10.4 - '@reach/alert': 0.13.2_sfoxds7t5ydpegc3knd667wn6m - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/alert': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/theme': 2.0.3_@chakra-ui+system@2.1.1 + '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i + '@chakra-ui/utils': 2.0.1 + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + transitivePeerDependencies: + - '@emotion/react' + - '@emotion/styled' dev: false - /@chakra-ui/tooltip/1.5.1_7caotp2y6herssdqxdkjkxoivy: - resolution: {integrity: sha512-EUAlDdlCBt63VpEVtj/RkFjHQVN/xA9gEAumngQdi1Sp+OXPYCBM9GwSY0NwrM1RfKBnhPSH9wz7FwredJWeaw==} + /@chakra-ui/tooltip/2.0.1_jmmv256z2f2q7oqs26eg46msx4: + resolution: {integrity: sha512-k/8dspyoJd004gqeqYYMmTjsWFJPgq9koASH/RZ+39qL6ZuwtRbDlWjm4ffAH/Fr9EQNJRBE9Rz2W0WjEuKo8Q==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' - react-dom: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' + react-dom: '>=18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/popper': 2.4.3_react@17.0.2 - '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/hooks': 2.0.1_react@18.1.0 + '@chakra-ui/popper': 3.0.1_react@18.1.0 + '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm + '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 dev: false - /@chakra-ui/transition/1.4.8_wqm4ypyyexhlohnntvsdczhkuu: - resolution: {integrity: sha512-5uc8LEuCH7+0h++wqAav/EktTHOjbLDSTXQlU9fzPIlNNgyf2eXrHVN2AGMGKiMR9Z4gS7umQjZ54r0w/mZ/Fw==} + /@chakra-ui/transition/2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i: + resolution: {integrity: sha512-EI0Z61Mk7ZdiWxHA0twgtgGIUUcWGvL7GsVQrDeJQl7u2Boq+isONLWqYPqZReOXRGoSFBiKZOaxnzrmmD3OBg==} peerDependencies: - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 + '@chakra-ui/utils': 2.0.1 + framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.1.0 dev: false - /@chakra-ui/utils/1.10.4: - resolution: {integrity: sha512-AM91VQQxw8F4F1WDA28mqKY6NFIOuzc2Ekkna88imy2OiqqmYH0xkq8J16L2qj4cLiLozpYqba3C79pWioy6FA==} + /@chakra-ui/utils/2.0.1: + resolution: {integrity: sha512-5yvIyzskfEi7nNWC0VR0T7KtOEZyy/5QwhbLZ/WD0zutV+SddLzmS7NnnnYvyuyT4SaNx/asKLerH2ucTz1pYA==} dependencies: '@types/lodash.mergewith': 4.6.6 css-box-model: 1.2.1 @@ -4857,15 +4859,15 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/visually-hidden/1.1.6_5qblqjf622vzzkdskgddihcrca: - resolution: {integrity: sha512-Xzy5bA0UA+IyMgwJizQYSEdgz8cC/tHdmFB3CniXzmpKTSK8mJddeEBl+cGbXHBzxEUhH7xF1eaS41O+0ezWEQ==} + /@chakra-ui/visually-hidden/2.0.1_gvhyduxkh7lachkwscygibi2bq: + resolution: {integrity: sha512-++NVj6mt110Zw+RtMr/cZLwK92WS5shL9kgGdtaXiIu6jTtcGMmKzq8YhBUY3Jb0BF3qgqSV36/JdIOrFETAKA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem + '@chakra-ui/utils': 2.0.1 + react: 18.1.0 dev: false /@changesets/apply-release-plan/6.0.0: @@ -5155,12 +5157,12 @@ packages: /@emotion/memoize/0.7.5: resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==} - /@emotion/react/11.9.0_ddpcdz72weezmodm7yk4v5n3v4: + /@emotion/react/11.9.0_mojt4vfvzjgczlgs4u436xt75u: resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==} peerDependencies: '@babel/core': ^7.0.0 '@types/react': '*' - react: '>=16.8.0' + react: '>=16.8.0 || 18' peerDependenciesMeta: '@babel/core': optional: true @@ -5174,9 +5176,9 @@ packages: '@emotion/serialize': 1.0.3 '@emotion/utils': 1.1.0 '@emotion/weak-memoize': 0.2.5 - '@types/react': 17.0.45 + '@types/react': 18.0.12 hoist-non-react-statics: 3.3.2 - react: 17.0.2 + react: 18.1.0 dev: false /@emotion/serialize/1.0.3: @@ -5193,13 +5195,13 @@ packages: resolution: {integrity: sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==} dev: false - /@emotion/styled/11.8.1_74quhjy2o5fky35ibrqgdmklba: + /@emotion/styled/11.8.1_ev7eaohrznmneepri7xttmcb7i: resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} peerDependencies: '@babel/core': ^7.0.0 '@emotion/react': ^11.0.0-rc.0 '@types/react': '*' - react: '>=16.8.0' + react: '>=16.8.0 || 18' peerDependenciesMeta: '@babel/core': optional: true @@ -5210,11 +5212,11 @@ packages: '@babel/runtime': 7.18.3 '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.2 '@emotion/is-prop-valid': 1.1.2 - '@emotion/react': 11.9.0_ddpcdz72weezmodm7yk4v5n3v4 + '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u '@emotion/serialize': 1.0.3 '@emotion/utils': 1.1.0 - '@types/react': 17.0.45 - react: 17.0.2 + '@types/react': 18.0.12 + react: 18.1.0 dev: false /@emotion/stylis/0.8.5: @@ -5713,12 +5715,12 @@ packages: - supports-color dev: true - /@mdx-js/react/1.6.22_react@17.0.2: + /@mdx-js/react/1.6.22_react@18.1.0: resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: - react: ^16.13.1 || ^17.0.0 + react: ^16.13.1 || ^17.0.0 || 18 dependencies: - react: 17.0.2 + react: 18.1.0 dev: true /@mdx-js/util/1.6.22: @@ -5955,58 +5957,19 @@ packages: resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} dev: false - /@reach/alert/0.13.2_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-LDz83AXCrClyq/MWe+0vaZfHp1Ytqn+kgL5VxG7rirUvmluWaj/snxzfNPWn0Ma4K2YENmXXRC/iHt5X95SqIg==} - peerDependencies: - react: ^16.8.0 || 17.x - react-dom: ^16.8.0 || 17.x - dependencies: - '@reach/utils': 0.13.2_sfoxds7t5ydpegc3knd667wn6m - '@reach/visually-hidden': 0.13.2_sfoxds7t5ydpegc3knd667wn6m - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - tslib: 2.4.0 - dev: false - - /@reach/utils/0.13.2_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ==} - peerDependencies: - react: ^16.8.0 || 17.x - react-dom: ^16.8.0 || 17.x - dependencies: - '@types/warning': 3.0.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - tslib: 2.4.0 - warning: 4.0.3 - dev: false - - /@reach/visually-hidden/0.13.2_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-sPZwNS0/duOuG0mYwE5DmgEAzW9VhgU3aIt1+mrfT/xiT9Cdncqke+kRBQgU708q/Ttm9tWsoHni03nn/SuPTQ==} - peerDependencies: - react: ^16.8.0 || 17.x - react-dom: ^16.8.0 || 17.x - dependencies: - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - tslib: 2.4.0 - dev: false - - /@react-aria/ssr/3.2.0_react@17.0.2: + /@react-aria/ssr/3.2.0_react@18.1.0: resolution: {integrity: sha512-wwJFdkl+Q8NU5yJ4NvdAOqx5LM3QtUVoSjuK7Ey8jZ4WS4bB0EqT3Kr3IInBs257HzZ5nXCiKXKE4NGXXuIRWA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 - react: 17.0.2 + react: 18.1.0 dev: false - /@reduxjs/toolkit/1.8.2_react@17.0.2: + /@reduxjs/toolkit/1.8.2_ctm756ikdwcjcvyfxxwskzbr6q: resolution: {integrity: sha512-CtPw5TkN1pHRigMFCOS/0qg3b/yfPV5qGCsltVnIz7bx4PKTJlGHYfIxm97qskLknMzuGfjExaYdXJ77QTL0vg==} peerDependencies: - react: ^16.9.0 || ^17.0.0 || ^18 + react: ^16.9.0 || ^17.0.0 || ^18 || 18 react-redux: ^7.2.1 || ^8.0.0-beta peerDependenciesMeta: react: @@ -6015,64 +5978,64 @@ packages: optional: true dependencies: immer: 9.0.14 - react: 17.0.2 + react: 18.1.0 + react-redux: 8.0.2_zlkrlo2xsersbascmmsr65fm34 + redux: 4.2.0 + redux-thunk: 2.4.1_redux@4.2.0 + reselect: 4.1.5 + dev: false + + /@reduxjs/toolkit/1.8.2_react@18.1.0: + resolution: {integrity: sha512-CtPw5TkN1pHRigMFCOS/0qg3b/yfPV5qGCsltVnIz7bx4PKTJlGHYfIxm97qskLknMzuGfjExaYdXJ77QTL0vg==} + peerDependencies: + react: ^16.9.0 || ^17.0.0 || ^18 || 18 + react-redux: ^7.2.1 || ^8.0.0-beta + peerDependenciesMeta: + react: + optional: true + react-redux: + optional: true + dependencies: + immer: 9.0.14 + react: 18.1.0 redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 reselect: 4.1.5 dev: true - /@reduxjs/toolkit/1.8.2_thunyjspsylz6iliyoygaytnnq: - resolution: {integrity: sha512-CtPw5TkN1pHRigMFCOS/0qg3b/yfPV5qGCsltVnIz7bx4PKTJlGHYfIxm97qskLknMzuGfjExaYdXJ77QTL0vg==} - peerDependencies: - react: ^16.9.0 || ^17.0.0 || ^18 - react-redux: ^7.2.1 || ^8.0.0-beta - peerDependenciesMeta: - react: - optional: true - react-redux: - optional: true - dependencies: - immer: 9.0.14 - react: 17.0.2 - react-redux: 8.0.2_zn5uodkvigq2cma2dm4r3u5424 - redux: 4.2.0 - redux-thunk: 2.4.1_redux@4.2.0 - reselect: 4.1.5 - dev: false - - /@restart/hooks/0.4.7_react@17.0.2: + /@restart/hooks/0.4.7_react@18.1.0: resolution: {integrity: sha512-ZbjlEHcG+FQtpDPHd7i4FzNNvJf2enAwZfJbpM8CW7BhmOAbsHpZe3tsHwfQUrBuyrxWqPYp2x5UMnilWcY22A==} peerDependencies: - react: '>=16.8.0' + react: '>=16.8.0 || 18' dependencies: dequal: 2.0.2 - react: 17.0.2 + react: 18.1.0 dev: false - /@restart/ui/1.2.0_sfoxds7t5ydpegc3knd667wn6m: + /@restart/ui/1.2.0_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-oIh2t3tG8drZtZ9SlaV5CY6wGsUViHk8ZajjhcI+74IQHyWy+AnxDv8rJR5wVgsgcgrPBUvGNkC1AEdcGNPaLQ==} peerDependencies: - react: '>=16.14.0' + react: '>=16.14.0 || 18' react-dom: '>=16.14.0' dependencies: '@babel/runtime': 7.18.3 '@popperjs/core': 2.11.5 - '@react-aria/ssr': 3.2.0_react@17.0.2 - '@restart/hooks': 0.4.7_react@17.0.2 + '@react-aria/ssr': 3.2.0_react@18.1.0 + '@restart/hooks': 0.4.7_react@18.1.0 '@types/warning': 3.0.0 dequal: 2.0.2 dom-helpers: 5.2.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - uncontrollable: 7.2.1_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + uncontrollable: 7.2.1_react@18.1.0 warning: 4.0.3 dev: false - /@rjsf/core/4.2.0_react@17.0.2: + /@rjsf/core/4.2.0_react@18.1.0: resolution: {integrity: sha512-bGWWCZjXHhBCkzag1Yh6F7a15/D6AqKRyks1szYWdCe+4jwWU3maC3apUxHJlHFRz3V1aBW6j6i/UB6zHmFXLQ==} engines: {node: '>=12'} peerDependencies: - react: '>=16 || >=17' + react: '>=16 || >=17 || 18' dependencies: '@types/json-schema': 7.0.11 ajv: 6.12.6 @@ -6082,7 +6045,7 @@ packages: lodash: 4.17.21 nanoid: 3.3.4 prop-types: 15.8.1 - react: 17.0.2 + react: 18.1.0 react-is: 16.13.1 /@rollup/plugin-babel/5.3.1_xrrjiapkmykkmovg76xtzegu3a: @@ -6188,10 +6151,10 @@ packages: resolution: {integrity: sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==} dev: true - /@storybook/addon-actions/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addon-actions/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-gTkPr2FYX+vySZKEg5Wq7uHPkVUq3hJ7ZKvGls+/xjgaTwfu3iIly53FEFUl8A6kMQ+4gtTC+YRr3cSJgXMbAg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: @@ -6199,22 +6162,22 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm core-js: 3.22.8 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 polished: 4.2.2 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-inspector: 5.1.1_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-inspector: 5.1.1_react@18.1.0 regenerator-runtime: 0.13.9 telejson: 6.0.8 ts-dedent: 2.2.0 @@ -6222,10 +6185,10 @@ packages: uuid-browser: 3.1.0 dev: true - /@storybook/addon-backgrounds/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addon-backgrounds/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-ryisDpxbIEZbYJkQWU5xvsj940jhWrWizedFsY9g/qBIBi33UrW/H1hKZQtmg0bzuNTgYcBjRy50ikJgH/eKAQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: @@ -6233,27 +6196,27 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm core-js: 3.22.8 global: 4.4.0 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/addon-controls/6.5.7_g7pwd4svbmf37pkrcole3potlu: + /@storybook/addon-controls/6.5.7_bxmn6y3pweymjo6ekelj24wybq: resolution: {integrity: sha512-1JGphHk1gcLLpkft/D5BkygXwelSdWQqvXnfFc62BVqvzxv8hCF4zuUosKLWMlB/nzVbd6W4oEDV/Mqmt6h/7w==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: @@ -6261,19 +6224,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-common': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.7 - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm core-js: 3.22.8 lodash: 4.17.21 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 ts-dedent: 2.2.0 transitivePeerDependencies: - eslint @@ -6284,11 +6247,11 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.5.7_sek6bz6pqvpk5cfqv7oklkg3zm: + /@storybook/addon-docs/6.5.7_o33xyr6fnetv6pqyclkfmq3bn4: resolution: {integrity: sha512-RghRpimJOJl9c/H6qvCCD0zHLETBIVWXsdYJF8GiY6iTKd+tgQYizuuoBT4f3PAMEMHVhmvWSjkkFLxKxzQLjQ==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@storybook/mdx2-csf': @@ -6301,28 +6264,28 @@ packages: '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 '@babel/preset-env': 7.18.2_@babel+core@7.18.2 '@jest/transform': 26.6.2 - '@mdx-js/react': 1.6.22_react@17.0.2 - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-common': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@mdx-js/react': 1.6.22_react@18.1.0 + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/docs-tools': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.2 '@storybook/node-logger': 6.5.7 '@storybook/postinstall': 6.5.7 - '@storybook/preview-web': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/source-loader': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/preview-web': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/source-loader': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu core-js: 3.22.8 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 remark-external-links: 8.0.0 remark-slug: 6.1.0 @@ -6339,7 +6302,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.7_sek6bz6pqvpk5cfqv7oklkg3zm: + /@storybook/addon-essentials/6.5.7_o33xyr6fnetv6pqyclkfmq3bn4: resolution: {integrity: sha512-JZ80W9PgZOEUp2SjhBYyYHxQduxSIe4n9Wdoy8XDtV28152jDNms6UPjFeEVb+a9rVybYOwWnOnEhBWF6ZfJ/g==} peerDependencies: '@babel/core': ^7.9.6 @@ -6397,21 +6360,21 @@ packages: optional: true dependencies: '@babel/core': 7.18.2 - '@storybook/addon-actions': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/addon-backgrounds': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/addon-controls': 6.5.7_g7pwd4svbmf37pkrcole3potlu - '@storybook/addon-docs': 6.5.7_sek6bz6pqvpk5cfqv7oklkg3zm - '@storybook/addon-measure': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/addon-outline': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/addon-toolbars': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/addon-viewport': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-common': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/addon-actions': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addon-backgrounds': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addon-controls': 6.5.7_bxmn6y3pweymjo6ekelj24wybq + '@storybook/addon-docs': 6.5.7_o33xyr6fnetv6pqyclkfmq3bn4 + '@storybook/addon-measure': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addon-outline': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addon-toolbars': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addon-viewport': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@storybook/node-logger': 6.5.7 core-js: 3.22.8 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 webpack: 5.73.0 @@ -6425,10 +6388,10 @@ packages: - webpack-command dev: true - /@storybook/addon-measure/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addon-measure/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-NMth6CErySKQ9WnfzMZ4nelHa2bBzZ60ZgsDq5s5dKHhJzZPm2nclmGAGE+VhqI/USe8b1fnjKFeHH485T8J2g==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: @@ -6436,22 +6399,22 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.22.8 global: 4.4.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 dev: true - /@storybook/addon-outline/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addon-outline/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-qTu19FnZz+rjY7SxPOgiQkuAxHRNRhUYgvUwI+ep0ZQcBddsRgniQjzXtErlUMeVoMZ63mDuOaJp67ltkriAOQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: @@ -6459,24 +6422,24 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.22.8 global: 4.4.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 dev: true - /@storybook/addon-toolbars/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addon-toolbars/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-+MUG5t4isQNf+q7BpEsGwuYAvYgs9XTdzzdvL/9jedQ7udJsWmG1q9a6m9+iQGPr/WK+88F2kgSOknpib3J21w==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: @@ -6484,21 +6447,21 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm core-js: 3.22.8 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/addon-viewport/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addon-viewport/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-8VmSTGKY3+9kZ09THC7546OaFbjLu5kEAGU5ZFSZaNlsJwRg7bC3bScKbnyX5EhihgZ3W8oJt/eMAIqXKHxA8g==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: @@ -6506,62 +6469,62 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/core-events': 6.5.7 - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm core-js: 3.22.8 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/addons/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addons/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-tUZ2c1uegUcwY31ztNQZGU/HUwAEEGIR8fEOvvO8S0TNQGoo6cwFtZmWBh3mTSRGcmzK2SNBjFHZua5Ee9TefA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channels': 6.5.7 '@storybook/client-logger': 6.5.7 '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@types/webpack-env': 1.17.0 core-js: 3.22.8 global: 4.4.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/api/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/api/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-QCNypz4X+lYuFW7EzvRPXMf8uS3gfSIV8sqXtEe5XoMb0HQXhy6AGU7/4iAeuUimtETqLTxq+kOxaSg4uPowxg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@storybook/channels': 6.5.7 '@storybook/client-logger': 6.5.7 '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm core-js: 3.22.8 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 store2: 2.13.2 telejson: 6.0.8 @@ -6569,10 +6532,10 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.5.7_g7pwd4svbmf37pkrcole3potlu: + /@storybook/builder-webpack4/6.5.7_bxmn6y3pweymjo6ekelj24wybq: resolution: {integrity: sha512-8OB3mZ2L6kQBiAXlkhna/MHREXIPtqXi2AJLT3+bTzBlqkusH+PwMZxWHbcPl1vZrlNQBC40Elx9tdynGkVQ6g==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 typescript: '*' peerDependenciesMeta: @@ -6580,22 +6543,22 @@ packages: optional: true dependencies: '@babel/core': 7.18.2 - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channel-postmessage': 6.5.7 '@storybook/channels': 6.5.7 - '@storybook/client-api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/client-api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-common': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@storybook/core-events': 6.5.7 '@storybook/node-logger': 6.5.7 - '@storybook/preview-web': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/router': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/preview-web': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/router': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/ui': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/ui': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@types/node': 16.11.38 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 @@ -6615,8 +6578,8 @@ packages: postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 @@ -6668,19 +6631,19 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/client-api/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-na8NZhB6GnAGp3jRTV9wwue3WGwSZoi5jfxrKSYMPL/s/2n07/soixHggqueBDXuNBrPoJaXbY/nRHmSjLwxtQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channel-postmessage': 6.5.7 '@storybook/channels': 6.5.7 '@storybook/client-logger': 6.5.7 '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@types/qs': 6.9.7 '@types/webpack-env': 1.17.0 core-js: 3.22.8 @@ -6689,8 +6652,8 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 store2: 2.13.2 synchronous-promise: 2.0.15 @@ -6705,29 +6668,29 @@ packages: global: 4.4.0 dev: true - /@storybook/components/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/components/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-xSOaOK8q6bXYkmN4LZKucvXU2HRHqKwwTafFDh5yzsCSEB2VQIJlyo4ePVyv/GJgBUX6+WdSA7c5r5ePXK6IYQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@storybook/client-logger': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@types/react-syntax-highlighter': 11.0.5 core-js: 3.22.8 qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-syntax-highlighter: 15.5.0_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-syntax-highlighter: 15.5.0_react@18.1.0 regenerator-runtime: 0.13.9 util-deprecate: 1.0.2 dev: true - /@storybook/core-client/6.5.7_5ayg3muzmazdy6fgxmij75te2m: + /@storybook/core-client/6.5.7_7uc6nxoo2a76yj4ajiwz6zkemm: resolution: {integrity: sha512-GL7m33tpEyornhfnTddbvDuLkA9EMe1zKv9oZGsUYo78cWRTiEibYyHegIi9/ThplRXvpFR/5uHY4Zx5Z5rxJg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 typescript: '*' webpack: '*' @@ -6735,24 +6698,24 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channel-postmessage': 6.5.7 '@storybook/channel-websocket': 6.5.7 - '@storybook/client-api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/client-api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/ui': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/preview-web': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/ui': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.22.8 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 typescript: 4.7.3 @@ -6761,10 +6724,10 @@ packages: webpack: 5.73.0 dev: true - /@storybook/core-client/6.5.7_q37gvhgrwc3kg2yrcxsawbisee: + /@storybook/core-client/6.5.7_ep5i7rh3xck6dvekot5qk64pi4: resolution: {integrity: sha512-GL7m33tpEyornhfnTddbvDuLkA9EMe1zKv9oZGsUYo78cWRTiEibYyHegIi9/ThplRXvpFR/5uHY4Zx5Z5rxJg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 typescript: '*' webpack: '*' @@ -6772,24 +6735,24 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channel-postmessage': 6.5.7 '@storybook/channel-websocket': 6.5.7 - '@storybook/client-api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/client-api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/ui': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/preview-web': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/ui': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.22.8 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 typescript: 4.7.3 @@ -6798,10 +6761,10 @@ packages: webpack: 4.46.0 dev: true - /@storybook/core-common/6.5.7_g7pwd4svbmf37pkrcole3potlu: + /@storybook/core-common/6.5.7_bxmn6y3pweymjo6ekelj24wybq: resolution: {integrity: sha512-/b1oQlmhek8tKDu9ky2O1oEk9g2giAPpl192yRz4lIxap5CFJ7RCfgbkq+F3JBXnH2P84BufC0x3dj4jvBhxCw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 typescript: '*' peerDependenciesMeta: @@ -6852,8 +6815,8 @@ packages: picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 resolve-from: 5.0.0 slash: 3.0.0 telejson: 6.0.8 @@ -6875,12 +6838,12 @@ packages: core-js: 3.22.8 dev: true - /@storybook/core-server/6.5.7_g7pwd4svbmf37pkrcole3potlu: + /@storybook/core-server/6.5.7_bxmn6y3pweymjo6ekelj24wybq: resolution: {integrity: sha512-CGwFZ5kmKaCS/+tcrAbqQu4Owq86wXkWRapJB55S8AlUsf3c9gEC8a3+Ed9tZUlmjSH56CnDDfmt7AleToaQ9w==} peerDependencies: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 typescript: '*' peerDependenciesMeta: @@ -6892,17 +6855,17 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.7_g7pwd4svbmf37pkrcole3potlu - '@storybook/core-client': 6.5.7_q37gvhgrwc3kg2yrcxsawbisee - '@storybook/core-common': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/builder-webpack4': 6.5.7_bxmn6y3pweymjo6ekelj24wybq + '@storybook/core-client': 6.5.7_ep5i7rh3xck6dvekot5qk64pi4 + '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.7 - '@storybook/manager-webpack4': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/manager-webpack4': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@storybook/node-logger': 6.5.7 '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/telemetry': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/telemetry': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@types/node': 16.11.38 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -6926,8 +6889,8 @@ packages: open: 8.4.0 pretty-hrtime: 1.0.3 prompts: 2.4.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -6952,12 +6915,12 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.7_vb53myqoa62ijssfq6bhwm2e2i: + /@storybook/core/6.5.7_dknbrkx5d7odtlw7nmyid6zdse: resolution: {integrity: sha512-YSu2qur1E5y9rjVspchtCfupPT3y1XyjBInhwzo8jC3rvm2WY0RS80VQU3dga4QBllO1M+cDmLzmOEPL82+Juw==} peerDependencies: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 typescript: '*' webpack: '*' @@ -6969,10 +6932,10 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.5.7_5ayg3muzmazdy6fgxmij75te2m - '@storybook/core-server': 6.5.7_g7pwd4svbmf37pkrcole3potlu - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@storybook/core-client': 6.5.7_7uc6nxoo2a76yj4ajiwz6zkemm + '@storybook/core-server': 6.5.7_bxmn6y3pweymjo6ekelj24wybq + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 typescript: 4.7.3 webpack: 5.73.0 transitivePeerDependencies: @@ -7020,12 +6983,12 @@ packages: lodash: 4.17.21 dev: true - /@storybook/docs-tools/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/docs-tools/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-Aw9uUsqeuw0Z9fpiwxrstMNjNGB9s1Tm57SpMF8ibjLYBYFf5Apz5CwDX7bm6YFtCweaawx4MeQta8qnQMWCFw==} dependencies: '@babel/core': 7.18.2 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm core-js: 3.22.8 doctrine: 3.0.0 lodash: 4.17.21 @@ -7036,10 +6999,10 @@ packages: - supports-color dev: true - /@storybook/manager-webpack4/6.5.7_g7pwd4svbmf37pkrcole3potlu: + /@storybook/manager-webpack4/6.5.7_bxmn6y3pweymjo6ekelj24wybq: resolution: {integrity: sha512-RmGsr/6PNsafaSm8aTD7e2VXSKT8BQ6Hkg6TAArLoS2TpIUvrNuM2hEqOHzm2POcApC+OE/HN1H0GiXBkH533Q==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 typescript: '*' peerDependenciesMeta: @@ -7049,12 +7012,12 @@ packages: '@babel/core': 7.18.2 '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.2 '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-client': 6.5.7_q37gvhgrwc3kg2yrcxsawbisee - '@storybook/core-common': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/core-client': 6.5.7_ep5i7rh3xck6dvekot5qk64pi4 + '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@storybook/node-logger': 6.5.7 - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/ui': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/ui': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@types/node': 16.11.38 '@types/webpack': 4.41.32 babel-loader: 8.2.5_lzsemofhph6vepnub4bnemnm6m @@ -7069,8 +7032,8 @@ packages: html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 pnp-webpack-plugin: 1.6.4_typescript@4.7.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -7129,25 +7092,25 @@ packages: core-js: 3.22.8 dev: true - /@storybook/preview-web/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/preview-web/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-EH8gdl334D8EDVL1VJjRURcUou5Sv6BwgismL4E6wjSFmWxL9egxYDnGJJEh3mjIkAtGb0zpksYn/VNWPA8c8A==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channel-postmessage': 6.5.7 '@storybook/client-logger': 6.5.7 '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm ansi-to-html: 0.6.15 core-js: 3.22.8 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 synchronous-promise: 2.0.15 ts-dedent: 2.2.0 @@ -7174,7 +7137,7 @@ packages: - supports-color dev: true - /@storybook/react/6.5.7_qmoiwc7i44wxgv4fy57zmk2wy4: + /@storybook/react/6.5.7_4o7xaollaaxmemegmn2rsjw3jy: resolution: {integrity: sha512-jMY1vk1WL1otEODl5BxD1kSh5Eqg+SvZW5CJ7sS6q53i3teOhaGhugvuSTuV9lnBzLOZu8atIdFL0ewdOkpwsg==} engines: {node: '>=10.13.0'} hasBin: true @@ -7184,7 +7147,7 @@ packages: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack4': '*' '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 require-from-string: ^2.0.2 typescript: '*' @@ -7206,16 +7169,16 @@ packages: '@babel/preset-flow': 7.17.12_@babel+core@7.18.2 '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@pmmmwh/react-refresh-webpack-plugin': 0.5.7_aumhct55s6lhceplyc622fxoum - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 - '@storybook/core': 6.5.7_vb53myqoa62ijssfq6bhwm2e2i - '@storybook/core-common': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/core': 6.5.7_dknbrkx5d7odtlw7nmyid6zdse + '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/docs-tools': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/node-logger': 6.5.7 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_jy5w4alwxi2du2dgjfsq7k3iza '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@types/estree': 0.0.51 '@types/node': 16.11.38 '@types/webpack-env': 1.17.0 @@ -7231,9 +7194,9 @@ packages: html-tags: 3.2.0 lodash: 4.17.21 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-element-to-jsx-string: 14.3.4_sfoxds7t5ydpegc3knd667wn6m + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-element-to-jsx-string: 14.3.4_ef5jwxihqo6n7gxfmzogljlgcm react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 @@ -7264,16 +7227,16 @@ packages: - webpack-plugin-serve dev: true - /@storybook/router/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/router/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-edWEdAb8O0rSgdXoBZDDuNlQg2cOmC/nJ6gXj9zBotzmXqsbxWyjKGooG1dU6dnKshUqE1RmWF7/N1WMluLf0A==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@storybook/client-logger': 6.5.7 core-js: 3.22.8 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 dev: true @@ -7286,13 +7249,13 @@ packages: find-up: 4.1.0 dev: true - /@storybook/source-loader/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/source-loader/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-nj24TSGdF9J1gD5Fj9Z2hPRAQwqBJoBKD/fmTSFZop0qaJOOyeuxZR5022dQh8UWWoBa3WOQADMTNi5RqQZkiA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.22.8 @@ -7301,18 +7264,18 @@ packages: loader-utils: 2.0.2 lodash: 4.17.21 prettier: 2.3.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/store/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/store/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-d64towcdylC6TXNL2oJklCpwN3XcUGgZzQ9zgoV8BUlOlsj9tNq8eo95uzTURnLg1Q5uHoDDKWuXrrKj03HHxw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 '@storybook/core-events': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 @@ -7321,8 +7284,8 @@ packages: global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 slash: 3.0.0 stable: 0.1.8 @@ -7331,11 +7294,11 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/telemetry/6.5.7_g7pwd4svbmf37pkrcole3potlu: + /@storybook/telemetry/6.5.7_bxmn6y3pweymjo6ekelj24wybq: resolution: {integrity: sha512-RHrjAConMqGIsu1TgNXztWtWOXTvvCHDWyGoLagCgZYgjGJ4sukp+ZtrbkayNDkkWWD0lpMzsdDEYCJuru/Sig==} dependencies: '@storybook/client-logger': 6.5.7 - '@storybook/core-common': 6.5.7_g7pwd4svbmf37pkrcole3potlu + '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq chalk: 4.1.2 core-js: 3.22.8 detect-package-manager: 2.0.1 @@ -7358,37 +7321,37 @@ packages: - webpack-command dev: true - /@storybook/theming/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/theming/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-6zp1V84DSBcS8BtFOCJlF2/nIonjQmr+dILPxaM3lCm/X003i2jAQrBKTfPlmzCeDn07PBhzHaRJ3wJskfmeNw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@storybook/client-logger': 6.5.7 core-js: 3.22.8 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/ui/6.5.7_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/ui/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-NOg44bc/w7FweuM2fa99PxsgI9qoG2p5vhTQ4MOI/7QnOUDn+EenlapsRos+/Sk2XTaB2QmM43boUkravMSouA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.7_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channels': 6.5.7 '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/core-events': 6.5.7 - '@storybook/router': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.7_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm core-js: 3.22.8 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 dev: true @@ -7598,27 +7561,26 @@ packages: redent: 3.0.0 dev: true - /@testing-library/react/12.1.5_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==} + /@testing-library/react/13.3.0_ef5jwxihqo6n7gxfmzogljlgcm: + resolution: {integrity: sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ==} engines: {node: '>=12'} peerDependencies: - react: <18.0.0 - react-dom: <18.0.0 + react: ^18.0.0 || 18 + react-dom: ^18.0.0 dependencies: '@babel/runtime': 7.18.3 '@testing-library/dom': 8.13.0 - '@types/react-dom': 17.0.17 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@types/react-dom': 18.0.5 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 dev: true - /@testing-library/user-event/13.5.0_tlwynutqiyp5mns3woioasuxnq: - resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==} - engines: {node: '>=10', npm: '>=6'} + /@testing-library/user-event/14.2.0_tlwynutqiyp5mns3woioasuxnq: + resolution: {integrity: sha512-+hIlG4nJS6ivZrKnOP7OGsDu9Fxmryj9vCl8x0ZINtTJcCHs2zLsYif5GzuRiBF2ck5GZG2aQr7Msg+EHlnYVQ==} + engines: {node: '>=12', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@babel/runtime': 7.18.3 '@testing-library/dom': 8.13.0 dev: true @@ -7898,7 +7860,7 @@ packages: /@types/hoist-non-react-statics/3.3.1: resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.12 hoist-non-react-statics: 3.3.2 /@types/html-entities/1.3.4: @@ -8119,10 +8081,10 @@ packages: /@types/range-parser/1.2.4: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - /@types/react-dom/17.0.17: - resolution: {integrity: sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==} + /@types/react-dom/18.0.5: + resolution: {integrity: sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.12 /@types/react-dragula/1.1.0: resolution: {integrity: sha512-wgRIVV2jo/Gria1PK3K26II7gfRD3VTcMfPYhL0CuIApSeon7xjBTj8Xs8Ln+Vbb/FuRKWfUaJXmF4R3KUGntA==} @@ -8133,23 +8095,23 @@ packages: /@types/react-syntax-highlighter/11.0.5: resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.12 dev: true - /@types/react-test-renderer/17.0.2: - resolution: {integrity: sha512-+F1KONQTBHDBBhbHuT2GNydeMpPuviduXIVJRB7Y4nma4NR5DrTJfMMZ+jbhEHbpwL+Uqhs1WXh4KHiyrtYTPg==} + /@types/react-test-renderer/18.0.0: + resolution: {integrity: sha512-C7/5FBJ3g3sqUahguGi03O79b8afNeSD6T8/GU50oQrJCU0bVCCGQHaGKUbg2Ce8VQEEqTw8/HiS6lXHHdgkdQ==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.12 dev: true /@types/react-transition-group/4.4.4: resolution: {integrity: sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.12 dev: false - /@types/react/17.0.45: - resolution: {integrity: sha512-YfhQ22Lah2e3CHPsb93tRwIGNiSwkuz1/blk4e6QrWS0jQzCSNbGLtOEYhPg02W0yGTTmpajp7dCTbBAMN3qsg==} + /@types/react/18.0.12: + resolution: {integrity: sha512-duF1OTASSBQtcigUvhuiTB1Ya3OvSy+xORCiEf20H0P0lzx+/KeVsA99U5UjLXSbyo1DRJDlLKqTeM1ngosqtg==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 @@ -8309,7 +8271,7 @@ packages: resolution: {integrity: sha512-fgwl+0Pa8pdkwXRoVPP9JbqF0Ivo9llnmsm+7TCI330kbPIFd9qv1Lrhr37shf4tnxCOSu+/IgqM7uJXLWZZNQ==} dependencies: '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 17.0.45 + '@types/react': 18.0.12 csstype: 3.1.0 dev: true @@ -9775,7 +9737,7 @@ packages: babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.5_fane7jikarojcev26y27hpbhu4 + styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq /babel-plugin-syntax-jsx/6.18.0: resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} @@ -11263,10 +11225,6 @@ packages: cssom: 0.3.8 dev: true - /csstype/3.0.9: - resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==} - dev: false - /csstype/3.1.0: resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} @@ -12859,8 +12817,8 @@ packages: readable-stream: 2.3.7 dev: true - /focus-lock/0.9.2: - resolution: {integrity: sha512-YtHxjX7a0IC0ZACL5wsX8QdncXofWpGPNoVMuI/nZUrPGp6LmNI6+D5j0pPj+v8Kw5EpweA+T5yImK0rnWf7oQ==} + /focus-lock/0.11.2: + resolution: {integrity: sha512-pZ2bO++NWLHhiKkgP1bEXHhR1/OjVcSvlCJ98aNJDFeb7H5OOQaO+SKOZle6041O9rv2tmbrO4JzClAvDUHf0g==} engines: {node: '>=10'} dependencies: tslib: 2.4.0 @@ -13018,17 +12976,17 @@ packages: map-cache: 0.2.2 dev: true - /framer-motion/6.3.10_sfoxds7t5ydpegc3knd667wn6m: + /framer-motion/6.3.10_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-modFplFb1Fznsm0MrmRAJUC32UDA5jbGU9rDvkGzhAHksru2tnoKbU/Pa3orzdsJI0CJviG4NGBrmwGveU98Cg==} peerDependencies: - react: '>=16.8 || ^17.0.0 || ^18.0.0' + react: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' dependencies: framesync: 6.0.1 hey-listen: 1.0.8 popmotion: 11.0.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 style-value-types: 5.0.0 tslib: 2.4.0 optionalDependencies: @@ -17887,12 +17845,12 @@ packages: sisteransi: 1.0.5 dev: true - /prop-types-extra/1.1.1_react@17.0.2: + /prop-types-extra/1.1.1_react@18.1.0: resolution: {integrity: sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==} peerDependencies: - react: '>=0.14.0' + react: '>=0.14.0 || 18' dependencies: - react: 17.0.2 + react: 18.1.0 react-is: 16.13.1 warning: 4.0.3 dev: false @@ -18167,40 +18125,40 @@ packages: webpack: 5.73.0_webpack-cli@4.9.2 dev: true - /react-bootstrap/2.4.0_k2mvpji5i2ojml6m4ftklg47pa: + /react-bootstrap/2.4.0_eurjwfem4ie5nnznw6gmhlbswe: resolution: {integrity: sha512-dn599jNK1Fg5GGjJH+lQQDwELVzigh/MdusKpB/0el+sCjsO5MZDH5gRMmBjRhC+vb7VlCDr6OXffPIDSkNMLw==} peerDependencies: '@types/react': '>=16.14.8' - react: '>=16.14.0' + react: '>=16.14.0 || 18' react-dom: '>=16.14.0' peerDependenciesMeta: '@types/react': optional: true dependencies: '@babel/runtime': 7.18.3 - '@restart/hooks': 0.4.7_react@17.0.2 - '@restart/ui': 1.2.0_sfoxds7t5ydpegc3knd667wn6m - '@types/react': 17.0.45 + '@restart/hooks': 0.4.7_react@18.1.0 + '@restart/ui': 1.2.0_ef5jwxihqo6n7gxfmzogljlgcm + '@types/react': 18.0.12 '@types/react-transition-group': 4.4.4 classnames: 2.3.1 dom-helpers: 5.2.1 invariant: 2.2.4 prop-types: 15.8.1 - prop-types-extra: 1.1.1_react@17.0.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m - uncontrollable: 7.2.1_react@17.0.2 + prop-types-extra: 1.1.1_react@18.1.0 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-transition-group: 4.4.2_ef5jwxihqo6n7gxfmzogljlgcm + uncontrollable: 7.2.1_react@18.1.0 warning: 4.0.3 dev: false - /react-clientside-effect/1.2.6_react@17.0.2: + /react-clientside-effect/1.2.6_react@18.1.0: resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==} peerDependencies: - react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 + react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 - react: 17.0.2 + react: 18.1.0 dev: false /react-deep-force-update/1.1.2: @@ -18234,15 +18192,14 @@ packages: - supports-color dev: true - /react-dom/17.0.2_react@17.0.2: - resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} + /react-dom/18.1.0_react@18.1.0: + resolution: {integrity: sha512-fU1Txz7Budmvamp7bshe4Zi32d0ll7ect+ccxNu9FlObT605GOEB8BfO4tmRJ39R5Zj831VCpvQ05QPBW5yb+w==} peerDependencies: - react: 17.0.2 + react: ^18.1.0 || 18 dependencies: loose-envify: 1.4.0 - object-assign: 4.1.1 - react: 17.0.2 - scheduler: 0.20.2 + react: 18.1.0 + scheduler: 0.22.0 /react-dragula/1.1.17: resolution: {integrity: sha1-s8s1KkcKcZNnupnWpUAcYPrU9v8=} @@ -18251,16 +18208,16 @@ packages: dragula: 3.7.2 dev: false - /react-element-to-jsx-string/14.3.4_sfoxds7t5ydpegc3knd667wn6m: + /react-element-to-jsx-string/14.3.4_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || 18 react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 react-is: 17.0.2 dev: true @@ -18268,39 +18225,42 @@ packages: resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==} dev: false - /react-focus-lock/2.5.2_hx2b44akkvgcgvvtmk7ds2qk6q: - resolution: {integrity: sha512-WzpdOnEqjf+/A3EH9opMZWauag7gV0BxFl+EY4ElA4qFqYsUsBLnmo2sELbN5OC30S16GAWMy16B9DLPpdJKAQ==} + /react-focus-lock/2.9.1_cbpnieqasrszcwkqeh5i7z7nse: + resolution: {integrity: sha512-pSWOQrUmiKLkffPO6BpMXN7SNKXMsuOakl652IBuALAu1esk+IcpJyM+ALcYzPTTFz1rD0R54aB9A4HuP5t1Wg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.18.3 - focus-lock: 0.9.2 + '@types/react': 18.0.12 + focus-lock: 0.11.2 prop-types: 15.8.1 - react: 17.0.2 - react-clientside-effect: 1.2.6_react@17.0.2 - use-callback-ref: 1.3.0_hx2b44akkvgcgvvtmk7ds2qk6q - use-sidecar: 1.1.2_hx2b44akkvgcgvvtmk7ds2qk6q - transitivePeerDependencies: - - '@types/react' + react: 18.1.0 + react-clientside-effect: 1.2.6_react@18.1.0 + use-callback-ref: 1.3.0_cbpnieqasrszcwkqeh5i7z7nse + use-sidecar: 1.1.2_cbpnieqasrszcwkqeh5i7z7nse dev: false - /react-icons/4.4.0_react@17.0.2: + /react-icons/4.4.0_react@18.1.0: resolution: {integrity: sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==} peerDependencies: react: '*' dependencies: - react: 17.0.2 + react: 18.1.0 dev: false - /react-inspector/5.1.1_react@17.0.2: + /react-inspector/5.1.1_react@18.1.0: resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} peerDependencies: - react: ^16.8.4 || ^17.0.0 + react: ^16.8.4 || ^17.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 is-dom: 1.1.0 prop-types: 15.8.1 - react: 17.0.2 + react: 18.1.0 dev: true /react-is/16.13.1: @@ -18308,6 +18268,7 @@ packages: /react-is/17.0.2: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + dev: true /react-is/18.1.0: resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} @@ -18323,12 +18284,12 @@ packages: react-deep-force-update: 1.1.2 dev: true - /react-redux/8.0.2_4a7fqdea4vmms5temxtq47oufa: + /react-redux/8.0.2_6gdrmwzkzbo4b6pqvtgyt7rzjm: resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.8 || ^17.0 || ^18.0 || 18 react-dom: ^16.8 || ^17.0 || ^18.0 react-native: '>=0.59' redux: ^4 @@ -18346,22 +18307,22 @@ packages: dependencies: '@babel/runtime': 7.18.3 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 17.0.45 + '@types/react': 18.0.12 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 react-is: 18.1.0 redux: 4.2.0 - use-sync-external-store: 1.1.0_react@17.0.2 + use-sync-external-store: 1.1.0_react@18.1.0 dev: true - /react-redux/8.0.2_lc2dihjbtf6eny6pheutrryeay: + /react-redux/8.0.2_nqhh35lwqrquwueloqsaumzkua: resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.8 || ^17.0 || ^18.0 || 18 react-dom: ^16.8 || ^17.0 || ^18.0 react-native: '>=0.59' redux: ^4 @@ -18379,23 +18340,23 @@ packages: dependencies: '@babel/runtime': 7.18.3 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 react-is: 18.1.0 redux: 4.2.0 - use-sync-external-store: 1.1.0_react@17.0.2 + use-sync-external-store: 1.1.0_react@18.1.0 dev: false - /react-redux/8.0.2_zn5uodkvigq2cma2dm4r3u5424: + /react-redux/8.0.2_zlkrlo2xsersbascmmsr65fm34: resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.8 || ^17.0 || ^18.0 || 18 react-dom: ^16.8 || ^17.0 || ^18.0 react-native: '>=0.59' redux: ^4 @@ -18413,14 +18374,14 @@ packages: dependencies: '@babel/runtime': 7.18.3 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.17 + '@types/react': 18.0.12 + '@types/react-dom': 18.0.5 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 react-is: 18.1.0 - use-sync-external-store: 1.1.0_react@17.0.2 + use-sync-external-store: 1.1.0_react@18.1.0 dev: false /react-refresh/0.11.0: @@ -18428,132 +18389,131 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-remove-scroll-bar/2.3.3_hx2b44akkvgcgvvtmk7ds2qk6q: + /react-remove-scroll-bar/2.3.3_cbpnieqasrszcwkqeh5i7z7nse: resolution: {integrity: sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 - react: 17.0.2 - react-style-singleton: 2.2.1_hx2b44akkvgcgvvtmk7ds2qk6q + '@types/react': 18.0.12 + react: 18.1.0 + react-style-singleton: 2.2.1_cbpnieqasrszcwkqeh5i7z7nse tslib: 2.4.0 dev: false - /react-remove-scroll/2.4.1_hx2b44akkvgcgvvtmk7ds2qk6q: - resolution: {integrity: sha512-K7XZySEzOHMTq7dDwcHsZA6Y7/1uX5RsWhRXVYv8rdh+y9Qz2nMwl9RX/Mwnj/j7JstCGmxyfyC0zbVGXYh3mA==} - engines: {node: '>=8.5.0'} + /react-remove-scroll/2.5.4_cbpnieqasrszcwkqeh5i7z7nse: + resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} + engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 - react: ^16.8.0 || ^17.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 - react: 17.0.2 - react-remove-scroll-bar: 2.3.3_hx2b44akkvgcgvvtmk7ds2qk6q - react-style-singleton: 2.2.1_hx2b44akkvgcgvvtmk7ds2qk6q - tslib: 1.14.1 - use-callback-ref: 1.3.0_hx2b44akkvgcgvvtmk7ds2qk6q - use-sidecar: 1.1.2_hx2b44akkvgcgvvtmk7ds2qk6q + '@types/react': 18.0.12 + react: 18.1.0 + react-remove-scroll-bar: 2.3.3_cbpnieqasrszcwkqeh5i7z7nse + react-style-singleton: 2.2.1_cbpnieqasrszcwkqeh5i7z7nse + tslib: 2.4.0 + use-callback-ref: 1.3.0_cbpnieqasrszcwkqeh5i7z7nse + use-sidecar: 1.1.2_cbpnieqasrszcwkqeh5i7z7nse dev: false - /react-router-dom/6.3.0_sfoxds7t5ydpegc3knd667wn6m: + /react-router-dom/6.3.0_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: - react: '>=16.8' + react: '>=16.8 || 18' react-dom: '>=16.8' dependencies: history: 5.3.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-router: 6.3.0_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-router: 6.3.0_react@18.1.0 dev: false - /react-router/6.3.0_react@17.0.2: + /react-router/6.3.0_react@18.1.0: resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} peerDependencies: - react: '>=16.8' + react: '>=16.8 || 18' dependencies: history: 5.3.0 - react: 17.0.2 + react: 18.1.0 dev: false - /react-select/5.3.2_mk7blnrphnoord32peccbqkdtq: + /react-select/5.3.2_oo3emjpi3bbjzqzdmt4yuasdq4: resolution: {integrity: sha512-W6Irh7U6Ha7p5uQQ2ZnemoCQ8mcfgOtHfw3wuMzG6FAu0P+CYicgofSLOq97BhjMx8jS+h+wwWdCBeVVZ9VqlQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.18.3 '@emotion/cache': 11.7.1 - '@emotion/react': 11.9.0_ddpcdz72weezmodm7yk4v5n3v4 + '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u '@types/react-transition-group': 4.4.4 memoize-one: 5.2.1 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-transition-group: 4.4.2_ef5jwxihqo6n7gxfmzogljlgcm transitivePeerDependencies: - '@babel/core' - '@types/react' dev: false - /react-shallow-renderer/16.15.0_react@17.0.2: + /react-shallow-renderer/16.15.0_react@18.1.0: resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react: ^16.0.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: object-assign: 4.1.1 - react: 17.0.2 - react-is: 17.0.2 + react: 18.1.0 + react-is: 18.1.0 dev: true - /react-style-singleton/2.2.1_hx2b44akkvgcgvvtmk7ds2qk6q: + /react-style-singleton/2.2.1_cbpnieqasrszcwkqeh5i7z7nse: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.12 get-nonce: 1.0.1 invariant: 2.2.4 - react: 17.0.2 + react: 18.1.0 tslib: 2.4.0 dev: false - /react-syntax-highlighter/15.5.0_react@17.0.2: + /react-syntax-highlighter/15.5.0_react@18.1.0: resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} peerDependencies: - react: '>= 0.14.0' + react: '>= 0.14.0 || 18' dependencies: '@babel/runtime': 7.18.3 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.28.0 - react: 17.0.2 + react: 18.1.0 refractor: 3.6.0 dev: true - /react-test-renderer/17.0.2_react@17.0.2: - resolution: {integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==} + /react-test-renderer/18.1.0_react@18.1.0: + resolution: {integrity: sha512-OfuueprJFW7h69GN+kr4Ywin7stcuqaYAt1g7airM5cUgP0BoF5G5CXsPGmXeDeEkncb2fqYNECO4y18sSqphg==} peerDependencies: - react: 17.0.2 + react: ^18.1.0 || 18 dependencies: - object-assign: 4.1.1 - react: 17.0.2 - react-is: 17.0.2 - react-shallow-renderer: 16.15.0_react@17.0.2 - scheduler: 0.20.2 + react: 18.1.0 + react-is: 18.1.0 + react-shallow-renderer: 16.15.0_react@18.1.0 + scheduler: 0.22.0 dev: true /react-transform-catch-errors/1.0.2: @@ -18567,26 +18527,25 @@ packages: react-proxy: 1.1.8 dev: true - /react-transition-group/4.4.2_sfoxds7t5ydpegc3knd667wn6m: + /react-transition-group/4.4.2_ef5jwxihqo6n7gxfmzogljlgcm: resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} peerDependencies: - react: '>=16.6.0' + react: '>=16.6.0 || 18' react-dom: '>=16.6.0' dependencies: '@babel/runtime': 7.18.3 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 dev: false - /react/17.0.2: - resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} + /react/18.1.0: + resolution: {integrity: sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 - object-assign: 4.1.1 /read-pkg-up/1.0.1: resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=} @@ -18722,16 +18681,16 @@ packages: deep-diff: 0.3.8 dev: false - /redux-persist/6.0.0_react@17.0.2+redux@4.2.0: + /redux-persist/6.0.0_react@18.1.0+redux@4.2.0: resolution: {integrity: sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==} peerDependencies: - react: '>=16' + react: '>=16 || 18' redux: '>4.0.0' peerDependenciesMeta: react: optional: true dependencies: - react: 17.0.2 + react: 18.1.0 redux: 4.2.0 dev: false @@ -19247,11 +19206,10 @@ packages: sc-channel: 1.2.0 dev: false - /scheduler/0.20.2: - resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} + /scheduler/0.22.0: + resolution: {integrity: sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ==} dependencies: loose-envify: 1.4.0 - object-assign: 4.1.1 /schema-utils/1.0.0: resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} @@ -20146,12 +20104,12 @@ packages: tslib: 2.4.0 dev: false - /styled-components/5.3.5_fane7jikarojcev26y27hpbhu4: + /styled-components/5.3.5_4klixn56hmiqf6hh5nx3jyckvq: resolution: {integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==} engines: {node: '>=10'} requiresBuild: true peerDependencies: - react: '>= 16.8.0' + react: '>= 16.8.0 || 18' react-dom: '>= 16.8.0' react-is: '>= 16.8.0' dependencies: @@ -20163,9 +20121,9 @@ packages: babel-plugin-styled-components: 2.0.7_styled-components@5.3.5 css-to-react-native: 3.0.0 hoist-non-react-statics: 3.3.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 + react: 18.1.0 + react-dom: 18.1.0_react@18.1.0 + react-is: 18.1.0 shallowequal: 1.1.0 supports-color: 5.5.0 @@ -21023,15 +20981,15 @@ packages: which-boxed-primitive: 1.0.2 dev: true - /uncontrollable/7.2.1_react@17.0.2: + /uncontrollable/7.2.1_react@18.1.0: resolution: {integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==} peerDependencies: - react: '>=15.0.0' + react: '>=15.0.0 || 18' dependencies: '@babel/runtime': 7.18.3 - '@types/react': 17.0.45 + '@types/react': 18.0.12 invariant: 2.2.4 - react: 17.0.2 + react: 18.1.0 react-lifecycles-compat: 3.0.4 dev: false @@ -21228,43 +21186,43 @@ packages: querystring: 0.2.0 dev: true - /use-callback-ref/1.3.0_hx2b44akkvgcgvvtmk7ds2qk6q: + /use-callback-ref/1.3.0_cbpnieqasrszcwkqeh5i7z7nse: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 - react: 17.0.2 + '@types/react': 18.0.12 + react: 18.1.0 tslib: 2.4.0 dev: false - /use-sidecar/1.1.2_hx2b44akkvgcgvvtmk7ds2qk6q: + /use-sidecar/1.1.2_cbpnieqasrszcwkqeh5i7z7nse: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.12 detect-node-es: 1.1.0 - react: 17.0.2 + react: 18.1.0 tslib: 2.4.0 dev: false - /use-sync-external-store/1.1.0_react@17.0.2: + /use-sync-external-store/1.1.0_react@18.1.0: resolution: {integrity: sha512-SEnieB2FPKEVne66NpXPd1Np4R1lTNKfjuy3XdIoPQKYBAFdzbzSZlSn1KJZUiihQLQC5Znot4SBz1EOTBwQAQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - react: 17.0.2 + react: 18.1.0 /use/3.1.1: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} From 1ee787e353f0fad356b7961285a05e4c788f1f89 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 7 Jun 2022 23:46:40 +0000 Subject: [PATCH 25/29] chore(deps): update dependency chromedriver to v102 (#1185) Co-authored-by: Renovate Bot --- extension/package.json | 2 +- pnpm-lock.yaml | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/extension/package.json b/extension/package.json index a661e6d1..4e966ae6 100644 --- a/extension/package.json +++ b/extension/package.json @@ -66,7 +66,7 @@ "@types/styled-components": "^5.1.25", "babel-loader": "^8.2.5", "bestzip": "^2.2.1", - "chromedriver": "^101.0.0", + "chromedriver": "^102.0.0", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7afcef57..13445554 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -64,7 +64,7 @@ importers: '@types/styled-components': ^5.1.25 babel-loader: ^8.2.5 bestzip: ^2.2.1 - chromedriver: ^101.0.0 + chromedriver: ^102.0.0 copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 @@ -141,7 +141,7 @@ importers: '@types/styled-components': 5.1.25 babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu bestzip: 2.2.1 - chromedriver: 101.0.0 + chromedriver: 102.0.0 copy-webpack-plugin: 11.0.0_webpack@5.73.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 @@ -7940,7 +7940,7 @@ packages: /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 /@types/lodash.curry/4.1.7: resolution: {integrity: sha512-R+IkSvh7CI8klh7FkQuTAiAR+aPFqYrNEjw/hMxjCSO7TsAqBAxpR99PxxJN1lgE6YuvpHEoktqbh6V5VLzxZA==} @@ -8025,7 +8025,6 @@ packages: /@types/node/17.0.40: resolution: {integrity: sha512-UXdBxNGqTMtm7hCwh9HtncFVLrXoqA3oJW30j6XWp5BH/wu3mVeaxo7cq5benFdBw34HB3XDT2TRPI7rXZ+mDg==} - dev: true /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -8137,7 +8136,7 @@ packages: /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 /@types/retry/0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -9542,10 +9541,11 @@ packages: - debug dev: true - /axios/0.24.0: - resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==} + /axios/0.27.2: + resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} dependencies: follow-redirects: 1.15.1 + form-data: 4.0.0 transitivePeerDependencies: - debug dev: true @@ -10457,14 +10457,14 @@ packages: engines: {node: '>=6.0'} dev: true - /chromedriver/101.0.0: - resolution: {integrity: sha512-LkkWxy6KM/0YdJS8qBeg5vfkTZTRamhBfOttb4oic4echDgWvCU1E8QcBbUBOHqZpSrYMyi7WMKmKMhXFUaZ+w==} + /chromedriver/102.0.0: + resolution: {integrity: sha512-xer/0g1Oarkjc2e+4nyoLgZT4kJHYhcj3PcxD1nEoGJQYEllTjprN1uDpSb4BkgMGo0ydfIS1VDkszrr/J9OOg==} engines: {node: '>=10'} hasBin: true requiresBuild: true dependencies: '@testim/chrome-version': 1.1.2 - axios: 0.24.0 + axios: 0.27.2 del: 6.1.1 extract-zip: 2.0.1 https-proxy-agent: 5.0.1 From 6c9ae2713f0f2637494bcc50e23016b1374512b7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jun 2022 11:35:11 +0000 Subject: [PATCH 26/29] chore(deps): update socketcluster to v16 (major) (#1167) * chore(deps): update socketcluster to v16 * Use the right packages * stash * stash * stash * Fixes * Fixes Co-authored-by: Renovate Bot Co-authored-by: Nathan Bierema --- packages/redux-devtools-app/package.json | 4 +- .../redux-devtools-app/src/actions/index.ts | 2 +- .../src/constants/socketActionTypes.ts | 2 +- .../redux-devtools-app/src/middlewares/api.ts | 169 +++-- .../redux-devtools-app/src/reducers/socket.ts | 2 +- packages/redux-devtools-cli/package.json | 9 +- .../src/bin/redux-devtools.ts | 7 +- .../redux-devtools-cli/src/db/connector.ts | 4 +- packages/redux-devtools-cli/src/index.ts | 113 ++- packages/redux-devtools-cli/src/routes.ts | 11 +- packages/redux-devtools-cli/src/store.ts | 4 +- packages/redux-devtools-cli/src/worker.ts | 86 --- .../test/integration.spec.ts | 257 +++---- packages/redux-devtools-remote/package.json | 4 +- .../redux-devtools-remote/src/devTools.ts | 107 +-- pnpm-lock.yaml | 673 +++++++----------- 16 files changed, 644 insertions(+), 810 deletions(-) delete mode 100644 packages/redux-devtools-cli/src/worker.ts diff --git a/packages/redux-devtools-app/package.json b/packages/redux-devtools-app/package.json index 3d00267b..d1f0e866 100644 --- a/packages/redux-devtools-app/package.json +++ b/packages/redux-devtools-app/package.json @@ -64,7 +64,7 @@ "react-redux": "^8.0.2", "redux": "^4.2.0", "redux-persist": "^6.0.0", - "socketcluster-client": "^14.3.2" + "socketcluster-client": "^16.1.1" }, "devDependencies": { "@babel/cli": "^7.17.10", @@ -84,7 +84,7 @@ "@types/node": "^16.11.38", "@types/react": "^18.0.12", "@types/react-dom": "^18.0.5", - "@types/socketcluster-client": "^13.0.5", + "@types/socketcluster-client": "^16.0.0", "@types/styled-components": "^5.1.25", "@types/testing-library__jest-dom": "^5.14.3", "@types/webpack-env": "^1.17.0", diff --git a/packages/redux-devtools-app/src/actions/index.ts b/packages/redux-devtools-app/src/actions/index.ts index 45d53105..5f5fe4a0 100644 --- a/packages/redux-devtools-app/src/actions/index.ts +++ b/packages/redux-devtools-app/src/actions/index.ts @@ -1,5 +1,5 @@ import { SchemeName, ThemeName } from '@redux-devtools/ui'; -import { AuthStates, States } from 'socketcluster-client/lib/scclientsocket'; +import { AuthStates, States } from 'socketcluster-client/lib/clientsocket'; import { REHYDRATE } from 'redux-persist'; import { CHANGE_SECTION, diff --git a/packages/redux-devtools-app/src/constants/socketActionTypes.ts b/packages/redux-devtools-app/src/constants/socketActionTypes.ts index afe2ca33..df6a28d9 100644 --- a/packages/redux-devtools-app/src/constants/socketActionTypes.ts +++ b/packages/redux-devtools-app/src/constants/socketActionTypes.ts @@ -16,7 +16,7 @@ export const { AUTHENTICATED, PENDING, UNAUTHENTICATED, -} = socketCluster.SCClientSocket as unknown as States; +} = socketCluster.AGClientSocket as unknown as States; export const CONNECT_REQUEST = 'socket/CONNECT_REQUEST'; export const CONNECT_SUCCESS = 'socket/CONNECT_SUCCESS'; export const CONNECT_ERROR = 'socket/CONNECT_ERROR'; diff --git a/packages/redux-devtools-app/src/middlewares/api.ts b/packages/redux-devtools-app/src/middlewares/api.ts index 5c136dec..ce64bdc0 100644 --- a/packages/redux-devtools-app/src/middlewares/api.ts +++ b/packages/redux-devtools-app/src/middlewares/api.ts @@ -1,4 +1,4 @@ -import socketCluster, { SCClientSocket } from 'socketcluster-client'; +import socketClusterClient, { AGClientSocket } from 'socketcluster-client'; import { stringify } from 'jsan'; import { Dispatch, MiddlewareAPI } from 'redux'; import * as actions from '../constants/socketActionTypes'; @@ -25,11 +25,16 @@ import { import { nonReduxDispatch } from '../utils/monitorActions'; import { StoreState } from '../reducers'; -let socket: SCClientSocket; +let socket: AGClientSocket; let store: MiddlewareAPI, StoreState>; function emit({ message: type, id, instanceId, action, state }: EmitAction) { - socket.emit(id ? `sc-${id}` : 'respond', { type, action, state, instanceId }); + void socket.transmit(id ? `sc-${id}` : 'respond', { + type, + action, + state, + instanceId, + }); } function startMonitoring(channel: string) { @@ -120,7 +125,7 @@ function monitoring(request: MonitoringRequest) { instanceId === instances.selected && (request.type === 'ACTION' || request.type === 'STATE') ) { - socket.emit('respond', { + void socket.transmit('respond', { type: 'SYNC', state: stringify(instances.states[instanceId]), id: request.id, @@ -134,65 +139,84 @@ function subscribe( subscription: typeof UPDATE_STATE | typeof UPDATE_REPORTS ) { const channel = socket.subscribe(channelName); - if (subscription === UPDATE_STATE) channel.watch(monitoring); - else { + if (subscription === UPDATE_STATE) { + void (async () => { + for await (const data of channel) { + monitoring(data as MonitoringRequest); + } + })(); + } else { const watcher = (request: UpdateReportsRequest) => { store.dispatch({ type: subscription, request }); }; - channel.watch(watcher); - socket.on(channelName, watcher); + void (async () => { + for await (const data of channel) { + watcher(data as UpdateReportsRequest); + } + })(); } } function handleConnection() { - socket.on('connect', (status) => { - store.dispatch({ - type: actions.CONNECT_SUCCESS, - payload: { - id: status.id, - authState: socket.authState, - socketState: socket.state, - }, - error: status.authError, - }); - if (socket.authState !== actions.AUTHENTICATED) { - store.dispatch({ type: actions.AUTH_REQUEST }); + void (async () => { + for await (const data of socket.listener('connect')) { + store.dispatch({ + type: actions.CONNECT_SUCCESS, + payload: { + id: data.id, + authState: socket.authState, + socketState: socket.state, + }, + // @ts-expect-error Is this legitimate? + error: data.authError, + }); + if (socket.authState !== actions.AUTHENTICATED) { + store.dispatch({ type: actions.AUTH_REQUEST }); + } } - }); - socket.on('disconnect', (code) => { - store.dispatch({ type: actions.DISCONNECTED, code }); - }); + })(); + void (async () => { + for await (const data of socket.listener('disconnect')) { + store.dispatch({ type: actions.DISCONNECTED, code: data.code }); + } + })(); - socket.on('subscribe', (channel) => { - store.dispatch({ type: actions.SUBSCRIBE_SUCCESS, channel }); - }); - socket.on('unsubscribe', (channel) => { - socket.unsubscribe(channel); - socket.unwatch(channel); - socket.off(channel); - store.dispatch({ type: actions.UNSUBSCRIBE, channel }); - }); - socket.on('subscribeFail', (error) => { - store.dispatch({ - type: actions.SUBSCRIBE_ERROR, - error, - status: 'subscribeFail', - }); - }); - socket.on('dropOut', (error) => { - store.dispatch({ type: actions.SUBSCRIBE_ERROR, error, status: 'dropOut' }); - }); + void (async () => { + for await (const data of socket.listener('subscribe')) { + store.dispatch({ + type: actions.SUBSCRIBE_SUCCESS, + channel: data.channel, + }); + } + })(); + void (async () => { + for await (const data of socket.listener('unsubscribe')) { + void socket.unsubscribe(data.channel); + store.dispatch({ type: actions.UNSUBSCRIBE, channel: data.channel }); + } + })(); + void (async () => { + for await (const data of socket.listener('subscribeFail')) { + store.dispatch({ + type: actions.SUBSCRIBE_ERROR, + error: data.error, + status: 'subscribeFail', + }); + } + })(); - socket.on('error', (error) => { - store.dispatch({ type: actions.CONNECT_ERROR, error }); - }); + void (async () => { + for await (const data of socket.listener('error')) { + store.dispatch({ type: actions.CONNECT_ERROR, error: data.error }); + } + })(); } function connect() { if (process.env.NODE_ENV === 'test') return; const connection = store.getState().connection; try { - socket = socketCluster.create(connection.options); + socket = socketClusterClient.create(connection.options); handleConnection(); } catch (error) { store.dispatch({ type: actions.CONNECT_ERROR, error: error as Error }); @@ -205,43 +229,42 @@ function connect() { function disconnect() { if (socket) { socket.disconnect(); - socket.off(); } } function login() { - socket.emit('login', {}, (error: Error, baseChannel: string) => { - if (error) { - store.dispatch({ type: actions.AUTH_ERROR, error }); - return; + void (async () => { + try { + const baseChannel = (await socket.invoke('login', {})) as string; + store.dispatch({ type: actions.AUTH_SUCCESS, baseChannel }); + store.dispatch({ + type: actions.SUBSCRIBE_REQUEST, + channel: baseChannel, + subscription: UPDATE_STATE, + }); + store.dispatch({ + type: actions.SUBSCRIBE_REQUEST, + channel: 'report', + subscription: UPDATE_REPORTS, + }); + } catch (error) { + store.dispatch({ type: actions.AUTH_ERROR, error: error as Error }); } - store.dispatch({ type: actions.AUTH_SUCCESS, baseChannel }); - store.dispatch({ - type: actions.SUBSCRIBE_REQUEST, - channel: baseChannel, - subscription: UPDATE_STATE, - }); - store.dispatch({ - type: actions.SUBSCRIBE_REQUEST, - channel: 'report', - subscription: UPDATE_REPORTS, - }); - }); + })(); } function getReport(reportId: unknown) { - socket.emit( - 'getReport', - reportId, - (error: Error, data: { payload: string }) => { - if (error) { - store.dispatch({ type: GET_REPORT_ERROR, error }); - return; - } + void (async () => { + try { + const data = (await socket.invoke('getReport', reportId)) as { + payload: string; + }; store.dispatch({ type: GET_REPORT_SUCCESS, data }); store.dispatch(importState(data.payload)); + } catch (error) { + store.dispatch({ type: GET_REPORT_ERROR, error: error as Error }); } - ); + })(); } export function api(inStore: MiddlewareAPI, StoreState>) { diff --git a/packages/redux-devtools-app/src/reducers/socket.ts b/packages/redux-devtools-app/src/reducers/socket.ts index cc7e4386..a4390453 100644 --- a/packages/redux-devtools-app/src/reducers/socket.ts +++ b/packages/redux-devtools-app/src/reducers/socket.ts @@ -1,4 +1,4 @@ -import { AuthStates, States } from 'socketcluster-client/lib/scclientsocket'; +import { AuthStates, States } from 'socketcluster-client/lib/clientsocket'; import * as actions from '../constants/socketActionTypes'; import { StoreAction } from '../actions'; diff --git a/packages/redux-devtools-cli/package.json b/packages/redux-devtools-cli/package.json index f20d9081..58ab88a2 100644 --- a/packages/redux-devtools-cli/package.json +++ b/packages/redux-devtools-cli/package.json @@ -60,7 +60,7 @@ "react-dom": "^18.1.0", "react-is": "^18.1.0", "semver": "^7.3.7", - "socketcluster": "^14.4.2", + "socketcluster-server": "^16.2.1", "sqlite3": "^5.0.8", "styled-components": "^5.3.5", "uuid": "^8.3.2" @@ -76,9 +76,8 @@ "@types/morgan": "^1.9.3", "@types/node": "^16.11.38", "@types/semver": "^7.3.9", - "@types/socketcluster": "^14.0.4", - "@types/socketcluster-client": "^13.0.5", - "@types/socketcluster-server": "^14.2.6", + "@types/socketcluster-client": "^16.0.0", + "@types/socketcluster-server": "^16.1.0", "@types/styled-components": "^5.1.25", "@types/supertest": "^2.0.12", "@types/uuid": "^8.3.4", @@ -90,7 +89,7 @@ "jest": "^27.5.1", "ncp": "^2.0.0", "rimraf": "^3.0.2", - "socketcluster-client": "^14.3.2", + "socketcluster-client": "^16.1.1", "supertest": "^6.2.3", "ts-jest": "^27.1.5", "typescript": "~4.7.3" diff --git a/packages/redux-devtools-cli/src/bin/redux-devtools.ts b/packages/redux-devtools-cli/src/bin/redux-devtools.ts index 049d245b..74ce0166 100644 --- a/packages/redux-devtools-cli/src/bin/redux-devtools.ts +++ b/packages/redux-devtools-cli/src/bin/redux-devtools.ts @@ -88,10 +88,9 @@ if (argv.injectserver) { } // eslint-disable-next-line @typescript-eslint/no-floating-promises -server(argv).then(function (r) { +server(argv).then(async function (r) { if (argv.open && argv.open !== 'false') { - r.on('ready', async function () { - await openApp(argv.open as string, options); - }); + await r.listener('ready').once(); + await openApp(argv.open as string, options); } }); diff --git a/packages/redux-devtools-cli/src/db/connector.ts b/packages/redux-devtools-cli/src/db/connector.ts index 64d78cbb..c07a4d92 100644 --- a/packages/redux-devtools-cli/src/db/connector.ts +++ b/packages/redux-devtools-cli/src/db/connector.ts @@ -1,8 +1,8 @@ import path from 'path'; import knexModule, { Knex } from 'knex'; -import { SCServer } from 'socketcluster-server'; +import { AGServer } from 'socketcluster-server'; -export default function connector(options: SCServer.SCServerOptions) { +export default function connector(options: AGServer.AGServerOptions) { const dbOptions = options.dbOptions as Knex.Config; dbOptions.useNullAsDefault = true; if (!(dbOptions as any).migrate) { diff --git a/packages/redux-devtools-cli/src/index.ts b/packages/redux-devtools-cli/src/index.ts index 0ec675ce..24b8104e 100644 --- a/packages/redux-devtools-cli/src/index.ts +++ b/packages/redux-devtools-cli/src/index.ts @@ -1,6 +1,10 @@ +import express from 'express'; +import http from 'http'; import getPort from 'getport'; -import SocketCluster from 'socketcluster'; +import socketClusterServer from 'socketcluster-server'; import getOptions, { Options } from './options'; +import routes from './routes'; +import createStore from './store'; // var LOG_LEVEL_NONE = 0; const LOG_LEVEL_ERROR = 1; @@ -8,16 +12,14 @@ const LOG_LEVEL_WARN = 2; const LOG_LEVEL_INFO = 3; export interface ExtendedOptions extends Options { - workerController: string; allowClientPublish: boolean; } export default function (argv: { [arg: string]: any }): Promise<{ portAlreadyUsed?: boolean; - on: (status: 'ready', cb: (() => void) | (() => Promise)) => void; + listener: (eventName: 'ready') => { once(): Promise }; }> { const options = Object.assign(getOptions(argv), { - workerController: __dirname + '/worker.js', allowClientPublish: false, }); const port = options.port; @@ -39,8 +41,12 @@ export default function (argv: { [arg: string]: any }): Promise<{ } resolve({ portAlreadyUsed: true, - on: function (status: string, cb: () => void) { - cb(); + listener: function (eventName: 'ready') { + return { + once() { + return Promise.resolve(); + }, + }; }, }); } else { @@ -48,7 +54,100 @@ export default function (argv: { [arg: string]: any }): Promise<{ console.log('[ReduxDevTools] Start server...'); console.log('-'.repeat(80) + '\n'); } - resolve(new SocketCluster(options)); + const httpServer = http.createServer(); + const agServer = socketClusterServer.attach(httpServer, options); + + const app = express(); + httpServer.on('request', app); + const store = createStore(options); + app.use(routes(options, store, agServer)); + + agServer.setMiddleware( + agServer.MIDDLEWARE_INBOUND, + // eslint-disable-next-line @typescript-eslint/no-misused-promises + async (middlewareStream) => { + for await (const action of middlewareStream) { + if (action.type === action.TRANSMIT) { + const channel = action.receiver; + const data = action.data; + if ( + channel.substring(0, 3) === 'sc-' || + channel === 'respond' || + channel === 'log' + ) { + void agServer.exchange.transmitPublish(channel, data); + } else if (channel === 'log-noid') { + void agServer.exchange.transmitPublish('log', { + id: action.socket.id, + data: data, + }); + } + } else if (action.type === action.SUBSCRIBE) { + if (action.channel === 'report') { + store + .list() + .then(function (data) { + void agServer.exchange.transmitPublish('report', { + type: 'list', + data: data, + }); + }) + .catch(function (error) { + console.error(error); // eslint-disable-line no-console + }); + } + } + action.allow(); + } + } + ); + + void (async () => { + for await (const { socket } of agServer.listener('connection')) { + let channelToWatch: string, channelToEmit: string; + void (async () => { + for await (const request of socket.procedure('login')) { + const credentials = request.data; + if (credentials === 'master') { + channelToWatch = 'respond'; + channelToEmit = 'log'; + } else { + channelToWatch = 'log'; + channelToEmit = 'respond'; + } + request.end(channelToWatch); + } + })(); + void (async () => { + for await (const request of socket.procedure('getReport')) { + const id = request.data as string; + store + .get(id) + .then(function (data) { + request.end(data); + }) + .catch(function (error) { + console.error(error); // eslint-disable-line no-console + }); + } + })(); + void (async () => { + for await (const data of socket.listener('disconnect')) { + const channel = agServer.exchange.channel('sc-' + socket.id); + channel.unsubscribe(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + void agServer.exchange.transmitPublish(channelToEmit!, { + id: socket.id, + type: 'DISCONNECTED', + }); + } + })(); + } + })(); + + httpServer.listen(options.port); + // @ts-expect-error Shouldn't there be a 'ready' event? + resolve(agServer); } /* eslint-enable no-console */ }); diff --git a/packages/redux-devtools-cli/src/routes.ts b/packages/redux-devtools-cli/src/routes.ts index e0b7b0a6..9ea4766a 100644 --- a/packages/redux-devtools-cli/src/routes.ts +++ b/packages/redux-devtools-cli/src/routes.ts @@ -5,7 +5,7 @@ import morgan from 'morgan'; import * as http from 'http'; import bodyParser from 'body-parser'; import cors from 'cors'; -import { SCServer } from 'socketcluster-server'; +import { AGServer } from 'socketcluster-server'; import { ApolloServer } from 'apollo-server-express'; import { AddData, ReportBaseFields, Store } from './store'; import { resolvers, schema } from './api/schema'; @@ -21,9 +21,9 @@ function serveUmdModule(name: string) { } function routes( - options: SCServer.SCServerOptions, + options: AGServer.AGServerOptions, store: Store, - scServer: SCServer + scServer: AGServer ): Router { const limit = options.maxRequestBody; const logHTTPRequests = options.logHTTPRequests; @@ -65,7 +65,8 @@ function routes( serveUmdModule('@redux-devtools/app'); app.get('/port.js', function (req, res) { - res.send(`reduxDevToolsPort = ${options.port!}`); + // eslint-disable-next-line @typescript-eslint/restrict-template-expressions + res.send(`reduxDevToolsPort = ${options.port}`); }); app.get('*', function (req, res) { res.sendFile(path.join(__dirname, '../app/index.html')); @@ -108,7 +109,7 @@ function routes( id: (r as ReportBaseFields).id, error: (r as { error: string }).error, }); - scServer.exchange.publish('report', { + void scServer.exchange.transmitPublish('report', { type: 'add', data: r, }); diff --git a/packages/redux-devtools-cli/src/store.ts b/packages/redux-devtools-cli/src/store.ts index 08da6b76..0d6edd99 100644 --- a/packages/redux-devtools-cli/src/store.ts +++ b/packages/redux-devtools-cli/src/store.ts @@ -1,6 +1,6 @@ import { v4 as uuidV4 } from 'uuid'; import pick from 'lodash/pick'; -import { SCServer } from 'socketcluster-server'; +import { AGServer } from 'socketcluster-server'; import { Knex } from 'knex'; import connector from './db/connector'; @@ -139,7 +139,7 @@ export interface Store { add: (data: AddData) => Promise; } -function createStore(options: SCServer.SCServerOptions): Store { +function createStore(options: AGServer.AGServerOptions): Store { knex = connector(options); return { diff --git a/packages/redux-devtools-cli/src/worker.ts b/packages/redux-devtools-cli/src/worker.ts deleted file mode 100644 index b6597e09..00000000 --- a/packages/redux-devtools-cli/src/worker.ts +++ /dev/null @@ -1,86 +0,0 @@ -import SCWorker from 'socketcluster/scworker'; -import express from 'express'; -import routes from './routes'; -import createStore from './store'; - -const app = express(); - -class Worker extends SCWorker { - run() { - const httpServer = this.httpServer; - const scServer = this.scServer; - const options = this.options; - const store = createStore(options); - - httpServer.on('request', app); - - app.use(routes(options, store, scServer)); - - scServer.addMiddleware(scServer.MIDDLEWARE_EMIT, function (req, next) { - const channel = req.event; - const data = req.data; - if ( - channel.substr(0, 3) === 'sc-' || - channel === 'respond' || - channel === 'log' - ) { - scServer.exchange.publish(channel, data); - } else if (channel === 'log-noid') { - scServer.exchange.publish('log', { id: req.socket.id, data: data }); - } - next(); - }); - - scServer.addMiddleware(scServer.MIDDLEWARE_SUBSCRIBE, function (req, next) { - next(); - if (req.channel === 'report') { - store - .list() - .then(function (data) { - req.socket.emit(req.channel!, { type: 'list', data: data }); - }) - .catch(function (error) { - console.error(error); // eslint-disable-line no-console - }); - } - }); - - scServer.on('connection', function (socket) { - let channelToWatch: string, channelToEmit: string; - socket.on('login', function (this: Worker, credentials, respond) { - if (credentials === 'master') { - channelToWatch = 'respond'; - channelToEmit = 'log'; - } else { - channelToWatch = 'log'; - channelToEmit = 'respond'; - } - this.exchange.subscribe('sc-' + socket.id).watch(function (msg) { - socket.emit(channelToWatch, msg); - }); - respond(null, channelToWatch); - }); - socket.on('getReport', function (id: string, respond) { - store - .get(id) - .then(function (data) { - respond(null, data); - }) - .catch(function (error) { - console.error(error); // eslint-disable-line no-console - }); - }); - socket.on('disconnect', function (this: Worker) { - const channel = this.exchange.channel('sc-' + socket.id); - channel.unsubscribe(); - channel.destroy(); - scServer.exchange.publish(channelToEmit, { - id: socket.id, - type: 'DISCONNECTED', - }); - }); - }); - } -} - -new Worker(); diff --git a/packages/redux-devtools-cli/test/integration.spec.ts b/packages/redux-devtools-cli/test/integration.spec.ts index ec1482f7..0f81d11f 100644 --- a/packages/redux-devtools-cli/test/integration.spec.ts +++ b/packages/redux-devtools-cli/test/integration.spec.ts @@ -1,6 +1,6 @@ import childProcess from 'child_process'; import request from 'supertest'; -import scClient from 'socketcluster-client'; +import socketClusterClient from 'socketcluster-client'; jest.setTimeout(10000); @@ -44,20 +44,30 @@ describe('Server', function () { }); describe('Realtime monitoring', function () { - let socket: scClient.SCClientSocket, - socket2: scClient.SCClientSocket, + let socket: socketClusterClient.AGClientSocket, + socket2: socketClusterClient.AGClientSocket, channel; beforeAll(function () { - socket = scClient.connect({ hostname: 'localhost', port: 8000 }); + socket = socketClusterClient.create({ + hostname: 'localhost', + port: 8000, + }); socket.connect(); - socket.on('error', function (error) { - console.error('Socket1 error', error); // eslint-disable-line no-console + void (async () => { + for await (const data of socket.listener('error')) { + console.error('Socket1 error', data.error); // eslint-disable-line no-console + } + })(); + socket2 = socketClusterClient.create({ + hostname: 'localhost', + port: 8000, }); - socket2 = scClient.connect({ hostname: 'localhost', port: 8000 }); socket2.connect(); - socket.on('error', function (error) { - console.error('Socket2 error', error); // eslint-disable-line no-console - }); + void (async () => { + for await (const data of socket2.listener('error')) { + console.error('Socket2 error', data.error); // eslint-disable-line no-console + } + })(); }); afterAll(function () { @@ -65,73 +75,50 @@ describe('Server', function () { socket2.disconnect(); }); - it('should connect', function () { - return new Promise((done) => { - socket.on('connect', function (status) { - expect(status.id).toBeTruthy(); - done(); - }); - }); + it('should connect', async function () { + const data = await socket.listener('connect').once(); + expect(data.id).toBeTruthy(); }); - it('should login', function () { - socket.emit( - 'login', - 'master', - function (error: Error | undefined, channelName: string) { - if (error) { - /* eslint-disable-next-line no-console */ - console.log(error); - return; - } - expect(channelName).toBe('respond'); - channel = socket.subscribe(channelName); - expect(channel.SUBSCRIBED).toBe('subscribed'); - } - ); + it('should login', async function () { + try { + const channelName = (await socket.invoke('login', 'master')) as string; + expect(channelName).toBe('respond'); + channel = socket.subscribe(channelName); + expect(channel.SUBSCRIBED).toBe('subscribed'); + } catch (error) { + console.log(error); + } }); - it('should send message', function () { - return new Promise((done) => { - const data = { - type: 'ACTION', - payload: { - todos: 'do some', - }, + it('should send message', async function () { + const data = { + type: 'ACTION', + payload: { + todos: 'do some', + }, + action: { + timestamp: 1483349708506, action: { - timestamp: 1483349708506, - action: { - type: 'ADD_TODO', - text: 'hggg', - }, + type: 'ADD_TODO', + text: 'hggg', }, - instanceId: 'tAmA7H5fclyWhvizAAAi', - name: 'LoggerInstance', - id: 'tAmA7H5fclyWhvizAAAi', - }; + }, + instanceId: 'tAmA7H5fclyWhvizAAAi', + name: 'LoggerInstance', + id: 'tAmA7H5fclyWhvizAAAi', + }; - socket2.emit( - 'login', - '', - function (error: Error | undefined, channelName: string) { - if (error) { - /* eslint-disable-next-line no-console */ - console.log(error); - return; - } - expect(channelName).toBe('log'); - const channel2 = socket2.subscribe(channelName); - expect(channel2.SUBSCRIBED).toBe('subscribed'); - channel2.on('subscribe', function () { - channel2.watch(function (message) { - expect(message).toEqual(data); - done(); - }); - socket.emit(channelName, data); - }); - } - ); - }); + try { + const channelName = (await socket.invoke('login', '')) as string; + expect(channelName).toBe('log'); + const channel2 = socket2.subscribe(channelName); + expect(channel2.SUBSCRIBED).toBe('subscribed'); + const message = await channel2.listener('subscribe').once(); + expect(message).toEqual(data); + } catch (error) { + console.log(error); + } }); }); @@ -149,97 +136,61 @@ describe('Server', function () { 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) ' + 'AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36', }; - it('should add a report', function () { - return new Promise((done) => { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - request('http://localhost:8000') - .post('/') - .send(report) - .set('Accept', 'application/json') - .expect('Content-Type', /application\/json/) - .expect(200) - .then(function (res: { body: { id: string } }) { - id = res.body.id; - expect(id).toBeTruthy(); - done(); - }); - }); + it('should add a report', async function () { + const res = await request('http://localhost:8000') + .post('/') + .send(report) + .set('Accept', 'application/json') + .expect('Content-Type', /application\/json/) + .expect(200); + id = res.body.id; + expect(id).toBeTruthy(); }); - it('should get the report', function () { - return new Promise((done) => { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - request('http://localhost:8000') - .post('/') - .send({ - op: 'get', - id: id, - }) - .set('Accept', 'application/json') - .expect('Content-Type', /application\/json/) - .expect(200) - .then(function (res: { body: unknown }) { - expect(res.body).toMatchObject(report); - done(); - }); - }); + it('should get the report', async function () { + const res = await request('http://localhost:8000') + .post('/') + .send({ + op: 'get', + id: id, + }) + .set('Accept', 'application/json') + .expect('Content-Type', /application\/json/) + .expect(200); + expect(res.body).toMatchObject(report); }); - it('should list reports', function () { - return new Promise((done) => { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - request('http://localhost:8000') - .post('/') - .send({ - op: 'list', - }) - .set('Accept', 'application/json') - .expect('Content-Type', /application\/json/) - .expect(200) - .then(function (res: { - body: { id: string; title: string | null; added: string | null }[]; - }) { - expect(res.body).toHaveLength(1); - expect(res.body[0].id).toBe(id); - expect(res.body[0].title).toBe('Test report'); - expect(res.body[0].added).toBeTruthy(); - done(); - }); - }); + it('should list reports', async function () { + const res = await request('http://localhost:8000') + .post('/') + .send({ + op: 'list', + }) + .set('Accept', 'application/json') + .expect('Content-Type', /application\/json/) + .expect(200); + expect(res.body).toHaveLength(1); + expect(res.body[0].id).toBe(id); + expect(res.body[0].title).toBe('Test report'); + expect(res.body[0].added).toBeTruthy(); }); }); describe('GraphQL backend', function () { - it('should get the report', function () { - return new Promise((done) => { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - request('http://localhost:8000') - .post('/graphql') - .send({ - query: '{ reports { id, type, title } }', - }) - .set('Accept', 'application/json') - .expect('Content-Type', /application\/json/) - .expect(200) - .then(function (res: { - body: { - data: { - reports: { - id: string; - title: string | null; - type: string | null; - }[]; - }; - }; - }) { - const reports = res.body.data.reports; - expect(reports).toHaveLength(1); - expect(reports[0].id).toBeTruthy(); - expect(reports[0].title).toBe('Test report'); - expect(reports[0].type).toBe('ACTIONS'); - done(); - }); - }); + it('should get the report', async function () { + const res = await request('http://localhost:8000') + .post('/graphql') + .send({ + query: '{ reports { id, type, title } }', + }) + .set('Accept', 'application/json') + .expect('Content-Type', /application\/json/) + .expect(200); + const reports = res.body.data.reports; + expect(reports).toHaveLength(1); + expect(reports[0].id).toBeTruthy(); + expect(reports[0].title).toBe('Test report'); + expect(reports[0].type).toBe('ACTIONS'); }); }); }); diff --git a/packages/redux-devtools-remote/package.json b/packages/redux-devtools-remote/package.json index ba2ee353..f5802e7f 100644 --- a/packages/redux-devtools-remote/package.json +++ b/packages/redux-devtools-remote/package.json @@ -47,7 +47,7 @@ "jsan": "^3.1.14", "querystring": "^0.2.1", "rn-host-detect": "^1.2.0", - "socketcluster-client": "^14.3.2" + "socketcluster-client": "^16.1.1" }, "devDependencies": { "@babel/cli": "^7.17.10", @@ -59,7 +59,7 @@ "@types/jsan": "^3.1.2", "@types/node": "^16.11.38", "@types/rn-host-detect": "^1.2.0", - "@types/socketcluster-client": "^13.0.5", + "@types/socketcluster-client": "^16.0.0", "@typescript-eslint/eslint-plugin": "^5.27.0", "@typescript-eslint/parser": "^5.27.0", "eslint": "^8.17.0", diff --git a/packages/redux-devtools-remote/src/devTools.ts b/packages/redux-devtools-remote/src/devTools.ts index 08dc7e85..224e0aca 100644 --- a/packages/redux-devtools-remote/src/devTools.ts +++ b/packages/redux-devtools-remote/src/devTools.ts @@ -1,5 +1,5 @@ import { stringify, parse } from 'jsan'; -import socketCluster, { SCClientSocket } from 'socketcluster-client'; +import socketClusterClient, { AGClientSocket } from 'socketcluster-client'; import configureStore from './configureStore'; import { defaultSocketOptions } from './constants'; import getHostForRN from 'rn-host-detect'; @@ -179,7 +179,7 @@ class DevToolsEnhancer> { store!: EnhancedStore; filters: LocalFilter | undefined; instanceId?: string; - socket?: SCClientSocket; + socket?: AGClientSocket; sendTo?: string; instanceName: string | undefined; appInstanceId!: string; @@ -241,7 +241,8 @@ class DevToolsEnhancer> { ) { const message: MessageToRelay = { type, - id: this.socket!.id, + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + id: this.socket!.id!, name: this.instanceName, instanceId: this.appInstanceId, }; @@ -279,7 +280,8 @@ class DevToolsEnhancer> { } else if (action) { message.action = action as ActionCreatorObject[]; } - this.socket!.emit(this.socket!.id ? 'log' : 'log-noid', message); + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + void this.socket!.transmit(this.socket!.id ? 'log' : 'log-noid', message); } dispatchRemotely( @@ -300,7 +302,9 @@ class DevToolsEnhancer> { if ( message.type === 'IMPORT' || (message.type === 'SYNC' && + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion this.socket!.id && + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion message.id !== this.socket!.id) ) { this.store.liftedStore.dispatch({ @@ -387,15 +391,22 @@ class DevToolsEnhancer> { } login() { - this.socket!.emit('login', 'master', (err: Error, channelName: string) => { - if (err) { - console.log(err); - return; + void (async () => { + try { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + const channelName = (await this.socket!.invoke( + 'login', + 'master' + )) as string; + this.channel = channelName; + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + for await (const data of this.socket!.subscribe(channelName)) { + this.handleMessages(data as Message); + } + } catch (error) { + console.log(error); } - this.channel = channelName; - this.socket!.subscribe(channelName).watch(this.handleMessages); - this.socket!.on(channelName, this.handleMessages); - }); + })(); this.started = true; this.relay('START'); } @@ -404,11 +415,9 @@ class DevToolsEnhancer> { this.started = false; this.isMonitored = false; if (!this.socket) return; - this.socket.destroyChannel(this.channel!); - if (keepConnected) { - this.socket.off(this.channel, this.handleMessages); - } else { - this.socket.off(); + void this.socket.unsubscribe(this.channel!); + this.socket.closeChannel(this.channel!); + if (!keepConnected) { this.socket.disconnect(); } }; @@ -420,36 +429,48 @@ class DevToolsEnhancer> { ) return; - this.socket = socketCluster.create(this.socketOptions); + this.socket = socketClusterClient.create(this.socketOptions); - this.socket.on('error', (err) => { - // if we've already had this error before, increment it's counter, otherwise assign it '1' since we've had the error once. - // eslint-disable-next-line no-prototype-builtins - this.errorCounts[err.name] = this.errorCounts.hasOwnProperty(err.name) - ? this.errorCounts[err.name] + 1 - : 1; + void (async () => { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + for await (const data of this.socket!.listener('error')) { + // if we've already had this error before, increment it's counter, otherwise assign it '1' since we've had the error once. + // eslint-disable-next-line no-prototype-builtins,@typescript-eslint/no-unsafe-argument + this.errorCounts[data.error.name] = this.errorCounts.hasOwnProperty( + data.error.name + ) + ? this.errorCounts[data.error.name] + 1 + : 1; - if (this.suppressConnectErrors) { - if (this.errorCounts[err.name] === 1) { - console.log( - 'remote-redux-devtools: Socket connection errors are being suppressed. ' + - '\n' + - "This can be disabled by setting suppressConnectErrors to 'false'." - ); - console.log(err); + if (this.suppressConnectErrors) { + if (this.errorCounts[data.error.name] === 1) { + console.log( + 'remote-redux-devtools: Socket connection errors are being suppressed. ' + + '\n' + + "This can be disabled by setting suppressConnectErrors to 'false'." + ); + console.log(data.error); + } + } else { + console.log(data.error); } - } else { - console.log(err); } - }); - this.socket.on('connect', () => { - console.log('connected to remotedev-server'); - this.errorCounts = {}; // clear the errorCounts object, so that we'll log any new errors in the event of a disconnect - this.login(); - }); - this.socket.on('disconnect', () => { - this.stop(true); - }); + })(); + + void (async () => { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + for await (const data of this.socket!.listener('connect')) { + console.log('connected to remotedev-server'); + this.errorCounts = {}; // clear the errorCounts object, so that we'll log any new errors in the event of a disconnect + this.login(); + } + })(); + void (async () => { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + for await (const data of this.socket!.listener('disconnect')) { + this.stop(true); + } + })(); }; checkForReducerErrors = (liftedState = this.getLiftedStateRaw()) => { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 13445554..1f722bc5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -807,7 +807,7 @@ importers: '@types/prop-types': ^15.7.5 '@types/react': ^18.0.12 '@types/react-dom': ^18.0.5 - '@types/socketcluster-client': ^13.0.5 + '@types/socketcluster-client': ^16.0.0 '@types/styled-components': ^5.1.25 '@types/testing-library__jest-dom': ^5.14.3 '@types/webpack-env': ^1.17.0 @@ -841,7 +841,7 @@ importers: redux: ^4.2.0 redux-persist: ^6.0.0 rimraf: ^3.0.2 - socketcluster-client: ^14.3.2 + socketcluster-client: ^16.1.1 style-loader: ^3.3.1 styled-components: ^5.3.5 ts-jest: ^27.1.5 @@ -875,7 +875,7 @@ importers: react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua redux: 4.2.0 redux-persist: 6.0.0_react@18.1.0+redux@4.2.0 - socketcluster-client: 14.3.2 + socketcluster-client: 16.1.1 devDependencies: '@babel/cli': 7.17.10_@babel+core@7.18.2 '@babel/core': 7.18.2 @@ -894,7 +894,7 @@ importers: '@types/node': 16.11.38 '@types/react': 18.0.12 '@types/react-dom': 18.0.5 - '@types/socketcluster-client': 13.0.5 + '@types/socketcluster-client': 16.0.0 '@types/styled-components': 5.1.25 '@types/testing-library__jest-dom': 5.14.3 '@types/webpack-env': 1.17.0 @@ -996,9 +996,8 @@ importers: '@types/node': ^16.11.38 '@types/react': ^18.0.12 '@types/semver': ^7.3.9 - '@types/socketcluster': ^14.0.4 - '@types/socketcluster-client': ^13.0.5 - '@types/socketcluster-server': ^14.2.6 + '@types/socketcluster-client': ^16.0.0 + '@types/socketcluster-server': ^16.1.0 '@types/styled-components': ^5.1.25 '@types/supertest': ^2.0.12 '@types/uuid': ^8.3.4 @@ -1028,8 +1027,8 @@ importers: react-is: ^18.1.0 rimraf: ^3.0.2 semver: ^7.3.7 - socketcluster: ^14.4.2 - socketcluster-client: ^14.3.2 + socketcluster-client: ^16.1.1 + socketcluster-server: ^16.2.1 sqlite3: ^5.0.8 styled-components: ^5.3.5 supertest: ^6.2.3 @@ -1057,7 +1056,7 @@ importers: react-dom: 18.1.0_react@18.1.0 react-is: 18.1.0 semver: 7.3.7 - socketcluster: 14.4.2 + socketcluster-server: 16.2.1 sqlite3: 5.0.8 styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq uuid: 8.3.2 @@ -1072,9 +1071,8 @@ importers: '@types/morgan': 1.9.3 '@types/node': 16.11.38 '@types/semver': 7.3.9 - '@types/socketcluster': 14.0.4 - '@types/socketcluster-client': 13.0.5 - '@types/socketcluster-server': 14.2.6 + '@types/socketcluster-client': 16.0.0 + '@types/socketcluster-server': 16.1.0 '@types/styled-components': 5.1.25 '@types/supertest': 2.0.12 '@types/uuid': 8.3.4 @@ -1086,7 +1084,7 @@ importers: jest: 27.5.1 ncp: 2.0.0 rimraf: 3.0.2 - socketcluster-client: 14.3.2 + socketcluster-client: 16.1.1 supertest: 6.2.3 ts-jest: 27.1.5_zydwki6ztrgm452or5cw6tjo5q typescript: 4.7.3 @@ -1736,7 +1734,7 @@ importers: '@types/jsan': ^3.1.2 '@types/node': ^16.11.38 '@types/rn-host-detect': ^1.2.0 - '@types/socketcluster-client': ^13.0.5 + '@types/socketcluster-client': ^16.0.0 '@typescript-eslint/eslint-plugin': ^5.27.0 '@typescript-eslint/parser': ^5.27.0 eslint: ^8.17.0 @@ -1746,7 +1744,7 @@ importers: redux: ^4.2.0 rimraf: ^3.0.2 rn-host-detect: ^1.2.0 - socketcluster-client: ^14.3.2 + socketcluster-client: ^16.1.1 typescript: ~4.7.3 dependencies: '@babel/runtime': 7.18.3 @@ -1755,7 +1753,7 @@ importers: jsan: 3.1.14 querystring: 0.2.1 rn-host-detect: 1.2.0 - socketcluster-client: 14.3.2 + socketcluster-client: 16.1.1 devDependencies: '@babel/cli': 7.17.10_@babel+core@7.18.2 '@babel/core': 7.18.2 @@ -1766,7 +1764,7 @@ importers: '@types/jsan': 3.1.2 '@types/node': 16.11.38 '@types/rn-host-detect': 1.2.0 - '@types/socketcluster-client': 13.0.5 + '@types/socketcluster-client': 16.0.0 '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 eslint: 8.17.0 @@ -4400,7 +4398,7 @@ packages: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' - react-dom: '>=18' + react-dom: '>=18 || 18' dependencies: '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq '@chakra-ui/focus-lock': 2.0.2_cbpnieqasrszcwkqeh5i7z7nse @@ -4480,7 +4478,7 @@ packages: resolution: {integrity: sha512-Yfe4ASpPLlpiPAzHq+yKsjhz6gfM9gUhCDBG97WQJc8WVoY/fg/aQHNtx69arS5p2a3ka9hXqdGtZwx8rxCD7Q==} peerDependencies: react: '>=18 || 18' - react-dom: '>=18' + react-dom: '>=18 || 18' dependencies: '@chakra-ui/hooks': 2.0.1_react@18.1.0 '@chakra-ui/react-utils': 2.0.0_react@18.1.0 @@ -4507,7 +4505,7 @@ packages: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18 || 18' - react-dom: '>=18' + react-dom: '>=18 || 18' dependencies: '@chakra-ui/css-reset': 2.0.0_btguaf77hpuxici4esujjeifki '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm @@ -4560,7 +4558,7 @@ packages: '@emotion/styled': ^11.0.0 framer-motion: '>=4.0.0' react: '>=18 || 18' - react-dom: '>=18' + react-dom: '>=18 || 18' dependencies: '@chakra-ui/accordion': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am '@chakra-ui/alert': 2.0.1_gvhyduxkh7lachkwscygibi2bq @@ -4800,7 +4798,7 @@ packages: peerDependencies: framer-motion: '>=4.0.0' react: '>=18 || 18' - react-dom: '>=18' + react-dom: '>=18 || 18' dependencies: '@chakra-ui/alert': 2.0.1_gvhyduxkh7lachkwscygibi2bq '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq @@ -4825,7 +4823,7 @@ packages: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' - react-dom: '>=18' + react-dom: '>=18 || 18' dependencies: '@chakra-ui/hooks': 2.0.1_react@18.1.0 '@chakra-ui/popper': 3.0.1_react@18.1.0 @@ -5760,7 +5758,7 @@ packages: strict-event-emitter: 0.2.4 uuid: 8.3.2 optionalDependencies: - msw: 0.42.0_typescript@4.7.3 + msw: 0.42.1_typescript@4.7.3 transitivePeerDependencies: - encoding - supports-color @@ -6016,7 +6014,7 @@ packages: resolution: {integrity: sha512-oIh2t3tG8drZtZ9SlaV5CY6wGsUViHk8ZajjhcI+74IQHyWy+AnxDv8rJR5wVgsgcgrPBUvGNkC1AEdcGNPaLQ==} peerDependencies: react: '>=16.14.0 || 18' - react-dom: '>=16.14.0' + react-dom: '>=16.14.0 || 18' dependencies: '@babel/runtime': 7.18.3 '@popperjs/core': 2.11.5 @@ -6155,7 +6153,7 @@ packages: resolution: {integrity: sha512-gTkPr2FYX+vySZKEg5Wq7uHPkVUq3hJ7ZKvGls+/xjgaTwfu3iIly53FEFUl8A6kMQ+4gtTC+YRr3cSJgXMbAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true @@ -6189,7 +6187,7 @@ packages: resolution: {integrity: sha512-ryisDpxbIEZbYJkQWU5xvsj940jhWrWizedFsY9g/qBIBi33UrW/H1hKZQtmg0bzuNTgYcBjRy50ikJgH/eKAQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true @@ -6217,7 +6215,7 @@ packages: resolution: {integrity: sha512-1JGphHk1gcLLpkft/D5BkygXwelSdWQqvXnfFc62BVqvzxv8hCF4zuUosKLWMlB/nzVbd6W4oEDV/Mqmt6h/7w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true @@ -6252,7 +6250,7 @@ packages: peerDependencies: '@storybook/mdx2-csf': ^0.0.3 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@storybook/mdx2-csf': optional: true @@ -6392,7 +6390,7 @@ packages: resolution: {integrity: sha512-NMth6CErySKQ9WnfzMZ4nelHa2bBzZ60ZgsDq5s5dKHhJzZPm2nclmGAGE+VhqI/USe8b1fnjKFeHH485T8J2g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true @@ -6415,7 +6413,7 @@ packages: resolution: {integrity: sha512-qTu19FnZz+rjY7SxPOgiQkuAxHRNRhUYgvUwI+ep0ZQcBddsRgniQjzXtErlUMeVoMZ63mDuOaJp67ltkriAOQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true @@ -6440,7 +6438,7 @@ packages: resolution: {integrity: sha512-+MUG5t4isQNf+q7BpEsGwuYAvYgs9XTdzzdvL/9jedQ7udJsWmG1q9a6m9+iQGPr/WK+88F2kgSOknpib3J21w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true @@ -6462,7 +6460,7 @@ packages: resolution: {integrity: sha512-8VmSTGKY3+9kZ09THC7546OaFbjLu5kEAGU5ZFSZaNlsJwRg7bC3bScKbnyX5EhihgZ3W8oJt/eMAIqXKHxA8g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true @@ -6488,7 +6486,7 @@ packages: resolution: {integrity: sha512-tUZ2c1uegUcwY31ztNQZGU/HUwAEEGIR8fEOvvO8S0TNQGoo6cwFtZmWBh3mTSRGcmzK2SNBjFHZua5Ee9TefA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channels': 6.5.7 @@ -6509,7 +6507,7 @@ packages: resolution: {integrity: sha512-QCNypz4X+lYuFW7EzvRPXMf8uS3gfSIV8sqXtEe5XoMb0HQXhy6AGU7/4iAeuUimtETqLTxq+kOxaSg4uPowxg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/channels': 6.5.7 '@storybook/client-logger': 6.5.7 @@ -6536,7 +6534,7 @@ packages: resolution: {integrity: sha512-8OB3mZ2L6kQBiAXlkhna/MHREXIPtqXi2AJLT3+bTzBlqkusH+PwMZxWHbcPl1vZrlNQBC40Elx9tdynGkVQ6g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' peerDependenciesMeta: typescript: @@ -6635,7 +6633,7 @@ packages: resolution: {integrity: sha512-na8NZhB6GnAGp3jRTV9wwue3WGwSZoi5jfxrKSYMPL/s/2n07/soixHggqueBDXuNBrPoJaXbY/nRHmSjLwxtQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channel-postmessage': 6.5.7 @@ -6672,7 +6670,7 @@ packages: resolution: {integrity: sha512-xSOaOK8q6bXYkmN4LZKucvXU2HRHqKwwTafFDh5yzsCSEB2VQIJlyo4ePVyv/GJgBUX6+WdSA7c5r5ePXK6IYQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/client-logger': 6.5.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 @@ -6691,7 +6689,7 @@ packages: resolution: {integrity: sha512-GL7m33tpEyornhfnTddbvDuLkA9EMe1zKv9oZGsUYo78cWRTiEibYyHegIi9/ThplRXvpFR/5uHY4Zx5Z5rxJg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' webpack: '*' peerDependenciesMeta: @@ -6728,7 +6726,7 @@ packages: resolution: {integrity: sha512-GL7m33tpEyornhfnTddbvDuLkA9EMe1zKv9oZGsUYo78cWRTiEibYyHegIi9/ThplRXvpFR/5uHY4Zx5Z5rxJg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' webpack: '*' peerDependenciesMeta: @@ -6765,7 +6763,7 @@ packages: resolution: {integrity: sha512-/b1oQlmhek8tKDu9ky2O1oEk9g2giAPpl192yRz4lIxap5CFJ7RCfgbkq+F3JBXnH2P84BufC0x3dj4jvBhxCw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' peerDependenciesMeta: typescript: @@ -6844,7 +6842,7 @@ packages: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' peerDependenciesMeta: '@storybook/builder-webpack5': @@ -6921,7 +6919,7 @@ packages: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' webpack: '*' peerDependenciesMeta: @@ -7003,7 +7001,7 @@ packages: resolution: {integrity: sha512-RmGsr/6PNsafaSm8aTD7e2VXSKT8BQ6Hkg6TAArLoS2TpIUvrNuM2hEqOHzm2POcApC+OE/HN1H0GiXBkH533Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' peerDependenciesMeta: typescript: @@ -7096,7 +7094,7 @@ packages: resolution: {integrity: sha512-EH8gdl334D8EDVL1VJjRURcUou5Sv6BwgismL4E6wjSFmWxL9egxYDnGJJEh3mjIkAtGb0zpksYn/VNWPA8c8A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/channel-postmessage': 6.5.7 @@ -7148,7 +7146,7 @@ packages: '@storybook/manager-webpack4': '*' '@storybook/manager-webpack5': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 require-from-string: ^2.0.2 typescript: '*' peerDependenciesMeta: @@ -7231,7 +7229,7 @@ packages: resolution: {integrity: sha512-edWEdAb8O0rSgdXoBZDDuNlQg2cOmC/nJ6gXj9zBotzmXqsbxWyjKGooG1dU6dnKshUqE1RmWF7/N1WMluLf0A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/client-logger': 6.5.7 core-js: 3.22.8 @@ -7253,7 +7251,7 @@ packages: resolution: {integrity: sha512-nj24TSGdF9J1gD5Fj9Z2hPRAQwqBJoBKD/fmTSFZop0qaJOOyeuxZR5022dQh8UWWoBa3WOQADMTNi5RqQZkiA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 @@ -7273,7 +7271,7 @@ packages: resolution: {integrity: sha512-d64towcdylC6TXNL2oJklCpwN3XcUGgZzQ9zgoV8BUlOlsj9tNq8eo95uzTURnLg1Q5uHoDDKWuXrrKj03HHxw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.7 @@ -7325,7 +7323,7 @@ packages: resolution: {integrity: sha512-6zp1V84DSBcS8BtFOCJlF2/nIonjQmr+dILPxaM3lCm/X003i2jAQrBKTfPlmzCeDn07PBhzHaRJ3wJskfmeNw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/client-logger': 6.5.7 core-js: 3.22.8 @@ -7338,7 +7336,7 @@ packages: resolution: {integrity: sha512-NOg44bc/w7FweuM2fa99PxsgI9qoG2p5vhTQ4MOI/7QnOUDn+EenlapsRos+/Sk2XTaB2QmM43boUkravMSouA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm @@ -7566,7 +7564,7 @@ packages: engines: {node: '>=12'} peerDependencies: react: ^18.0.0 || 18 - react-dom: ^18.0.0 + react-dom: ^18.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 '@testing-library/dom': 8.13.0 @@ -7607,15 +7605,42 @@ packages: /@types/accepts/1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: false + /@types/ag-auth/1.0.0: + resolution: {integrity: sha512-9Zri8Apx8al2ZfqcsJ5X39GoirGiVcP7sp1I4mOgsRwXeAwPGadE//44jMHTpCpVDwQ4geGzmD2KMlZspAAcdA==} + dependencies: + '@types/jsonwebtoken': 8.5.8 + dev: true + + /@types/ag-channel/5.0.0: + resolution: {integrity: sha512-ab4P2BWe61MFOGmeXX1yKmBh8UrOSUZv+SsauJreGc1WdHQKaCGtH6VVUkiYfYv73a7e9+LGG5LiF/lIGVqOxw==} + dependencies: + '@types/consumable-stream': 2.0.0 + '@types/stream-demux': 8.0.0 + '@types/writable-consumable-stream': 2.0.0 + dev: true + + /@types/ag-simple-broker/5.0.0: + resolution: {integrity: sha512-JE3GL2L4PPdbJl29N6K/bAR+peJgz/EUjsB+S/l3VwB7rzLsik2XPgrtRTor/b7ZjKP542jGjEPdRhbK2w9ePw==} + dependencies: + '@types/ag-channel': 5.0.0 + '@types/async-stream-emitter': 4.0.0 + '@types/consumable-stream': 2.0.0 + '@types/socketcluster-server': 16.1.0 + '@types/writable-consumable-stream': 2.0.0 + dev: true + /@types/aria-query/4.2.2: resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} dev: true - /@types/async/3.2.13: - resolution: {integrity: sha512-7Q3awrhnvm89OzfsmqeqRQh8mh+8Pxfgq1UvSAn2nWQ5y/F3+NrbIF0RbkWq8+5dY99ozgap2b3DNBNwjLVOxw==} + /@types/async-stream-emitter/4.0.0: + resolution: {integrity: sha512-13vdKrWE2navt87EPbk6VcUjQgAu/p/rRGdbcE+bYhbKg/fA7nsEgRkxIdlEpZTnGyixUO5+5yHKaIXgMmKL0A==} + dependencies: + '@types/consumable-stream': 2.0.0 + '@types/writable-consumable-stream': 2.0.0 dev: true /@types/babel-types/7.0.11: @@ -7711,10 +7736,6 @@ packages: '@types/color-convert': 2.0.0 dev: true - /@types/component-emitter/1.2.11: - resolution: {integrity: sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==} - dev: true - /@types/connect-history-api-fallback/1.3.5: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: @@ -7725,7 +7746,13 @@ packages: /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 + + /@types/consumable-stream/2.0.0: + resolution: {integrity: sha512-RuXAZX3pQ2jGgETa1p4fTZb4Y1IxanZ8hafWewNoWW+Nqc4OcDw2VbAPzB1Wq7l5rtvmmCmHnpDX0CNRthqsAA==} + dependencies: + '@types/node': 17.0.40 + dev: true /@types/cookie/0.4.1: resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} @@ -7792,14 +7819,10 @@ packages: /@types/estree/0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - /@types/expirymanager/0.9.0: - resolution: {integrity: sha512-xulG8b5SiBhpRE1Arfx3ji428mfhwQdas6/i+1IJhTLkyFifJ4rF+vve522ds2ZTiBKCUv9WHNuVF/V9PJCa2Q==} - dev: true - /@types/express-serve-static-core/4.17.28: resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 @@ -7819,10 +7842,6 @@ packages: /@types/filewriter/0.0.29: resolution: {integrity: sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ==} - /@types/fleximap/0.9.0: - resolution: {integrity: sha512-7VsHgMM7l3jY+MXptDgzvROcEoikVgIxu+8d/qT0WijDl6RXdwAbAQYxu5sBCwUvlf0cEQwiDC4rOvkcm3h+hw==} - dev: true - /@types/get-params/0.1.0: resolution: {integrity: sha512-dlrC7vGuNvUCD4UXLTPqNSdSFHDa+n6wHmyKWP2OJXwtgY1A3Lttn5Dx7gmo00fg/xuuLILTuzI/1isDV/1V2Q==} dev: false @@ -7934,7 +7953,7 @@ packages: /@types/jsonwebtoken/8.5.8: resolution: {integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/keyv/3.1.4: @@ -7999,12 +8018,6 @@ packages: '@types/node': 16.11.38 dev: true - /@types/ncom/1.0.1: - resolution: {integrity: sha512-IH7sL3ojrxt451VWUF0iMdDyOwZp/VA3M5CC7NGYiSJCf524ePB25d4rM64E5giWgkFM8FWGthhu6QDf61UOXA==} - dependencies: - '@types/node': 16.11.38 - dev: true - /@types/node-fetch/2.6.1: resolution: {integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==} dependencies: @@ -8146,38 +8159,6 @@ packages: resolution: {integrity: sha512-i+RVNagU1zd7wynKXI4c6h5hYHP1jwau4ME9rHA60xJxhczRrqPpJoAiIZyTHfk0iDja/1PPZxtuMpfBhlYHVA==} dev: true - /@types/sc-auth/5.0.0: - resolution: {integrity: sha512-V+wuOweEJDrVCMduXmS7zc60O6HGyd5Xm3ClzEXKJfQdrSuhoqvhDjOwbtRZAXCjHll12lBXECb2sht5Glp/6A==} - dependencies: - '@types/jsonwebtoken': 8.5.8 - dev: true - - /@types/sc-broker-cluster/6.1.4: - resolution: {integrity: sha512-TnhkhVLse6lD07XmDDfHZGEM+BndSwxBK6sAzhxJCDvWvzN/10iR237D3UhYDKekMUsXKww25WOBlAtbs/1qQA==} - dependencies: - '@types/async': 3.2.13 - '@types/expirymanager': 0.9.0 - '@types/fleximap': 0.9.0 - '@types/sc-broker': 8.0.2 - '@types/sc-channel': 1.2.2 - '@types/socketcluster': 14.0.4 - '@types/socketcluster-server': 14.2.6 - dev: true - - /@types/sc-broker/8.0.2: - resolution: {integrity: sha512-Tpl9rTbIHGuRPtwcat7zHWG4Rj45tu9JHDglKeZPYUxtSd+jtT8NYCeJFsRCoUpBcMIXOlQwc5g5jlQ6yeqMVA==} - dependencies: - '@types/expirymanager': 0.9.0 - '@types/fleximap': 0.9.0 - '@types/ncom': 1.0.1 - dev: true - - /@types/sc-channel/1.2.2: - resolution: {integrity: sha512-TgTw0+SPnDbvhYXz1Ii70KYf/Uu1DkNQZ0sFv+RCMjNFkjdxP1imtQN46NA0Z6QqNbiOer1s+MNCSxaQ6Ug5ZQ==} - dependencies: - '@types/component-emitter': 1.2.11 - dev: true - /@types/sc-errors/1.4.1: resolution: {integrity: sha512-sulhioQgURtx4d1/t+nJYnLR98JapJVVayOy7e5IMDRpRt7Fu9aqMcA8NKx2L6ExQFMDQOtYpApNWFVTrjWxtQ==} dev: true @@ -8203,7 +8184,7 @@ packages: resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} dependencies: '@types/mime': 1.3.2 - '@types/node': 16.11.38 + '@types/node': 17.0.40 /@types/set-cookie-parser/2.4.2: resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==} @@ -8219,35 +8200,33 @@ packages: resolution: {integrity: sha512-z89ForrCNg+4uwTHjwBCM9LjcsXYC/4O8u3tSi+82v2LCbfiYFpkjH/qQVkDewFBK6FUG7RRV7jw78EGs2maoQ==} dev: false - /@types/socketcluster-client/13.0.5: - resolution: {integrity: sha512-HL0cpZdSx/RczgPRnHY2mCg4K8bSHmpv8Tra1qspb/BtZZQ73R9iAwIf3mX07+/npfBMlPGF6eMHsZP8WyMMAw==} + /@types/socketcluster-client/16.0.0: + resolution: {integrity: sha512-Re5rkp09jcvW95WRBN5q/FIVx9MJZJQPVBpxShLcUnUiMeqXGOO8Ag2RI7dmw4YqKkulpOrk5nl2iUiUC2hUEg==} dependencies: - '@types/component-emitter': 1.2.11 - '@types/sc-auth': 5.0.0 - '@types/sc-channel': 1.2.2 + '@types/ag-channel': 5.0.0 + '@types/async-stream-emitter': 4.0.0 + '@types/consumable-stream': 2.0.0 '@types/sc-errors': 1.4.1 - '@types/socketcluster-server': 14.2.6 + '@types/socketcluster-server': 16.1.0 + '@types/stream-demux': 8.0.0 + '@types/writable-consumable-stream': 2.0.0 '@types/ws': 8.5.3 dev: true - /@types/socketcluster-server/14.2.6: - resolution: {integrity: sha512-JPf/uI3vZcGIGWE0I280iMl+RAz8rT8QScx+ZApVvhOFd9aEAEWRnix/WJ7w84b0YJcLFzeVakGAFEDqjfezBA==} + /@types/socketcluster-server/16.1.0: + resolution: {integrity: sha512-GnCRP0mtS+BmOj7ccdUGNcDaWYg3x6RT0EUigG/rHeijtyE1aY+2PFFVRACF9BVUC8sUrQvHzxiCAJYDcUqOgw==} dependencies: - '@types/component-emitter': 1.2.11 + '@types/ag-auth': 1.0.0 + '@types/ag-simple-broker': 5.0.0 + '@types/async-stream-emitter': 4.0.0 + '@types/consumable-stream': 2.0.0 '@types/jsonwebtoken': 8.5.8 - '@types/sc-auth': 5.0.0 - '@types/sc-broker-cluster': 6.1.4 + '@types/sc-errors': 1.4.1 + '@types/stream-demux': 8.0.0 + '@types/writable-consumable-stream': 2.0.0 '@types/ws': 8.5.3 dev: true - /@types/socketcluster/14.0.4: - resolution: {integrity: sha512-/hggijnHOsaMbpqvB4kmavsC2jmYiuc19zNrY79b6y6TPvCgvLC2ObOj/GH7zacGj9b5qlXlhHA89z8/ET+56w==} - dependencies: - '@types/sc-auth': 5.0.0 - '@types/sc-broker-cluster': 6.1.4 - '@types/socketcluster-server': 14.2.6 - dev: true - /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: @@ -8266,6 +8245,13 @@ packages: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} dev: true + /@types/stream-demux/8.0.0: + resolution: {integrity: sha512-4yiERxITSwLnSNrfWdSIKoW4nZe+AzwgwgtViVnySNTyPwiaW8a8o1sAjGCWL2PjUdyRaolidxoLH3s7dnvBMg==} + dependencies: + '@types/consumable-stream': 2.0.0 + '@types/writable-consumable-stream': 2.0.0 + dev: true + /@types/styled-components/5.1.25: resolution: {integrity: sha512-fgwl+0Pa8pdkwXRoVPP9JbqF0Ivo9llnmsm+7TCI330kbPIFd9qv1Lrhr37shf4tnxCOSu+/IgqM7uJXLWZZNQ==} dependencies: @@ -8278,7 +8264,7 @@ packages: resolution: {integrity: sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==} dependencies: '@types/cookiejar': 2.1.2 - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/supertest/2.0.12: @@ -8346,10 +8332,16 @@ packages: source-map: 0.6.1 dev: true + /@types/writable-consumable-stream/2.0.0: + resolution: {integrity: sha512-9pnn3oI+VrFhyp5l8frOvAaK+CS3K34kSJT4+8upBeTWeaMSxkSSyIGM6hVcRx0M1VuStKH3xjMKVLBGCzPgfw==} + dependencies: + '@types/consumable-stream': 2.0.0 + dev: true + /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/yargs-parser/21.0.0: @@ -8889,6 +8881,31 @@ packages: engines: {node: '>= 10.0.0'} dev: true + /ag-auth/1.0.1: + resolution: {integrity: sha512-zlDUFLNWOrWuQstP785+UXL+WMhRvpw/66BThpKMpqSZ15dcl8dbic5VYC7an0bgoBgCLNNiCxtz0+bJxT1BeQ==} + dependencies: + jsonwebtoken: 8.5.1 + sc-errors: 2.0.1 + dev: false + + /ag-channel/5.0.0: + resolution: {integrity: sha512-bArHkdqQxynim981t8FLZM5TfA0v7p081OlFdOxs6clB79GSGcGlOQMDa31DT9F5VMjzqNiJmhfGwinvfU/3Zg==} + dependencies: + consumable-stream: 2.0.0 + + /ag-request/1.0.0: + resolution: {integrity: sha512-2f7I0cQLMVyGAqjSewVMEFuAsJsIY6egdE16UHS636r+8c6Oevrv0j6SrOIXyRN6yuNT4PBuhiKmrhHbh9OvEg==} + dependencies: + sc-errors: 2.0.1 + + /ag-simple-broker/5.0.0: + resolution: {integrity: sha512-LMwfBdoNm+8ac/RkgW6z1mjIvy2cgEqWa9cJUD5sc5uiJkIn/kXhVRlPdfa/MJtxPivo9DRhKb9DlSp2gCv+Cg==} + dependencies: + ag-channel: 5.0.0 + async-stream-emitter: 4.0.0 + stream-demux: 8.0.0 + dev: false + /agent-base/6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} @@ -9018,11 +9035,6 @@ packages: engines: {node: '>=6'} dev: true - /ansi-escapes/3.2.0: - resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} - engines: {node: '>=4'} - dev: false - /ansi-escapes/4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} @@ -9040,11 +9052,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /ansi-regex/3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} - dev: false - /ansi-regex/5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -9475,26 +9482,14 @@ packages: retry: 0.13.1 dev: false - /async/2.0.0: - resolution: {integrity: sha512-x4YEotAaoO+dq8o23H0Clqm+b0KQ7hYHFfqxIz4ORzLzAdwH0K7S5/Q+mDo/wVyGdFYA0l7XE70Y9915PuEyqg==} + /async-stream-emitter/4.0.0: + resolution: {integrity: sha512-zPVflmOEN4EFEAk2/p+BbLRRM/i4Iol2nvO2RSFNuYUiYZdBmBJi5O/PMQeO9Unj1EONQqUN0W5PadVS/bA6/g==} dependencies: - lodash: 4.17.21 - dev: false - - /async/2.3.0: - resolution: {integrity: sha512-uDDBwBVKsWWe4uMmvVmFiW07K5BmdyZvSFzxlujNBtSJ/qzAlGM6UHOFZsQd5jsdmWatrCMWwYyVAc8cuJrepQ==} - dependencies: - lodash: 4.17.21 - dev: false - - /async/2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - dependencies: - lodash: 4.17.21 - dev: false + stream-demux: 8.0.0 /async/3.2.3: resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==} + dev: true /asynckit/0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -9899,6 +9894,12 @@ packages: dev: true optional: true + /bl/1.2.3: + resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==} + dependencies: + readable-stream: 2.3.7 + safe-buffer: 5.2.1 + /bl/4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: @@ -10102,7 +10103,7 @@ packages: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} /buffer-equal-constant-time/1.0.1: - resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} + resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=} dev: false /buffer-from/1.1.2: @@ -10397,10 +10398,6 @@ packages: engines: {node: '>=6'} dev: true - /chardet/0.4.2: - resolution: {integrity: sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg==} - dev: false - /chardet/0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} @@ -10530,13 +10527,6 @@ packages: engines: {node: '>=6'} dev: true - /cli-cursor/2.1.0: - resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} - engines: {node: '>=4'} - dependencies: - restore-cursor: 2.0.0 - dev: false - /cli-cursor/3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} @@ -10556,10 +10546,6 @@ packages: '@colors/colors': 1.5.0 dev: true - /cli-width/2.2.1: - resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==} - dev: false - /cli-width/3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} engines: {node: '>= 10'} @@ -10595,7 +10581,6 @@ packages: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - dev: true /clone-regexp/2.2.0: resolution: {integrity: sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==} @@ -10613,10 +10598,6 @@ packages: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} - /clone/2.1.1: - resolution: {integrity: sha512-h5FLmEMFHeuzqmpVRcDayNlVZ+k4uK1niyKQN6oUMe7ieJihv44Vc3dY/kDnnWX4PDQSwes48s965PG/D4GntQ==} - engines: {node: '>=0.8'} - /co/4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} @@ -10737,9 +10718,6 @@ packages: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} dev: true - /component-emitter/1.2.1: - resolution: {integrity: sha512-jPatnhd33viNplKjqXKRkGU345p263OIWzDL2wH3LGIGp5Kojo+uXizHmOADRvhGFFTnJqX3jBAKP6vvmSDKcA==} - /component-emitter/1.3.0: resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} dev: true @@ -10843,6 +10821,9 @@ packages: resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} dev: true + /consumable-stream/2.0.0: + resolution: {integrity: sha512-I6WA2JVYXs/68rEvi1ie3rZjP6qusTVFEQkbzR+WC+fY56TpwiGTIDJETsrnlxv5CsnmK69ps6CkYvIbpEEqBA==} + /content-disposition/0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} @@ -12416,11 +12397,6 @@ packages: jest-message-util: 27.5.1 dev: true - /expirymanager/0.9.4: - resolution: {integrity: sha512-bKcLuZPTs9mFxQ2VJPYJCMuGVAM9Ah6KfezbDA3IegbGeqR39WdPi+T7GgDGVuBPjYDFsSP/va5csiNVCGT1Mw==} - engines: {node: '>= 0.8.0'} - dev: false - /express/4.18.1: resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} engines: {node: '>= 0.10.0'} @@ -12481,15 +12457,6 @@ packages: resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} dev: true - /external-editor/2.2.0: - resolution: {integrity: sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==} - engines: {node: '>=0.12'} - dependencies: - chardet: 0.4.2 - iconv-lite: 0.4.24 - tmp: 0.0.33 - dev: false - /external-editor/3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} @@ -12635,13 +12602,6 @@ packages: resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==} dev: true - /figures/2.0.0: - resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} - engines: {node: '>=4'} - dependencies: - escape-string-regexp: 1.0.5 - dev: false - /figures/3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} @@ -12805,11 +12765,6 @@ packages: resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} dev: true - /fleximap/1.0.0: - resolution: {integrity: sha512-zg/PthjBzESYKomTw/wivo8Id6B+obVkWriIzDuRfuw4wxEIV2/0D/NIGf+LKcGTTifHRfw73+oAAQozZ9MAhA==} - engines: {node: '>= 0.8.0'} - dev: false - /flush-write-stream/1.1.1: resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} dependencies: @@ -12980,7 +12935,7 @@ packages: resolution: {integrity: sha512-modFplFb1Fznsm0MrmRAJUC32UDA5jbGU9rDvkGzhAHksru2tnoKbU/Pa3orzdsJI0CJviG4NGBrmwGveU98Cg==} peerDependencies: react: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' - react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' + react-dom: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' dependencies: framesync: 6.0.1 hey-listen: 1.0.8 @@ -13029,14 +12984,6 @@ packages: universalify: 2.0.0 dev: true - /fs-extra/6.0.1: - resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==} - dependencies: - graceful-fs: 4.2.10 - jsonfile: 4.0.0 - universalify: 0.1.2 - dev: false - /fs-extra/7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} @@ -14017,25 +13964,6 @@ packages: resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} dev: true - /inquirer/5.2.0: - resolution: {integrity: sha512-E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ==} - engines: {node: '>=6.0.0'} - dependencies: - ansi-escapes: 3.2.0 - chalk: 2.4.2 - cli-cursor: 2.1.0 - cli-width: 2.2.1 - external-editor: 2.2.0 - figures: 2.0.0 - lodash: 4.17.21 - mute-stream: 0.0.7 - run-async: 2.4.1 - rxjs: 5.5.12 - string-width: 2.1.1 - strip-ansi: 4.0.0 - through: 2.3.8 - dev: false - /inquirer/8.2.4: resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} engines: {node: '>=12.0.0'} @@ -14294,11 +14222,6 @@ packages: dev: true optional: true - /is-fullwidth-code-point/2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} - dev: false - /is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -14412,7 +14335,6 @@ packages: engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - dev: true /is-plain-object/5.0.0: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} @@ -14572,7 +14494,6 @@ packages: /isobject/3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} - dev: true /isobject/4.0.0: resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} @@ -15648,7 +15569,6 @@ packages: /kind-of/6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - dev: true /kleur/3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} @@ -15878,10 +15798,6 @@ packages: p-locate: 5.0.0 dev: true - /lodash.clonedeep/4.5.0: - resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} - dev: false - /lodash.curry/4.1.1: resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==} dev: false @@ -15971,7 +15887,7 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: - chalk: 4.1.1 + chalk: 4.1.2 is-unicode-supported: 0.1.0 dev: false @@ -16371,11 +16287,6 @@ packages: hasBin: true dev: true - /mimic-fn/1.2.0: - resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} - engines: {node: '>=4'} - dev: false - /mimic-fn/2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} @@ -16423,10 +16334,6 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.0: - resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==} - dev: false - /minimist/1.2.6: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} @@ -16595,6 +16502,44 @@ packages: - supports-color dev: false + /msw/0.42.1_typescript@4.7.3: + resolution: {integrity: sha512-LZZuz7VddL45gCBgfBWHyXj6a4W7OTJY0mZPoipJ3P/xwbuJwrtwB3IJrWlqBM8aink/eTKlRxwzmtIAwCj5yQ==} + engines: {node: '>=14'} + hasBin: true + requiresBuild: true + peerDependencies: + typescript: '>= 4.2.x <= 4.7.x' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@mswjs/cookies': 0.2.1 + '@mswjs/interceptors': 0.16.4 + '@open-draft/until': 1.0.3 + '@types/cookie': 0.4.1 + '@types/js-levenshtein': 1.1.1 + chalk: 4.1.1 + chokidar: 3.5.3 + cookie: 0.4.2 + graphql: 16.5.0 + headers-polyfill: 3.0.7 + inquirer: 8.2.4 + is-node-process: 1.0.1 + js-levenshtein: 1.1.6 + node-fetch: 2.6.7 + outvariant: 1.3.0 + path-to-regexp: 6.2.1 + statuses: 2.0.1 + strict-event-emitter: 0.2.4 + type-fest: 1.4.0 + typescript: 4.7.3 + yargs: 17.5.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: false + optional: true + /multicast-dns/7.2.5: resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true @@ -16603,10 +16548,6 @@ packages: thunky: 1.1.0 dev: true - /mute-stream/0.0.7: - resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==} - dev: false - /mute-stream/0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: false @@ -16645,13 +16586,6 @@ packages: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true - /ncom/1.0.3: - resolution: {integrity: sha512-PfA7rjxxMAItsGo2qXrGn2GvKJIwN0bUTa3GehsblrKRVdCCEwB0QG2ymM6/DppQGUt7YqbfxQB7LaMWMiHHWQ==} - engines: {node: '>= 0.8.0'} - dependencies: - sc-formatter: 3.0.3 - dev: false - /ncp/2.0.0: resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==} hasBin: true @@ -17053,13 +16987,6 @@ packages: dependencies: wrappy: 1.0.2 - /onetime/2.0.1: - resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==} - engines: {node: '>=4'} - dependencies: - mimic-fn: 1.2.0 - dev: false - /onetime/5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} @@ -17111,7 +17038,7 @@ packages: engines: {node: '>=10'} dependencies: bl: 4.1.0 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 is-interactive: 1.0.0 @@ -18059,6 +17986,7 @@ packages: resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + dev: true /querystring/0.2.1: resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} @@ -18130,7 +18058,7 @@ packages: peerDependencies: '@types/react': '>=16.14.8' react: '>=16.14.0 || 18' - react-dom: '>=16.14.0' + react-dom: '>=16.14.0 || 18' peerDependenciesMeta: '@types/react': optional: true @@ -18212,7 +18140,7 @@ packages: resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} peerDependencies: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || 18 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || 18 dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 @@ -18290,7 +18218,7 @@ packages: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 react: ^16.8 || ^17.0 || ^18.0 || 18 - react-dom: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 || 18 react-native: '>=0.59' redux: ^4 peerDependenciesMeta: @@ -18323,7 +18251,7 @@ packages: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 react: ^16.8 || ^17.0 || ^18.0 || 18 - react-dom: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 || 18 react-native: '>=0.59' redux: ^4 peerDependenciesMeta: @@ -18357,7 +18285,7 @@ packages: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 react: ^16.8 || ^17.0 || ^18.0 || 18 - react-dom: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 || 18 react-native: '>=0.59' redux: ^4 peerDependenciesMeta: @@ -18428,7 +18356,7 @@ packages: resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: react: '>=16.8 || 18' - react-dom: '>=16.8' + react-dom: '>=16.8 || 18' dependencies: history: 5.3.0 react: 18.1.0 @@ -18449,7 +18377,7 @@ packages: resolution: {integrity: sha512-W6Irh7U6Ha7p5uQQ2ZnemoCQ8mcfgOtHfw3wuMzG6FAu0P+CYicgofSLOq97BhjMx8jS+h+wwWdCBeVVZ9VqlQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 '@emotion/cache': 11.7.1 @@ -18531,7 +18459,7 @@ packages: resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} peerDependencies: react: '>=16.6.0 || 18' - react-dom: '>=16.6.0' + react-dom: '>=16.6.0 || 18' dependencies: '@babel/runtime': 7.18.3 dom-helpers: 5.2.1 @@ -18959,14 +18887,6 @@ packages: dependencies: lowercase-keys: 1.0.1 - /restore-cursor/2.0.0: - resolution: {integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=} - engines: {node: '>=4'} - dependencies: - onetime: 2.0.1 - signal-exit: 3.0.7 - dev: false - /restore-cursor/3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} @@ -19094,13 +19014,6 @@ packages: aproba: 1.2.0 dev: true - /rxjs/5.5.12: - resolution: {integrity: sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==} - engines: {npm: '>=2.0.0'} - dependencies: - symbol-observable: 1.0.1 - dev: false - /rxjs/7.5.5: resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} dependencies: @@ -19151,61 +19064,12 @@ packages: xmlchars: 2.2.0 dev: true - /sc-auth/5.0.2: - resolution: {integrity: sha512-Le3YBsFjzv5g6wIH6Y+vD+KFkK0HDXiaWy1Gm4nXtYebMQUyNYSf1cS83MtHrYzVEMlhYElRva1b0bvZ0hBqQw==} - dependencies: - jsonwebtoken: 8.5.1 - sc-errors: 1.4.1 - dev: false - - /sc-broker-cluster/7.0.0: - resolution: {integrity: sha512-DNG8sxiFwmRSMS0sUXA25UvDV8QTwEfYnzrutqbp4HlMU9JP65FBcs6GuNFPhjQN4s9VtwAE8BBaCNK5BjNV0g==} - engines: {node: '>= 0.8.0'} - dependencies: - async: 2.0.0 - sc-broker: 6.0.0 - sc-channel: 1.2.0 - sc-errors: 1.4.1 - sc-hasher: 1.0.1 - dev: false - - /sc-broker/6.0.0: - resolution: {integrity: sha512-c1mFIllUdPnEXDDFxTiX3obYW+cT0hb56fdNM5k+Xo5DI3+3Q9MYxTc8jD23qBIXOHokt4+d/CHocmZQPlAjAQ==} - engines: {node: '>= 0.8.0'} - dependencies: - async: 2.6.4 - expirymanager: 0.9.4 - fleximap: 1.0.0 - ncom: 1.0.3 - sc-errors: 1.4.1 - uuid: 3.1.0 - dev: false - - /sc-channel/1.2.0: - resolution: {integrity: sha512-M3gdq8PlKg0zWJSisWqAsMmTVxYRTpVRqw4CWAdKBgAfVKumFcTjoCV0hYu7lgUXccCtCD8Wk9VkkE+IXCxmZA==} - dependencies: - component-emitter: 1.2.1 - - /sc-errors/1.4.1: - resolution: {integrity: sha512-dBn92iIonpChTxYLgKkIT/PCApvmYT6EPIbRvbQKTgY6tbEbIy8XVUv4pGyKwEK4nCmvX4TKXcN0iXC6tNW6rQ==} - dev: false - /sc-errors/2.0.1: resolution: {integrity: sha512-JoVhq3Ud+3Ujv2SIG7W0XtjRHsrNgl6iXuHHsh0s+Kdt5NwI6N2EGAZD4iteitdDv68ENBkpjtSvN597/wxPSQ==} /sc-formatter/3.0.3: resolution: {integrity: sha512-lYI/lTs1u1c0geKElcj+bmEUfcP/HuKg2iDeTijPSjiTNFzN3Cf8Qh6tVd65oi7Qn+2/oD7LP4s6GC13v/9NiQ==} - /sc-hasher/1.0.1: - resolution: {integrity: sha512-whZWw70Gp5ibXXMcz6+Tulmk8xkwWMs42gG70p12hGscdUg8BICBvihS3pX2T3dWTw+yeZuGKiULr3MwL37SOQ==} - dev: false - - /sc-simple-broker/2.1.3: - resolution: {integrity: sha512-ldt0ybOS5fVZSMea5Z8qVu7lmDBTy0qO9BD6TseJjRuPx+g+stfSqmPAb0RsCsQUXRH8A1koCbwsuUnI9BOxvw==} - dependencies: - sc-channel: 1.2.0 - dev: false - /scheduler/0.22.0: resolution: {integrity: sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ==} dependencies: @@ -19434,7 +19298,6 @@ packages: engines: {node: '>=8'} dependencies: kind-of: 6.0.3 - dev: true /shallowequal/1.1.0: resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} @@ -19587,60 +19450,44 @@ packages: - supports-color dev: true - /socketcluster-client/14.3.2: - resolution: {integrity: sha512-xDtgW7Ss0ARlfhx53bJ5GY5THDdEOeJnT+/C9Rmrj/vnZr54xeiQfrCZJbcglwe732nK3V+uZq87IvrRl7Hn4g==} + /socketcluster-client/16.1.1: + resolution: {integrity: sha512-Fv/O8Dnb62fDLHRfh0Vr0FLrK/IzcFCukAqZlTE3L2LkI8ZY+24GzUNvYn3NnppSfqjEjEl1bLm26guqPAqlpQ==} dependencies: + ag-channel: 5.0.0 + ag-request: 1.0.0 + async-stream-emitter: 4.0.0 buffer: 5.7.1 - clone: 2.1.1 - component-emitter: 1.2.1 + clone-deep: 4.0.1 linked-list: 0.1.0 - querystring: 0.2.0 - sc-channel: 1.2.0 sc-errors: 2.0.1 sc-formatter: 3.0.3 - uuid: 3.2.1 + stream-demux: 8.0.0 + uuid: 8.3.2 + vinyl-buffer: 1.0.1 ws: 7.5.8 transitivePeerDependencies: - bufferutil - utf-8-validate - /socketcluster-server/14.7.2: - resolution: {integrity: sha512-PHFez3OXpxZ0jMm+JleYzshwCT7EXdldlVQnZpLCHM8BARSgbr6C+vuD5lHCvUDJc+T6kVFNEHQ1Hnhzw21CSw==} + /socketcluster-server/16.2.1: + resolution: {integrity: sha512-ARB3VmM5JIfehQR8Dk3he11v+DA7dEtSOX/97Dce7WTK4ELdbdyHpgPhOhFPhW6TWCd+43X6/LwMmcwJkx7vUQ==} dependencies: - async: 3.2.3 + ag-auth: 1.0.1 + ag-request: 1.0.0 + ag-simple-broker: 5.0.0 + async-stream-emitter: 4.0.0 base64id: 1.0.0 - component-emitter: 1.2.1 - lodash.clonedeep: 4.5.0 - sc-auth: 5.0.2 + clone-deep: 4.0.1 sc-errors: 2.0.1 sc-formatter: 3.0.3 - sc-simple-broker: 2.1.3 - uuid: 3.2.1 + stream-demux: 8.0.0 + writable-consumable-stream: 2.0.0 ws: 7.5.8 transitivePeerDependencies: - bufferutil - utf-8-validate dev: false - /socketcluster/14.4.2: - resolution: {integrity: sha512-Z45tSQ6K/XUEyftrID1hyBXSdaK/gDeq6BMqhNR3XvjnUQ6HkkeTrxZUoXIn/In/J8KLl1WRVtvZAB0Zf9pEjA==} - hasBin: true - dependencies: - async: 2.3.0 - fs-extra: 6.0.1 - inquirer: 5.2.0 - minimist: 1.2.0 - sc-auth: 5.0.2 - sc-broker-cluster: 7.0.0 - sc-errors: 1.4.1 - socketcluster-server: 14.7.2 - uid-number: 0.0.6 - uuid: 3.2.1 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false - /sockjs/0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} dependencies: @@ -19884,6 +19731,12 @@ packages: readable-stream: 2.3.7 dev: true + /stream-demux/8.0.0: + resolution: {integrity: sha512-vt6P85yEUxiapK9F+ET5BLyto1DnCD4Sl7MlDklDgcb4K5SGXPtOPz9DiP7vTooJ1wW1F/VRPlcSV22Coeim1A==} + dependencies: + consumable-stream: 2.0.0 + writable-consumable-stream: 2.0.0 + /stream-each/1.2.3: resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==} dependencies: @@ -19925,14 +19778,6 @@ packages: strip-ansi: 6.0.1 dev: true - /string-width/2.1.1: - resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} - engines: {node: '>=4'} - dependencies: - is-fullwidth-code-point: 2.0.0 - strip-ansi: 4.0.0 - dev: false - /string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -20005,13 +19850,6 @@ packages: ansi-regex: 2.1.1 dev: true - /strip-ansi/4.0.0: - resolution: {integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=} - engines: {node: '>=4'} - dependencies: - ansi-regex: 3.0.1 - dev: false - /strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -20110,7 +19948,7 @@ packages: requiresBuild: true peerDependencies: react: '>= 16.8.0 || 18' - react-dom: '>= 16.8.0' + react-dom: '>= 16.8.0 || 18' react-is: '>= 16.8.0' dependencies: '@babel/helper-module-imports': 7.16.7 @@ -20294,11 +20132,6 @@ packages: resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=} dev: true - /symbol-observable/1.0.1: - resolution: {integrity: sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=} - engines: {node: '>=0.10.0'} - dev: false - /symbol-observable/1.2.0: resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} engines: {node: '>=0.10.0'} @@ -20515,7 +20348,6 @@ packages: dependencies: readable-stream: 2.3.7 xtend: 4.0.2 - dev: true /thunky/1.1.0: resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} @@ -20963,15 +20795,11 @@ packages: optional: true /uglify-to-browserify/1.0.2: - resolution: {integrity: sha1-bgkk1r2mta/jSeOabWMoUKD4grc=} + resolution: {integrity: sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q==} requiresBuild: true dev: true optional: true - /uid-number/0.0.6: - resolution: {integrity: sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=} - dev: false - /unbox-primitive/1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: @@ -21230,7 +21058,7 @@ packages: dev: true /util-deprecate/1.0.2: - resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} /util.promisify/1.0.0: resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} @@ -21263,17 +21091,6 @@ packages: resolution: {integrity: sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=} dev: true - /uuid/3.1.0: - resolution: {integrity: sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - dev: false - - /uuid/3.2.1: - resolution: {integrity: sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - /uuid/3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. @@ -21366,6 +21183,12 @@ packages: vfile-message: 2.0.4 dev: true + /vinyl-buffer/1.0.1: + resolution: {integrity: sha512-LRBE2/g3C1hSHL2k/FynSZcVTRhEw8sb08oKGt/0hukZXwrh2m8nfy+r5yLhGEk7eFFuclhyIuPct/Bxlxk6rg==} + dependencies: + bl: 1.2.3 + through2: 2.0.5 + /vm-browserify/1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} dev: true @@ -21934,6 +21757,11 @@ packages: /wrappy/1.0.2: resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} + /writable-consumable-stream/2.0.0: + resolution: {integrity: sha512-SITambzxtPTFU/wR82h+zOKGBiEv5V8gC1mt8xvoE1/168ApEa8H+6s2UToYJo3VLL7sNYTaApKuPD+pZHMGJQ==} + dependencies: + consumable-stream: 2.0.0 + /write-file-atomic/3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} dependencies: @@ -22003,7 +21831,6 @@ packages: /xtend/4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} - dev: true /y18n/4.0.3: resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} From c9589c03077f0bae59406786c5aa3adf0b7ef70f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 19 Jun 2022 21:12:23 -0400 Subject: [PATCH 27/29] chore(deps): update all non-major dependencies (#1186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- extension/package.json | 22 +- package.json | 22 +- .../examples/tree/package.json | 16 +- packages/d3-state-visualizer/package.json | 18 +- packages/d3tooltip/package.json | 18 +- packages/map2tree/package.json | 18 +- packages/react-base16-styling/package.json | 12 +- packages/react-dock/demo/package.json | 26 +- packages/react-dock/package.json | 20 +- .../react-json-tree/examples/package.json | 24 +- packages/react-json-tree/package.json | 26 +- packages/redux-devtools-app/package.json | 32 +- .../redux-devtools-chart-monitor/package.json | 18 +- packages/redux-devtools-cli/package.json | 24 +- .../redux-devtools-dock-monitor/package.json | 18 +- .../redux-devtools-extension/package.json | 12 +- .../demo/package.json | 26 +- .../package.json | 20 +- .../package.json | 26 +- .../demo/package.json | 24 +- .../package.json | 18 +- .../redux-devtools-instrument/package.json | 14 +- .../redux-devtools-log-monitor/package.json | 18 +- packages/redux-devtools-remote/package.json | 14 +- .../demo/package.json | 38 +- .../package.json | 18 +- .../redux-devtools-serialize/package.json | 12 +- .../examples/todomvc/package.json | 26 +- .../package.json | 24 +- packages/redux-devtools-ui/package.json | 30 +- packages/redux-devtools-utils/package.json | 14 +- .../examples/counter/package.json | 24 +- .../examples/todomvc/package.json | 24 +- packages/redux-devtools/package.json | 22 +- pnpm-lock.yaml | 5963 ++++++++--------- 35 files changed, 3331 insertions(+), 3350 deletions(-) diff --git a/extension/package.json b/extension/package.json index 4e966ae6..0fd349d5 100644 --- a/extension/package.json +++ b/extension/package.json @@ -41,10 +41,10 @@ "jsan": "^3.1.14", "localforage": "^1.10.0", "lodash": "^4.17.21", - "react": "^18.1.0", - "react-dom": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "react-icons": "^4.4.0", - "react-is": "^18.1.0", + "react-is": "^18.2.0", "react-json-tree": "^0.17.0", "react-redux": "^8.0.2", "redux": "^4.2.0", @@ -52,16 +52,16 @@ "styled-components": "^5.3.5" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@babel/register": "^7.17.7", "@testing-library/jest-dom": "^5.16.4", "@testing-library/react": "^13.3.0", - "@types/chrome": "^0.0.188", + "@types/chrome": "^0.0.190", "@types/lodash": "^4.14.182", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", "babel-loader": "^8.2.5", @@ -70,13 +70,13 @@ "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "electron": "^19.0.3", - "eslint": "^8.17.0", + "electron": "^19.0.4", + "eslint": "^8.18.0", "eslint-config-airbnb": "^19.0.4", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "file-loader": "^6.2.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "immutable": "^4.1.0", @@ -91,8 +91,8 @@ "sinon-chrome": "^3.0.1", "style-loader": "^3.3.1", "ts-jest": "^27.1.5", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2" + "webpack-cli": "^4.10.0" } } diff --git a/package.json b/package.json index dc0d0785..53df58cf 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,21 @@ { "private": true, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@changesets/cli": "^2.22.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@changesets/cli": "^2.23.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "prettier": "2.6.2", - "typescript": "~4.7.3", - "nx": "^14.1.9", - "@nrwl/nx-cloud": "^14.0.5" + "prettier": "2.7.1", + "typescript": "~4.7.4", + "nx": "^14.3.6", + "@nrwl/nx-cloud": "^14.1.2" }, "scripts": { "format": "prettier --write .", @@ -38,7 +38,7 @@ "packages/redux-devtools-rtk-query-monitor/demo", "packages/redux-devtools-slider-monitor/examples/todomvc" ], - "packageManager": "pnpm@7.1.9", + "packageManager": "pnpm@7.3.0", "pnpm": { "overrides": { "@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process" diff --git a/packages/d3-state-visualizer/examples/tree/package.json b/packages/d3-state-visualizer/examples/tree/package.json index 825dde65..0b08a7dc 100644 --- a/packages/d3-state-visualizer/examples/tree/package.json +++ b/packages/d3-state-visualizer/examples/tree/package.json @@ -29,22 +29,22 @@ "map2tree": "^2.1.0" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", - "@types/node": "^16.11.38", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@types/node": "^16.11.41", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/d3-state-visualizer/package.json b/packages/d3-state-visualizer/package.json index aadf91f3..db97f526 100644 --- a/packages/d3-state-visualizer/package.json +++ b/packages/d3-state-visualizer/package.json @@ -52,25 +52,25 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", - "@types/node": "^16.11.38", + "@types/node": "^16.11.41", "@types/ramda": "^0.28.14", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.75.5", + "rollup": "^2.75.6", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.0", + "rollup-plugin-typescript2": "^0.32.1", "tslib": "^2.4.0", - "typescript": "~4.7.3" + "typescript": "~4.7.4" } } diff --git a/packages/d3tooltip/package.json b/packages/d3tooltip/package.json index a829f5f8..2ac9055a 100644 --- a/packages/d3tooltip/package.json +++ b/packages/d3tooltip/package.json @@ -43,28 +43,28 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", "@types/d3": "^3.5.47", - "@types/node": "^16.11.38", + "@types/node": "^16.11.41", "@types/ramda": "^0.28.14", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "d3": "^3.5.17", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.75.5", + "rollup": "^2.75.6", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.0", + "rollup-plugin-typescript2": "^0.32.1", "tslib": "^2.4.0", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@types/d3": "^3.5.47", diff --git a/packages/map2tree/package.json b/packages/map2tree/package.json index abf0b026..5359a1e6 100755 --- a/packages/map2tree/package.json +++ b/packages/map2tree/package.json @@ -47,9 +47,9 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", @@ -57,20 +57,20 @@ "@rollup/plugin-node-resolve": "^13.3.0", "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.38", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/node": "^16.11.41", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "immutable": "^4.1.0", "jest": "^27.5.1", "rimraf": "^3.0.2", - "rollup": "^2.75.5", + "rollup": "^2.75.6", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.0", + "rollup-plugin-typescript2": "^0.32.1", "ts-jest": "^27.1.5", "tslib": "^2.4.0", - "typescript": "~4.7.3" + "typescript": "~4.7.4" } } diff --git a/packages/react-base16-styling/package.json b/packages/react-base16-styling/package.json index 1a45edfd..e33e64f1 100644 --- a/packages/react-base16-styling/package.json +++ b/packages/react-base16-styling/package.json @@ -49,22 +49,22 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@types/color": "^3.0.3", "@types/jest": "^27.5.2", "@types/lodash.curry": "^4.1.7", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "jest": "^27.5.1", "rimraf": "^3.0.2", "ts-jest": "^27.1.5", - "typescript": "~4.7.3" + "typescript": "~4.7.4" } } diff --git a/packages/react-dock/demo/package.json b/packages/react-dock/demo/package.json index 4683d622..957c8b5d 100644 --- a/packages/react-dock/demo/package.json +++ b/packages/react-dock/demo/package.json @@ -10,37 +10,37 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "react": "^18.1.0", + "react": "^18.2.0", "react-bootstrap": "^2.4.0", "react-dock": "^0.6.0", - "react-dom": "^18.1.0", + "react-dom": "^18.2.0", "react-icons": "^4.4.0", - "react-is": "^18.1.0", + "react-is": "^18.2.0", "styled-components": "^5.3.5" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/react-dock/package.json b/packages/react-dock/package.json index 5b691484..4417f088 100644 --- a/packages/react-dock/package.json +++ b/packages/react-dock/package.json @@ -47,29 +47,29 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@types/jest": "^27.5.2", "@types/lodash.debounce": "^4.0.7", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^18.1.0", - "react-test-renderer": "^18.1.0", + "react": "^18.2.0", + "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", "ts-jest": "^27.1.5", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", diff --git a/packages/react-json-tree/examples/package.json b/packages/react-json-tree/examples/package.json index e1229e71..9d39ad8f 100644 --- a/packages/react-json-tree/examples/package.json +++ b/packages/react-json-tree/examples/package.json @@ -20,33 +20,33 @@ }, "dependencies": { "immutable": "^4.1.0", - "react": "^18.1.0", + "react": "^18.2.0", "react-base16-styling": "^0.9.1", - "react-dom": "^18.1.0", + "react-dom": "^18.2.0", "react-json-tree": "^0.17.0" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/react-json-tree/package.json b/packages/react-json-tree/package.json index 6c9b4304..772f5750 100644 --- a/packages/react-json-tree/package.json +++ b/packages/react-json-tree/package.json @@ -53,9 +53,9 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", @@ -63,26 +63,26 @@ "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", "@types/jest": "^27.5.2", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^18.1.0", - "react-test-renderer": "^18.1.0", + "react": "^18.2.0", + "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", - "rollup": "^2.75.5", + "rollup": "^2.75.6", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.0", + "rollup-plugin-typescript2": "^0.32.1", "ts-jest": "^27.1.5", "tslib": "^2.4.0", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", diff --git a/packages/redux-devtools-app/package.json b/packages/redux-devtools-app/package.json index d1f0e866..4ca989a4 100644 --- a/packages/redux-devtools-app/package.json +++ b/packages/redux-devtools-app/package.json @@ -60,7 +60,7 @@ "lodash": "^4.17.21", "prop-types": "^15.8.1", "react-icons": "^4.4.0", - "react-is": "^18.1.0", + "react-is": "^18.2.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "redux-persist": "^6.0.0", @@ -68,9 +68,9 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", @@ -81,39 +81,39 @@ "@types/jsan": "^3.1.2", "@types/json-schema": "^7.0.11", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/socketcluster-client": "^16.0.0", "@types/styled-components": "^5.1.25", - "@types/testing-library__jest-dom": "^5.14.3", + "@types/testing-library__jest-dom": "^5.14.4", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", - "html-loader": "^3.1.0", + "html-loader": "^3.1.2", "html-webpack-plugin": "^5.5.0", "jest": "^27.5.1", "path-browserify": "^1.0.1", - "react": "^18.1.0", - "react-dom": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "rimraf": "^3.0.2", "style-loader": "^3.3.1", "styled-components": "^5.3.5", "ts-jest": "^27.1.5", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" }, "peerDependencies": { "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", diff --git a/packages/redux-devtools-chart-monitor/package.json b/packages/redux-devtools-chart-monitor/package.json index e1d76b98..03993b63 100644 --- a/packages/redux-devtools-chart-monitor/package.json +++ b/packages/redux-devtools-chart-monitor/package.json @@ -49,24 +49,24 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@redux-devtools/core": "^3.13.1", - "@types/react": "^18.0.12", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^18.1.0", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-cli/package.json b/packages/redux-devtools-cli/package.json index 58ab88a2..4cc982ab 100644 --- a/packages/redux-devtools-cli/package.json +++ b/packages/redux-devtools-cli/package.json @@ -41,13 +41,13 @@ }, "dependencies": { "@redux-devtools/app": "^2.1.3", - "@types/react": "^18.0.12", - "apollo-server-express": "^3.8.2", + "@types/react": "^18.0.14", + "apollo-server-express": "^3.9.0", "body-parser": "^1.20.0", "chalk": "^4.1.2", "cors": "^2.8.5", "cross-spawn": "^7.0.3", - "electron": "^19.0.3", + "electron": "^19.0.4", "express": "^4.18.1", "getport": "^0.1.0", "graphql": "^16.5.0", @@ -56,9 +56,9 @@ "minimist": "^1.2.6", "morgan": "^1.10.0", "open": "^8.4.0", - "react": "^18.1.0", - "react-dom": "^18.1.0", - "react-is": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-is": "^18.2.0", "semver": "^7.3.7", "socketcluster-server": "^16.2.1", "sqlite3": "^5.0.8", @@ -74,16 +74,16 @@ "@types/lodash": "^4.14.182", "@types/minimist": "^1.2.2", "@types/morgan": "^1.9.3", - "@types/node": "^16.11.38", - "@types/semver": "^7.3.9", + "@types/node": "^16.11.41", + "@types/semver": "^7.3.10", "@types/socketcluster-client": "^16.0.0", "@types/socketcluster-server": "^16.1.0", "@types/styled-components": "^5.1.25", "@types/supertest": "^2.0.12", "@types/uuid": "^8.3.4", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "jest": "^27.5.1", @@ -92,6 +92,6 @@ "socketcluster-client": "^16.1.1", "supertest": "^6.2.3", "ts-jest": "^27.1.5", - "typescript": "~4.7.3" + "typescript": "~4.7.4" } } diff --git a/packages/redux-devtools-dock-monitor/package.json b/packages/redux-devtools-dock-monitor/package.json index 93c84b35..90ad87f3 100644 --- a/packages/redux-devtools-dock-monitor/package.json +++ b/packages/redux-devtools-dock-monitor/package.json @@ -49,25 +49,25 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@redux-devtools/core": "^3.13.1", "@types/parse-key": "^0.2.0", - "@types/react": "^18.0.12", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^18.1.0", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-extension/package.json b/packages/redux-devtools-extension/package.json index ee178d18..c28f77c3 100644 --- a/packages/redux-devtools-extension/package.json +++ b/packages/redux-devtools-extension/package.json @@ -33,18 +33,18 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "redux": "^3.1.0 || ^4.0.0" diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json index 5451bddb..6c6ea102 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json @@ -17,9 +17,9 @@ "@redux-devtools/ui": "^1.3.0", "immutable": "^4.1.0", "lodash.shuffle": "^4.2.0", - "react": "^18.1.0", - "react-dom": "^18.1.0", - "react-is": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-is": "^18.2.0", "react-redux": "^8.0.2", "react-router-dom": "^6.3.0", "redux": "^4.2.0", @@ -27,33 +27,33 @@ "styled-components": "^5.3.5" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@types/lodash.shuffle": "^4.2.7", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/redux-logger": "^3.0.9", "@types/styled-components": "^5.1.25", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools-inspector-monitor-test-tab/package.json b/packages/redux-devtools-inspector-monitor-test-tab/package.json index af59433f..97cad327 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/package.json @@ -56,9 +56,9 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", @@ -69,22 +69,22 @@ "@types/jest": "^27.5.2", "@types/jsan": "^3.1.2", "@types/object-path": "^0.11.1", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/simple-diff": "^1.6.1", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^18.1.0", - "react-dom": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", "ts-jest": "^27.1.5", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/inspector-monitor": "^3.0.0", diff --git a/packages/redux-devtools-inspector-monitor-trace-tab/package.json b/packages/redux-devtools-inspector-monitor-trace-tab/package.json index dbd5340d..1cebe74d 100644 --- a/packages/redux-devtools-inspector-monitor-trace-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-trace-tab/package.json @@ -32,7 +32,7 @@ "dependencies": { "@babel/code-frame": "^7.16.7", "@babel/runtime": "^7.18.3", - "@types/chrome": "^0.0.188", + "@types/chrome": "^0.0.190", "anser": "^2.1.1", "html-entities": "^2.3.3", "path-browserify": "^1.0.1", @@ -41,9 +41,9 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", @@ -53,26 +53,26 @@ "@types/babel__code-frame": "^7.0.3", "@types/html-entities": "^1.3.4", "@types/jest": "^27.5.2", - "@types/node": "^16.11.38", + "@types/node": "^16.11.41", "@types/path-browserify": "^1.0.0", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/redux-devtools-themes": "^1.0.0", "@types/source-map": "0.5.2", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^18.1.0", - "react-dom": "^18.1.0", - "react-test-renderer": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-test-renderer": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", "ts-jest": "^27.1.5", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/inspector-monitor": "^3.0.0", diff --git a/packages/redux-devtools-inspector-monitor/demo/package.json b/packages/redux-devtools-inspector-monitor/demo/package.json index 919246dc..b0e255e5 100644 --- a/packages/redux-devtools-inspector-monitor/demo/package.json +++ b/packages/redux-devtools-inspector-monitor/demo/package.json @@ -16,40 +16,40 @@ "base16": "^1.0.0", "immutable": "^4.1.0", "lodash.shuffle": "^4.2.0", - "react": "^18.1.0", + "react": "^18.2.0", "react-bootstrap": "^2.4.0", - "react-dom": "^18.1.0", + "react-dom": "^18.2.0", "react-redux": "^8.0.2", "react-router-dom": "^6.3.0", "redux": "^4.2.0", "redux-logger": "^3.0.6" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@types/base16": "^1.0.2", "@types/lodash.shuffle": "^4.2.7", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/redux-logger": "^3.0.9", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools-inspector-monitor/package.json b/packages/redux-devtools-inspector-monitor/package.json index 5eeb0ca9..7a446058 100644 --- a/packages/redux-devtools-inspector-monitor/package.json +++ b/packages/redux-devtools-inspector-monitor/package.json @@ -55,9 +55,9 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", @@ -66,19 +66,19 @@ "@types/hex-rgba": "^1.0.1", "@types/history": "^4.7.11", "@types/lodash.debounce": "^4.0.7", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/react-dragula": "^1.1.0", "@types/redux-devtools-themes": "^1.0.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^18.1.0", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-instrument/package.json b/packages/redux-devtools-instrument/package.json index e120a23f..5070ebe6 100644 --- a/packages/redux-devtools-instrument/package.json +++ b/packages/redux-devtools-instrument/package.json @@ -46,17 +46,17 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.38", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/node": "^16.11.41", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "jest": "^27.5.1", @@ -64,7 +64,7 @@ "rimraf": "^3.0.2", "rxjs": "^7.5.5", "ts-jest": "^27.1.5", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "redux": "^3.4.0 || ^4.0.0" diff --git a/packages/redux-devtools-log-monitor/package.json b/packages/redux-devtools-log-monitor/package.json index 12858cb8..6b820d25 100644 --- a/packages/redux-devtools-log-monitor/package.json +++ b/packages/redux-devtools-log-monitor/package.json @@ -52,24 +52,24 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@redux-devtools/core": "^3.13.1", - "@types/react": "^18.0.12", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^18.1.0", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-remote/package.json b/packages/redux-devtools-remote/package.json index f5802e7f..c03c1140 100644 --- a/packages/redux-devtools-remote/package.json +++ b/packages/redux-devtools-remote/package.json @@ -51,22 +51,22 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@types/jsan": "^3.1.2", - "@types/node": "^16.11.38", + "@types/node": "^16.11.41", "@types/rn-host-detect": "^1.2.0", "@types/socketcluster-client": "^16.0.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "redux": "^3.5.2 || ^4.0.0" diff --git a/packages/redux-devtools-rtk-query-monitor/demo/package.json b/packages/redux-devtools-rtk-query-monitor/demo/package.json index d8f5d792..3ec78bee 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/package.json +++ b/packages/redux-devtools-rtk-query-monitor/demo/package.json @@ -11,53 +11,53 @@ }, "dependencies": { "@babel/runtime": "^7.18.3", - "@chakra-ui/react": "^2.1.2", - "@emotion/react": "^11.9.0", - "@emotion/styled": "^11.8.1", + "@chakra-ui/react": "^2.2.1", + "@emotion/react": "^11.9.3", + "@emotion/styled": "^11.9.3", "@mswjs/data": "^0.10.1", "@redux-devtools/core": "^3.13.0", "@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/rtk-query-monitor": "^3.0.0", "@reduxjs/toolkit": "^1.8.2", - "framer-motion": "^6.3.10", - "msw": "^0.42.0", - "react": "^18.1.0", - "react-dom": "^18.1.0", + "framer-motion": "^6.3.11", + "msw": "^0.42.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", "react-icons": "^4.4.0", - "react-is": "^18.1.0", + "react-is": "^18.2.0", "react-redux": "^8.0.2", "react-router-dom": "^6.3.0", "styled-components": "^5.3.5" }, "devDependencies": { - "@babel/core": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/core": "^7.18.5", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@types/copy-webpack-plugin": "^8.0.1", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" }, "msw": { "workerDirectory": "public" diff --git a/packages/redux-devtools-rtk-query-monitor/package.json b/packages/redux-devtools-rtk-query-monitor/package.json index 850d39bc..27e39614 100644 --- a/packages/redux-devtools-rtk-query-monitor/package.json +++ b/packages/redux-devtools-rtk-query-monitor/package.json @@ -60,9 +60,9 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", @@ -70,17 +70,17 @@ "@reduxjs/toolkit": "^1.8.2", "@types/hex-rgba": "^1.0.1", "@types/lodash.debounce": "^4.0.7", - "@types/react": "^18.0.12", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^18.1.0", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-serialize/package.json b/packages/redux-devtools-serialize/package.json index 5956bfcd..66686e75 100644 --- a/packages/redux-devtools-serialize/package.json +++ b/packages/redux-devtools-serialize/package.json @@ -42,23 +42,23 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@types/jest": "^27.5.2", "@types/jsan": "^3.1.2", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "immutable": "^4.1.0", "jest": "^27.5.1", "rimraf": "^3.0.2", "ts-jest": "^27.1.5", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "immutable": "^4.1.0" diff --git a/packages/redux-devtools-slider-monitor/examples/todomvc/package.json b/packages/redux-devtools-slider-monitor/examples/todomvc/package.json index e55a5285..d48743a6 100644 --- a/packages/redux-devtools-slider-monitor/examples/todomvc/package.json +++ b/packages/redux-devtools-slider-monitor/examples/todomvc/package.json @@ -21,42 +21,42 @@ "@redux-devtools/slider-monitor": "^4.0.0", "classnames": "^2.3.1", "prop-types": "^15.8.1", - "react": "^18.1.0", - "react-dom": "^18.1.0", - "react-is": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-is": "^18.2.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "styled-components": "^5.3.5", "todomvc-app-css": "^2.4.2" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@types/classnames": "^2.3.1", - "@types/node": "^16.11.38", + "@types/node": "^16.11.41", "@types/prop-types": "^15.7.5", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools-slider-monitor/package.json b/packages/redux-devtools-slider-monitor/package.json index 1a7bfd6e..e7630269 100644 --- a/packages/redux-devtools-slider-monitor/package.json +++ b/packages/redux-devtools-slider-monitor/package.json @@ -41,29 +41,29 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@redux-devtools/core": "^3.13.1", "@rollup/plugin-babel": "^5.3.1", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^18.1.0", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "rollup": "^2.75.5", - "rollup-plugin-typescript2": "^0.32.0", + "rollup": "^2.75.6", + "rollup-plugin-typescript2": "^0.32.1", "tslib": "^2.4.0", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-ui/package.json b/packages/redux-devtools-ui/package.json index 6b8f334b..24577490 100644 --- a/packages/redux-devtools-ui/package.json +++ b/packages/redux-devtools-ui/package.json @@ -61,45 +61,45 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", - "@storybook/addon-essentials": "^6.5.7", - "@storybook/react": "^6.5.7", + "@storybook/addon-essentials": "^6.5.9", + "@storybook/react": "^6.5.9", "@testing-library/dom": "^8.13.0", "@testing-library/react": "^13.3.0", - "@testing-library/user-event": "^14.2.0", + "@testing-library/user-event": "^14.2.1", "@types/color": "^3.0.3", "@types/jest": "^27.5.2", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/styled-components": "^5.1.25", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "csstype": "^3.1.0", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", "ncp": "^2.0.0", - "react": "^18.1.0", - "react-dom": "^18.1.0", - "react-is": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-is": "^18.2.0", "require-from-string": "^2.0.2", "rimraf": "^3.0.2", "styled-components": "^5.3.5", - "stylelint": "^14.8.5", + "stylelint": "^14.9.1", "stylelint-config-prettier": "^9.0.3", "stylelint-config-standard": "^25.0.0", "stylelint-config-styled-components": "^0.1.1", "stylelint-processor-styled-components": "^1.10.0", "ts-jest": "^27.1.5", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0" }, "peerDependencies": { diff --git a/packages/redux-devtools-utils/package.json b/packages/redux-devtools-utils/package.json index 84c7867d..3ec6ed6f 100644 --- a/packages/redux-devtools-utils/package.json +++ b/packages/redux-devtools-utils/package.json @@ -45,20 +45,20 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@types/jsan": "^3.1.2", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.38", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/node": "^16.11.41", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools/examples/counter/package.json b/packages/redux-devtools/examples/counter/package.json index 80384782..1de8caf0 100644 --- a/packages/redux-devtools/examples/counter/package.json +++ b/packages/redux-devtools/examples/counter/package.json @@ -23,36 +23,36 @@ "@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/log-monitor": "^4.0.0", "prop-types": "^15.8.1", - "react": "^18.1.0", - "react-dom": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "redux-thunk": "^2.4.1" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", - "@types/node": "^16.11.38", + "@types/node": "^16.11.41", "@types/prop-types": "^15.7.5", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools/examples/todomvc/package.json b/packages/redux-devtools/examples/todomvc/package.json index 2ce848b1..ae26aa57 100644 --- a/packages/redux-devtools/examples/todomvc/package.json +++ b/packages/redux-devtools/examples/todomvc/package.json @@ -36,39 +36,39 @@ "@redux-devtools/log-monitor": "^4.0.0", "classnames": "^2.3.1", "prop-types": "^15.8.1", - "react": "^18.1.0", - "react-dom": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "todomvc-app-css": "^2.4.2" }, "devDependencies": { - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@types/classnames": "^2.3.1", - "@types/node": "^16.11.38", + "@types/node": "^16.11.41", "@types/prop-types": "^15.7.5", - "@types/react": "^18.0.12", + "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.17.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-node": "^10.8.1", - "typescript": "~4.7.3", + "typescript": "~4.7.4", "webpack": "^5.73.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.1" + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools/package.json b/packages/redux-devtools/package.json index 75758fa3..d0186397 100644 --- a/packages/redux-devtools/package.json +++ b/packages/redux-devtools/package.json @@ -49,31 +49,31 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.18.2", + "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", - "@babel/plugin-transform-runtime": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.38", - "@types/react": "^18.0.12", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", - "eslint": "^8.17.0", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.28.0", + "@typescript-eslint/parser": "^5.28.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-react": "^7.30.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^18.1.0", - "react-dom": "^18.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "rimraf": "^3.0.2", "ts-jest": "^27.1.5", - "typescript": "~4.7.3" + "typescript": "~4.7.4" }, "peerDependencies": { "react": "^0.14.9 || ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1f722bc5..7393bd25 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,41 +7,41 @@ importers: .: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@changesets/cli': ^2.22.0 - '@nrwl/nx-cloud': ^14.0.5 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@changesets/cli': ^2.23.0 + '@nrwl/nx-cloud': ^14.1.2 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 - nx: ^14.1.9 - prettier: 2.6.2 - typescript: ~4.7.3 + nx: ^14.3.6 + prettier: 2.7.1 + typescript: ~4.7.4 devDependencies: - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@changesets/cli': 2.22.0 - '@nrwl/nx-cloud': 14.0.5 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@changesets/cli': 2.23.0 + '@nrwl/nx-cloud': 14.1.2 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - nx: 14.1.9_typescript@4.7.3 - prettier: 2.6.2 - typescript: 4.7.3 + nx: 14.3.6 + prettier: 2.7.1 + typescript: 4.7.4 extension: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/polyfill': ^7.12.1 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 @@ -56,10 +56,10 @@ importers: '@redux-devtools/utils': ^2.0.0 '@testing-library/jest-dom': ^5.16.4 '@testing-library/react': ^13.3.0 - '@types/chrome': ^0.0.188 + '@types/chrome': ^0.0.190 '@types/jsan': ^3.1.2 '@types/lodash': ^4.14.182 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 babel-loader: ^8.2.5 @@ -68,13 +68,13 @@ importers: copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - electron: ^19.0.3 - eslint: ^8.17.0 + electron: ^19.0.4 + eslint: ^8.18.0 eslint-config-airbnb: ^19.0.4 eslint-plugin-import: ^2.26.0 eslint-plugin-jsx-a11y: ^6.5.1 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 file-loader: ^6.2.0 fork-ts-checker-webpack-plugin: ^7.2.11 immutable: ^4.1.0 @@ -85,10 +85,10 @@ importers: path-browserify: ^1.0.1 pug-html-loader: ^1.1.5 raw-loader: ^4.0.2 - react: ^18.1.0 - react-dom: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 react-icons: ^4.4.0 - react-is: ^18.1.0 + react-is: ^18.2.0 react-json-tree: ^0.17.0 react-redux: ^8.0.2 react-transform-catch-errors: ^1.0.2 @@ -101,9 +101,9 @@ importers: style-loader: ^3.3.1 styled-components: ^5.3.5 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 + webpack-cli: ^4.10.0 dependencies: '@babel/polyfill': 7.12.1 '@redux-devtools/app': link:../packages/redux-devtools-app @@ -117,43 +117,43 @@ importers: jsan: 3.1.14 localforage: 1.10.0 lodash: 4.17.21 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-icons: 4.4.0_react@18.1.0 - react-is: 18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-icons: 4.4.0_react@18.2.0 + react-is: 18.2.0 react-json-tree: link:../packages/react-json-tree - react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 - redux-persist: 6.0.0_react@18.1.0+redux@4.2.0 - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq + redux-persist: 6.0.0_react@18.2.0+redux@4.2.0 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@babel/register': 7.17.7_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@babel/register': 7.17.7_@babel+core@7.18.5 '@testing-library/jest-dom': 5.16.4 - '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm - '@types/chrome': 0.0.188 + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y + '@types/chrome': 0.0.190 '@types/lodash': 4.14.182 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke bestzip: 2.2.1 chromedriver: 102.0.0 copy-webpack-plugin: 11.0.0_webpack@5.73.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 - electron: 19.0.3 - eslint: 8.17.0 - eslint-config-airbnb: 19.0.4_pefmhapqkyo3bhsmfeolqklhny - eslint-plugin-import: 2.26.0_eslint@8.17.0 - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + electron: 19.0.4 + eslint: 8.18.0 + eslint-config-airbnb: 19.0.4_33hhosu7yovqp6ljggjzij5oci + eslint-plugin-import: 2.26.0_eslint@8.18.0 + eslint-plugin-jsx-a11y: 6.5.1_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 file-loader: 6.2.0_webpack@5.73.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei immutable: 4.1.0 jest: 27.5.1 path-browserify: 1.0.1 @@ -165,17 +165,17 @@ importers: selenium-webdriver: 4.2.0 sinon-chrome: 3.0.1 style-loader: 3.3.1_webpack@5.73.0 - ts-jest: 27.1.5_bpd7ociw4jsnx5mdyykezdwa4q - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_webpack@5.73.0 + ts-jest: 27.1.5_fddvm4zdts2kttulaik7bnebje + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_webpack@5.73.0 packages/d3-state-visualizer: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 @@ -183,23 +183,23 @@ importers: '@rollup/plugin-commonjs': ^22.0.0 '@rollup/plugin-node-resolve': ^13.3.0 '@types/d3': ^3.5.47 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/ramda': ^0.28.14 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 d3: ^3.5.17 d3tooltip: ^2.1.0 deepmerge: ^4.2.2 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 map2tree: ^2.1.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.75.5 + rollup: ^2.75.6 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.0 + rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@types/d3': 3.5.47 @@ -209,77 +209,77 @@ importers: map2tree: link:../map2tree ramda: 0.28.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@rollup/plugin-babel': 5.3.1_xrrjiapkmykkmovg76xtzegu3a - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.5 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.5 - '@types/node': 16.11.38 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm + '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 + '@types/node': 16.11.41 '@types/ramda': 0.28.14 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 - rollup: 2.75.5 - rollup-plugin-terser: 7.0.2_rollup@2.75.5 - rollup-plugin-typescript2: 0.32.0_5tbauevimgxepjeo5powblb5xq + rollup: 2.75.6 + rollup-plugin-terser: 7.0.2_rollup@2.75.6 + rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm tslib: 2.4.0 - typescript: 4.7.3 + typescript: 4.7.4 packages/d3-state-visualizer/examples/tree: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 - '@types/node': ^16.11.38 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@types/node': ^16.11.41 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 d3-state-visualizer: ^1.6.0 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 map2tree: ^2.1.0 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: d3-state-visualizer: link:../.. map2tree: link:../../../map2tree devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@types/node': 16.11.38 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/node': 16.11.41 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/d3tooltip: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 @@ -287,54 +287,54 @@ importers: '@rollup/plugin-commonjs': ^22.0.0 '@rollup/plugin-node-resolve': ^13.3.0 '@types/d3': ^3.5.47 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/ramda': ^0.28.14 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 d3: ^3.5.17 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.75.5 + rollup: ^2.75.6 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.0 + rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 ramda: 0.28.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@rollup/plugin-babel': 5.3.1_xrrjiapkmykkmovg76xtzegu3a - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.5 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.5 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm + '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 '@types/d3': 3.5.47 - '@types/node': 16.11.38 + '@types/node': 16.11.41 '@types/ramda': 0.28.14 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e d3: 3.5.17 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 - rollup: 2.75.5 - rollup-plugin-terser: 7.0.2_rollup@2.75.5 - rollup-plugin-typescript2: 0.32.0_5tbauevimgxepjeo5powblb5xq + rollup: 2.75.6 + rollup-plugin-terser: 7.0.2_rollup@2.75.6 + rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm tslib: 2.4.0 - typescript: 4.7.3 + typescript: 4.7.4 packages/map2tree: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 @@ -343,59 +343,59 @@ importers: '@rollup/plugin-node-resolve': ^13.3.0 '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.38 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@types/node': ^16.11.41 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 immutable: ^4.1.0 jest: ^27.5.1 lodash: ^4.17.21 rimraf: ^3.0.2 - rollup: ^2.75.5 + rollup: ^2.75.6 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.0 + rollup-plugin-typescript2: ^0.32.1 ts-jest: ^27.1.5 tslib: ^2.4.0 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 lodash: 4.17.21 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@rollup/plugin-babel': 5.3.1_xrrjiapkmykkmovg76xtzegu3a - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.5 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.5 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm + '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 '@types/jest': 27.5.2 '@types/lodash': 4.14.182 - '@types/node': 16.11.38 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm + '@types/node': 16.11.41 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 immutable: 4.1.0 jest: 27.5.1 rimraf: 3.0.2 - rollup: 2.75.5 - rollup-plugin-terser: 7.0.2_rollup@2.75.5 - rollup-plugin-typescript2: 0.32.0_5tbauevimgxepjeo5powblb5xq - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya + rollup: 2.75.6 + rollup-plugin-terser: 7.0.2_rollup@2.75.6 + rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm tslib: 2.4.0 - typescript: 4.7.3 + typescript: 4.7.4 packages/react-base16-styling: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 @@ -404,19 +404,19 @@ importers: '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 '@types/lodash.curry': ^4.1.7 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 base16: ^1.0.0 color: ^4.2.3 csstype: ^3.1.0 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 jest: ^27.5.1 lodash.curry: ^4.1.1 rimraf: ^3.0.2 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@types/base16': 1.0.2 @@ -426,31 +426,31 @@ importers: csstype: 3.1.0 lodash.curry: 4.1.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/color': 3.0.3 '@types/jest': 27.5.2 '@types/lodash.curry': 4.1.7 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 jest: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - typescript: 4.7.3 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/react-dock: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -459,23 +459,23 @@ importers: '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/react-test-renderer': ^18.0.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^18.1.0 - react-test-renderer: ^18.1.0 + react: ^18.2.0 + react-test-renderer: ^18.2.0 rimraf: ^3.0.2 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@types/lodash': 4.14.182 @@ -483,102 +483,102 @@ importers: lodash.debounce: 4.0.8 prop-types: 15.8.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jest': 27.5.2 '@types/lodash.debounce': 4.0.7 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/react-test-renderer': 18.0.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 18.1.0 - react-test-renderer: 18.1.0_react@18.1.0 + react: 18.2.0 + react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - typescript: 4.7.3 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/react-dock/demo: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 - '@types/node': ^16.11.38 - '@types/react': ^18.0.12 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 - react: ^18.1.0 + react: ^18.2.0 react-bootstrap: ^2.4.0 react-dock: ^0.6.0 - react-dom: ^18.1.0 + react-dom: ^18.2.0 react-icons: ^4.4.0 - react-is: ^18.1.0 + react-is: ^18.2.0 styled-components: ^5.3.5 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: - react: 18.1.0 - react-bootstrap: 2.4.0_eurjwfem4ie5nnznw6gmhlbswe + react: 18.2.0 + react-bootstrap: 2.4.0_twyhzqqpkwvvgrmyeapdo6i4my react-dock: link:.. - react-dom: 18.1.0_react@18.1.0 - react-icons: 4.4.0_react@18.1.0 - react-is: 18.1.0 - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq + react-dom: 18.2.0_react@18.2.0 + react-icons: 4.4.0_react@18.2.0 + react-is: 18.2.0 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@types/node': 16.11.38 - '@types/react': 18.0.12 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/node': 16.11.41 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/react-json-tree: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -588,29 +588,29 @@ importers: '@rollup/plugin-node-resolve': ^13.3.0 '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/react-test-renderer': ^18.0.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 prop-types: ^15.8.1 - react: ^18.1.0 + react: ^18.2.0 react-base16-styling: ^0.9.1 - react-test-renderer: ^18.1.0 + react-test-renderer: ^18.2.0 rimraf: ^3.0.2 - rollup: ^2.75.5 + rollup: ^2.75.6 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.0 + rollup-plugin-typescript2: ^0.32.1 ts-jest: ^27.1.5 tslib: ^2.4.0 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@types/lodash': 4.14.182 @@ -618,103 +618,103 @@ importers: prop-types: 15.8.1 react-base16-styling: link:../react-base16-styling devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@rollup/plugin-babel': 5.3.1_xrrjiapkmykkmovg76xtzegu3a - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.5 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.5 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm + '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 '@types/jest': 27.5.2 - '@types/node': 16.11.38 - '@types/react': 18.0.12 + '@types/node': 16.11.41 + '@types/react': 18.0.14 '@types/react-test-renderer': 18.0.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 18.1.0 - react-test-renderer: 18.1.0_react@18.1.0 + react: 18.2.0 + react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - rollup: 2.75.5 - rollup-plugin-terser: 7.0.2_rollup@2.75.5 - rollup-plugin-typescript2: 0.32.0_5tbauevimgxepjeo5powblb5xq - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya + rollup: 2.75.6 + rollup-plugin-terser: 7.0.2_rollup@2.75.6 + rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm tslib: 2.4.0 - typescript: 4.7.3 + typescript: 4.7.4 packages/react-json-tree/examples: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 - '@types/node': ^16.11.38 - '@types/react': ^18.0.12 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 immutable: ^4.1.0 - react: ^18.1.0 + react: ^18.2.0 react-base16-styling: ^0.9.1 - react-dom: ^18.1.0 + react-dom: ^18.2.0 react-json-tree: ^0.17.0 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: immutable: 4.1.0 - react: 18.1.0 + react: 18.2.0 react-base16-styling: link:../../react-base16-styling - react-dom: 18.1.0_react@18.1.0 + react-dom: 18.2.0_react@18.2.0 react-json-tree: link:.. devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@types/node': 16.11.38 - '@types/react': 18.0.12 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/node': 16.11.41 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -722,26 +722,26 @@ importers: '@redux-devtools/instrument': ^2.1.0 '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@types/react': ^18.0.14 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 lodash: ^4.17.21 prop-types: ^15.8.1 - react: ^18.1.0 - react-dom: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 react-redux: ^8.0.2 redux: ^4.2.0 rimraf: ^3.0.2 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@redux-devtools/instrument': link:../redux-devtools-instrument @@ -749,39 +749,39 @@ importers: lodash: 4.17.21 prop-types: 15.8.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jest': 27.5.2 '@types/lodash': 4.14.182 - '@types/node': 16.11.38 - '@types/react': 18.0.12 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-redux: 8.0.2_6gdrmwzkzbo4b6pqvtgyt7rzjm + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-redux: 8.0.2_42iqcqzqjdyq32nxzztmetzyhu redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - typescript: 4.7.3 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-app: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -803,27 +803,27 @@ importers: '@types/jsan': ^3.1.2 '@types/json-schema': ^7.0.11 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/socketcluster-client': ^16.0.0 '@types/styled-components': ^5.1.25 - '@types/testing-library__jest-dom': ^5.14.3 + '@types/testing-library__jest-dom': ^5.14.4 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 css-loader: ^6.7.1 d3-state-visualizer: ^1.6.0 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 - html-loader: ^3.1.0 + html-loader: ^3.1.2 html-webpack-plugin: ^5.5.0 javascript-stringify: ^2.1.0 jest: ^27.5.1 @@ -833,10 +833,10 @@ importers: lodash: ^4.17.21 path-browserify: ^1.0.1 prop-types: ^15.8.1 - react: ^18.1.0 - react-dom: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 react-icons: ^4.4.0 - react-is: ^18.1.0 + react-is: ^18.2.0 react-redux: ^8.0.2 redux: ^4.2.0 redux-persist: ^6.0.0 @@ -846,10 +846,10 @@ importers: styled-components: ^5.3.5 ts-jest: ^27.1.5 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@babel/runtime': 7.18.3 '@redux-devtools/chart-monitor': link:../redux-devtools-chart-monitor @@ -861,7 +861,7 @@ importers: '@redux-devtools/rtk-query-monitor': link:../redux-devtools-rtk-query-monitor '@redux-devtools/slider-monitor': link:../redux-devtools-slider-monitor '@redux-devtools/ui': link:../redux-devtools-ui - '@reduxjs/toolkit': 1.8.2_ctm756ikdwcjcvyfxxwskzbr6q + '@reduxjs/toolkit': 1.8.2_kkwg4cbsojnjnupd3btipussee '@types/prop-types': 15.7.5 d3-state-visualizer: link:../d3-state-visualizer javascript-stringify: 2.1.0 @@ -870,89 +870,89 @@ importers: localforage: 1.10.0 lodash: 4.17.21 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.1.0 - react-is: 18.1.0 - react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua + react-icons: 4.4.0_react@18.2.0 + react-is: 18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 - redux-persist: 6.0.0_react@18.1.0+redux@4.2.0 + redux-persist: 6.0.0_react@18.2.0+redux@4.2.0 socketcluster-client: 16.1.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@rjsf/core': 4.2.0_react@18.1.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rjsf/core': 4.2.0_react@18.2.0 '@testing-library/jest-dom': 5.16.4 - '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y '@types/jest': 27.5.2 '@types/jsan': 3.1.2 '@types/json-schema': 7.0.11 '@types/lodash': 4.14.182 - '@types/node': 16.11.38 - '@types/react': 18.0.12 + '@types/node': 16.11.41 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/socketcluster-client': 16.0.0 '@types/styled-components': 5.1.25 - '@types/testing-library__jest-dom': 5.14.3 + '@types/testing-library__jest-dom': 5.14.4 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza - html-loader: 3.1.0_webpack@5.73.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-loader: 3.1.2_webpack@5.73.0 html-webpack-plugin: 5.5.0_webpack@5.73.0 jest: 27.5.1_ts-node@10.8.1 path-browserify: 1.0.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 rimraf: 3.0.2 style-loader: 3.3.1_webpack@5.73.0 - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-chart-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@redux-devtools/core': ^3.13.1 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 d3-state-visualizer: ^1.6.0 deepmerge: ^4.2.2 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 - react: ^18.1.0 + react: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@types/prop-types': 15.7.5 @@ -962,25 +962,25 @@ importers: prop-types: 15.8.1 redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@types/react': 18.0.12 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 18.1.0 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools-cli: specifiers: @@ -993,23 +993,23 @@ importers: '@types/lodash': ^4.14.182 '@types/minimist': ^1.2.2 '@types/morgan': ^1.9.3 - '@types/node': ^16.11.38 - '@types/react': ^18.0.12 - '@types/semver': ^7.3.9 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 + '@types/semver': ^7.3.10 '@types/socketcluster-client': ^16.0.0 '@types/socketcluster-server': ^16.1.0 '@types/styled-components': ^5.1.25 '@types/supertest': ^2.0.12 '@types/uuid': ^8.3.4 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - apollo-server-express: ^3.8.2 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + apollo-server-express: ^3.9.0 body-parser: ^1.20.0 chalk: ^4.1.2 cors: ^2.8.5 cross-spawn: ^7.0.3 - electron: ^19.0.3 - eslint: ^8.17.0 + electron: ^19.0.4 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 express: ^4.18.1 @@ -1022,9 +1022,9 @@ importers: morgan: ^1.10.0 ncp: ^2.0.0 open: ^8.4.0 - react: ^18.1.0 - react-dom: ^18.1.0 - react-is: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 + react-is: ^18.2.0 rimraf: ^3.0.2 semver: ^7.3.7 socketcluster-client: ^16.1.1 @@ -1033,17 +1033,17 @@ importers: styled-components: ^5.3.5 supertest: ^6.2.3 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 uuid: ^8.3.2 dependencies: '@redux-devtools/app': link:../redux-devtools-app - '@types/react': 18.0.12 - apollo-server-express: 3.8.2_g7snex6epo2tsaz6yhvyva23iq + '@types/react': 18.0.14 + apollo-server-express: 3.9.0_g7snex6epo2tsaz6yhvyva23iq body-parser: 1.20.0 chalk: 4.1.2 cors: 2.8.5 cross-spawn: 7.0.3 - electron: 19.0.3 + electron: 19.0.4 express: 4.18.1 getport: 0.1.0 graphql: 16.5.0 @@ -1052,13 +1052,13 @@ importers: minimist: 1.2.6 morgan: 1.10.0 open: 8.4.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-is: 18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 semver: 7.3.7 socketcluster-server: 16.2.1 sqlite3: 5.0.8 - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba uuid: 8.3.2 devDependencies: '@types/body-parser': 1.19.2 @@ -1069,32 +1069,32 @@ importers: '@types/lodash': 4.14.182 '@types/minimist': 1.2.2 '@types/morgan': 1.9.3 - '@types/node': 16.11.38 - '@types/semver': 7.3.9 + '@types/node': 16.11.41 + '@types/semver': 7.3.10 '@types/socketcluster-client': 16.0.0 '@types/socketcluster-server': 16.1.0 '@types/styled-components': 5.1.25 '@types/supertest': 2.0.12 '@types/uuid': 8.3.4 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 jest: 27.5.1 ncp: 2.0.0 rimraf: 3.0.2 socketcluster-client: 16.1.1 supertest: 6.2.3 - ts-jest: 27.1.5_zydwki6ztrgm452or5cw6tjo5q - typescript: 4.7.3 + ts-jest: 27.1.5_mqaoisgizytgigbr3gbjwvnjie + typescript: 4.7.4 packages/redux-devtools-dock-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -1102,20 +1102,20 @@ importers: '@redux-devtools/core': ^3.13.1 '@types/parse-key': ^0.2.0 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@types/react': ^18.0.14 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 parse-key: ^0.2.1 prop-types: ^15.8.1 - react: ^18.1.0 + react: ^18.2.0 react-dock: ^0.6.0 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@types/prop-types': 15.7.5 @@ -1123,66 +1123,66 @@ importers: prop-types: 15.8.1 react-dock: link:../react-dock devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@types/parse-key': 0.2.0 - '@types/react': 18.0.12 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 18.1.0 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools-extension: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools-inspector-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -1195,16 +1195,16 @@ importers: '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/react-dragula': ^1.1.0 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 dateformat: ^4.6.3 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 immutable: ^4.1.0 javascript-stringify: ^2.1.0 @@ -1213,14 +1213,14 @@ importers: jss-preset-default: ^10.9.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^18.1.0 + react: ^18.2.0 react-base16-styling: ^0.9.1 react-dragula: ^1.1.17 react-json-tree: ^0.17.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@types/dragula': 3.7.1 @@ -1240,38 +1240,38 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@types/dateformat': 3.0.1 '@types/hex-rgba': 1.0.1 '@types/history': 4.7.11 '@types/lodash.debounce': 4.0.7 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/react-dragula': 1.1.0 '@types/redux-devtools-themes': 1.0.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 18.1.0 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools-inspector-monitor-test-tab: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -1285,29 +1285,29 @@ importers: '@types/jsan': ^3.1.2 '@types/object-path': ^0.11.1 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/simple-diff': ^1.6.1 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 es6template: ^1.0.5 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 javascript-stringify: ^2.1.0 jest: ^27.5.1 jsan: ^3.1.14 object-path: ^0.11.8 prop-types: ^15.8.1 - react: ^18.1.0 - react-dom: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 react-icons: ^4.4.0 redux: ^4.2.0 rimraf: ^3.0.2 simple-diff: ^1.6.0 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@redux-devtools/ui': link:../redux-devtools-ui @@ -1317,43 +1317,43 @@ importers: jsan: 3.1.14 object-path: 0.11.8 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.1.0 + react-icons: 4.4.0_react@18.2.0 simple-diff: 1.6.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor - '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y '@types/es6template': 1.0.0 '@types/jest': 27.5.2 '@types/jsan': 3.1.2 '@types/object-path': 0.11.1 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/simple-diff': 1.6.1 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - typescript: 4.7.3 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-inspector-monitor-test-tab/demo: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -1363,28 +1363,28 @@ importers: '@redux-devtools/inspector-monitor-test-tab': ^1.0.0 '@redux-devtools/ui': ^1.3.0 '@types/lodash.shuffle': ^4.2.7 - '@types/node': ^16.11.38 - '@types/react': ^18.0.12 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/redux-logger': ^3.0.9 '@types/styled-components': ^5.1.25 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 immutable: ^4.1.0 lodash.shuffle: ^4.2.0 - react: ^18.1.0 - react-dom: ^18.1.0 - react-is: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 + react-is: ^18.2.0 react-redux: ^8.0.2 react-router-dom: ^6.3.0 redux: ^4.2.0 @@ -1392,10 +1392,10 @@ importers: style-loader: ^3.3.1 styled-components: ^5.3.5 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor @@ -1404,51 +1404,51 @@ importers: '@redux-devtools/ui': link:../../redux-devtools-ui immutable: 4.1.0 lodash.shuffle: 4.2.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-is: 18.1.0 - react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua - react-router-dom: 6.3.0_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju + react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y redux: 4.2.0 redux-logger: 3.0.6 - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/lodash.shuffle': 4.2.7 - '@types/node': 16.11.38 - '@types/react': 18.0.12 + '@types/node': 16.11.41 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/redux-logger': 3.0.9 '@types/styled-components': 5.1.25 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 style-loader: 3.3.1_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-inspector-monitor-trace-tab: specifiers: '@babel/cli': ^7.17.10 '@babel/code-frame': ^7.16.7 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -1457,81 +1457,81 @@ importers: '@redux-devtools/inspector-monitor': ^3.0.0 '@testing-library/react': ^13.3.0 '@types/babel__code-frame': ^7.0.3 - '@types/chrome': ^0.0.188 + '@types/chrome': ^0.0.190 '@types/html-entities': ^1.3.4 '@types/jest': ^27.5.2 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/path-browserify': ^1.0.0 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 anser: ^2.1.1 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 html-entities: ^2.3.3 jest: ^27.5.1 path-browserify: ^1.0.1 - react: ^18.1.0 - react-dom: ^18.1.0 - react-test-renderer: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 + react-test-renderer: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 source-map: ^0.5.7 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/code-frame': 7.16.7 '@babel/runtime': 7.18.3 - '@types/chrome': 0.0.188 + '@types/chrome': 0.0.190 anser: 2.1.1 html-entities: 2.3.3 path-browserify: 1.0.1 redux-devtools-themes: 1.0.0 source-map: 0.5.7 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor - '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y '@types/babel__code-frame': 7.0.3 '@types/html-entities': 1.3.4 '@types/jest': 27.5.2 - '@types/node': 16.11.38 + '@types/node': 16.11.41 '@types/path-browserify': 1.0.0 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/redux-devtools-themes': 1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-test-renderer: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-test-renderer: 18.2.0_react@18.2.0 redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - typescript: 4.7.3 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-inspector-monitor/demo: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -1540,36 +1540,36 @@ importers: '@redux-devtools/inspector-monitor': ^3.0.0 '@types/base16': ^1.0.2 '@types/lodash.shuffle': ^4.2.7 - '@types/node': ^16.11.38 - '@types/react': ^18.0.12 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/redux-logger': ^3.0.9 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 base16: ^1.0.0 cross-env: ^7.0.3 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 immutable: ^4.1.0 lodash.shuffle: ^4.2.0 - react: ^18.1.0 + react: ^18.2.0 react-bootstrap: ^2.4.0 - react-dom: ^18.1.0 + react-dom: ^18.2.0 react-redux: ^8.0.2 react-router-dom: ^6.3.0 redux: ^4.2.0 redux-logger: ^3.0.6 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor @@ -1577,56 +1577,56 @@ importers: base16: 1.0.0 immutable: 4.1.0 lodash.shuffle: 4.2.0 - react: 18.1.0 - react-bootstrap: 2.4.0_eurjwfem4ie5nnznw6gmhlbswe - react-dom: 18.1.0_react@18.1.0 - react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua - react-router-dom: 6.3.0_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.2.0 + react-bootstrap: 2.4.0_twyhzqqpkwvvgrmyeapdo6i4my + react-dom: 18.2.0_react@18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju + react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y redux: 4.2.0 redux-logger: 3.0.6 devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/base16': 1.0.2 '@types/lodash.shuffle': 4.2.7 - '@types/node': 16.11.38 - '@types/react': 18.0.12 + '@types/node': 16.11.41 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/redux-logger': 3.0.9 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-instrument: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.38 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@types/node': ^16.11.41 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 jest: ^27.5.1 @@ -1635,38 +1635,38 @@ importers: rimraf: ^3.0.2 rxjs: ^7.5.5 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 lodash: 4.17.21 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jest': 27.5.2 '@types/lodash': 4.14.182 - '@types/node': 16.11.38 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm + '@types/node': 16.11.41 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 jest: 27.5.1 redux: 4.2.0 rimraf: 3.0.2 rxjs: 7.5.5 - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - typescript: 4.7.3 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-log-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -1674,22 +1674,22 @@ importers: '@redux-devtools/core': ^3.13.1 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^18.1.0 + react: ^18.2.0 react-json-tree: ^0.17.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@types/lodash.debounce': 4.0.7 @@ -1700,44 +1700,44 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@types/react': 18.0.12 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 18.1.0 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools-remote: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@redux-devtools/instrument': ^2.1.0 '@redux-devtools/utils': ^2.0.0 '@types/jsan': ^3.1.2 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/rn-host-detect': ^1.2.0 '@types/socketcluster-client': ^16.0.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 jsan: ^3.1.14 querystring: ^0.2.1 @@ -1745,7 +1745,7 @@ importers: rimraf: ^3.0.2 rn-host-detect: ^1.2.0 socketcluster-client: ^16.1.1 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@redux-devtools/instrument': link:../redux-devtools-instrument @@ -1755,30 +1755,30 @@ importers: rn-host-detect: 1.2.0 socketcluster-client: 16.1.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jsan': 3.1.2 - '@types/node': 16.11.38 + '@types/node': 16.11.41 '@types/rn-host-detect': 1.2.0 '@types/socketcluster-client': 16.0.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools-rtk-query-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -1790,27 +1790,27 @@ importers: '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 immutable: ^4.1.0 jss: ^10.9.0 jss-preset-default: ^10.9.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^18.1.0 + react: ^18.2.0 react-base16-styling: ^0.9.1 react-json-tree: ^0.17.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@redux-devtools/ui': link:../redux-devtools-ui @@ -1827,140 +1827,140 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@reduxjs/toolkit': 1.8.2_react@18.1.0 + '@reduxjs/toolkit': 1.8.2_react@18.2.0 '@types/hex-rgba': 1.0.1 '@types/lodash.debounce': 4.0.7 - '@types/react': 18.0.12 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 18.1.0 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools-rtk-query-monitor/demo: specifiers: - '@babel/core': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/core': ^7.18.5 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 - '@chakra-ui/react': ^2.1.2 - '@emotion/react': ^11.9.0 - '@emotion/styled': ^11.8.1 + '@chakra-ui/react': ^2.2.1 + '@emotion/react': ^11.9.3 + '@emotion/styled': ^11.9.3 '@mswjs/data': ^0.10.1 '@redux-devtools/core': ^3.13.0 '@redux-devtools/dock-monitor': ^3.0.0 '@redux-devtools/rtk-query-monitor': ^3.0.0 '@reduxjs/toolkit': ^1.8.2 '@types/copy-webpack-plugin': ^8.0.1 - '@types/node': ^16.11.38 - '@types/react': ^18.0.12 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 - framer-motion: ^6.3.10 + framer-motion: ^6.3.11 html-webpack-plugin: ^5.5.0 - msw: ^0.42.0 - react: ^18.1.0 - react-dom: ^18.1.0 + msw: ^0.42.1 + react: ^18.2.0 + react-dom: ^18.2.0 react-icons: ^4.4.0 - react-is: ^18.1.0 + react-is: ^18.2.0 react-redux: ^8.0.2 react-router-dom: ^6.3.0 style-loader: ^3.3.1 styled-components: ^5.3.5 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@babel/runtime': 7.18.3 - '@chakra-ui/react': 2.1.2_igbwp4hc33gbgqcw4wgvguo2hq - '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u - '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i - '@mswjs/data': 0.10.1_typescript@4.7.3 + '@chakra-ui/react': 2.2.1_dersw4eko4axp24m2cfli7j6ja + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + '@mswjs/data': 0.10.1_typescript@4.7.4 '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/rtk-query-monitor': link:.. - '@reduxjs/toolkit': 1.8.2_ctm756ikdwcjcvyfxxwskzbr6q - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - msw: 0.42.0_typescript@4.7.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-icons: 4.4.0_react@18.1.0 - react-is: 18.1.0 - react-redux: 8.0.2_zlkrlo2xsersbascmmsr65fm34 - react-router-dom: 6.3.0_ef5jwxihqo6n7gxfmzogljlgcm - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq + '@reduxjs/toolkit': 1.8.2_kkwg4cbsojnjnupd3btipussee + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + msw: 0.42.1_typescript@4.7.4 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-icons: 4.4.0_react@18.2.0 + react-is: 18.2.0 + react-redux: 8.0.2_fzknh3pugl53jp7xsetxkg5ani + react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.18.2 - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@types/copy-webpack-plugin': 8.0.1_webpack-cli@4.9.2 - '@types/node': 16.11.38 - '@types/react': 18.0.12 + '@babel/core': 7.18.5 + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/copy-webpack-plugin': 8.0.1_webpack-cli@4.10.0 + '@types/node': 16.11.41 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke copy-webpack-plugin: 11.0.0_webpack@5.73.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 style-loader: 3.3.1_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-serialize: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@types/jest': ^27.5.2 '@types/jsan': ^3.1.2 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 immutable: ^4.1.0 @@ -1968,36 +1968,36 @@ importers: jsan: ^3.1.14 rimraf: ^3.0.2 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 jsan: 3.1.14 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jest': 27.5.2 '@types/jsan': 3.1.2 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 immutable: 4.1.0 jest: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - typescript: 4.7.3 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-slider-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -2005,25 +2005,25 @@ importers: '@redux-devtools/core': ^3.13.1 '@redux-devtools/ui': ^1.3.0 '@rollup/plugin-babel': ^5.3.1 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 - react: ^18.1.0 + react: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - rollup: ^2.75.5 - rollup-plugin-typescript2: ^0.32.0 + rollup: ^2.75.6 + rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@redux-devtools/ui': link:../redux-devtools-ui @@ -2032,34 +2032,34 @@ importers: prop-types: 15.8.1 redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@rollup/plugin-babel': 5.3.1_xrrjiapkmykkmovg76xtzegu3a - '@types/node': 16.11.38 - '@types/react': 18.0.12 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - react: 18.1.0 + '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - rollup: 2.75.5 - rollup-plugin-typescript2: 0.32.0_5tbauevimgxepjeo5powblb5xq + rollup: 2.75.6 + rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm tslib: 2.4.0 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools-slider-monitor/examples/todomvc: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -2068,38 +2068,38 @@ importers: '@redux-devtools/log-monitor': ^4.0.0 '@redux-devtools/slider-monitor': ^4.0.0 '@types/classnames': ^2.3.1 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 classnames: ^2.3.1 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^18.1.0 - react-dom: ^18.1.0 - react-is: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 + react-is: ^18.2.0 react-redux: ^8.0.2 redux: ^4.2.0 style-loader: ^3.3.1 styled-components: ^5.3.5 todomvc-app-css: ^2.4.2 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../../../redux-devtools '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor @@ -2107,105 +2107,105 @@ importers: '@redux-devtools/slider-monitor': link:../.. classnames: 2.3.1 prop-types: 15.8.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-is: 18.1.0 - react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba todomvc-app-css: 2.4.2 devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/classnames': 2.3.1 - '@types/node': 16.11.38 + '@types/node': 16.11.41 '@types/prop-types': 15.7.5 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 style-loader: 3.3.1_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-ui: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@rjsf/core': ^4.2.0 - '@storybook/addon-essentials': ^6.5.7 - '@storybook/react': ^6.5.7 + '@storybook/addon-essentials': ^6.5.9 + '@storybook/react': ^6.5.9 '@testing-library/dom': ^8.13.0 '@testing-library/react': ^13.3.0 - '@testing-library/user-event': ^14.2.0 + '@testing-library/user-event': ^14.2.1 '@types/base16': ^1.0.2 '@types/codemirror': ^5.60.5 '@types/color': ^3.0.3 '@types/jest': ^27.5.2 '@types/json-schema': ^7.0.11 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 '@types/simple-element-resize-detector': ^1.3.0 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 base16: ^1.0.0 codemirror: ^5.65.5 color: ^4.2.3 csstype: ^3.1.0 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 ncp: ^2.0.0 prop-types: ^15.8.1 - react: ^18.1.0 - react-dom: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 react-icons: ^4.4.0 - react-is: ^18.1.0 + react-is: ^18.2.0 react-select: ^5.3.2 redux-devtools-themes: ^1.0.0 require-from-string: ^2.0.2 rimraf: ^3.0.2 simple-element-resize-detector: ^1.3.0 styled-components: ^5.3.5 - stylelint: ^14.8.5 + stylelint: ^14.9.1 stylelint-config-prettier: ^9.0.3 stylelint-config-standard: ^25.0.0 stylelint-config-styled-components: ^0.1.1 stylelint-processor-styled-components: ^1.10.0 ts-jest: ^27.1.5 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 dependencies: '@babel/runtime': 7.18.3 - '@rjsf/core': 4.2.0_react@18.1.0 + '@rjsf/core': 4.2.0_react@18.2.0 '@types/base16': 1.0.2 '@types/codemirror': 5.60.5 '@types/json-schema': 7.0.11 @@ -2216,59 +2216,59 @@ importers: codemirror: 5.65.5 color: 4.2.3 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.1.0 - react-select: 5.3.2_oo3emjpi3bbjzqzdmt4yuasdq4 + react-icons: 4.4.0_react@18.2.0 + react-select: 5.3.2_sukxovx4mwg6d6626r5e3rv5k4 redux-devtools-themes: 1.0.0 simple-element-resize-detector: 1.3.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@storybook/addon-essentials': 6.5.7_o33xyr6fnetv6pqyclkfmq3bn4 - '@storybook/react': 6.5.7_4o7xaollaaxmemegmn2rsjw3jy + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@storybook/addon-essentials': 6.5.9_kegi444pbrxunz45jv6pd3z7ki + '@storybook/react': 6.5.9_qvaipyr63plem3mgv5krfvm7b4 '@testing-library/dom': 8.13.0 - '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm - '@testing-library/user-event': 14.2.0_tlwynutqiyp5mns3woioasuxnq + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y + '@testing-library/user-event': 14.2.1_tlwynutqiyp5mns3woioasuxnq '@types/color': 3.0.3 '@types/jest': 27.5.2 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke csstype: 3.1.0 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-jest: 26.5.3_hskg2r2ndwagfrtpqqunqsvssm - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 ncp: 2.0.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-is: 18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 require-from-string: 2.0.2 rimraf: 3.0.2 - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq - stylelint: 14.8.5 - stylelint-config-prettier: 9.0.3_stylelint@14.8.5 - stylelint-config-standard: 25.0.0_stylelint@14.8.5 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + stylelint: 14.9.1 + stylelint-config-prettier: 9.0.3_stylelint@14.9.1 + stylelint-config-standard: 25.0.0_stylelint@14.9.1 stylelint-config-styled-components: 0.1.1 stylelint-processor-styled-components: 1.10.0 - ts-jest: 27.1.5_ikyry4vjszs3yiy6j74lwhwpya - typescript: 4.7.3 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 webpack: 5.73.0 packages/redux-devtools-utils: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/eslint-parser': ^7.18.2 - '@babel/plugin-transform-runtime': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 @@ -2277,10 +2277,10 @@ importers: '@types/get-params': ^0.1.0 '@types/jsan': ^3.1.2 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.38 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 - eslint: ^8.17.0 + '@types/node': ^16.11.41 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 get-params: ^0.1.2 immutable: ^4.1.0 @@ -2289,7 +2289,7 @@ importers: nanoid: ^3.3.4 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.7.3 + typescript: ~4.7.4 dependencies: '@babel/runtime': 7.18.3 '@redux-devtools/core': link:../redux-devtools @@ -2302,96 +2302,96 @@ importers: nanoid: 3.3.4 redux: 4.2.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.18.2 - '@babel/core': 7.18.2 - '@babel/eslint-parser': 7.18.2_gzibxbxtyhdf6opvsfbldcsogi - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jsan': 3.1.2 '@types/lodash': 4.14.182 - '@types/node': 16.11.38 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 + '@types/node': 16.11.41 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 - typescript: 4.7.3 + typescript: 4.7.4 packages/redux-devtools/examples/counter: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 '@redux-devtools/core': ^3.13.0 '@redux-devtools/dock-monitor': ^3.0.0 '@redux-devtools/log-monitor': ^4.0.0 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^18.1.0 - react-dom: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 react-redux: ^8.0.2 redux: ^4.2.0 redux-thunk: ^2.4.1 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../.. '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor '@redux-devtools/log-monitor': link:../../../redux-devtools-log-monitor prop-types: 15.8.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@types/node': 16.11.38 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/node': 16.11.41 '@types/prop-types': 15.7.5 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools/examples/todomvc: specifiers: - '@babel/core': ^7.18.2 + '@babel/core': ^7.18.5 '@babel/preset-env': ^7.18.2 '@babel/preset-react': ^7.17.12 '@babel/preset-typescript': ^7.17.12 @@ -2399,74 +2399,74 @@ importers: '@redux-devtools/dock-monitor': ^3.0.0 '@redux-devtools/log-monitor': ^4.0.0 '@types/classnames': ^2.3.1 - '@types/node': ^16.11.38 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.12 + '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.28.0 + '@typescript-eslint/parser': ^5.28.0 babel-loader: ^8.2.5 classnames: ^2.3.1 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-react: ^7.30.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^18.1.0 - react-dom: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 react-redux: ^8.0.2 redux: ^4.2.0 style-loader: ^3.3.1 todomvc-app-css: ^2.4.2 ts-node: ^10.8.1 - typescript: ~4.7.3 + typescript: ~4.7.4 webpack: ^5.73.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.1 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../.. '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor '@redux-devtools/log-monitor': link:../../../redux-devtools-log-monitor classnames: 2.3.1 prop-types: 15.8.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-redux: 8.0.2_nqhh35lwqrquwueloqsaumzkua + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 todomvc-app-css: 2.4.2 devDependencies: - '@babel/core': 7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/classnames': 2.3.1 - '@types/node': 16.11.38 + '@types/node': 16.11.41 '@types/prop-types': 15.7.5 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 - fork-ts-checker-webpack-plugin: 7.2.11_jy5w4alwxi2du2dgjfsq7k3iza + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 style-loader: 3.3.1_webpack@5.73.0 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages: @@ -2506,6 +2506,13 @@ packages: graphql: 16.5.0 dev: false + /@apollo/utils.keyvaluecache/1.0.1: + resolution: {integrity: sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA==} + dependencies: + '@apollo/utils.logger': 1.0.0 + lru-cache: 7.10.1 + dev: false + /@apollo/utils.logger/1.0.0: resolution: {integrity: sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q==} dev: false @@ -2577,14 +2584,14 @@ packages: xss: 1.0.12 dev: false - /@babel/cli/7.17.10_@babel+core@7.18.2: + /@babel/cli/7.17.10_@babel+core@7.18.5: resolution: {integrity: sha512-OygVO1M2J4yPMNOW9pb+I6kFGpQK77HmG44Oz3hg8xQIl5L/2zq+ZohwAdSaqYgVwM0SfmPHZHphH4wR8qzVYw==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@jridgewell/trace-mapping': 0.3.13 commander: 4.1.1 convert-source-map: 1.8.0 @@ -2615,9 +2622,9 @@ packages: '@babel/generator': 7.18.2 '@babel/helper-module-transforms': 7.18.0 '@babel/helpers': 7.18.2 - '@babel/parser': 7.18.4 + '@babel/parser': 7.18.5 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 @@ -2631,19 +2638,19 @@ packages: - supports-color dev: true - /@babel/core/7.18.2: - resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==} + /@babel/core/7.18.5: + resolution: {integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.16.7 '@babel/generator': 7.18.2 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-module-transforms': 7.18.0 '@babel/helpers': 7.18.2 - '@babel/parser': 7.18.4 + '@babel/parser': 7.18.5 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 @@ -2653,15 +2660,15 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser/7.18.2_gzibxbxtyhdf6opvsfbldcsogi: + /@babel/eslint-parser/7.18.2_cz6e4qppzra6gosrrzcvbsxiom: resolution: {integrity: sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.18.2 - eslint: 8.17.0 + '@babel/core': 7.18.5 + eslint: 8.18.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 semver: 6.3.0 @@ -2689,25 +2696,25 @@ packages: '@babel/types': 7.18.4 dev: true - /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.2: + /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.5: resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-validator-option': 7.16.7 browserslist: 4.20.3 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.2: + /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.5: resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 @@ -2719,27 +2726,27 @@ packages: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.2: + /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 regexpu-core: 5.0.1 dev: true - /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.18.2: + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.18.5: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.0 @@ -2748,16 +2755,16 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.2: + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.5: resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.0 @@ -2813,7 +2820,7 @@ packages: '@babel/helper-split-export-declaration': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color @@ -2851,7 +2858,7 @@ packages: '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color @@ -2890,7 +2897,7 @@ packages: dependencies: '@babel/helper-function-name': 7.17.9 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color @@ -2901,7 +2908,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color @@ -2921,161 +2928,168 @@ packages: dependencies: '@babel/types': 7.18.4 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.2: + /@babel/parser/7.18.5: + resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.18.4 + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.2: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-remap-async-to-generator': 7.16.8 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.2: + /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.5: resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.2 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-decorators/7.18.2_@babel+core@7.18.2: + /@babel/plugin-proposal-decorators/7.18.2_@babel+core@7.18.5: resolution: {integrity: sha512-kbDISufFOxeczi0v4NQP3p5kIeW6izn/6klfWBrIIdGZZe4UpHR+QU03FAoWjGGd9SUXAwbw2pup1kaL4OQsJQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 - '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.18.5 charcodes: 0.2.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.2: + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-export-default-from/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-export-default-from/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-LpsTRw725eBAXXKUOnJJct+SEaOzwR78zahcLuripD2+dKc2Sj+8Q2DzA+GC/jOpOu/KlDXuxrzG214o1zTauQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.2: + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5 dev: true /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: @@ -3084,197 +3098,197 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-plugin-utils': 7.17.12 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.2: + /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.5: resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.2: + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.2: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.5: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.2: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.5: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.2: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.5: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-decorators/7.17.12_@babel+core@7.18.2: + /@babel/plugin-syntax-decorators/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-D1Hz0qtGTza8K2xGyEdVNCYLdVHukAcbQr4K3/s6r/esadyEriZovpJimQOpu8ju4/jV8dW/1xdaE0UpDroidw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.18.2: + /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.2: + /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.2: + /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.2: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.5: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true @@ -3287,39 +3301,39 @@ packages: '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.2: + /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.2: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.5: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.2: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.5: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true @@ -3332,80 +3346,80 @@ packages: '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.2: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.5: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.2: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.5: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.2: + /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-remap-async-to-generator': 7.16.8 @@ -3413,33 +3427,33 @@ packages: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.18.2: + /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.18.5: resolution: {integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-classes/7.18.4_@babel+core@7.18.2: + /@babel/plugin-transform-classes/7.18.4_@babel+core@7.18.5: resolution: {integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 @@ -3452,118 +3466,118 @@ packages: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.2: + /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.5: resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.2: + /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.5: resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-function-name': 7.17.9 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.2: + /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.5: resolution: {integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-module-transforms': 7.18.0 '@babel/helper-plugin-utils': 7.17.12 babel-plugin-dynamic-import-node: 2.3.3 @@ -3571,13 +3585,13 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.2: + /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.5: resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-module-transforms': 7.18.0 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-simple-access': 7.18.2 @@ -3586,13 +3600,13 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.18.4_@babel+core@7.18.2: + /@babel/plugin-transform-modules-systemjs/7.18.4_@babel+core@7.18.5: resolution: {integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-module-transforms': 7.18.0 '@babel/helper-plugin-utils': 7.17.12 @@ -3602,47 +3616,47 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.2: + /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.5: resolution: {integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-module-transforms': 7.18.0 '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-replace-supers': 7.18.2 transitivePeerDependencies: @@ -3659,192 +3673,192 @@ packages: '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.5 '@babel/types': 7.18.4 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.0_@babel+core@7.18.2: + /@babel/plugin-transform-react-pure-annotations/7.18.0_@babel+core@7.18.5: resolution: {integrity: sha512-6+0IK6ouvqDn9bmEG7mEyF/pwlJXVj5lwydybpyyH3D0A7Hftk+NCTdYjnLNZksn261xaOV5ksmp20pQEmc2RQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.2: + /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.5: resolution: {integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 regenerator-transform: 0.15.0 dev: true - /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-runtime/7.18.2_@babel+core@7.18.2: - resolution: {integrity: sha512-mr1ufuRMfS52ttq+1G1PD8OJNqgcTFjq3hwn8SZ5n1x1pBhi0E36rYMdTK0TsKtApJ4lDEdfXJwtGobQMHSMPg==} + /@babel/plugin-transform-runtime/7.18.5_@babel+core@7.18.5: + resolution: {integrity: sha512-Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.2 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.2 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.2 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 dev: true - /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.2: + /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.5: resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.2: + /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.5: resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 dev: true @@ -3856,153 +3870,153 @@ packages: regenerator-runtime: 0.13.9 dev: false - /@babel/preset-env/7.18.2_@babel+core@7.18.2: + /@babel/preset-env/7.18.2_@babel+core@7.18.5: resolution: {integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.18.2 - '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.2 - '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.2 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-import-assertions': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.2 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.2 - '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.2 - '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.2 - '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.2 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.2 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.2 - '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.2 - '@babel/plugin-transform-modules-systemjs': 7.18.4_@babel+core@7.18.2 - '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.2 - '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-new-target': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.2 - '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.2 - '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.2 - '@babel/preset-modules': 0.1.5_@babel+core@7.18.2 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-import-assertions': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.5 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.5 + '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.5 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.5 + '@babel/plugin-transform-modules-systemjs': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-new-target': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.5 + '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.5 + '@babel/preset-modules': 0.1.5_@babel+core@7.18.5 '@babel/types': 7.18.4 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.2 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.2 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.2 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5 core-js-compat: 3.22.8 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-flow/7.17.12_@babel+core@7.18.2: + /@babel/preset-flow/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.18.2: + /@babel/preset-modules/0.1.5_@babel+core@7.18.5: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.5 '@babel/types': 7.18.4 esutils: 2.0.3 dev: true - /@babel/preset-react/7.17.12_@babel+core@7.18.2: + /@babel/preset-react/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-react-pure-annotations': 7.18.0_@babel+core@7.18.2 + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-react-pure-annotations': 7.18.0_@babel+core@7.18.5 dev: true - /@babel/preset-typescript/7.17.12_@babel+core@7.18.2: + /@babel/preset-typescript/7.17.12_@babel+core@7.18.5: resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.18.2 + '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/register/7.17.7_@babel+core@7.18.2: + /@babel/register/7.17.7_@babel+core@7.18.5: resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -4029,7 +4043,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/parser': 7.18.4 + '@babel/parser': 7.18.5 '@babel/types': 7.18.4 /@babel/traverse/7.18.2: @@ -4048,6 +4062,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/traverse/7.18.2_supports-color@5.5.0: resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} @@ -4066,6 +4081,23 @@ packages: transitivePeerDependencies: - supports-color + /@babel/traverse/7.18.5: + resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 + '@babel/helper-function-name': 7.17.9 + '@babel/helper-hoist-variables': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/types/7.18.4: resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} engines: {node: '>=6.9.0'} @@ -4081,478 +4113,479 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@chakra-ui/accordion/2.0.2_eyugdzcckvrfjzqf6jbbg6u4am: - resolution: {integrity: sha512-GPs84OQNEtLhDrDFJGzLl55zA1YOFspIBHKGgcMzpbuhoikJ65GuZKDnXsUQx0Qs34Ew4ctvj1muEUhrsssY5g==} + /@chakra-ui/accordion/2.0.3_inccl32eslsh7jtablwho5kv2e: + resolution: {integrity: sha512-3fu5q6I6QtYVfpBHK+xxIkZ3b/spHgDongXuKuLEJZswcSU8+X5B9YmNfv73ZMRKO3PboYtyHAmZZo4pYqzbbA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/descendant': 3.0.1_react@18.1.0 - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i - '@chakra-ui/utils': 2.0.1 - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 + '@chakra-ui/descendant': 3.0.2_react@18.2.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/alert/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-Vs/9+EmNiT6W3fqVRVsBpldVrhYgvgYHhpGZ+peWPiyn6EP36+4ZgQwlGsPbsGNrqHlzq4B62FnhaAmQZLr7FA==} + /@chakra-ui/alert/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-QqXFYeX74mHSVp5Peqc+0CkYGQlvKQzpvOKkn00M3ZczsgVxoDNrUv0PI2V3fuZDwo1ziLBGJsjgMFbJ+JrYgA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/spinner': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/anatomy/2.0.0_@chakra-ui+system@2.1.1: - resolution: {integrity: sha512-fcLWW/vtUsLVZrmkgZvbTXyn1zFpszGq7dqU0UYB0X6x7RouajOzBU//JQChlnqsW4qSGLWBU6IMAbRoTLzGpw==} + /@chakra-ui/anatomy/2.0.1_@chakra-ui+system@2.1.3: + resolution: {integrity: sha512-lbOUfPmCtgIe0G7Iu6C2MaFP3FKOHgKWxDrYc3498TQ7/z5N1r7AO6jB+gFRGDbxJNLjRGOLG7tV0bufagGTUw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/theme-tools': 2.0.1_@chakra-ui+system@2.1.1 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 dev: false - /@chakra-ui/avatar/2.0.2_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-cfX/n0DGlSvpf2oGa5l29jXDyNXQXfVD3jT/pEYaEbNsZ7Z+uUHDcJYoriUcXx8u/lpVCr97Fu2iwjrhczSkyQ==} + /@chakra-ui/avatar/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-LbCQBJzDLkx2jqOjuEG5zOWA5njEAhUlQ3GnSkqOGaiDQWgM6eSLxWkgpI5fKhBlZ2OvMxjSSFaCCpf8wvU+YQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/image': 2.0.2_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/image': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/breadcrumb/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-ytoVBCkdosf4TiyBqs14Y8eCD9ypisPfztgcdEJYUvgQ2eUO7rrmIpsu+Sc+Ah3o7Lu5yHcIyu94aIQJ/ix35Q==} + /@chakra-ui/breadcrumb/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-rJOkgaWqtxaPfISNXjhl9J4efD96FBnQnAKQJZtlG3WpWmIse/BPv1Pg4OCexPTBQQSwFkbTBgBD0lWD/i2UUw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/button/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-8ye7Bg+kpu0u+jtpbcND0FMhRyXFdNcIbjBMIj+IpWEGptSZyKYnHsdUPQKGstUNGXlf10sDpsHWI+h8m1HfWQ==} + /@chakra-ui/button/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-l2RE1031HR+vVqNQhfrJCuC1OzKTTLmyA8+ScGZhjV6G4LWGzU5LfsyGAXq53l1lFcx6O9XJzfgnxAvnGGKJsw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/spinner': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/checkbox/2.0.2_eyugdzcckvrfjzqf6jbbg6u4am: - resolution: {integrity: sha512-dYWU7y3w4Q35UlMyfeJs958CUQXXffALBIUNHsIyUjbC/eN+p8V0vur8n0zAb3NV3WXFGXzJGHsp4JJa1HLnAg==} + /@chakra-ui/checkbox/2.1.0_inccl32eslsh7jtablwho5kv2e: + resolution: {integrity: sha512-LPKhJM/IMp8LKdr52PVfSGAnmqcgwTMPcjyWT8jXQ3OhEXRUKc5rSUORmPtJmffNLjLq1nPCcSMWQsVHhJ9MXw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@zag-js/focus-visible': 0.1.0 + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/clickable/2.0.1_react@18.1.0: - resolution: {integrity: sha512-VfU+PpaGD4TdNm3qnYefIzcJLrKYj84suKDAulTacCTEzIluriXlXXEZ+3hIoctjfDG3iIHnnh1LrytXVhi2/A==} + /@chakra-ui/clickable/2.0.2_react@18.2.0: + resolution: {integrity: sha512-Zn0Hd9BCGVNMOXerUlfmOdCeVAyl6XYo5WC/Skm/REAQygk22/WjV42sLeT+1+bpOLpSvO4ZnheXfD5sIuDdfA==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/close-button/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-d3i/VGC3jO6HCOK7K6REv32JOkqYaA02OUQh4fgE7l/0SGbLLI9F8CzZfg2iz32du0XHe4ZIqenNYcc+3pqRaA==} + /@chakra-ui/close-button/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-aIpkIQdmbuKTiM1IuZRI4iUPzcaWla8mXysKIL+M6g0QbpaO/Xw3eucnAS0qO24djCzkcCZSLnHsEimBOBJdgA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/color-mode/2.0.3_react@18.1.0: - resolution: {integrity: sha512-nIULe9IgmznDKr/9QrqZ0sSYt6vMSRAcpmYpU5QRuyIncIXLdCYpfyo8zxEIOf8yXgxRuaRYdSl9QJh4NLI8yQ==} + /@chakra-ui/color-mode/2.0.4_react@18.2.0: + resolution: {integrity: sha512-DIR6CSPlkmi92LDR3IhjIediLk7GFWttlTUvJQP06ZUvN+iCpd5TjgchxOYzqlP4T9W0L62eZXsluOxmRF/JSQ==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/control-box/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-PpSn4jrvREpiKyz2gLWQXz2Bp1kzzK6XweMqSBOtHzj0b/53b2IzkNsgqTjv1FdoWdlzChRCY7p2ViL7jpv8dQ==} + /@chakra-ui/control-box/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-D3vQoyCRjAwCmB39jFvTv+fAXmALLhScXe6s/S7rdgSYxuSEksuGlNjvBUYAVwDXeE2sjDoeWMvrHydRGv44Bw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/counter/2.0.1_react@18.1.0: - resolution: {integrity: sha512-6LnSkF3NRNd6hGmceKgYWKBDilWOfxQAbCLG462ARWHw8ym71W5IZURmC90QqKf4hTQP5mNAdWkYzv2qN0Rnsg==} + /@chakra-ui/counter/2.0.2_react@18.2.0: + resolution: {integrity: sha512-mRYrnu1924spsPU5GaHSbaoX28Gbzf8PDkO6Y1R6r6MQKTLjpdbkFmyG0QyEixD8aoaSaCO7iVbJRnUJ+dhlww==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/css-reset/2.0.0_btguaf77hpuxici4esujjeifki: - resolution: {integrity: sha512-9L+/5t+QdV5lSoJptn+zCkt23mdFoQYLdpJadKgRQ5jBxl640e+LGLu/3GV1MGdyqHN0V+GSAJqQiojRJPH/gg==} + /@chakra-ui/css-reset/2.0.1_jhgplt4fmhans76oq3ok5iox2u: + resolution: {integrity: sha512-8RhAC7l5RHp9hNDN2M2feZ2wPaoSrgxzqx6VqLTIul2lwucpp1LTlrDlPCBMJe8fp51Q83IOCW4882ktsXxktA==} peerDependencies: '@emotion/react': '>=10.0.35' react: '>=18 || 18' dependencies: - '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u - react: 18.1.0 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + react: 18.2.0 dev: false - /@chakra-ui/descendant/3.0.1_react@18.1.0: - resolution: {integrity: sha512-V86JwFb80iZqRxAoj9lmITv+/Hj8Mw3p3SZy+TdcwPzIYCDdbJUxuMM6FGQjjiygul1H4NPoCZk0AaobbVVHcA==} + /@chakra-ui/descendant/3.0.2_react@18.2.0: + resolution: {integrity: sha512-BV4IpONYr52V7rJnEYj5Ej946HD2BTOgOQpSB/LMeITfkp51/O9pOayNoVghYW7cFts+Opy4YmvLcuxFhWrD3Q==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - react: 18.1.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + react: 18.2.0 dev: false - /@chakra-ui/editable/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-4BAFKRs5eMS89nV4UcAqTBKxrv0LQwUjGZuR1KVxxmy4TJaQHnEFrxTc1MdI6+Vpg+99NYDDN0RRMTPRPhF8mg==} + /@chakra-ui/editable/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-hZBD4K1i3a8+RnW5jaoVfHeEm0zDKcyZ7yZCNGmmM7sz2LAw/LdE6+IKBoEbXc5Gf8KnEs9eH/TBcPDhS9KUQg==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/focus-lock/2.0.2_cbpnieqasrszcwkqeh5i7z7nse: - resolution: {integrity: sha512-h+Ulm7R/EwXay9Wzyf7/ZXoc6ZIvbCvFDuML+XxXD9/oUbc+7Tpe49+TMmB4fMFqFEDXDCrFxh5dHDCMDWNJJA==} + /@chakra-ui/focus-lock/2.0.3_luyos4mouogwq6z3wafb3re4ce: + resolution: {integrity: sha512-QcKUy0n26T1qOEoqk9rDmr9tumZs/+VXh9gIhWYKlmScm8Dy87qCMfOJ2M8/sUCQcqypl8SwlONQdiCZ99FUFQ==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 - react-focus-lock: 2.9.1_cbpnieqasrszcwkqeh5i7z7nse + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 + react-focus-lock: 2.9.1_luyos4mouogwq6z3wafb3re4ce transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/form-control/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-j7pmUux478sEmmTsOJk6C69xCr9Bfu1xmaW6VqmeNDo79PhtQbXa3M2uj4goCLqGkjONlhDMNkN49dCEaBbEAw==} + /@chakra-ui/form-control/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-uelLKIZgrcahvodEAd2WjdCJUus9q9Wq++KliN+8VIhPti89s8eewyDh3xWvurbgby+oGkHyjDMmxHrkfa3YYQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/hooks/2.0.1_react@18.1.0: - resolution: {integrity: sha512-z11Bci1SKbB5Hc0e1kI2mJR7InqmpiY5fTm4b0slbAB8y4bWiLekCYKP/ulEKcocObOQXWvumlGR7xoMO/GtEQ==} + /@chakra-ui/hooks/2.0.2_react@18.2.0: + resolution: {integrity: sha512-3B4zsl51tevmO6T6xUKcclwxf4FClKtScaNvb8jMmVczTGRL7WhZ6LxXeYUJMms11C8W9uZczE5yXSP0qweeAw==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/utils': 2.0.1 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/utils': 2.0.2 compute-scroll-into-view: 1.0.14 copy-to-clipboard: 3.3.1 - react: 18.1.0 + react: 18.2.0 dev: false - /@chakra-ui/icon/3.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-8Pcp7p6abLbYSx4xsEns5/iiNtGl291pt/Bl87xfWfbnDl1H03NHBMtIK+w+2sf31486cJlknbz5G4cXK8mhJA==} + /@chakra-ui/icon/3.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-sas37byldn5O/TTIKHzxHBujEYqVPXegisoMqutLtF60fpXnb62aG1JTyorXSG3zJxJWQW7+AvjbOGyWKHXc0Q==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/image/2.0.2_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-4fDYhwnLk1NvzOm+nxGitnp3OQyZP+8YqwL7AF844BUexGolR37M1Uox4t49dn+rP2n2KdXRQPOLrA2Qe14R5g==} + /@chakra-ui/image/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-GLMJXLdR0y7CCZ0hKHf6YZLb8dlPpx4vdXWTbtLnIU5EfGIOSiCU4N3+0KcjvMtDB69hBr5W4h1XMJNpetP1EA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/input/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-FDpEbIBGzTXHedI2q/C23vDeRxDpaJAS1oD4mvCatvZtWqJ83oxsFM0TcilZbP+F7VRNVs8X7NrW2Q5AN1Wxzw==} + /@chakra-ui/input/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-ODwdlsLha+EBPFSnCEqWjlndeXaL4cXvCk4rrKuvs9vexhOBr+X9V6KNn5Rmn/bXah+Wsrn+5g6T9V7BvRES3Q==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/layout/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-fC4Q1IMo2BYwuS0tDitIGJ0ziwQhI/vmRdOd8M091m3hM/Odl6NAHPRVCKxdHOe9TZd/nWVdF+Gcl9TLu/wOCQ==} + /@chakra-ui/layout/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-iElUGxj8YmVGcaCQlQovJJC4APHMh5vwlZU37IC6W3FdJzv+orVhzbuB98tuzfWHxjKQZeGhcz7+npIkN87D5w==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/live-region/2.0.1_react@18.1.0: - resolution: {integrity: sha512-c4vHKE5Mb1zjEa1M2oKVD+4OKqeFJowmiME5vrBV2Brh9z+8lM6fhn5Ulkd41U+YnduUvhBtE9CiDu6z0jTs4A==} + /@chakra-ui/live-region/2.0.2_react@18.2.0: + resolution: {integrity: sha512-aRJRaJInqNkFRRIjW57SPNhj7ngxh0xkdQZeOohvOcd7VbjvHNgXO1glKjIXRzSRHyteCdGUzb/jo68NizE3bQ==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/media-query/3.0.2_lkrij7qeqj624bfjtusxj2gvoy: - resolution: {integrity: sha512-v1FcJebws2DEZ6G+pFkS8nWqIEB2mnaxykXGETYrG7Tv/Jx7LGsqXu9aAhhW1nnc5Ecw56yfUpz6go86Vsyqcw==} + /@chakra-ui/media-query/3.1.0_swpbf3sk2xubz3bowba44eqanu: + resolution: {integrity: sha512-E05PUom+izNILJff0Yje8OMWHVN5C2H2A/F0aaptIJ+600YNWn5CuGvdlSMb/VWHziHT7u5xyrtv0mdbxMlYBA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' '@chakra-ui/theme': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/react-env': 2.0.1_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/theme': 2.0.3_@chakra-ui+system@2.1.1 - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/react-env': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/menu/2.0.2_eyugdzcckvrfjzqf6jbbg6u4am: - resolution: {integrity: sha512-YnjFgtiRgeDPnMO/4binlOlA0x6SiwJhyxn4SwE22JmHpkzNQ7S3WWIVlkdxY9Kdxwk8dAMegoxVo59xwRcIPg==} + /@chakra-ui/menu/2.0.3_inccl32eslsh7jtablwho5kv2e: + resolution: {integrity: sha512-hW1XBK0ZOEvnrwurqZiQ7+CFW8Olfk82BilNOulQ7LxQ2hQAAg4JBQxs755jVEtqhSAP+oe/yuWEabWtCWLGQw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/clickable': 2.0.1_react@18.1.0 - '@chakra-ui/descendant': 3.0.1_react@18.1.0 - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/popper': 3.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i - '@chakra-ui/utils': 2.0.1 - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 + '@chakra-ui/clickable': 2.0.2_react@18.2.0 + '@chakra-ui/descendant': 3.0.2_react@18.2.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/popper': 3.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/modal/2.0.2_55xxg4lafxoewpwqhala4tjpga: - resolution: {integrity: sha512-1XL4vzRzzLfGyPvq7/rPBkVKEEldetuv3VFqv2WUPlQjw/SBg6zxA67B6T3eiLOnPykw2PcDVcuXylr7CYuoYA==} + /@chakra-ui/modal/2.0.3_4s7debdozfrn2zrndnc46esm3q: + resolution: {integrity: sha512-GS1Apvrsr8scM1d/awVgJdcheITja4fMKTKwWljstw7SfAMOPc4skKIg+MzriLvtIialm1WFxOWYfiQ5MKAAcQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/focus-lock': 2.0.2_cbpnieqasrszcwkqeh5i7z7nse - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i - '@chakra-ui/utils': 2.0.1 + '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/focus-lock': 2.0.3_luyos4mouogwq6z3wafb3re4ce + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/utils': 2.0.2 aria-hidden: 1.1.3 - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-remove-scroll: 2.5.4_cbpnieqasrszcwkqeh5i7z7nse + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-remove-scroll: 2.5.4_luyos4mouogwq6z3wafb3re4ce transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/number-input/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-O2lF52I9OIUJzfKZJlUw/oHGiBvCFdYRS7oG6c9t3nN6SKlbS+iLRKsCQ9+xp6NV0UpA70hMRZdLLdErqigZtA==} + /@chakra-ui/number-input/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-7RT5TMCSPtghX7M2Uy2cruLwO0uYCzIa49tQFDzQ2YCGMuRimzma9i0nuOqQz2yGHxa3C8WJJoO91jPKzCjIbg==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/counter': 2.0.1_react@18.1.0 - '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/counter': 2.0.2_react@18.2.0 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/pin-input/2.0.2_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-D3Ip+UIch7UmmjdIujapGeAa/TWXK26yGgQBDqeC5sGjXgukv0dybq0TVl276Ej4c0OtfRrnHsYe/s6qrQMgAQ==} + /@chakra-ui/pin-input/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-tnISIFno2Nqmh5ZjXyRnUiyuw94xLpFWoVK9tTo/yoR5Llbh58BqRyybOZZpu3DIjuK9qy9M67KBhRdqkOLUFQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/descendant': 3.0.1_react@18.1.0 - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/descendant': 3.0.2_react@18.2.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/popover/2.0.1_eyugdzcckvrfjzqf6jbbg6u4am: - resolution: {integrity: sha512-RL14IqclGVW9/DGve/LEY0kDULnQ+X4V93VmYAaaQpTWEjhKWehp01I+OJn76BQ0i4Lhy7b+XUMPaqkXsk3mAw==} + /@chakra-ui/popover/2.0.2_inccl32eslsh7jtablwho5kv2e: + resolution: {integrity: sha512-i9Tsx+gpN470V7eLPng+lVK25DfUdQ44OAzWMUavIiutCtVJknZEPYbSr72JnT4NHBnr7b8rqUBEYq9+36LmlQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/popper': 3.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 + '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/popper': 3.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/popper/3.0.1_react@18.1.0: - resolution: {integrity: sha512-dEnW3QJxMyIIKCt3D5K1LWS6EbaDIRpzmlV4K4HeHHL08So6UFzQb8RgzoKuc2ZC5tJ7lKGdLWcSvHpiONVMmg==} + /@chakra-ui/popper/3.0.2_react@18.2.0: + resolution: {integrity: sha512-oEUsaFR4EPY3CvhEVeZNoa+mA/w+TvLlG3xlicIwv/3Fcfl6LD2Jhr6utnqAvHFxE/qRcUcXLX20ovy0Zrgm/Q==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 '@popperjs/core': 2.11.5 - react: 18.1.0 + react: 18.2.0 dev: false - /@chakra-ui/portal/2.0.1_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-Yfe4ASpPLlpiPAzHq+yKsjhz6gfM9gUhCDBG97WQJc8WVoY/fg/aQHNtx69arS5p2a3ka9hXqdGtZwx8rxCD7Q==} + /@chakra-ui/portal/2.0.2_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-bk8P/hxvGbKhEZSI2LAFwk98W7ivff3NwpFOHjsna0uuBPG772mEOXnxsHBsr2moGroMXdBOS++czHn1T3cHhw==} peerDependencies: react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/progress/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-sWw94BWC3LHfHc0Xg012IKf1L66X6hX0jclCt0Gg57isbdHbzpF0ApxF74g5oa2+AE+y0NuH7gnhsBAo/b5yUw==} + /@chakra-ui/progress/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-nx/aDZGEAnRx6jC4RLbfoXTTEeHoHGVlwBTUx7OKPus+hopBVvXHpA/UH+H8OJ5nq0PJ6XaDPCHc1FTrK+j0aw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/theme-tools': 2.0.1_@chakra-ui+system@2.1.1 - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/provider/2.0.4_gqsuqdqel52o6agzkiicszkmha: - resolution: {integrity: sha512-EsyapR3NynYof94Crn51gAcLteNKxVae7w+10zK0HafL4/u/2oISCPhPiefKiXT5ZtyVqaxA976hG6MDZh8yUw==} + /@chakra-ui/provider/2.0.6_qsuhhlyfbpdicstla2jcf7xfmy: + resolution: {integrity: sha512-EwwFF8ib9L5OYTRJq450Uvk7DqQJA/W6TyBo2f7mUE0j56GmV8ZRdsaXGqqag/aopCS/1n+ZfpQvQr/qNhAQBQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/css-reset': 2.0.0_btguaf77hpuxici4esujjeifki - '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm - '@chakra-ui/react-env': 2.0.1_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u - '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + '@chakra-ui/css-reset': 2.0.1_jhgplt4fmhans76oq3ok5iox2u + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-env': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/radio/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-K/4RF54LXxrSZ6DuIsdGkh4eAgtjvebj+4I1Fv5/tJbG/0oG1YpkDkP1DV+W8HUm3BGIvg9doCU9IMCAzdoMUg==} + /@chakra-ui/radio/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-f3YF7sL13qpbiqlFF8eGcL8lZeAmY3ZwqJk8m2v3Ofi0M7Et/CV00E1TxY5kK3tvDtmMXC5lILf5QlHHNgH6wQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq - react: 18.1.0 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + react: 18.2.0 dev: false - /@chakra-ui/react-env/2.0.1_react@18.1.0: - resolution: {integrity: sha512-jgebRKe968Eyypv15W4DWhL2xwy1d7vRbd1F23yJu8hJaVFPBjYhIF0NFOUswPcFm/UGZhPx6avA2r3PyAWSuA==} + /@chakra-ui/react-env/2.0.2_react@18.2.0: + resolution: {integrity: sha512-iQdc58d1HjfkPi+CEoZNqY77oX94bsWpMie30UYIaTonc9OOH6r1WCGQc8cyQa3jKiX2m9v9IbnxZa9Z0rYrHw==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/react-utils/2.0.0_react@18.1.0: - resolution: {integrity: sha512-QcDt2/e3xhfbDcR0FF/E+E1LYGiPMRh8U6160mcgDaG+IzEXtr2ELgZI5EYNpS5HyujpNBt7ivajgi5JQ8h6ew==} + /@chakra-ui/react-utils/2.0.1_react@18.2.0: + resolution: {integrity: sha512-xLiTn7WeUo2e3zvo8zUGpICgIGsLCPpkVbjEKhr1jAV41urqEtwlLc6uGir595OYqAC8zFDqs4HXhHouqNEtiw==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/react/2.1.2_igbwp4hc33gbgqcw4wgvguo2hq: - resolution: {integrity: sha512-4Lly69/sUBp1j35zyzC/N6YttA/lspg4eGuE3PemeCY6SdlDyc0ne1i+WZJ+iipG9eSYDOSQgpnDZ9hnnz4i9w==} + /@chakra-ui/react/2.2.1_dersw4eko4axp24m2cfli7j6ja: + resolution: {integrity: sha512-m2vFICTUO3GivTkJROnTTJT+w8otcYMraKqOSdrAGmsjqtZAp8/FaGS+1bxzeZnZTszMn65LoLvlgBUDrTHhQA==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 @@ -4560,296 +4593,296 @@ packages: react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/accordion': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am - '@chakra-ui/alert': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/avatar': 2.0.2_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/breadcrumb': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/button': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/checkbox': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am - '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/control-box': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/counter': 2.0.1_react@18.1.0 - '@chakra-ui/css-reset': 2.0.0_btguaf77hpuxici4esujjeifki - '@chakra-ui/editable': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/image': 2.0.2_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/input': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/layout': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/live-region': 2.0.1_react@18.1.0 - '@chakra-ui/media-query': 3.0.2_lkrij7qeqj624bfjtusxj2gvoy - '@chakra-ui/menu': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am - '@chakra-ui/modal': 2.0.2_55xxg4lafxoewpwqhala4tjpga - '@chakra-ui/number-input': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/pin-input': 2.0.2_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/popover': 2.0.1_eyugdzcckvrfjzqf6jbbg6u4am - '@chakra-ui/popper': 3.0.1_react@18.1.0 - '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm - '@chakra-ui/progress': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/provider': 2.0.4_gqsuqdqel52o6agzkiicszkmha - '@chakra-ui/radio': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/react-env': 2.0.1_react@18.1.0 - '@chakra-ui/select': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/skeleton': 2.0.4_qe4bp7ml2j5zoi7isckfhsj454 - '@chakra-ui/slider': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/spinner': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/stat': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/switch': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/table': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/tabs': 2.0.2_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/tag': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/textarea': 2.0.2_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/theme': 2.0.3_@chakra-ui+system@2.1.1 - '@chakra-ui/toast': 2.0.5_yn5echb7wvba63k2cyn3aupfu4 - '@chakra-ui/tooltip': 2.0.1_jmmv256z2f2q7oqs26eg46msx4 - '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i - '@chakra-ui/utils': 2.0.1 - '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u - '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + '@chakra-ui/accordion': 2.0.3_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/alert': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/avatar': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/breadcrumb': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/checkbox': 2.1.0_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/control-box': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/counter': 2.0.2_react@18.2.0 + '@chakra-ui/css-reset': 2.0.1_jhgplt4fmhans76oq3ok5iox2u + '@chakra-ui/editable': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/image': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/input': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/layout': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/live-region': 2.0.2_react@18.2.0 + '@chakra-ui/media-query': 3.1.0_swpbf3sk2xubz3bowba44eqanu + '@chakra-ui/menu': 2.0.3_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/modal': 2.0.3_4s7debdozfrn2zrndnc46esm3q + '@chakra-ui/number-input': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/pin-input': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/popover': 2.0.2_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/popper': 3.0.2_react@18.2.0 + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/progress': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/provider': 2.0.6_qsuhhlyfbpdicstla2jcf7xfmy + '@chakra-ui/radio': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-env': 2.0.2_react@18.2.0 + '@chakra-ui/select': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/skeleton': 2.0.6_axawpjz3tjxiksmpos7ajkx4lu + '@chakra-ui/slider': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/stat': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/switch': 2.0.3_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/table': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/tabs': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/tag': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/textarea': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 + '@chakra-ui/toast': 2.1.0_cdgnzpyqhm67cfidphy3xhoqqi + '@chakra-ui/tooltip': 2.0.2_qafgcfmixptan4yq35qlzbgnj4 + '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/select/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-oIo58h92nNH4TIumXPwKzKhEugOUivhO1aXbPPsF0aRsoyv9fpd2WrD4HJRpeXnp0muEeO2J6jpuVp3EiLYlrw==} + /@chakra-ui/select/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-aXYRJFsi3xrcacPI+FDZ1fxRQc9PMFnYXvqTug4I7wIwZUE467vD4G90c6/b/tUzrerDkVcPhHbqFy8ENbrvdA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/skeleton/2.0.4_qe4bp7ml2j5zoi7isckfhsj454: - resolution: {integrity: sha512-9hPUOfV9Pe+c86Nne7Fly+Q5Epy1wXeU8uEZmdyK5ID4i2zir7aeR7AMLlBFKLjoLHAgc0WXXn9qS5x3+MoRHg==} + /@chakra-ui/skeleton/2.0.6_axawpjz3tjxiksmpos7ajkx4lu: + resolution: {integrity: sha512-nbZEfA7vSxJ8qXM0sb+e/Dh8t2ZcAkjWUzScMvO8FWfblk3wkoeUT0ocTwJ4eDyTzEVBu+ym7Uc+ACZmBheabQ==} peerDependencies: '@chakra-ui/theme': '>=2.0.0-next.0' '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/media-query': 3.0.2_lkrij7qeqj624bfjtusxj2gvoy - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/theme': 2.0.3_@chakra-ui+system@2.1.1 - '@chakra-ui/utils': 2.0.1 - '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u - '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i - react: 18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/media-query': 3.1.0_swpbf3sk2xubz3bowba44eqanu + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 + '@chakra-ui/utils': 2.0.2 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + react: 18.2.0 dev: false - /@chakra-ui/slider/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-osA+atOf5xLzZhpONAM1/UcdXxYUQkMHqB08BYR0lLVJgU9ljD0iLOPp3M9PMQefzjuG/AC8IyFGv/2qwqCuwg==} + /@chakra-ui/slider/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-aWpjqFGN61fv3dKyBrP6c68MXmkYtZ6jeDWIKkgzc7ntb6Nnf6KDK8seZM0SmQR2F3GIejLt8AgnuIW/UBUa/Q==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/spinner/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-JiJZWtulV+cdKNHgsJlzaPdzudzkC1LHhCocaW4IU6LQGf7jRcWK2lxtsrLSjOu+IfXIs02cv835Qk40dD5NJA==} + /@chakra-ui/spinner/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-jC6+pwkCQb5vfGsS/55EhH2UzsToeCvpfXLQ6TPWDPA2NHMTRskilHwKQT/i0nAgRcCq400FvcfIr5uAPs+Igg==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq - react: 18.1.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + react: 18.2.0 dev: false - /@chakra-ui/stat/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-ZSvGmeKoX0bzhkfs6IRl/PklcKKanvj/B8q8qlykqDoetLulEQ5mPQZp9YTg4RINBCCz8MQ3jf2Zpqmf8T0V7g==} + /@chakra-ui/stat/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-GrQgiof8olOEVFAUtq5GA2cCUJqcSLMpS/6StBFR4fesrg5MAblfVYYY7uayqX/RnJU1BNElLOl/JAQ965LGXw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq - react: 18.1.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + react: 18.2.0 dev: false - /@chakra-ui/styled-system/2.1.1: - resolution: {integrity: sha512-uRnefdzvR+3DkLomABUj8EfqBp2pBXe4nEYHRsArNQ2B7OH2zuE2jdr64Hs3QjpEvWGfoIcpj0OuzwSaDI+41A==} + /@chakra-ui/styled-system/2.2.0: + resolution: {integrity: sha512-5THQlrMr6CsiulNtjzZV3DqYD85eQ+S8G6rsnjAKqFVJ1G29R392RKK/67R96WIRUJRtsHPq2REeTgAxGLDhOQ==} dependencies: - '@chakra-ui/utils': 2.0.1 + '@chakra-ui/utils': 2.0.2 csstype: 3.1.0 dev: false - /@chakra-ui/switch/2.0.2_eyugdzcckvrfjzqf6jbbg6u4am: - resolution: {integrity: sha512-4j6f0bqCOkaF6u21QNJlJDn20o9xy4cZQdmlPBg3AgerVGDvTv81kTSL2CFhb5hgZ8jQhMpirNNOVnJIAH44jQ==} + /@chakra-ui/switch/2.0.3_inccl32eslsh7jtablwho5kv2e: + resolution: {integrity: sha512-k7HLnKBM9GsY/RdqUWqe233QNFa2JtE+G4UyX8BsYLquWOkBfgJvI+f2gSUye1zLS8e1bFwz5BBIljTQMb/Smw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/checkbox': 2.0.2_eyugdzcckvrfjzqf6jbbg6u4am - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 + '@chakra-ui/checkbox': 2.1.0_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/system/2.1.1_t4r7icl7x3elshpaxc4xm7jrem: - resolution: {integrity: sha512-hiIz/OsWtKgtp8dSfrjWxvGBFEpBbOuTB0uvq2zpEnRSU7cjFYOnGRVdTf+gE6KiuUPw6/rHgoczbQx4ZOGmDw==} + /@chakra-ui/system/2.1.3_fdnqutfacy7v3gmlcm66flps3q: + resolution: {integrity: sha512-f9GfJr7HGxxhyAbXmka/k/mPsLl8wl+5fZUWglfRg4iddmsuYQcJEYg8+ewCyr7MA1Ddw9bPVgsC5uf/KYlo3w==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18 || 18' dependencies: - '@chakra-ui/color-mode': 2.0.3_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/styled-system': 2.1.1 - '@chakra-ui/utils': 2.0.1 - '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u - '@emotion/styled': 11.8.1_ev7eaohrznmneepri7xttmcb7i - react: 18.1.0 + '@chakra-ui/color-mode': 2.0.4_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/styled-system': 2.2.0 + '@chakra-ui/utils': 2.0.2 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + react: 18.2.0 react-fast-compare: 3.2.0 dev: false - /@chakra-ui/table/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-Ns0RDJCHYi2826lpWo1fWmySDRAya4BA6Z34IJ0S1UmWyHe1/xwEbNMoROMIrIe+dRtfwD9B1oiPPQlpvB4rrg==} + /@chakra-ui/table/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-VkcXAmvNlhWXZ5qPUAVqW4DKARSNdCN4Ib8ViiX8lXqBUHK+IBAe2s6iB70FwzdaPqwrw2LndqRrLg/4w4FE3w==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/tabs/2.0.2_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-WKm+jmakV7Gssgw/3yZGU/yx7akn+iSQv92sFeUvVbiRsVwT2cE3EeDzdcOO7X++EchvUekjejx5gFY1x+jrXw==} + /@chakra-ui/tabs/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-iBi7hSiNv7y9Zu0eR0b4SCBdKoY/5aOKhToZIm0iv5qJPunN3ap3zVAHL36ucPAIv19rC0GaOwqLsNQErMkMYQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/clickable': 2.0.1_react@18.1.0 - '@chakra-ui/descendant': 3.0.1_react@18.1.0 - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/clickable': 2.0.2_react@18.2.0 + '@chakra-ui/descendant': 3.0.2_react@18.2.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/tag/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-A+haLDV1IEefAP41JNFtaPa74npiZZFd5sK/ZjXJnREYXW2MzcMN9Kype2jRIaR6zJ8iq9yHvxN2AfewMB1o9g==} + /@chakra-ui/tag/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-/TqjwPNTUjDofvTEulrNELS6/ls1n54YMFXMwGNwrEbNlJPgoE555t1N3jpdoNKH4kLhvkFcC6lfkDdWwnZ1BA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/textarea/2.0.2_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-oFZn62fhVIagDq1CWeiVeKDM6dBJlC5AuQ9PoGwo1FgTGh038a+HT9UeriML9vEwvTcleepBeLyTVNl0/H9+Xg==} + /@chakra-ui/textarea/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-esOJa0vSrSsgDJGjPAbnPNPvemN1QUKYFYLFTOM/LR6BzI21EL8PX4Bh3AJM6aJK0GjeR0+SeKMuuuLL4oFnmw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/theme-tools/2.0.1_@chakra-ui+system@2.1.1: - resolution: {integrity: sha512-CQn87uYxe3X8JmTAA52+jVS3A9FtioT4NDRUISN178yRnOly1Z6s01iYlbT37LemLSP2T3bCnHqFhdQKgS5yew==} + /@chakra-ui/theme-tools/2.0.2_@chakra-ui+system@2.1.3: + resolution: {integrity: sha512-E01ZJZB4XVqkvn2hOXKQ/uVkvaPLQN1SyxAYXjFZGyZ1ppBLl362EWfY9IgWNzDITgq9MCJyQFfm2mXwQDUNzA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 '@ctrl/tinycolor': 3.4.1 dev: false - /@chakra-ui/theme/2.0.3_@chakra-ui+system@2.1.1: - resolution: {integrity: sha512-zHNMYFlDSDI14+Fqao8/8b2qa9wr0zJV9mWVxGUvt4J6NNgD37LSrzhEgx/HM6cD/el++1UMrKCGcqPqO3jexw==} + /@chakra-ui/theme/2.1.0_@chakra-ui+system@2.1.3: + resolution: {integrity: sha512-OHvKCQ/QUHc3ZVgKKshYkvholiDhPf7vEPZcNOi5rnaFSP4PzWd00d1i7HOXYSyv/TGDOBRzs1IcodKfG6FzgA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/anatomy': 2.0.0_@chakra-ui+system@2.1.1 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/theme-tools': 2.0.1_@chakra-ui+system@2.1.1 - '@chakra-ui/utils': 2.0.1 + '@chakra-ui/anatomy': 2.0.1_@chakra-ui+system@2.1.3 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 + '@chakra-ui/utils': 2.0.2 dev: false - /@chakra-ui/toast/2.0.5_yn5echb7wvba63k2cyn3aupfu4: - resolution: {integrity: sha512-J0iKPvq8kp3mUWXu4dkhGUlsZsMvHIWI7r/jpumMpNe39ngxOYNpRykzrHKW4/l96Uc0OhLzZhB5iIp6rq/bDg==} + /@chakra-ui/toast/2.1.0_cdgnzpyqhm67cfidphy3xhoqqi: + resolution: {integrity: sha512-xXgwzff/gtNrq2HGGG3fuqcfRQEIObluHzHhqgS3gesf8KYut/5ZJoLdgV4RKE+NYgJIi77BFUcQDiLJttxxPA==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/alert': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/close-button': 2.0.1_gvhyduxkh7lachkwscygibi2bq - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/theme': 2.0.3_@chakra-ui+system@2.1.1 - '@chakra-ui/transition': 2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i - '@chakra-ui/utils': 2.0.1 - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + '@chakra-ui/alert': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 + '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: - '@emotion/react' - '@emotion/styled' dev: false - /@chakra-ui/tooltip/2.0.1_jmmv256z2f2q7oqs26eg46msx4: - resolution: {integrity: sha512-k/8dspyoJd004gqeqYYMmTjsWFJPgq9koASH/RZ+39qL6ZuwtRbDlWjm4ffAH/Fr9EQNJRBE9Rz2W0WjEuKo8Q==} + /@chakra-ui/tooltip/2.0.2_qafgcfmixptan4yq35qlzbgnj4: + resolution: {integrity: sha512-oK6gXybFe/MmHBXbd9w3XgNChVHQ9BeLW0IAtFeDyeHn5gJg0iKul/SNmJkD73Iyv/j+BsmBMn98mbNYQkeMQA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.1_react@18.1.0 - '@chakra-ui/popper': 3.0.1_react@18.1.0 - '@chakra-ui/portal': 2.0.1_ef5jwxihqo6n7gxfmzogljlgcm - '@chakra-ui/react-utils': 2.0.0_react@18.1.0 - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - '@chakra-ui/visually-hidden': 2.0.1_gvhyduxkh7lachkwscygibi2bq - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/popper': 3.0.2_react@18.2.0 + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/transition/2.0.1_wrkv3ggrvwrrhm2yikaa6jng3i: - resolution: {integrity: sha512-EI0Z61Mk7ZdiWxHA0twgtgGIUUcWGvL7GsVQrDeJQl7u2Boq+isONLWqYPqZReOXRGoSFBiKZOaxnzrmmD3OBg==} + /@chakra-ui/transition/2.0.2_pas2gixxmlyrpeqapn6u4ylzzq: + resolution: {integrity: sha512-s98gDFIGbv60WMyniVjy381NXxgS1Y/6RACR1Z1pReC5XZLY5GyMqeRYyFCAeE78qKkqon77Y8EDPQXl6X78dw==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.1 - framer-motion: 6.3.10_ef5jwxihqo6n7gxfmzogljlgcm - react: 18.1.0 + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/utils/2.0.1: - resolution: {integrity: sha512-5yvIyzskfEi7nNWC0VR0T7KtOEZyy/5QwhbLZ/WD0zutV+SddLzmS7NnnnYvyuyT4SaNx/asKLerH2ucTz1pYA==} + /@chakra-ui/utils/2.0.2: + resolution: {integrity: sha512-9AC/ir9zm0shgFG7kdzOKUH2Wx5VB71M3uRMEsMZf75YlhhiU7AvBNtWXnJu+CBiTi41rKa5A+2ImMOsuPfGbA==} dependencies: '@types/lodash.mergewith': 4.6.6 css-box-model: 1.2.1 @@ -4857,15 +4890,15 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/visually-hidden/2.0.1_gvhyduxkh7lachkwscygibi2bq: - resolution: {integrity: sha512-++NVj6mt110Zw+RtMr/cZLwK92WS5shL9kgGdtaXiIu6jTtcGMmKzq8YhBUY3Jb0BF3qgqSV36/JdIOrFETAKA==} + /@chakra-ui/visually-hidden/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-zYeLzaeouPbBBPDBAdRwj+jyxLJbtU6vW6r4kSQKfHoQPxJ+1A1HxRmDrj4FZJXk0CnBc4m7HF6Zuy7A5eCokg==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.1_t4r7icl7x3elshpaxc4xm7jrem - '@chakra-ui/utils': 2.0.1 - react: 18.1.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false /@changesets/apply-release-plan/6.0.0: @@ -4886,8 +4919,8 @@ packages: semver: 5.7.1 dev: true - /@changesets/assemble-release-plan/5.1.2: - resolution: {integrity: sha512-nOFyDw4APSkY/vh5WNwGEtThPgEjVShp03PKVdId6wZTJALVcAALCSLmDRfeqjE2z9EsGJb7hZdDlziKlnqZgw==} + /@changesets/assemble-release-plan/5.1.3: + resolution: {integrity: sha512-I+TTkUoqvxBEuDLoJfJYKDXIJ+nyiTbVJ8KGhpXEsLq4N/ms/AStSbouJwF2d/p3cB+RCPr5+gXh31GSN4kA7w==} dependencies: '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 @@ -4903,18 +4936,18 @@ packages: '@changesets/types': 5.0.0 dev: true - /@changesets/cli/2.22.0: - resolution: {integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==} + /@changesets/cli/2.23.0: + resolution: {integrity: sha512-Gi3tMi0Vr6eNd8GX6q73tbOm9XOzGfuLEm4PYVeWG2neg5DlRGNOjYwrFULJ/An3N9MHtHn4r5h1Qvnju9Ijug==} hasBin: true dependencies: '@babel/runtime': 7.18.3 '@changesets/apply-release-plan': 6.0.0 - '@changesets/assemble-release-plan': 5.1.2 + '@changesets/assemble-release-plan': 5.1.3 '@changesets/changelog-git': 0.1.11 '@changesets/config': 2.0.0 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.2 - '@changesets/get-release-plan': 3.0.8 + '@changesets/get-release-plan': 3.0.9 '@changesets/git': 1.3.2 '@changesets/logger': 0.0.5 '@changesets/pre': 1.0.11 @@ -4924,6 +4957,7 @@ packages: '@manypkg/get-packages': 1.1.3 '@types/is-ci': 3.0.0 '@types/semver': 6.2.3 + ansi-colors: 4.1.3 chalk: 2.4.2 enquirer: 2.3.6 external-editor: 3.1.0 @@ -4938,7 +4972,7 @@ packages: semver: 5.7.1 spawndamnit: 2.0.0 term-size: 2.2.1 - tty-table: 2.8.13 + tty-table: 4.1.6 dev: true /@changesets/config/2.0.0: @@ -4969,11 +5003,11 @@ packages: semver: 5.7.1 dev: true - /@changesets/get-release-plan/3.0.8: - resolution: {integrity: sha512-TJYiWNuP0Lzu2dL/KHuk75w7TkiE5HqoYirrXF7SJIxkhlgH9toQf2C7IapiFTObtuF1qDN8HJAX1CuIOwXldg==} + /@changesets/get-release-plan/3.0.9: + resolution: {integrity: sha512-5C1r4DcOjVxcCvPmXpymeyT6mdSTLCNiB2L+5uf19BRkDKndJdIQorH5Fe2XBR2nHUcZQFT+2TXDzCepat969w==} dependencies: '@babel/runtime': 7.18.3 - '@changesets/assemble-release-plan': 5.1.2 + '@changesets/assemble-release-plan': 5.1.3 '@changesets/config': 2.0.0 '@changesets/pre': 1.0.11 '@changesets/read': 0.5.5 @@ -5073,6 +5107,17 @@ packages: '@jridgewell/trace-mapping': 0.3.9 dev: true + /@csstools/selector-specificity/2.0.1_444rcjjorr3kpoqtvoodsr46pu: + resolution: {integrity: sha512-aG20vknL4/YjQF9BSV7ts4EWm/yrjagAN7OWBNmlbEOUiu0llj4OGrFoOKK3g2vey4/p2omKCoHrWtPxSwV3HA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + postcss-selector-parser: ^6.0.10 + dependencies: + postcss: 8.4.14 + postcss-selector-parser: 6.0.10 + dev: true + /@ctrl/tinycolor/3.4.1: resolution: {integrity: sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw==} engines: {node: '>=10'} @@ -5100,18 +5145,18 @@ packages: transitivePeerDependencies: - supports-color - /@emotion/babel-plugin/11.9.2_@babel+core@7.18.2: + /@emotion/babel-plugin/11.9.2_@babel+core@7.18.5: resolution: {integrity: sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 - '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.5 '@babel/runtime': 7.18.3 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.5 - '@emotion/serialize': 1.0.3 + '@emotion/serialize': 1.0.4 babel-plugin-macros: 2.8.0 convert-source-map: 1.8.0 escape-string-regexp: 4.0.0 @@ -5130,6 +5175,16 @@ packages: stylis: 4.0.13 dev: false + /@emotion/cache/11.9.3: + resolution: {integrity: sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg==} + dependencies: + '@emotion/memoize': 0.7.5 + '@emotion/sheet': 1.1.1 + '@emotion/utils': 1.1.0 + '@emotion/weak-memoize': 0.2.5 + stylis: 4.0.13 + dev: false + /@emotion/hash/0.8.0: resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} dev: false @@ -5147,6 +5202,12 @@ packages: dependencies: '@emotion/memoize': 0.7.5 + /@emotion/is-prop-valid/1.1.3: + resolution: {integrity: sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==} + dependencies: + '@emotion/memoize': 0.7.5 + dev: false + /@emotion/memoize/0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} dev: false @@ -5155,7 +5216,7 @@ packages: /@emotion/memoize/0.7.5: resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==} - /@emotion/react/11.9.0_mojt4vfvzjgczlgs4u436xt75u: + /@emotion/react/11.9.0_7eu627umq2cbnjxmysy5yb5jqq: resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -5167,16 +5228,40 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/runtime': 7.18.3 - '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.2 + '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.5 '@emotion/cache': 11.7.1 '@emotion/serialize': 1.0.3 '@emotion/utils': 1.1.0 '@emotion/weak-memoize': 0.2.5 - '@types/react': 18.0.12 + '@types/react': 18.0.14 hoist-non-react-statics: 3.3.2 - react: 18.1.0 + react: 18.2.0 + dev: false + + /@emotion/react/11.9.3_7eu627umq2cbnjxmysy5yb5jqq: + resolution: {integrity: sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ==} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/react': '*' + react: '>=16.8.0 || 18' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/react': + optional: true + dependencies: + '@babel/core': 7.18.5 + '@babel/runtime': 7.18.3 + '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.5 + '@emotion/cache': 11.9.3 + '@emotion/serialize': 1.0.4 + '@emotion/utils': 1.1.0 + '@emotion/weak-memoize': 0.2.5 + '@types/react': 18.0.14 + hoist-non-react-statics: 3.3.2 + react: 18.2.0 dev: false /@emotion/serialize/1.0.3: @@ -5189,12 +5274,26 @@ packages: csstype: 3.1.0 dev: false + /@emotion/serialize/1.0.4: + resolution: {integrity: sha512-1JHamSpH8PIfFwAMryO2bNka+y8+KA5yga5Ocf2d7ZEiJjb7xlLW7aknBGZqJLajuLOvJ+72vN+IBSwPlXD1Pg==} + dependencies: + '@emotion/hash': 0.8.0 + '@emotion/memoize': 0.7.5 + '@emotion/unitless': 0.7.5 + '@emotion/utils': 1.1.0 + csstype: 3.1.0 + dev: false + /@emotion/sheet/1.1.0: resolution: {integrity: sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==} dev: false - /@emotion/styled/11.8.1_ev7eaohrznmneepri7xttmcb7i: - resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} + /@emotion/sheet/1.1.1: + resolution: {integrity: sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA==} + dev: false + + /@emotion/styled/11.9.3_qbwmrvb6ojitbfrbjtglmejmbm: + resolution: {integrity: sha512-o3sBNwbtoVz9v7WB1/Y/AmXl69YHmei2mrVnK7JgyBJ//Rst5yqPZCecEJlMlJrFeWHp+ki/54uN265V2pEcXA==} peerDependencies: '@babel/core': ^7.0.0 '@emotion/react': ^11.0.0-rc.0 @@ -5206,15 +5305,15 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/runtime': 7.18.3 - '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.2 - '@emotion/is-prop-valid': 1.1.2 - '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u - '@emotion/serialize': 1.0.3 + '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.5 + '@emotion/is-prop-valid': 1.1.3 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/serialize': 1.0.4 '@emotion/utils': 1.1.0 - '@types/react': 18.0.12 - react: 18.1.0 + '@types/react': 18.0.14 + react: 18.2.0 dev: false /@emotion/stylis/0.8.5: @@ -5330,7 +5429,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -5351,7 +5450,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -5396,7 +5495,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -5433,7 +5532,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 jest-mock: 27.5.1 dev: true @@ -5443,7 +5542,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 16.11.38 + '@types/node': 17.0.40 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -5472,7 +5571,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -5531,7 +5630,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -5554,7 +5653,7 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -5590,7 +5689,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true @@ -5713,12 +5812,12 @@ packages: - supports-color dev: true - /@mdx-js/react/1.6.22_react@18.1.0: + /@mdx-js/react/1.6.22_react@18.2.0: resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: react: ^16.13.1 || ^17.0.0 || 18 dependencies: - react: 18.1.0 + react: 18.2.0 dev: true /@mdx-js/util/1.6.22: @@ -5741,7 +5840,7 @@ packages: set-cookie-parser: 2.5.0 dev: false - /@mswjs/data/0.10.1_typescript@4.7.3: + /@mswjs/data/0.10.1_typescript@4.7.4: resolution: {integrity: sha512-ne1vRWjUK9W24mCvuTH0EGPYq1RM01NMF4UtjvrLuQYfCf2nKEoy+iw+/j5EzXxZv6G+VnKTtAlYm63cPWd+sw==} dependencies: '@types/lodash': 4.14.182 @@ -5758,7 +5857,7 @@ packages: strict-event-emitter: 0.2.4 uuid: 8.3.2 optionalDependencies: - msw: 0.42.1_typescript@4.7.3 + msw: 0.42.1_typescript@4.7.4 transitivePeerDependencies: - encoding - supports-color @@ -5824,17 +5923,17 @@ packages: mkdirp: 1.0.4 rimraf: 3.0.2 - /@nrwl/cli/14.1.9_typescript@4.7.3: - resolution: {integrity: sha512-7T03yVUNxXXR478L9TRRYlg1gsxvERpikSa1dppW+YjL0K4L2PLkZEPJqDMbrPmyAryeZpUCn9vLVOIThW47rA==} + /@nrwl/cli/14.3.6: + resolution: {integrity: sha512-MNCBzM3ZDsujEc5crltH/kEyNBKx6DofLHdpzY1EoiY+yF57W7E1B6ERkVUGDc52sR4snEUKpQLXdVFjwP+z8A==} dependencies: - nx: 14.1.9_typescript@4.7.3 + nx: 14.3.6 transitivePeerDependencies: - - supports-color - - typescript + - '@swc-node/register' + - '@swc/core' dev: true - /@nrwl/nx-cloud/14.0.5: - resolution: {integrity: sha512-ADLGWiorW7sHT9hJw1OrxCG9JE9ALYfzNtXWJbvn4ulERul3hSsj+7P+uyUBtflpCrG1bmw5SxkQ77EH/DkY5A==} + /@nrwl/nx-cloud/14.1.2: + resolution: {integrity: sha512-ZMxxx+NNp06IDPJ8cbQDPNMNRuH+pM/RoC7ZsCriotDG3kpzour41OGf0UpnXSXcTJPlDyHG6Xi0XuPdjmpNSw==} hasBin: true dependencies: axios: 0.21.4 @@ -5846,14 +5945,14 @@ packages: - debug dev: true - /@nrwl/tao/14.1.9_typescript@4.7.3: - resolution: {integrity: sha512-XUmnYJIrLd2Lui94LsVbXteFhWpNHTjIDDlt/krysEJD8lqE8uoD44uvjKaqIMZXTH8AOH1M4leWraqBSVU0ig==} + /@nrwl/tao/14.3.6: + resolution: {integrity: sha512-g3y6VRq4wNtbFZIclJwRR/1hcTesx6h64g7h80VWtyRw0pVq/0zAjb8abeQSTDLM15uc1pQJYPEfsR/KgI3Sow==} hasBin: true dependencies: - nx: 14.1.9_typescript@4.7.3 + nx: 14.3.6 transitivePeerDependencies: - - supports-color - - typescript + - '@swc-node/register' + - '@swc/core' dev: true /@open-draft/until/1.0.3: @@ -5955,16 +6054,16 @@ packages: resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} dev: false - /@react-aria/ssr/3.2.0_react@18.1.0: + /@react-aria/ssr/3.2.0_react@18.2.0: resolution: {integrity: sha512-wwJFdkl+Q8NU5yJ4NvdAOqx5LM3QtUVoSjuK7Ey8jZ4WS4bB0EqT3Kr3IInBs257HzZ5nXCiKXKE4NGXXuIRWA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 - react: 18.1.0 + react: 18.2.0 dev: false - /@reduxjs/toolkit/1.8.2_ctm756ikdwcjcvyfxxwskzbr6q: + /@reduxjs/toolkit/1.8.2_kkwg4cbsojnjnupd3btipussee: resolution: {integrity: sha512-CtPw5TkN1pHRigMFCOS/0qg3b/yfPV5qGCsltVnIz7bx4PKTJlGHYfIxm97qskLknMzuGfjExaYdXJ77QTL0vg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18 || 18 @@ -5976,14 +6075,14 @@ packages: optional: true dependencies: immer: 9.0.14 - react: 18.1.0 - react-redux: 8.0.2_zlkrlo2xsersbascmmsr65fm34 + react: 18.2.0 + react-redux: 8.0.2_fzknh3pugl53jp7xsetxkg5ani redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 reselect: 4.1.5 dev: false - /@reduxjs/toolkit/1.8.2_react@18.1.0: + /@reduxjs/toolkit/1.8.2_react@18.2.0: resolution: {integrity: sha512-CtPw5TkN1pHRigMFCOS/0qg3b/yfPV5qGCsltVnIz7bx4PKTJlGHYfIxm97qskLknMzuGfjExaYdXJ77QTL0vg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18 || 18 @@ -5995,22 +6094,22 @@ packages: optional: true dependencies: immer: 9.0.14 - react: 18.1.0 + react: 18.2.0 redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 reselect: 4.1.5 dev: true - /@restart/hooks/0.4.7_react@18.1.0: + /@restart/hooks/0.4.7_react@18.2.0: resolution: {integrity: sha512-ZbjlEHcG+FQtpDPHd7i4FzNNvJf2enAwZfJbpM8CW7BhmOAbsHpZe3tsHwfQUrBuyrxWqPYp2x5UMnilWcY22A==} peerDependencies: react: '>=16.8.0 || 18' dependencies: dequal: 2.0.2 - react: 18.1.0 + react: 18.2.0 dev: false - /@restart/ui/1.2.0_ef5jwxihqo6n7gxfmzogljlgcm: + /@restart/ui/1.2.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-oIh2t3tG8drZtZ9SlaV5CY6wGsUViHk8ZajjhcI+74IQHyWy+AnxDv8rJR5wVgsgcgrPBUvGNkC1AEdcGNPaLQ==} peerDependencies: react: '>=16.14.0 || 18' @@ -6018,18 +6117,18 @@ packages: dependencies: '@babel/runtime': 7.18.3 '@popperjs/core': 2.11.5 - '@react-aria/ssr': 3.2.0_react@18.1.0 - '@restart/hooks': 0.4.7_react@18.1.0 + '@react-aria/ssr': 3.2.0_react@18.2.0 + '@restart/hooks': 0.4.7_react@18.2.0 '@types/warning': 3.0.0 dequal: 2.0.2 dom-helpers: 5.2.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - uncontrollable: 7.2.1_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + uncontrollable: 7.2.1_react@18.2.0 warning: 4.0.3 dev: false - /@rjsf/core/4.2.0_react@18.1.0: + /@rjsf/core/4.2.0_react@18.2.0: resolution: {integrity: sha512-bGWWCZjXHhBCkzag1Yh6F7a15/D6AqKRyks1szYWdCe+4jwWU3maC3apUxHJlHFRz3V1aBW6j6i/UB6zHmFXLQ==} engines: {node: '>=12'} peerDependencies: @@ -6043,10 +6142,10 @@ packages: lodash: 4.17.21 nanoid: 3.3.4 prop-types: 15.8.1 - react: 18.1.0 + react: 18.2.0 react-is: 16.13.1 - /@rollup/plugin-babel/5.3.1_xrrjiapkmykkmovg76xtzegu3a: + /@rollup/plugin-babel/5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -6057,44 +6156,44 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 - '@rollup/pluginutils': 3.1.0_rollup@2.75.5 - rollup: 2.75.5 + '@rollup/pluginutils': 3.1.0_rollup@2.75.6 + rollup: 2.75.6 dev: true - /@rollup/plugin-commonjs/22.0.0_rollup@2.75.5: + /@rollup/plugin-commonjs/22.0.0_rollup@2.75.6: resolution: {integrity: sha512-Ktvf2j+bAO+30awhbYoCaXpBcyPmJbaEUYClQns/+6SNCYFURbvBiNbWgHITEsIgDDWCDUclWRKEuf8cwZCFoQ==} engines: {node: '>= 12.0.0'} peerDependencies: rollup: ^2.68.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.5 + '@rollup/pluginutils': 3.1.0_rollup@2.75.6 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 resolve: 1.22.0 - rollup: 2.75.5 + rollup: 2.75.6 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.5: + /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.6: resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^2.42.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.5 + '@rollup/pluginutils': 3.1.0_rollup@2.75.6 '@types/resolve': 1.17.1 deepmerge: 4.2.2 is-builtin-module: 3.1.0 is-module: 1.0.0 resolve: 1.22.0 - rollup: 2.75.5 + rollup: 2.75.6 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.75.5: + /@rollup/pluginutils/3.1.0_rollup@2.75.6: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -6103,7 +6202,7 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 2.75.5 + rollup: 2.75.6 dev: true /@rollup/pluginutils/4.2.1: @@ -6149,8 +6248,8 @@ packages: resolution: {integrity: sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==} dev: true - /@storybook/addon-actions/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-gTkPr2FYX+vySZKEg5Wq7uHPkVUq3hJ7ZKvGls+/xjgaTwfu3iIly53FEFUl8A6kMQ+4gtTC+YRr3cSJgXMbAg==} + /@storybook/addon-actions/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-wDYm3M1bN+zcYZV3Q24M03b/P8DDpvj1oSoY6VLlxDAi56h8qZB/voeIS2I6vWXOB79C5tbwljYNQO0GsufS0g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6160,22 +6259,22 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-events': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y core-js: 3.22.8 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 polished: 4.2.2 prop-types: 15.8.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-inspector: 5.1.1_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-inspector: 5.1.1_react@18.2.0 regenerator-runtime: 0.13.9 telejson: 6.0.8 ts-dedent: 2.2.0 @@ -6183,8 +6282,8 @@ packages: uuid-browser: 3.1.0 dev: true - /@storybook/addon-backgrounds/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-ryisDpxbIEZbYJkQWU5xvsj940jhWrWizedFsY9g/qBIBi33UrW/H1hKZQtmg0bzuNTgYcBjRy50ikJgH/eKAQ==} + /@storybook/addon-backgrounds/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-9k+GiY5aiANLOct34ar29jqgdi5ZpCqpZ86zPH0GsEC6ifH6nzP4trLU0vFUe260XDCvB4g8YaI7JZKPhozERg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6194,25 +6293,25 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-events': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y core-js: 3.22.8 global: 4.4.0 memoizerific: 1.11.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/addon-controls/6.5.7_bxmn6y3pweymjo6ekelj24wybq: - resolution: {integrity: sha512-1JGphHk1gcLLpkft/D5BkygXwelSdWQqvXnfFc62BVqvzxv8hCF4zuUosKLWMlB/nzVbd6W4oEDV/Mqmt6h/7w==} + /@storybook/addon-controls/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-VvjkgK32bGURKyWU2No6Q2B0RQZjLZk8D3neVNCnrWxwrl1G82StegxjRPn/UZm9+MZVPvTvI46nj1VdgOktnw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6222,19 +6321,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/node-logger': 6.5.7 - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/node-logger': 6.5.9 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y core-js: 3.22.8 lodash: 4.17.21 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 ts-dedent: 2.2.0 transitivePeerDependencies: - eslint @@ -6245,8 +6344,8 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.5.7_o33xyr6fnetv6pqyclkfmq3bn4: - resolution: {integrity: sha512-RghRpimJOJl9c/H6qvCCD0zHLETBIVWXsdYJF8GiY6iTKd+tgQYizuuoBT4f3PAMEMHVhmvWSjkkFLxKxzQLjQ==} + /@storybook/addon-docs/6.5.9_kegi444pbrxunz45jv6pd3z7ki: + resolution: {integrity: sha512-9lwOZyiOJFUgGd9ADVfcgpels5o0XOXqGMeVLuzT1160nopbZjNjo/3+YLJ0pyHRPpMJ4rmq2+vxRQR6PVRgPg==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6259,31 +6358,31 @@ packages: react-dom: optional: true dependencies: - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 '@jest/transform': 26.6.2 - '@mdx-js/react': 1.6.22_react@18.1.0 - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@storybook/core-events': 6.5.7 + '@mdx-js/react': 1.6.22_react@18.2.0 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.2 - '@storybook/node-logger': 6.5.7 - '@storybook/postinstall': 6.5.7 - '@storybook/preview-web': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/source-loader': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - babel-loader: 8.2.5_dzrarqmejens5o5lr5bdn3kdtu + '@storybook/docs-tools': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.5 + '@storybook/node-logger': 6.5.9 + '@storybook/postinstall': 6.5.9 + '@storybook/preview-web': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/source-loader': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke core-js: 3.22.8 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 remark-external-links: 8.0.0 remark-slug: 6.1.0 @@ -6300,8 +6399,8 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.7_o33xyr6fnetv6pqyclkfmq3bn4: - resolution: {integrity: sha512-JZ80W9PgZOEUp2SjhBYyYHxQduxSIe4n9Wdoy8XDtV28152jDNms6UPjFeEVb+a9rVybYOwWnOnEhBWF6ZfJ/g==} + /@storybook/addon-essentials/6.5.9_kegi444pbrxunz45jv6pd3z7ki: + resolution: {integrity: sha512-V9ThjKQsde4A2Es20pLFBsn0MWx2KCJuoTcTsANP4JDcbvEmj8UjbDWbs8jAU+yzJT5r+CI6NoWmQudv12ZOgw==} peerDependencies: '@babel/core': ^7.9.6 '@storybook/angular': '*' @@ -6357,22 +6456,22 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.18.2 - '@storybook/addon-actions': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/addon-backgrounds': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/addon-controls': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@storybook/addon-docs': 6.5.7_o33xyr6fnetv6pqyclkfmq3bn4 - '@storybook/addon-measure': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/addon-outline': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/addon-toolbars': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/addon-viewport': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@storybook/node-logger': 6.5.7 + '@babel/core': 7.18.5 + '@storybook/addon-actions': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-backgrounds': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-controls': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/addon-docs': 6.5.9_kegi444pbrxunz45jv6pd3z7ki + '@storybook/addon-measure': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-outline': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-toolbars': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-viewport': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/node-logger': 6.5.9 core-js: 3.22.8 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 webpack: 5.73.0 @@ -6386,8 +6485,8 @@ packages: - webpack-command dev: true - /@storybook/addon-measure/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-NMth6CErySKQ9WnfzMZ4nelHa2bBzZ60ZgsDq5s5dKHhJzZPm2nclmGAGE+VhqI/USe8b1fnjKFeHH485T8J2g==} + /@storybook/addon-measure/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-0aA22wD0CIEUccsEbWkckCOXOwr4VffofMH1ToVCOeqBoyLOMB0gxFubESeprqM54CWsYh2DN1uujgD6508cwA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6397,20 +6496,20 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-events': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.22.8 global: 4.4.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: true - /@storybook/addon-outline/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-qTu19FnZz+rjY7SxPOgiQkuAxHRNRhUYgvUwI+ep0ZQcBddsRgniQjzXtErlUMeVoMZ63mDuOaJp67ltkriAOQ==} + /@storybook/addon-outline/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-oJ1DK3BDJr6aTlZc9axfOxV1oDkZO7hOohgUQDaKO1RZrSpyQsx2ViK2X6p/W7JhFJHKh7rv+nGCaVlLz3YIZA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6420,22 +6519,22 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-events': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.22.8 global: 4.4.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 dev: true - /@storybook/addon-toolbars/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-+MUG5t4isQNf+q7BpEsGwuYAvYgs9XTdzzdvL/9jedQ7udJsWmG1q9a6m9+iQGPr/WK+88F2kgSOknpib3J21w==} + /@storybook/addon-toolbars/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-6JFQNHYVZUwp17p5rppc+iQJ2QOIWPTF+ni1GMMThjc84mzXs2+899Sf1aPFTvrFJTklmT+bPX6x4aUTouVa1w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6445,19 +6544,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y core-js: 3.22.8 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/addon-viewport/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-8VmSTGKY3+9kZ09THC7546OaFbjLu5kEAGU5ZFSZaNlsJwRg7bC3bScKbnyX5EhihgZ3W8oJt/eMAIqXKHxA8g==} + /@storybook/addon-viewport/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-thKS+iw6M7ueDQQ7M66STZ5rgtJKliAcIX6UCopo0Ffh4RaRYmX6MCjqtvBKk8joyXUvm9SpWQemJD9uBQrjgw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6467,62 +6566,62 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-events': 6.5.7 - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y core-js: 3.22.8 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/addons/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-tUZ2c1uegUcwY31ztNQZGU/HUwAEEGIR8fEOvvO8S0TNQGoo6cwFtZmWBh3mTSRGcmzK2SNBjFHZua5Ee9TefA==} + /@storybook/addons/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-adwdiXg+mntfPocLc1KXjZXyLgGk7Aac699Fwe+OUYPEC5tW347Rm/kFatcE556d42o5czcRiq3ZSIGWnm9ieQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/channels': 6.5.7 - '@storybook/client-logger': 6.5.7 - '@storybook/core-events': 6.5.7 + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/webpack-env': 1.17.0 core-js: 3.22.8 global: 4.4.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/api/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-QCNypz4X+lYuFW7EzvRPXMf8uS3gfSIV8sqXtEe5XoMb0HQXhy6AGU7/4iAeuUimtETqLTxq+kOxaSg4uPowxg==} + /@storybook/api/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-9ylztnty4Y+ALU/ehW3BML9czjCAFsWvrwuCi6UgcwNjswwjSX3VRLhfD1KT3pl16ho//95LgZ0LnSwROCcPOA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/channels': 6.5.7 - '@storybook/client-logger': 6.5.7 - '@storybook/core-events': 6.5.7 + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y core-js: 3.22.8 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 store2: 2.13.2 telejson: 6.0.8 @@ -6530,8 +6629,8 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.5.7_bxmn6y3pweymjo6ekelj24wybq: - resolution: {integrity: sha512-8OB3mZ2L6kQBiAXlkhna/MHREXIPtqXi2AJLT3+bTzBlqkusH+PwMZxWHbcPl1vZrlNQBC40Elx9tdynGkVQ6g==} + /@storybook/builder-webpack4/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-YOeA4++9uRZ8Hog1wC60yjaxBOiI1FRQNtax7b9E7g+kP8UlSCPCGcv4gls9hFmzbzTOPfQTWnToA9Oa6jzRVw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6540,49 +6639,49 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.2 - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/channel-postmessage': 6.5.7 - '@storybook/channels': 6.5.7 - '@storybook/client-api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@storybook/core-events': 6.5.7 - '@storybook/node-logger': 6.5.7 - '@storybook/preview-web': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/router': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@babel/core': 7.18.5 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/channels': 6.5.9 + '@storybook/client-api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/core-events': 6.5.9 + '@storybook/node-logger': 6.5.9 + '@storybook/preview-web': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/ui': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@types/node': 16.11.38 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.41 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.5_lzsemofhph6vepnub4bnemnm6m + babel-loader: 8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.22.8 css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_ixplphslglgm26g7hajb6yf2fu + fork-ts-checker-webpack-plugin: 4.1.6_nsapsdlf2mgloyd736rc2bk2vq glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.7.3 + pnp-webpack-plugin: 1.6.4_typescript@4.7.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.7.3 + typescript: 4.7.4 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -6599,49 +6698,49 @@ packages: - webpack-command dev: true - /@storybook/channel-postmessage/6.5.7: - resolution: {integrity: sha512-X4UPgm4O0503CsSnqAM1ht/6R9ofnoMcqFZxYRu9PSvHlhaFR9V9AU4VjQhakH7alFzRsAhcAV2PFVTAdWhgtA==} + /@storybook/channel-postmessage/6.5.9: + resolution: {integrity: sha512-pX/0R8UW7ezBhCrafRaL20OvMRcmESYvQQCDgjqSzJyHkcG51GOhsd6Ge93eJ6QvRMm9+w0Zs93N2VKjVtz0Qw==} dependencies: - '@storybook/channels': 6.5.7 - '@storybook/client-logger': 6.5.7 - '@storybook/core-events': 6.5.7 + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 core-js: 3.22.8 global: 4.4.0 qs: 6.10.3 telejson: 6.0.8 dev: true - /@storybook/channel-websocket/6.5.7: - resolution: {integrity: sha512-C+l6t3ZgHzU8gL8GJ8c4GMttJglGJIwq1LtJJKnGzx2kJCD0HRMMqc/qFS2K2EwP99hLwwGIlCpom3UZ1aEanA==} + /@storybook/channel-websocket/6.5.9: + resolution: {integrity: sha512-xtHvSNwuOhkgALwVshKWsoFhDmuvcosdYfxcfFGEiYKXIu46tRS5ZXmpmgEC/0JAVkVoFj5nL8bV7IY5np6oaA==} dependencies: - '@storybook/channels': 6.5.7 - '@storybook/client-logger': 6.5.7 + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 core-js: 3.22.8 global: 4.4.0 telejson: 6.0.8 dev: true - /@storybook/channels/6.5.7: - resolution: {integrity: sha512-v880fWBpWgiWrDmZesTIstNfMZhrPfgXAtLNcL5Z89NAPahsHskOSszc0BDxKN3gb+ZeTKUqHxY57dQdp+1rhg==} + /@storybook/channels/6.5.9: + resolution: {integrity: sha512-FvGA35nV38UPXWOl9ERapFTJaxwSTamQ339s2Ev7E9riyRG+GRkgTWzf5kECJgS1PAYKd/7m/RqKJT9BVv6A5g==} dependencies: core-js: 3.22.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-na8NZhB6GnAGp3jRTV9wwue3WGwSZoi5jfxrKSYMPL/s/2n07/soixHggqueBDXuNBrPoJaXbY/nRHmSjLwxtQ==} + /@storybook/client-api/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-pc7JKJoWLesixUKvG2nV36HukUuYoGRyAgD3PpIV7qSBS4JixqZ3VAHFUtqV1UzfOSQTovLSl4a0rIRnpie6gA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/channel-postmessage': 6.5.7 - '@storybook/channels': 6.5.7 - '@storybook/client-logger': 6.5.7 - '@storybook/core-events': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/qs': 6.9.7 '@types/webpack-env': 1.17.0 core-js: 3.22.8 @@ -6650,8 +6749,8 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.10.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 store2: 2.13.2 synchronous-promise: 2.0.15 @@ -6659,34 +6758,35 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/client-logger/6.5.7: - resolution: {integrity: sha512-ycDy1kXeXRg3djSTXRGMVxc0kvaWw/UhHDs2VGFmOPScsoeWpdbePHXJMFbsqippxuexpsofqTryBwH2b6BPhw==} + /@storybook/client-logger/6.5.9: + resolution: {integrity: sha512-DOHL6p0uiDd3gV/Sb2FR+Vh6OiPrrf8BrA06uvXWsMRIIvEEvnparxv9EvPg7FlmUX0T3nq7d3juwjx4F8Wbcg==} dependencies: core-js: 3.22.8 global: 4.4.0 dev: true - /@storybook/components/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-xSOaOK8q6bXYkmN4LZKucvXU2HRHqKwwTafFDh5yzsCSEB2VQIJlyo4ePVyv/GJgBUX6+WdSA7c5r5ePXK6IYQ==} + /@storybook/components/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-BhfX980O9zn/1J4FNMeDo8ZvL1m5Ml3T4HRpfYmEBnf8oW5b5BeF6S2K2cwFStZRjWqm1feUcwNpZxCBVMkQnQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/client-logger': 6.5.7 + '@storybook/client-logger': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/react-syntax-highlighter': 11.0.5 core-js: 3.22.8 + memoizerific: 1.11.3 qs: 6.10.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-syntax-highlighter: 15.5.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-syntax-highlighter: 15.5.0_react@18.2.0 regenerator-runtime: 0.13.9 util-deprecate: 1.0.2 dev: true - /@storybook/core-client/6.5.7_7uc6nxoo2a76yj4ajiwz6zkemm: - resolution: {integrity: sha512-GL7m33tpEyornhfnTddbvDuLkA9EMe1zKv9oZGsUYo78cWRTiEibYyHegIi9/ThplRXvpFR/5uHY4Zx5Z5rxJg==} + /@storybook/core-client/6.5.9_c3hoyc4loabfhtyuh36vjkyyai: + resolution: {integrity: sha512-LY0QbhShowO+PQx3gao3wdVjpKMH1AaSLmuI95FrcjoMmSXGf96jVLKQp9mJRGeHIsAa93EQBYuCihZycM3Kbg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6696,71 +6796,71 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/channel-postmessage': 6.5.7 - '@storybook/channel-websocket': 6.5.7 - '@storybook/client-api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/core-events': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/channel-websocket': 6.5.9 + '@storybook/client-api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/ui': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/preview-web': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.22.8 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.7.3 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - webpack: 5.73.0 - dev: true - - /@storybook/core-client/6.5.7_ep5i7rh3xck6dvekot5qk64pi4: - resolution: {integrity: sha512-GL7m33tpEyornhfnTddbvDuLkA9EMe1zKv9oZGsUYo78cWRTiEibYyHegIi9/ThplRXvpFR/5uHY4Zx5Z5rxJg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/channel-postmessage': 6.5.7 - '@storybook/channel-websocket': 6.5.7 - '@storybook/client-api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/core-events': 6.5.7 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/ui': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.22.8 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.7.3 + typescript: 4.7.4 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 dev: true - /@storybook/core-common/6.5.7_bxmn6y3pweymjo6ekelj24wybq: - resolution: {integrity: sha512-/b1oQlmhek8tKDu9ky2O1oEk9g2giAPpl192yRz4lIxap5CFJ7RCfgbkq+F3JBXnH2P84BufC0x3dj4jvBhxCw==} + /@storybook/core-client/6.5.9_fmoa52rat4euvvdoa5odwjikjm: + resolution: {integrity: sha512-LY0QbhShowO+PQx3gao3wdVjpKMH1AaSLmuI95FrcjoMmSXGf96jVLKQp9mJRGeHIsAa93EQBYuCihZycM3Kbg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/channel-websocket': 6.5.9 + '@storybook/client-api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.22.8 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.7.4 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 5.73.0 + dev: true + + /@storybook/core-common/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-NxOK0mrOCo0TWZ7Npc5HU66EKoRHlrtg18/ZixblLDWQMIqY9XCck8K1kJ8QYpYCHla+aHIsYUArFe2vhlEfZA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6769,41 +6869,41 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.2 - '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-decorators': 7.18.2_@babel+core@7.18.2 - '@babel/plugin-proposal-export-default-from': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.2 - '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.2 - '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.2 - '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.2 - '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.2 - '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.2 - '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 - '@babel/register': 7.17.7_@babel+core@7.18.2 - '@storybook/node-logger': 6.5.7 + '@babel/core': 7.18.5 + '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-decorators': 7.18.2_@babel+core@7.18.5 + '@babel/plugin-proposal-export-default-from': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.5 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@babel/register': 7.17.7_@babel+core@7.18.5 + '@storybook/node-logger': 6.5.9 '@storybook/semver': 7.3.2 - '@types/node': 16.11.38 + '@types/node': 16.11.41 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5_lzsemofhph6vepnub4bnemnm6m + babel-loader: 8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.2 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.5 chalk: 4.1.2 core-js: 3.22.8 express: 4.18.1 file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_ixplphslglgm26g7hajb6yf2fu + fork-ts-checker-webpack-plugin: 6.5.2_nsapsdlf2mgloyd736rc2bk2vq fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.7 @@ -6813,13 +6913,13 @@ packages: picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 resolve-from: 5.0.0 slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.7.3 + typescript: 4.7.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -6830,14 +6930,14 @@ packages: - webpack-command dev: true - /@storybook/core-events/6.5.7: - resolution: {integrity: sha512-epqYy67Ypry5QdCt7FpN57/X9uuS7R2+DLFORZIpL/SJG1dIdN4POQ1icWOhPzHl+eiSgaV7e2oPaUsN+LPhJQ==} + /@storybook/core-events/6.5.9: + resolution: {integrity: sha512-tXt7a3ZvJOCeEKpNa/B5rQM5VI7UJLlOh3IHOImWn4HqoBRrZvbourmac+PRZAtXpos0h3c6554Hjapj/Sny5Q==} dependencies: core-js: 3.22.8 dev: true - /@storybook/core-server/6.5.7_bxmn6y3pweymjo6ekelj24wybq: - resolution: {integrity: sha512-CGwFZ5kmKaCS/+tcrAbqQu4Owq86wXkWRapJB55S8AlUsf3c9gEC8a3+Ed9tZUlmjSH56CnDDfmt7AleToaQ9w==} + /@storybook/core-server/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-YeePGUrd5fQPvGzMhowh124KrcZURFpFXg1VB0Op3ESqCIsInoMZeObci4Gc+binMXC7vcv7aw3EwSLU37qJzQ==} peerDependencies: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' @@ -6853,18 +6953,18 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@storybook/core-client': 6.5.7_ep5i7rh3xck6dvekot5qk64pi4 - '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@storybook/core-events': 6.5.7 + '@storybook/builder-webpack4': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/core-client': 6.5.9_c3hoyc4loabfhtyuh36vjkyyai + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/csf-tools': 6.5.7 - '@storybook/manager-webpack4': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@storybook/node-logger': 6.5.7 + '@storybook/csf-tools': 6.5.9 + '@storybook/manager-webpack4': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/node-logger': 6.5.9 '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/telemetry': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@types/node': 16.11.38 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/telemetry': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@types/node': 16.11.41 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 '@types/webpack': 4.41.32 @@ -6887,14 +6987,14 @@ packages: open: 8.4.0 pretty-hrtime: 1.0.3 prompts: 2.4.2 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.7.3 + typescript: 4.7.4 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 @@ -6913,8 +7013,8 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.7_dknbrkx5d7odtlw7nmyid6zdse: - resolution: {integrity: sha512-YSu2qur1E5y9rjVspchtCfupPT3y1XyjBInhwzo8jC3rvm2WY0RS80VQU3dga4QBllO1M+cDmLzmOEPL82+Juw==} + /@storybook/core/6.5.9_si3kj4bzaraynkiv47htceipy4: + resolution: {integrity: sha512-Mt3TTQnjQt2/pa60A+bqDsAOrYpohapdtt4DDZEbS8h0V6u11KyYYh3w7FCySlL+sPEyogj63l5Ec76Jah3l2w==} peerDependencies: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' @@ -6930,11 +7030,11 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.5.7_7uc6nxoo2a76yj4ajiwz6zkemm - '@storybook/core-server': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - typescript: 4.7.3 + '@storybook/core-client': 6.5.9_fmoa52rat4euvvdoa5odwjikjm + '@storybook/core-server': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + typescript: 4.7.4 webpack: 5.73.0 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -6949,23 +7049,23 @@ packages: - webpack-command dev: true - /@storybook/csf-tools/6.5.7: - resolution: {integrity: sha512-/vBaknzD8c7H/Zsz0gwhmlNlMwe5slZwXadi6rAQXDkKLzaR1kmz4cQFs8yDR1wWpXaGjNvQxOUAGYjFoGQxzA==} + /@storybook/csf-tools/6.5.9: + resolution: {integrity: sha512-RAdhsO2XmEDyWy0qNQvdKMLeIZAuyfD+tYlUwBHRU6DbByDucvwgMOGy5dF97YNJFmyo93EUYJzXjUrJs3U1LQ==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 peerDependenciesMeta: '@storybook/mdx2-csf': optional: true dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/generator': 7.18.2 - '@babel/parser': 7.18.4 - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 - '@babel/traverse': 7.18.2 + '@babel/parser': 7.18.5 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.2 + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.5 core-js: 3.22.8 fs-extra: 9.1.0 global: 4.4.0 @@ -6981,12 +7081,12 @@ packages: lodash: 4.17.21 dev: true - /@storybook/docs-tools/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-Aw9uUsqeuw0Z9fpiwxrstMNjNGB9s1Tm57SpMF8ibjLYBYFf5Apz5CwDX7bm6YFtCweaawx4MeQta8qnQMWCFw==} + /@storybook/docs-tools/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-UoTaXLvec8x+q+4oYIk/t8DBju9C3ZTGklqOxDIt+0kS3TFAqEgI3JhKXqQOXgN5zDcvLVSxi8dbVAeSxk2ktA==} dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y core-js: 3.22.8 doctrine: 3.0.0 lodash: 4.17.21 @@ -6997,8 +7097,8 @@ packages: - supports-color dev: true - /@storybook/manager-webpack4/6.5.7_bxmn6y3pweymjo6ekelj24wybq: - resolution: {integrity: sha512-RmGsr/6PNsafaSm8aTD7e2VXSKT8BQ6Hkg6TAArLoS2TpIUvrNuM2hEqOHzm2POcApC+OE/HN1H0GiXBkH533Q==} + /@storybook/manager-webpack4/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-49LZlHqWc7zj9tQfOOANixPYmLxqWTTZceA6DSXnKd9xDiO2Gl23Y+l/CSPXNZGDB8QFAwpimwqyKJj/NLH45A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -7007,18 +7107,18 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.2 - '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-client': 6.5.7_ep5i7rh3xck6dvekot5qk64pi4 - '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq - '@storybook/node-logger': 6.5.7 - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/ui': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@types/node': 16.11.38 + '@babel/core': 7.18.5 + '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.9_c3hoyc4loabfhtyuh36vjkyyai + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/node-logger': 6.5.9 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.41 '@types/webpack': 4.41.32 - babel-loader: 8.2.5_lzsemofhph6vepnub4bnemnm6m + babel-loader: 8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.22.8 @@ -7029,9 +7129,9 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.7.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + pnp-webpack-plugin: 1.6.4_typescript@4.7.4 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -7039,7 +7139,7 @@ packages: telejson: 6.0.8 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.7.3 + typescript: 4.7.4 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -7055,12 +7155,12 @@ packages: - webpack-command dev: true - /@storybook/mdx1-csf/0.0.1_@babel+core@7.18.2: + /@storybook/mdx1-csf/0.0.1_@babel+core@7.18.5: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: '@babel/generator': 7.18.2 - '@babel/parser': 7.18.4 - '@babel/preset-env': 7.18.2_@babel+core@7.18.2 + '@babel/parser': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 '@babel/types': 7.18.4 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.182 @@ -7074,8 +7174,8 @@ packages: - supports-color dev: true - /@storybook/node-logger/6.5.7: - resolution: {integrity: sha512-OrHu5p2E5i7P2v2hQAOtZw6Od1e2nrP6L7w5SxUPgccUnKUD9dRX5Y8qbAcPZO3XCkMLjpjAbC1xBXG0eFkn9g==} + /@storybook/node-logger/6.5.9: + resolution: {integrity: sha512-nZZNZG2Wtwv6Trxi3FrnIqUmB55xO+X/WQGPT5iKlqNjdRIu/T72mE7addcp4rbuWCQfZUhcDDGpBOwKtBxaGg==} dependencies: '@types/npmlog': 4.1.4 chalk: 4.1.2 @@ -7084,31 +7184,31 @@ packages: pretty-hrtime: 1.0.3 dev: true - /@storybook/postinstall/6.5.7: - resolution: {integrity: sha512-902JjgB2o+NiiLCPV0b4GHX9SbnY1OkvfvmkqpD3UqWh8djpkSQwvli9npM1J2NEu4BxCqbifYJI7V4JmZbdsw==} + /@storybook/postinstall/6.5.9: + resolution: {integrity: sha512-KQBupK+FMRrtSt8IL0MzCZ/w9qbd25Yxxp/+ajfWgZTRgsWgVFOqcDyMhS16eNbBp5qKIBCBDXfEF+/mK8HwQQ==} dependencies: core-js: 3.22.8 dev: true - /@storybook/preview-web/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-EH8gdl334D8EDVL1VJjRURcUou5Sv6BwgismL4E6wjSFmWxL9egxYDnGJJEh3mjIkAtGb0zpksYn/VNWPA8c8A==} + /@storybook/preview-web/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-4eMrO2HJyZUYyL/j+gUaDvry6iGedshwT5MQqe7J9FaA+Q2pNARQRB1X53f410w7S4sObRmYIAIluWPYdWym9w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/channel-postmessage': 6.5.7 - '@storybook/client-logger': 6.5.7 - '@storybook/core-events': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y ansi-to-html: 0.6.15 core-js: 3.22.8 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 synchronous-promise: 2.0.15 ts-dedent: 2.2.0 @@ -7116,7 +7216,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_jy5w4alwxi2du2dgjfsq7k3iza: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_3o2jfq6vfqxns3sz6wn2nnc3ei: resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: typescript: '>= 3.x' @@ -7127,16 +7227,16 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.7.3 + react-docgen-typescript: 2.2.2_typescript@4.7.4 tslib: 2.4.0 - typescript: 4.7.3 + typescript: 4.7.4 webpack: 5.73.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.5.7_4o7xaollaaxmemegmn2rsjw3jy: - resolution: {integrity: sha512-jMY1vk1WL1otEODl5BxD1kSh5Eqg+SvZW5CJ7sS6q53i3teOhaGhugvuSTuV9lnBzLOZu8atIdFL0ewdOkpwsg==} + /@storybook/react/6.5.9_qvaipyr63plem3mgv5krfvm7b4: + resolution: {integrity: sha512-Rp+QaTQAzxJhwuzJXVd49mnIBLQRlF8llTxPT2YoGHdrGkku/zl/HblQ6H2yzEf15367VyzaAv/BpLsO9Jlfxg==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -7163,22 +7263,22 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.2 - '@babel/preset-flow': 7.17.12_@babel+core@7.18.2 - '@babel/preset-react': 7.17.12_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/preset-flow': 7.17.12_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 '@pmmmwh/react-refresh-webpack-plugin': 0.5.7_aumhct55s6lhceplyc622fxoum - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/core': 6.5.7_dknbrkx5d7odtlw7nmyid6zdse - '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/core': 6.5.9_si3kj4bzaraynkiv47htceipy4 + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/node-logger': 6.5.7 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_jy5w4alwxi2du2dgjfsq7k3iza + '@storybook/docs-tools': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/node-logger': 6.5.9 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_3o2jfq6vfqxns3sz6wn2nnc3ei '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/estree': 0.0.51 - '@types/node': 16.11.38 + '@types/node': 16.11.41 '@types/webpack-env': 1.17.0 acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 @@ -7192,15 +7292,15 @@ packages: html-tags: 3.2.0 lodash: 4.17.21 prop-types: 15.8.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-element-to-jsx-string: 14.3.4_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-element-to-jsx-string: 14.3.4_biqbaboplfbrettd7655fr4n2y react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 require-from-string: 2.0.2 ts-dedent: 2.2.0 - typescript: 4.7.3 + typescript: 4.7.4 util-deprecate: 1.0.2 webpack: 5.73.0 transitivePeerDependencies: @@ -7225,16 +7325,18 @@ packages: - webpack-plugin-serve dev: true - /@storybook/router/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-edWEdAb8O0rSgdXoBZDDuNlQg2cOmC/nJ6gXj9zBotzmXqsbxWyjKGooG1dU6dnKshUqE1RmWF7/N1WMluLf0A==} + /@storybook/router/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-G2Xp/2r8vU2O34eelE+G5VbEEVFDeHcCURrVJEROh6dq2asFJAPbzslVXSeCqgOTNLSpRDJ2NcN5BckkNqmqJg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/client-logger': 6.5.7 + '@storybook/client-logger': 6.5.9 core-js: 3.22.8 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + memoizerific: 1.11.3 + qs: 6.10.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 dev: true @@ -7247,14 +7349,14 @@ packages: find-up: 4.1.0 dev: true - /@storybook/source-loader/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-nj24TSGdF9J1gD5Fj9Z2hPRAQwqBJoBKD/fmTSFZop0qaJOOyeuxZR5022dQh8UWWoBa3WOQADMTNi5RqQZkiA==} + /@storybook/source-loader/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-H03nFKaP6borfWMTTa9igBA+Jm2ph+FoVJImWC/X+LAmLSJYYSXuqSgmiZ/DZvbjxS4k8vccE2HXogne1IvaRA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.22.8 estraverse: 5.3.0 @@ -7262,28 +7364,28 @@ packages: loader-utils: 2.0.2 lodash: 4.17.21 prettier: 2.3.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/store/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-d64towcdylC6TXNL2oJklCpwN3XcUGgZzQ9zgoV8BUlOlsj9tNq8eo95uzTURnLg1Q5uHoDDKWuXrrKj03HHxw==} + /@storybook/store/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-80pcDTcCwK6wUA63aWOp13urI77jfipIVee9mpVvbNyfrNN8kGv1BS0z/JHDxuV6rC4g7LG1fb+BurR0yki7BA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/client-logger': 6.5.7 - '@storybook/core-events': 6.5.7 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.22.8 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 slash: 3.0.0 stable: 0.1.8 @@ -7292,11 +7394,11 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/telemetry/6.5.7_bxmn6y3pweymjo6ekelj24wybq: - resolution: {integrity: sha512-RHrjAConMqGIsu1TgNXztWtWOXTvvCHDWyGoLagCgZYgjGJ4sukp+ZtrbkayNDkkWWD0lpMzsdDEYCJuru/Sig==} + /@storybook/telemetry/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-JluoHCRhHAr4X0eUNVBSBi1JIBA92404Tu1TPdbN7x6gCZxHXXPTSUTAnspXp/21cTdMhY2x+kfZQ8fmlGK4MQ==} dependencies: - '@storybook/client-logger': 6.5.7 - '@storybook/core-common': 6.5.7_bxmn6y3pweymjo6ekelj24wybq + '@storybook/client-logger': 6.5.9 + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi chalk: 4.1.2 core-js: 3.22.8 detect-package-manager: 2.0.1 @@ -7319,207 +7421,44 @@ packages: - webpack-command dev: true - /@storybook/theming/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-6zp1V84DSBcS8BtFOCJlF2/nIonjQmr+dILPxaM3lCm/X003i2jAQrBKTfPlmzCeDn07PBhzHaRJ3wJskfmeNw==} + /@storybook/theming/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-KM0AMP5jMQPAdaO8tlbFCYqx9uYM/hZXGSVUhznhLYu7bhNAIK7ZVmXxyE/z/khM++8eUHzRoZGiO/cwCkg9Xw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/client-logger': 6.5.7 + '@storybook/client-logger': 6.5.9 core-js: 3.22.8 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/ui/6.5.7_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-NOg44bc/w7FweuM2fa99PxsgI9qoG2p5vhTQ4MOI/7QnOUDn+EenlapsRos+/Sk2XTaB2QmM43boUkravMSouA==} + /@storybook/ui/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-ryuPxJgtbb0gPXKGgGAUC+Z185xGAd1IvQ0jM5fJ0SisHXI8jteG3RaWhntOehi9qCg+64Vv6eH/cj9QYNHt1Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/api': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/channels': 6.5.7 - '@storybook/client-logger': 6.5.7 - '@storybook/components': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-events': 6.5.7 - '@storybook/router': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 + '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.7_ef5jwxihqo6n7gxfmzogljlgcm + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y core-js: 3.22.8 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + memoizerific: 1.11.3 + qs: 6.10.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 dev: true - /@swc-node/core/1.9.0: - resolution: {integrity: sha512-vRnvsMtL9OxybA/Wun1ZhlDvB6MNs4Zujnina0VKdGk+yI6s87KUhdTcbAY6dQMZhQTLFiC1Lnv/BuwCKcCEug==} - engines: {node: '>= 10'} - dependencies: - '@swc/core': 1.2.197 - dev: true - - /@swc-node/register/1.5.1_typescript@4.7.3: - resolution: {integrity: sha512-6IL5s4QShKGs08qAeNou3rDA3gbp2WHk6fo0XnJXQn/aC9k6FnVBbj/thGOIEDtgNhC/DKpZT8tCY1LpQnOZFg==} - peerDependencies: - typescript: '>= 4.3' - dependencies: - '@swc-node/core': 1.9.0 - '@swc-node/sourcemap-support': 0.2.0 - colorette: 2.0.17 - debug: 4.3.4 - pirates: 4.0.5 - tslib: 2.4.0 - typescript: 4.7.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@swc-node/sourcemap-support/0.2.0: - resolution: {integrity: sha512-FNrxdI6XMYfoNt81L8eFKEm1d8P82I1nPwS3MrnBGzZoMWB+seQhQK+iN6M5RreJxXbfZw5lF86LRjHEQeGMqg==} - dependencies: - source-map-support: 0.5.21 - dev: true - - /@swc/core-android-arm-eabi/1.2.197: - resolution: {integrity: sha512-BNIexULLlBCU7jIbXA/+BpMUwraFbyifPkOlyC8MriyoR7wfW5cau56yOUztxrr7VdxcByMK+nO70WkVydUV3w==} - engines: {node: '>=10'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@swc/core-android-arm64/1.2.197: - resolution: {integrity: sha512-H1AJfQkojk+INurBwiHJf4iRpRwTI2I43TWUVbxXCyfAc9K9hfKNJFzp5Xapka5nLSgSD2ZNZgseMbfwUcYq6A==} - engines: {node: '>=10'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@swc/core-darwin-arm64/1.2.197: - resolution: {integrity: sha512-JIfXS1HHKKwZlVoKhVTllvD0m0sXiIneaw9TwXtUrHe6K95wJ53q82sqJyqBOWimh9ulCcB2M+XuqK4zDGbosA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@swc/core-darwin-x64/1.2.197: - resolution: {integrity: sha512-Ml7MXJgrNuSGVNvEbeB1BoWFZ2rPhRBSa7IyvfTMmB/oDEvIKIkWH/5hEYdCy99s8XQ6ufqdMjPVqOFRuRXfig==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@swc/core-freebsd-x64/1.2.197: - resolution: {integrity: sha512-Ae6aDvBS/VGAHP3szmampFDzNZ/fOKVAhI1qqQauShzyIqXGL83GZ2zhC1FA94oC5Kora7VHz43DPqUuYRQPtg==} - engines: {node: '>=10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm-gnueabihf/1.2.197: - resolution: {integrity: sha512-cqIeaBzVVfsCW4CvJdxPwz9EHqnJZ+0K6gfTuHDa6Fp6ThWZtqKQhK4zL4hV3L4nWj7bqbOYKSUbdR79p4v92Q==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-gnu/1.2.197: - resolution: {integrity: sha512-1HHSnImnLAvuBpiDi7kJwyPEbAfSkLpL5IEMSQas90jDrIrSwgmnPLE5qBJwPasyrT8hJ/3n297tR+SlcudT/Q==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-musl/1.2.197: - resolution: {integrity: sha512-C2GTIN5XgN/3zvwZITQnEuBMsPE2gQ5kkFjTFF9sKqG8tNUI8V+FP6AV4h7IkLccT1CgSWM7GCP4LsL2OC2iBA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-x64-gnu/1.2.197: - resolution: {integrity: sha512-AHEHo9/u9GIBPUqsCkGWWe6WqGWAk07UklHm0k6Z99Z3OgsDfyDRECMVZGIAgMr1HqPPzsJCP5AmQ6WKZNBrfQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-x64-musl/1.2.197: - resolution: {integrity: sha512-ZnawXY/s0YJnUqWZCN91VkPzTcH1hImOzUvwJ8f7uCIIYOLHYdjUa5S6xPVNHqOEanNYaeCq354LxBytYIo83g==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-arm64-msvc/1.2.197: - resolution: {integrity: sha512-jYnc5c2fn2z0oyy8mJkxstc4qxjZnQsf6YmCM32bm4un05MQg+4y4VxWxY7NMCPRaf8zWojcAy1wltuidbIe/A==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-ia32-msvc/1.2.197: - resolution: {integrity: sha512-l8wa+2brxw8UUCNn65wBtUECVCs3w4WBOiTpT/+rPJF9vYVL7gt2rds73a+yB6rSIhOZqEseazIHi2aQ1S9bxQ==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-x64-msvc/1.2.197: - resolution: {integrity: sha512-uYf+Zch1rhNK3nAYL9C5a5WjtlffLkRf4Dh1OmuqNGmm7EI+AdwTECZX3cT1iICGb2J3GHUJlfPsNdllG8L9qA==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core/1.2.197: - resolution: {integrity: sha512-W7gUaNCrm4i26ZUMilPZjHiQck8mOMfOuZuXj1YrISMR20orACgEHz4kJHbqfXzHhqeS4CGwBkzi9h1lHrwKtw==} - engines: {node: '>=10'} - hasBin: true - optionalDependencies: - '@swc/core-android-arm-eabi': 1.2.197 - '@swc/core-android-arm64': 1.2.197 - '@swc/core-darwin-arm64': 1.2.197 - '@swc/core-darwin-x64': 1.2.197 - '@swc/core-freebsd-x64': 1.2.197 - '@swc/core-linux-arm-gnueabihf': 1.2.197 - '@swc/core-linux-arm64-gnu': 1.2.197 - '@swc/core-linux-arm64-musl': 1.2.197 - '@swc/core-linux-x64-gnu': 1.2.197 - '@swc/core-linux-x64-musl': 1.2.197 - '@swc/core-win32-arm64-msvc': 1.2.197 - '@swc/core-win32-ia32-msvc': 1.2.197 - '@swc/core-win32-x64-msvc': 1.2.197 - dev: true - /@szmarczak/http-timer/1.1.2: resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} engines: {node: '>=6'} @@ -7549,7 +7488,7 @@ packages: engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@babel/runtime': 7.18.3 - '@types/testing-library__jest-dom': 5.14.3 + '@types/testing-library__jest-dom': 5.14.4 aria-query: 5.0.0 chalk: 3.0.0 css: 3.0.0 @@ -7559,7 +7498,7 @@ packages: redent: 3.0.0 dev: true - /@testing-library/react/13.3.0_ef5jwxihqo6n7gxfmzogljlgcm: + /@testing-library/react/13.3.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ==} engines: {node: '>=12'} peerDependencies: @@ -7569,12 +7508,12 @@ packages: '@babel/runtime': 7.18.3 '@testing-library/dom': 8.13.0 '@types/react-dom': 18.0.5 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: true - /@testing-library/user-event/14.2.0_tlwynutqiyp5mns3woioasuxnq: - resolution: {integrity: sha512-+hIlG4nJS6ivZrKnOP7OGsDu9Fxmryj9vCl8x0ZINtTJcCHs2zLsYif5GzuRiBF2ck5GZG2aQr7Msg+EHlnYVQ==} + /@testing-library/user-event/14.2.1_tlwynutqiyp5mns3woioasuxnq: + resolution: {integrity: sha512-HOr1QiODrq+0j9lKU5i10y9TbhxMBMRMGimNx10asdmau9cb8Xb1Vyg0GvTwyIL2ziQyh2kAloOtAQFBQVuecA==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' @@ -7693,16 +7632,16 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 16.11.38 + '@types/node': 17.0.40 /@types/bonjour/3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true - /@types/chrome/0.0.188: - resolution: {integrity: sha512-fVxbcnSrQqCaaTFfaP9QooRr0Lf47Ni+QVGpd4SQafe6x8RlLrlp+AAgc4QKNUVK7W6xEoOePMAu5sBXrc2qhA==} + /@types/chrome/0.0.190: + resolution: {integrity: sha512-lCwwIBfaD+PhG62qFB46mIBpD+xBIa+PedNB24KR9YnmJ0Zn9h0OwP1NQBhI8Cbu1rKwTQHTxhs7GhWGyUvinw==} dependencies: '@types/filesystem': 0.0.32 '@types/har-format': 1.2.8 @@ -7739,8 +7678,8 @@ packages: /@types/connect-history-api-fallback/1.3.5: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: - '@types/express-serve-static-core': 4.17.28 - '@types/node': 16.11.38 + '@types/express-serve-static-core': 4.17.29 + '@types/node': 17.0.40 dev: true /@types/connect/3.4.35: @@ -7762,12 +7701,12 @@ packages: resolution: {integrity: sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==} dev: true - /@types/copy-webpack-plugin/8.0.1_webpack-cli@4.9.2: + /@types/copy-webpack-plugin/8.0.1_webpack-cli@4.10.0: resolution: {integrity: sha512-TwEeGse0/wq+t3SFW0DEwroMS/cDkwVZT+vj7tMAYTp7llt/yz6NuW2n04X2M5P/kSfBQOORhrHAN2mqZdmybg==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 tapable: 2.2.1 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 transitivePeerDependencies: - '@swc/core' - esbuild @@ -7781,7 +7720,7 @@ packages: /@types/cross-spawn/6.0.2: resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/d3/3.5.47: @@ -7826,6 +7765,13 @@ packages: '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 + /@types/express-serve-static-core/4.17.29: + resolution: {integrity: sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==} + dependencies: + '@types/node': 17.0.40 + '@types/qs': 6.9.7 + '@types/range-parser': 1.2.4 + /@types/express/4.17.13: resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==} dependencies: @@ -7850,13 +7796,13 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/har-format/1.2.8: @@ -7879,7 +7825,7 @@ packages: /@types/hoist-non-react-statics/3.3.1: resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} dependencies: - '@types/react': 18.0.12 + '@types/react': 18.0.14 hoist-non-react-statics: 3.3.2 /@types/html-entities/1.3.4: @@ -7900,7 +7846,7 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/is-ci/3.0.0: @@ -8015,13 +7961,13 @@ packages: /@types/morgan/1.9.3: resolution: {integrity: sha512-BiLcfVqGBZCyNCnCH3F4o2GmDLrpy0HeBVnNlyZG4fo88ZiE9SoiBe3C+2ezuwbjlEyT+PDZ17//TAlRxAn75Q==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/node-fetch/2.6.1: resolution: {integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 form-data: 3.0.1 dev: true @@ -8033,8 +7979,8 @@ packages: resolution: {integrity: sha512-CFMnEPkSXWALI73t1oIWyb8QOmVrp6RruAqIx349sd+1ImaFwzlKcz55mwrx/yLyOyz1gkq/UKuNOigt27PXqg==} dev: true - /@types/node/16.11.38: - resolution: {integrity: sha512-hjO/0K140An3GWDw2HJfq7gko3wWeznbjXgg+rzPdVzhe198hp4x2i1dgveAOEiFKd8sOilAxzoSJiVv5P/CUg==} + /@types/node/16.11.41: + resolution: {integrity: sha512-mqoYK2TnVjdkGk8qXAVGc/x9nSaTpSrFaGFm43BUH3IdoBV0nta6hYaGmdOvIMlbHJbUEVen3gvwpwovAZKNdQ==} /@types/node/17.0.40: resolution: {integrity: sha512-UXdBxNGqTMtm7hCwh9HtncFVLrXoqA3oJW30j6XWp5BH/wu3mVeaxo7cq5benFdBw34HB3XDT2TRPI7rXZ+mDg==} @@ -8096,7 +8042,7 @@ packages: /@types/react-dom/18.0.5: resolution: {integrity: sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==} dependencies: - '@types/react': 18.0.12 + '@types/react': 18.0.14 /@types/react-dragula/1.1.0: resolution: {integrity: sha512-wgRIVV2jo/Gria1PK3K26II7gfRD3VTcMfPYhL0CuIApSeon7xjBTj8Xs8Ln+Vbb/FuRKWfUaJXmF4R3KUGntA==} @@ -8107,23 +8053,23 @@ packages: /@types/react-syntax-highlighter/11.0.5: resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} dependencies: - '@types/react': 18.0.12 + '@types/react': 18.0.14 dev: true /@types/react-test-renderer/18.0.0: resolution: {integrity: sha512-C7/5FBJ3g3sqUahguGi03O79b8afNeSD6T8/GU50oQrJCU0bVCCGQHaGKUbg2Ce8VQEEqTw8/HiS6lXHHdgkdQ==} dependencies: - '@types/react': 18.0.12 + '@types/react': 18.0.14 dev: true /@types/react-transition-group/4.4.4: resolution: {integrity: sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==} dependencies: - '@types/react': 18.0.12 + '@types/react': 18.0.14 dev: false - /@types/react/18.0.12: - resolution: {integrity: sha512-duF1OTASSBQtcigUvhuiTB1Ya3OvSy+xORCiEf20H0P0lzx+/KeVsA99U5UjLXSbyo1DRJDlLKqTeM1ngosqtg==} + /@types/react/18.0.14: + resolution: {integrity: sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 @@ -8143,7 +8089,7 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/responselike/1.0.0: @@ -8170,8 +8116,8 @@ packages: resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==} dev: true - /@types/semver/7.3.9: - resolution: {integrity: sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ==} + /@types/semver/7.3.10: + resolution: {integrity: sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw==} dev: true /@types/serve-index/1.9.1: @@ -8189,7 +8135,7 @@ packages: /@types/set-cookie-parser/2.4.2: resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: false /@types/simple-diff/1.6.1: @@ -8230,7 +8176,7 @@ packages: /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /@types/source-list-map/0.1.2: @@ -8256,7 +8202,7 @@ packages: resolution: {integrity: sha512-fgwl+0Pa8pdkwXRoVPP9JbqF0Ivo9llnmsm+7TCI330kbPIFd9qv1Lrhr37shf4tnxCOSu+/IgqM7uJXLWZZNQ==} dependencies: '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.12 + '@types/react': 18.0.14 csstype: 3.1.0 dev: true @@ -8283,8 +8229,8 @@ packages: '@types/estree': 0.0.51 dev: false - /@types/testing-library__jest-dom/5.14.3: - resolution: {integrity: sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw==} + /@types/testing-library__jest-dom/5.14.4: + resolution: {integrity: sha512-EUCs9PTBOEyfRtLKkKd31YrRCx/9Wxjy2Uqb6IH/KAOr7/vP0i8iClOyxQqjm/UxMGU5r5s2vOBM7vSPQVmabg==} dependencies: '@types/jest': 27.5.2 dev: true @@ -8316,7 +8262,7 @@ packages: /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 '@types/source-list-map': 0.1.2 source-map: 0.7.4 dev: true @@ -8324,7 +8270,7 @@ packages: /@types/webpack/4.41.32: resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 '@types/tapable': 1.0.8 '@types/uglify-js': 3.13.3 '@types/webpack-sources': 3.2.0 @@ -8368,8 +8314,8 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/5.27.0_kor2e3kwnnzugzo3aovmfcq2la: - resolution: {integrity: sha512-DDrIA7GXtmHXr1VCcx9HivA39eprYBIFxbQEHI6NyraRDxCGpxAFiYQAT/1Y0vh1C+o2vfBiy4IuPoXxtTZCAQ==} + /@typescript-eslint/eslint-plugin/5.28.0_py5roj3ykd3sga4gtxlmfvv4pa: + resolution: {integrity: sha512-DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -8379,24 +8325,24 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - '@typescript-eslint/scope-manager': 5.27.0 - '@typescript-eslint/type-utils': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - '@typescript-eslint/utils': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/scope-manager': 5.28.0 + '@typescript-eslint/type-utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 - eslint: 8.17.0 + eslint: 8.18.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.3 - typescript: 4.7.3 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4: - resolution: {integrity: sha512-8oGjQF46c52l7fMiPPvX4It3u3V3JipssqDfHQ2hcR0AeR8Zge+OYyKUCm5b70X72N1qXt0qgHenwN6Gc2SXZA==} + /@typescript-eslint/parser/5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -8405,12 +8351,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.27.0 - '@typescript-eslint/types': 5.27.0 - '@typescript-eslint/typescript-estree': 5.27.0_typescript@4.7.3 + '@typescript-eslint/scope-manager': 5.28.0 + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.7.4 debug: 4.3.4 - eslint: 8.17.0 - typescript: 4.7.3 + eslint: 8.18.0 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true @@ -8423,8 +8369,16 @@ packages: '@typescript-eslint/visitor-keys': 5.27.0 dev: true - /@typescript-eslint/type-utils/5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4: - resolution: {integrity: sha512-vpTvRRchaf628Hb/Xzfek+85o//zEUotr1SmexKvTfs7czXfYjXVT/a5yDbpzLBX1rhbqxjDdr1Gyo0x1Fc64g==} + /@typescript-eslint/scope-manager/5.28.0: + resolution: {integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/visitor-keys': 5.28.0 + dev: true + + /@typescript-eslint/type-utils/5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -8433,11 +8387,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 - eslint: 8.17.0 - tsutils: 3.21.0_typescript@4.7.3 - typescript: 4.7.3 + eslint: 8.18.0 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true @@ -8447,7 +8401,12 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.27.0_typescript@4.7.3: + /@typescript-eslint/types/5.28.0: + resolution: {integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/typescript-estree/5.27.0_typescript@4.7.4: resolution: {integrity: sha512-QywPMFvgZ+MHSLRofLI7BDL+UczFFHyj0vF5ibeChDAJgdTV8k4xgEwF0geFhVlPc1p8r70eYewzpo6ps+9LJQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -8462,13 +8421,34 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.3 - typescript: 4.7.3 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4: + /@typescript-eslint/typescript-estree/5.28.0_typescript@4.7.4: + resolution: {integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/visitor-keys': 5.28.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils/5.27.0_b5e7v2qnwxfo6hmiq56u52mz3e: resolution: {integrity: sha512-nZvCrkIJppym7cIbP3pOwIkAefXOmfGPnCM0LQfzNaKxJHI6VjI8NC662uoiPlaf5f6ymkTy9C3NQXev2mdXmA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -8477,10 +8457,28 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.27.0 '@typescript-eslint/types': 5.27.0 - '@typescript-eslint/typescript-estree': 5.27.0_typescript@4.7.3 - eslint: 8.17.0 + '@typescript-eslint/typescript-estree': 5.27.0_typescript@4.7.4 + eslint: 8.18.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.17.0 + eslint-utils: 3.0.0_eslint@8.18.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils/5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.11 + '@typescript-eslint/scope-manager': 5.28.0 + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.7.4 + eslint: 8.18.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@8.18.0 transitivePeerDependencies: - supports-color - typescript @@ -8494,6 +8492,14 @@ packages: eslint-visitor-keys: 3.3.0 dev: true + /@typescript-eslint/visitor-keys/5.28.0: + resolution: {integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.28.0 + eslint-visitor-keys: 3.3.0 + dev: true + /@webassemblyjs/ast/1.11.1: resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} dependencies: @@ -8727,27 +8733,27 @@ packages: '@xtuc/long': 4.2.2 dev: true - /@webpack-cli/configtest/1.1.1_gkh3o7gdsall36kyfdv2sybo54: - resolution: {integrity: sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==} + /@webpack-cli/configtest/1.2.0_77l47gmqkrqiei5z7sbwz5iaj4: + resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} peerDependencies: webpack: 4.x.x || 5.x.x webpack-cli: 4.x.x dependencies: - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju dev: true - /@webpack-cli/info/1.4.1_webpack-cli@4.9.2: - resolution: {integrity: sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==} + /@webpack-cli/info/1.5.0_webpack-cli@4.10.0: + resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} peerDependencies: webpack-cli: 4.x.x dependencies: envinfo: 7.8.1 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju dev: true - /@webpack-cli/serve/1.6.1_webpack-cli@4.9.2: - resolution: {integrity: sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==} + /@webpack-cli/serve/1.7.0_b6kp5g2s4uywsci7bb7pbu5to4: + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} peerDependencies: webpack-cli: 4.x.x webpack-dev-server: '*' @@ -8755,11 +8761,12 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.9.2_webpack@5.73.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 dev: true - /@webpack-cli/serve/1.6.1_wrq76o5olao5kakxgxx43iiltu: - resolution: {integrity: sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==} + /@webpack-cli/serve/1.7.0_webpack-cli@4.10.0: + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} peerDependencies: webpack-cli: 4.x.x webpack-dev-server: '*' @@ -8767,8 +8774,7 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + webpack-cli: 4.10.0_webpack@5.73.0 dev: true /@xmldom/xmldom/0.7.5: @@ -8784,6 +8790,10 @@ packages: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} dev: true + /@zag-js/focus-visible/0.1.0: + resolution: {integrity: sha512-PeaBcTmdZWcFf7n1aM+oiOdZc+sy14qi0emPIeUuGMTjbP0xLGrZu43kdpHnWSXy7/r4Ubp/vlg50MCV8+9Isg==} + dev: false + /abab/2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} dev: true @@ -9097,11 +9107,11 @@ packages: normalize-path: 3.0.0 picomatch: 2.3.1 - /apollo-datasource/3.3.1: - resolution: {integrity: sha512-Z3a8rEUXVPIZ1p8xrFL8bcNhWmhOmovgDArvwIwmJOBnh093ZpRfO+ESJEDAN4KswmyzCLDAwjsW4zQOONdRUw==} + /apollo-datasource/3.3.2: + resolution: {integrity: sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==} engines: {node: '>=12.0'} dependencies: - apollo-server-caching: 3.3.0 + '@apollo/utils.keyvaluecache': 1.0.1 apollo-server-env: 4.2.1 transitivePeerDependencies: - encoding @@ -9113,19 +9123,13 @@ packages: '@apollo/protobufjs': 1.2.2 dev: false - /apollo-server-caching/3.3.0: - resolution: {integrity: sha512-Wgcb0ArjZ5DjQ7ID+tvxUcZ7Yxdbk5l1MxZL8D8gkyjooOkhPNzjRVQ7ubPoXqO54PrOMOTm1ejVhsF+AfIirQ==} - engines: {node: '>=12.0'} - dependencies: - lru-cache: 6.0.0 - dev: false - - /apollo-server-core/3.8.2_graphql@16.5.0: - resolution: {integrity: sha512-cbzG928HG27W+juMVCIL1O//iyAj/Q2hnOu6YwrGrcqeE75ZIJSgSBm/gPHK20cI7nEjK2IWACx8Hj1nGAQ5Zg==} + /apollo-server-core/3.9.0_graphql@16.5.0: + resolution: {integrity: sha512-WS54C33cTriDaBIcj7ijWv/fgeJICcrQKlP1Cn6pnZp/eumpMraezLeJ3gFWAXprOuR2E3fZe64lNlup0fMu8w==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: + '@apollo/utils.keyvaluecache': 1.0.1 '@apollo/utils.logger': 1.0.0 '@apollo/utils.usagereporting': 1.0.0_graphql@16.5.0 '@apollographql/apollo-tools': 0.5.4_graphql@16.5.0 @@ -9133,13 +9137,12 @@ packages: '@graphql-tools/mock': 8.6.11_graphql@16.5.0 '@graphql-tools/schema': 8.3.13_graphql@16.5.0 '@josephg/resolvable': 1.0.1 - apollo-datasource: 3.3.1 + apollo-datasource: 3.3.2 apollo-reporting-protobuf: 3.3.1 - apollo-server-caching: 3.3.0 apollo-server-env: 4.2.1 apollo-server-errors: 3.3.1_graphql@16.5.0 - apollo-server-plugin-base: 3.6.0_graphql@16.5.0 - apollo-server-types: 3.6.0_graphql@16.5.0 + apollo-server-plugin-base: 3.6.1_graphql@16.5.0 + apollo-server-types: 3.6.1_graphql@16.5.0 async-retry: 1.3.3 fast-json-stable-stringify: 2.1.0 graphql: 16.5.0 @@ -9171,8 +9174,8 @@ packages: graphql: 16.5.0 dev: false - /apollo-server-express/3.8.2_g7snex6epo2tsaz6yhvyva23iq: - resolution: {integrity: sha512-UIpjs0qwOGJ0U1IokrtfjgpQVoirr7E1w446mx6B0EqV8sIFgdEE253utxtHi80va37h/xuEIUuAZFRQaY6ClQ==} + /apollo-server-express/3.9.0_g7snex6epo2tsaz6yhvyva23iq: + resolution: {integrity: sha512-scSeHy9iB7W3OiF3uLQEzad9Jm9tEfDF8ACsJb2P+xX69uqg6zizsrQvj3qRhazCO7FKMcMu9zQFR0hy7zKbUA==} engines: {node: '>=12.0'} peerDependencies: express: ^4.17.1 @@ -9182,10 +9185,10 @@ packages: '@types/body-parser': 1.19.2 '@types/cors': 2.8.12 '@types/express': 4.17.13 - '@types/express-serve-static-core': 4.17.28 + '@types/express-serve-static-core': 4.17.29 accepts: 1.3.8 - apollo-server-core: 3.8.2_graphql@16.5.0 - apollo-server-types: 3.6.0_graphql@16.5.0 + apollo-server-core: 3.9.0_graphql@16.5.0 + apollo-server-types: 3.6.1_graphql@16.5.0 body-parser: 1.20.0 cors: 2.8.5 express: 4.18.1 @@ -9196,27 +9199,27 @@ packages: - supports-color dev: false - /apollo-server-plugin-base/3.6.0_graphql@16.5.0: - resolution: {integrity: sha512-GtXhczRGpTLQyFPWeWSnX1VcN2JaaAU7WT8PzoTQuJKYJ/Aj5mPebHbfG+PXQlDmI8IgyCKf7B1HIRnJqvAZbg==} + /apollo-server-plugin-base/3.6.1_graphql@16.5.0: + resolution: {integrity: sha512-bFpxzWO0LTTtSAkGVBeaAtnQXJ5ZCi8eaLN/eMSju8RByifmF3Kr6gAqcOZhOH/geQEt3Y6G8n3bR0eHTGxljQ==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: - apollo-server-types: 3.6.0_graphql@16.5.0 + apollo-server-types: 3.6.1_graphql@16.5.0 graphql: 16.5.0 transitivePeerDependencies: - encoding dev: false - /apollo-server-types/3.6.0_graphql@16.5.0: - resolution: {integrity: sha512-zISCkwXvwTHK2AysWSfLAUvDLSDJ0xj8pnfxDv34hqA+G9JqsLbykJdSL1Y1kT53HU4RWF6ymTuTwwOmmBiAWA==} + /apollo-server-types/3.6.1_graphql@16.5.0: + resolution: {integrity: sha512-XOPlBlRdwP00PrG03OffGGWuzyei+J9t1rAnvyHsSdP0JCgQWigHJfvL1N9Bhgi4UTjl9JadKOJh1znLNlqIFQ==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: + '@apollo/utils.keyvaluecache': 1.0.1 '@apollo/utils.logger': 1.0.0 apollo-reporting-protobuf: 3.3.1 - apollo-server-caching: 3.3.0 apollo-server-env: 4.2.1 graphql: 16.5.0 transitivePeerDependencies: @@ -9549,18 +9552,18 @@ packages: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: true - /babel-jest/27.5.1_@babel+core@7.18.2: + /babel-jest/27.5.1_@babel+core@7.18.5: resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.18.2 + babel-preset-jest: 27.5.1_@babel+core@7.18.5 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -9568,29 +9571,14 @@ packages: - supports-color dev: true - /babel-loader/8.2.5_dzrarqmejens5o5lr5bdn3kdtu: + /babel-loader/8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.18.2 - find-cache-dir: 3.3.2 - loader-utils: 2.0.2 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 5.73.0 - dev: true - - /babel-loader/8.2.5_lzsemofhph6vepnub4bnemnm6m: - resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 @@ -9598,6 +9586,21 @@ packages: webpack: 4.46.0 dev: true + /babel-loader/8.2.5_te6ollfzjcco6mbxjl755ucqke: + resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.18.5 + find-cache-dir: 3.3.2 + loader-utils: 2.0.2 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.73.0 + dev: true + /babel-plugin-add-react-displayname/0.0.5: resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} dev: true @@ -9664,50 +9667,50 @@ packages: resolve: 1.22.0 dev: true - /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.2: + /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.5: resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.2 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.18.2: + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.18.5: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.18.5 core-js-compat: 3.22.8 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.2: + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.5: resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5 core-js-compat: 3.22.8 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.2: + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.5: resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.2 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true @@ -9732,40 +9735,40 @@ packages: babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.5_4klixn56hmiqf6hh5nx3jyckvq + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba /babel-plugin-syntax-jsx/6.18.0: resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.2: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.5: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.2 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.2 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.2 + '@babel/core': 7.18.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.5 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.5 dev: true - /babel-preset-jest/27.5.1_@babel+core@7.18.2: + /babel-preset-jest/27.5.1_@babel+core@7.18.5: resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.5 dev: true /babel-runtime/6.26.0: @@ -10896,7 +10899,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /core-js-compat/3.22.8: @@ -11137,7 +11140,7 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.14 postcss-value-parser: 4.2.0 semver: 7.3.7 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /css-select/4.3.0: @@ -11713,14 +11716,14 @@ packages: /electron-to-chromium/1.4.146: resolution: {integrity: sha512-4eWebzDLd+hYLm4csbyMU2EbBnqhwl8Oe9eF/7CBDPWcRxFmqzx4izxvHH+lofQxzieg8UbB8ZuzNTxeukzfTg==} - /electron/19.0.3: - resolution: {integrity: sha512-V/8pFkXUOsoHcBzuTYVSbIQKLIwI/FAxfpvbkMazdaO/weZoIf9AN3Qc4Wuo9+489mhelDYc8lSX5N7c6A5n6A==} + /electron/19.0.4: + resolution: {integrity: sha512-roRYr1VNAWIhjD9n8qZdmhROtrzsFpuZEXrjWAw+GqPbZlrUInmvFCviRDC2Lt+VBsTNRpTfPpfzXSlLL4reEw==} engines: {node: '>= 8.6'} hasBin: true requiresBuild: true dependencies: '@electron/get': 1.14.1 - '@types/node': 16.11.38 + '@types/node': 16.11.41 extract-zip: 1.7.0 transitivePeerDependencies: - supports-color @@ -11841,6 +11844,7 @@ packages: /error-stack-parser/2.1.2: resolution: {integrity: sha512-SIJp3QwJ81ski8Fi3vojI8S/3fsf3rUhe0duVn9Gpf1sfO/+YUARW0Xyjx7ilS/V/hNj3nW6dVLW1OoHsyuJ4A==} + deprecated: Please upgrade to error-stack-parser >= v2.1.4, see https://github.com/stacktracejs/error-stack-parser/issues/80 dependencies: stackframe: 1.3.4 dev: true @@ -11970,7 +11974,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-airbnb-base/15.0.0_3yxiwxzsqipdmy4jwrlv6vgfmy: + /eslint-config-airbnb-base/15.0.0_srrmf5la5dmnsfe2mpg6sboreu: resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -11978,14 +11982,14 @@ packages: eslint-plugin-import: ^2.25.2 dependencies: confusing-browser-globals: 1.0.11 - eslint: 8.17.0 - eslint-plugin-import: 2.26.0_eslint@8.17.0 + eslint: 8.18.0 + eslint-plugin-import: 2.26.0_eslint@8.18.0 object.assign: 4.1.2 object.entries: 1.1.5 semver: 6.3.0 dev: true - /eslint-config-airbnb/19.0.4_pefmhapqkyo3bhsmfeolqklhny: + /eslint-config-airbnb/19.0.4_33hhosu7yovqp6ljggjzij5oci: resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11995,23 +11999,23 @@ packages: eslint-plugin-react: ^7.28.0 eslint-plugin-react-hooks: ^4.3.0 dependencies: - eslint: 8.17.0 - eslint-config-airbnb-base: 15.0.0_3yxiwxzsqipdmy4jwrlv6vgfmy - eslint-plugin-import: 2.26.0_eslint@8.17.0 - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.17.0 - eslint-plugin-react: 7.30.0_eslint@8.17.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0 + eslint: 8.18.0 + eslint-config-airbnb-base: 15.0.0_srrmf5la5dmnsfe2mpg6sboreu + eslint-plugin-import: 2.26.0_eslint@8.18.0 + eslint-plugin-jsx-a11y: 6.5.1_eslint@8.18.0 + eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 object.assign: 4.1.2 object.entries: 1.1.5 dev: true - /eslint-config-prettier/8.5.0_eslint@8.17.0: + /eslint-config-prettier/8.5.0_eslint@8.18.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.17.0 + eslint: 8.18.0 dev: true /eslint-import-resolver-node/0.3.6: @@ -12048,7 +12052,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.26.0_eslint@8.17.0: + /eslint-plugin-import/2.26.0_eslint@8.18.0: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -12062,7 +12066,7 @@ packages: array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.17.0 + eslint: 8.18.0 eslint-import-resolver-node: 0.3.6 eslint-module-utils: 2.7.3_ulu2225r2ychl26a37c6o2rfje has: 1.0.3 @@ -12078,7 +12082,7 @@ packages: - supports-color dev: true - /eslint-plugin-jest/26.5.3_hskg2r2ndwagfrtpqqunqsvssm: + /eslint-plugin-jest/26.5.3_zxzftnn2st6hdax52fud6lzt74: resolution: {integrity: sha512-sICclUqJQnR1bFRZGLN2jnSVsYOsmPYYnroGCIMVSvTS3y8XR3yjzy1EcTQmk6typ5pRgyIWzbjqxK6cZHEZuQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -12091,16 +12095,16 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.27.0_kor2e3kwnnzugzo3aovmfcq2la - '@typescript-eslint/utils': 5.27.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint: 8.17.0 + '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/utils': 5.27.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 jest: 27.5.1 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jsx-a11y/6.5.1_eslint@8.17.0: + /eslint-plugin-jsx-a11y/6.5.1_eslint@8.18.0: resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} engines: {node: '>=4.0'} peerDependencies: @@ -12114,23 +12118,23 @@ packages: axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.17.0 + eslint: 8.18.0 has: 1.0.3 jsx-ast-utils: 3.3.0 language-tags: 1.0.5 minimatch: 3.1.2 dev: true - /eslint-plugin-react-hooks/4.5.0_eslint@8.17.0: - resolution: {integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==} + /eslint-plugin-react-hooks/4.6.0_eslint@8.18.0: + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.17.0 + eslint: 8.18.0 dev: true - /eslint-plugin-react/7.30.0_eslint@8.17.0: + /eslint-plugin-react/7.30.0_eslint@8.18.0: resolution: {integrity: sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==} engines: {node: '>=4'} peerDependencies: @@ -12139,7 +12143,7 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.17.0 + eslint: 8.18.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.0 minimatch: 3.1.2 @@ -12177,13 +12181,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.17.0: + /eslint-utils/3.0.0_eslint@8.18.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.17.0 + eslint: 8.18.0 eslint-visitor-keys: 2.1.0 dev: true @@ -12197,8 +12201,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.17.0: - resolution: {integrity: sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==} + /eslint/8.18.0: + resolution: {integrity: sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: @@ -12211,7 +12215,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.17.0 + eslint-utils: 3.0.0_eslint@8.18.0 eslint-visitor-keys: 3.3.0 espree: 9.3.2 esquery: 1.4.0 @@ -12289,7 +12293,7 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 c8: 7.11.3 transitivePeerDependencies: @@ -12634,7 +12638,7 @@ packages: dependencies: loader-utils: 2.0.2 schema-utils: 3.1.1 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /file-system-cache/1.1.0: @@ -12802,7 +12806,7 @@ packages: signal-exit: 3.0.7 dev: true - /fork-ts-checker-webpack-plugin/4.1.6_ixplphslglgm26g7hajb6yf2fu: + /fork-ts-checker-webpack-plugin/4.1.6_nsapsdlf2mgloyd736rc2bk2vq: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -12818,19 +12822,19 @@ packages: dependencies: '@babel/code-frame': 7.16.7 chalk: 2.4.2 - eslint: 8.17.0 + eslint: 8.18.0 micromatch: 3.1.10 minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.7.3 + typescript: 4.7.4 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.2_ixplphslglgm26g7hajb6yf2fu: + /fork-ts-checker-webpack-plugin/6.5.2_nsapsdlf2mgloyd736rc2bk2vq: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -12850,7 +12854,7 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 - eslint: 8.17.0 + eslint: 8.18.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.4.4 @@ -12858,11 +12862,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.7 tapable: 1.1.3 - typescript: 4.7.3 + typescript: 4.7.4 webpack: 4.46.0 dev: true - /fork-ts-checker-webpack-plugin/7.2.11_jy5w4alwxi2du2dgjfsq7k3iza: + /fork-ts-checker-webpack-plugin/7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei: resolution: {integrity: sha512-2e5+NyTUTE1Xq4fWo7KFEQblCaIvvINQwUX3jRmEGlgCTc1Ecqw/975EfQrQ0GEraxJTnp8KB9d/c8hlCHUMJA==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -12884,8 +12888,8 @@ packages: schema-utils: 3.1.1 semver: 7.3.7 tapable: 2.2.1 - typescript: 4.7.3 - webpack: 5.73.0_webpack-cli@4.9.2 + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /form-data/3.0.1: @@ -12931,8 +12935,8 @@ packages: map-cache: 0.2.2 dev: true - /framer-motion/6.3.10_ef5jwxihqo6n7gxfmzogljlgcm: - resolution: {integrity: sha512-modFplFb1Fznsm0MrmRAJUC32UDA5jbGU9rDvkGzhAHksru2tnoKbU/Pa3orzdsJI0CJviG4NGBrmwGveU98Cg==} + /framer-motion/6.3.11_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-xQLk+ZSklNs5QNCUmdWPpKMOuWiB8ZETsvcIOWw8xvri9K3TamuifgCI/B6XpaEDR0/V2ZQF2Wm+gUAZrXo+rw==} peerDependencies: react: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' react-dom: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' @@ -12940,8 +12944,8 @@ packages: framesync: 6.0.1 hey-listen: 1.0.8 popmotion: 11.0.3 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 style-value-types: 5.0.0 tslib: 2.4.0 optionalDependencies: @@ -13230,7 +13234,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.4 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -13651,15 +13655,15 @@ packages: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true - /html-loader/3.1.0_webpack@5.73.0: - resolution: {integrity: sha512-ycMYFRiCF7YANcLDNP72kh3Po5pTcH+bROzdDwh00iVOAY/BwvpuZ1BKPziQ35Dk9D+UD84VGX1Lu/H4HpO4fw==} + /html-loader/3.1.2_webpack@5.73.0: + resolution: {integrity: sha512-9WQlLiAV5N9fCna4MUmBW/ifaUbuFZ2r7IZmtXzhyfyi4zgPEjXsmsYCKs+yT873MzRj+f1WMjuAiPNA7C6Tcw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: html-minifier-terser: 6.1.0 parse5: 6.0.1 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /html-minifier-terser/5.1.1: @@ -13728,7 +13732,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /htmlparser2/6.1.0: @@ -13969,7 +13973,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-width: 3.0.0 external-editor: 3.1.0 @@ -14518,7 +14522,7 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/parser': 7.18.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -14586,7 +14590,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -14675,10 +14679,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.18.2 + babel-jest: 27.5.1_@babel+core@7.18.5 chalk: 4.1.2 ci-info: 3.3.1 deepmerge: 4.2.2 @@ -14715,10 +14719,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.18.2 + babel-jest: 27.5.1_@babel+core@7.18.5 chalk: 4.1.2 ci-info: 3.3.1 deepmerge: 4.2.2 @@ -14739,7 +14743,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.8.1_xrrid5ahylip6fa4hrbwh6apl4 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu transitivePeerDependencies: - bufferutil - canvas @@ -14782,7 +14786,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -14800,7 +14804,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 jest-mock: 27.5.1 jest-util: 27.5.1 dev: true @@ -14839,7 +14843,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.5 - '@types/node': 16.11.38 + '@types/node': 17.0.40 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -14861,7 +14865,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -14916,7 +14920,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1: @@ -14977,7 +14981,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.10 @@ -15042,7 +15046,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 graceful-fs: 4.2.10 dev: true @@ -15050,16 +15054,16 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/generator': 7.18.2 - '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.5 '@babel/traverse': 7.18.2 '@babel/types': 7.18.4 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.17.1 '@types/prettier': 2.6.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.5 chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.10 @@ -15093,7 +15097,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 chalk: 4.1.2 ci-info: 3.3.1 graceful-fs: 4.2.10 @@ -15118,7 +15122,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.38 + '@types/node': 17.0.40 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -15129,7 +15133,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.11.38 + '@types/node': 17.0.40 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -15575,6 +15579,11 @@ packages: engines: {node: '>=6'} dev: true + /kleur/4.1.4: + resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==} + engines: {node: '>=6'} + dev: true + /klona/2.0.5: resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==} engines: {node: '>= 8'} @@ -15970,6 +15979,11 @@ packages: dependencies: yallist: 4.0.0 + /lru-cache/7.10.1: + resolution: {integrity: sha512-BQuhQxPuRl79J5zSXRP+uNzPOyZw2oFI9JLRQ80XswSvg21KMKNtQza9eF42rfI/3Z40RvzBdXgziEkudzjo8A==} + engines: {node: '>=12'} + dev: false + /lz-string/1.4.4: resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==} hasBin: true @@ -16314,8 +16328,8 @@ packages: resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} dev: true - /minimatch/3.0.4: - resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} + /minimatch/3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} dependencies: brace-expansion: 1.1.11 dev: true @@ -16465,44 +16479,7 @@ packages: /ms/2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /msw/0.42.0_typescript@4.7.3: - resolution: {integrity: sha512-vB9rzgiGHoQGfkKpp3QZHxobzfuuQOJk+0bff0wtbK8k3P3CaUSt8bCwvExours682AY4mUfTjIkCsxy0JoS3w==} - engines: {node: '>=14'} - hasBin: true - requiresBuild: true - peerDependencies: - typescript: '>= 4.2.x <= 4.7.x' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@mswjs/cookies': 0.2.1 - '@mswjs/interceptors': 0.16.4 - '@open-draft/until': 1.0.3 - '@types/cookie': 0.4.1 - '@types/js-levenshtein': 1.1.1 - chalk: 4.1.1 - chokidar: 3.5.3 - cookie: 0.4.2 - graphql: 16.5.0 - headers-polyfill: 3.0.7 - inquirer: 8.2.4 - is-node-process: 1.0.1 - js-levenshtein: 1.1.6 - node-fetch: 2.6.7 - outvariant: 1.3.0 - path-to-regexp: 6.2.1 - statuses: 2.0.1 - strict-event-emitter: 0.2.4 - type-fest: 1.4.0 - typescript: 4.7.3 - yargs: 17.5.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - - /msw/0.42.1_typescript@4.7.3: + /msw/0.42.1_typescript@4.7.4: resolution: {integrity: sha512-LZZuz7VddL45gCBgfBWHyXj6a4W7OTJY0mZPoipJ3P/xwbuJwrtwB3IJrWlqBM8aink/eTKlRxwzmtIAwCj5yQ==} engines: {node: '>=14'} hasBin: true @@ -16532,13 +16509,12 @@ packages: statuses: 2.0.1 strict-event-emitter: 0.2.4 type-fest: 1.4.0 - typescript: 4.7.3 + typescript: 4.7.4 yargs: 17.5.1 transitivePeerDependencies: - encoding - supports-color dev: false - optional: true /multicast-dns/7.2.5: resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} @@ -16823,16 +16799,22 @@ packages: resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==} dev: true - /nx/14.1.9_typescript@4.7.3: - resolution: {integrity: sha512-O+zpqtGrJkiTNqh4qK4MwXN1OLgWXCm7YWNO+F7y9kKGfOlGC/krx2lmSSGbMEOPgIP4Z2MMTXGlVULqZyRVHw==} + /nx/14.3.6: + resolution: {integrity: sha512-jBgqXEkRalo8PwXJzO4HVNN3P5pqyL5VawyNd34qPl+4t2XlDRqoK0J74i8liPGdKPBB1HjM2K1u+QNF2ROvQA==} hasBin: true requiresBuild: true + peerDependencies: + '@swc-node/register': ^1.4.2 + '@swc/core': ^1.2.173 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true dependencies: - '@nrwl/cli': 14.1.9_typescript@4.7.3 - '@nrwl/tao': 14.1.9_typescript@4.7.3 + '@nrwl/cli': 14.3.6 + '@nrwl/tao': 14.3.6 '@parcel/watcher': 2.0.4 - '@swc-node/register': 1.5.1_typescript@4.7.3 - '@swc/core': 1.2.197 chalk: 4.1.0 chokidar: 3.5.3 cli-cursor: 3.1.0 @@ -16846,8 +16828,9 @@ packages: fs-extra: 10.1.0 glob: 7.1.4 ignore: 5.2.0 + js-yaml: 4.1.0 jsonc-parser: 3.0.0 - minimatch: 3.0.4 + minimatch: 3.0.5 npm-run-path: 4.0.1 open: 8.4.0 semver: 7.3.4 @@ -16859,9 +16842,6 @@ packages: v8-compile-cache: 2.3.0 yargs: 17.5.1 yargs-parser: 21.0.1 - transitivePeerDependencies: - - supports-color - - typescript dev: true /object-assign/4.1.1: @@ -17447,11 +17427,11 @@ packages: engines: {node: '>=4'} dev: false - /pnp-webpack-plugin/1.6.4_typescript@4.7.3: + /pnp-webpack-plugin/1.6.4_typescript@4.7.4: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.7.3 + ts-pnp: 1.2.0_typescript@4.7.4 transitivePeerDependencies: - typescript dev: true @@ -17653,8 +17633,8 @@ packages: hasBin: true dev: true - /prettier/2.6.2: - resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==} + /prettier/2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} engines: {node: '>=10.13.0'} hasBin: true dev: true @@ -17772,12 +17752,12 @@ packages: sisteransi: 1.0.5 dev: true - /prop-types-extra/1.1.1_react@18.1.0: + /prop-types-extra/1.1.1_react@18.2.0: resolution: {integrity: sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==} peerDependencies: react: '>=0.14.0 || 18' dependencies: - react: 18.1.0 + react: 18.2.0 react-is: 16.13.1 warning: 4.0.3 dev: false @@ -18050,10 +18030,10 @@ packages: dependencies: loader-utils: 2.0.2 schema-utils: 3.1.1 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true - /react-bootstrap/2.4.0_eurjwfem4ie5nnznw6gmhlbswe: + /react-bootstrap/2.4.0_twyhzqqpkwvvgrmyeapdo6i4my: resolution: {integrity: sha512-dn599jNK1Fg5GGjJH+lQQDwELVzigh/MdusKpB/0el+sCjsO5MZDH5gRMmBjRhC+vb7VlCDr6OXffPIDSkNMLw==} peerDependencies: '@types/react': '>=16.14.8' @@ -18064,41 +18044,41 @@ packages: optional: true dependencies: '@babel/runtime': 7.18.3 - '@restart/hooks': 0.4.7_react@18.1.0 - '@restart/ui': 1.2.0_ef5jwxihqo6n7gxfmzogljlgcm - '@types/react': 18.0.12 + '@restart/hooks': 0.4.7_react@18.2.0 + '@restart/ui': 1.2.0_biqbaboplfbrettd7655fr4n2y + '@types/react': 18.0.14 '@types/react-transition-group': 4.4.4 classnames: 2.3.1 dom-helpers: 5.2.1 invariant: 2.2.4 prop-types: 15.8.1 - prop-types-extra: 1.1.1_react@18.1.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-transition-group: 4.4.2_ef5jwxihqo6n7gxfmzogljlgcm - uncontrollable: 7.2.1_react@18.1.0 + prop-types-extra: 1.1.1_react@18.2.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-transition-group: 4.4.2_biqbaboplfbrettd7655fr4n2y + uncontrollable: 7.2.1_react@18.2.0 warning: 4.0.3 dev: false - /react-clientside-effect/1.2.6_react@18.1.0: + /react-clientside-effect/1.2.6_react@18.2.0: resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==} peerDependencies: react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 - react: 18.1.0 + react: 18.2.0 dev: false /react-deep-force-update/1.1.2: resolution: {integrity: sha512-WUSQJ4P/wWcusaH+zZmbECOk7H5N2pOIl0vzheeornkIMhu+qrNdGFm0bDZLCb0hSF0jf/kH1SgkNGfBdTc4wA==} dev: true - /react-docgen-typescript/2.2.2_typescript@4.7.3: + /react-docgen-typescript/2.2.2_typescript@4.7.4: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 4.7.3 + typescript: 4.7.4 dev: true /react-docgen/5.4.1: @@ -18106,7 +18086,7 @@ packages: engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@babel/generator': 7.18.2 '@babel/runtime': 7.18.3 ast-types: 0.14.2 @@ -18120,14 +18100,14 @@ packages: - supports-color dev: true - /react-dom/18.1.0_react@18.1.0: - resolution: {integrity: sha512-fU1Txz7Budmvamp7bshe4Zi32d0ll7ect+ccxNu9FlObT605GOEB8BfO4tmRJ39R5Zj831VCpvQ05QPBW5yb+w==} + /react-dom/18.2.0_react@18.2.0: + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: - react: ^18.1.0 || 18 + react: ^18.2.0 || 18 dependencies: loose-envify: 1.4.0 - react: 18.1.0 - scheduler: 0.22.0 + react: 18.2.0 + scheduler: 0.23.0 /react-dragula/1.1.17: resolution: {integrity: sha1-s8s1KkcKcZNnupnWpUAcYPrU9v8=} @@ -18136,7 +18116,7 @@ packages: dragula: 3.7.2 dev: false - /react-element-to-jsx-string/14.3.4_ef5jwxihqo6n7gxfmzogljlgcm: + /react-element-to-jsx-string/14.3.4_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} peerDependencies: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || 18 @@ -18144,8 +18124,8 @@ packages: dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 react-is: 17.0.2 dev: true @@ -18153,7 +18133,7 @@ packages: resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==} dev: false - /react-focus-lock/2.9.1_cbpnieqasrszcwkqeh5i7z7nse: + /react-focus-lock/2.9.1_luyos4mouogwq6z3wafb3re4ce: resolution: {integrity: sha512-pSWOQrUmiKLkffPO6BpMXN7SNKXMsuOakl652IBuALAu1esk+IcpJyM+ALcYzPTTFz1rD0R54aB9A4HuP5t1Wg==} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18163,24 +18143,24 @@ packages: optional: true dependencies: '@babel/runtime': 7.18.3 - '@types/react': 18.0.12 + '@types/react': 18.0.14 focus-lock: 0.11.2 prop-types: 15.8.1 - react: 18.1.0 - react-clientside-effect: 1.2.6_react@18.1.0 - use-callback-ref: 1.3.0_cbpnieqasrszcwkqeh5i7z7nse - use-sidecar: 1.1.2_cbpnieqasrszcwkqeh5i7z7nse + react: 18.2.0 + react-clientside-effect: 1.2.6_react@18.2.0 + use-callback-ref: 1.3.0_luyos4mouogwq6z3wafb3re4ce + use-sidecar: 1.1.2_luyos4mouogwq6z3wafb3re4ce dev: false - /react-icons/4.4.0_react@18.1.0: + /react-icons/4.4.0_react@18.2.0: resolution: {integrity: sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==} peerDependencies: react: '*' dependencies: - react: 18.1.0 + react: 18.2.0 dev: false - /react-inspector/5.1.1_react@18.1.0: + /react-inspector/5.1.1_react@18.2.0: resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} peerDependencies: react: ^16.8.4 || ^17.0.0 || 18 @@ -18188,7 +18168,7 @@ packages: '@babel/runtime': 7.18.3 is-dom: 1.1.0 prop-types: 15.8.1 - react: 18.1.0 + react: 18.2.0 dev: true /react-is/16.13.1: @@ -18201,6 +18181,9 @@ packages: /react-is/18.1.0: resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} + /react-is/18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + /react-lifecycles-compat/3.0.4: resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} dev: false @@ -18212,7 +18195,7 @@ packages: react-deep-force-update: 1.1.2 dev: true - /react-redux/8.0.2_6gdrmwzkzbo4b6pqvtgyt7rzjm: + /react-redux/8.0.2_42iqcqzqjdyq32nxzztmetzyhu: resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 @@ -18235,17 +18218,17 @@ packages: dependencies: '@babel/runtime': 7.18.3 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 react-is: 18.1.0 redux: 4.2.0 - use-sync-external-store: 1.1.0_react@18.1.0 + use-sync-external-store: 1.1.0_react@18.2.0 dev: true - /react-redux/8.0.2_nqhh35lwqrquwueloqsaumzkua: + /react-redux/8.0.2_fzknh3pugl53jp7xsetxkg5ani: resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 @@ -18268,18 +18251,17 @@ packages: dependencies: '@babel/runtime': 7.18.3 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 react-is: 18.1.0 - redux: 4.2.0 - use-sync-external-store: 1.1.0_react@18.1.0 + use-sync-external-store: 1.1.0_react@18.2.0 dev: false - /react-redux/8.0.2_zlkrlo2xsersbascmmsr65fm34: + /react-redux/8.0.2_jcbkrypqxz3emsprsw5dchskju: resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 @@ -18302,14 +18284,15 @@ packages: dependencies: '@babel/runtime': 7.18.3 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.12 + '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 react-is: 18.1.0 - use-sync-external-store: 1.1.0_react@18.1.0 + redux: 4.2.0 + use-sync-external-store: 1.1.0_react@18.2.0 dev: false /react-refresh/0.11.0: @@ -18317,7 +18300,7 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-remove-scroll-bar/2.3.3_cbpnieqasrszcwkqeh5i7z7nse: + /react-remove-scroll-bar/2.3.3_luyos4mouogwq6z3wafb3re4ce: resolution: {integrity: sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==} engines: {node: '>=10'} peerDependencies: @@ -18327,13 +18310,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.12 - react: 18.1.0 - react-style-singleton: 2.2.1_cbpnieqasrszcwkqeh5i7z7nse + '@types/react': 18.0.14 + react: 18.2.0 + react-style-singleton: 2.2.1_luyos4mouogwq6z3wafb3re4ce tslib: 2.4.0 dev: false - /react-remove-scroll/2.5.4_cbpnieqasrszcwkqeh5i7z7nse: + /react-remove-scroll/2.5.4_luyos4mouogwq6z3wafb3re4ce: resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} engines: {node: '>=10'} peerDependencies: @@ -18343,37 +18326,37 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.12 - react: 18.1.0 - react-remove-scroll-bar: 2.3.3_cbpnieqasrszcwkqeh5i7z7nse - react-style-singleton: 2.2.1_cbpnieqasrszcwkqeh5i7z7nse + '@types/react': 18.0.14 + react: 18.2.0 + react-remove-scroll-bar: 2.3.3_luyos4mouogwq6z3wafb3re4ce + react-style-singleton: 2.2.1_luyos4mouogwq6z3wafb3re4ce tslib: 2.4.0 - use-callback-ref: 1.3.0_cbpnieqasrszcwkqeh5i7z7nse - use-sidecar: 1.1.2_cbpnieqasrszcwkqeh5i7z7nse + use-callback-ref: 1.3.0_luyos4mouogwq6z3wafb3re4ce + use-sidecar: 1.1.2_luyos4mouogwq6z3wafb3re4ce dev: false - /react-router-dom/6.3.0_ef5jwxihqo6n7gxfmzogljlgcm: + /react-router-dom/6.3.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: react: '>=16.8 || 18' react-dom: '>=16.8 || 18' dependencies: history: 5.3.0 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-router: 6.3.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-router: 6.3.0_react@18.2.0 dev: false - /react-router/6.3.0_react@18.1.0: + /react-router/6.3.0_react@18.2.0: resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} peerDependencies: react: '>=16.8 || 18' dependencies: history: 5.3.0 - react: 18.1.0 + react: 18.2.0 dev: false - /react-select/5.3.2_oo3emjpi3bbjzqzdmt4yuasdq4: + /react-select/5.3.2_sukxovx4mwg6d6626r5e3rv5k4: resolution: {integrity: sha512-W6Irh7U6Ha7p5uQQ2ZnemoCQ8mcfgOtHfw3wuMzG6FAu0P+CYicgofSLOq97BhjMx8jS+h+wwWdCBeVVZ9VqlQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -18381,29 +18364,29 @@ packages: dependencies: '@babel/runtime': 7.18.3 '@emotion/cache': 11.7.1 - '@emotion/react': 11.9.0_mojt4vfvzjgczlgs4u436xt75u + '@emotion/react': 11.9.0_7eu627umq2cbnjxmysy5yb5jqq '@types/react-transition-group': 4.4.4 memoize-one: 5.2.1 prop-types: 15.8.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-transition-group: 4.4.2_ef5jwxihqo6n7gxfmzogljlgcm + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-transition-group: 4.4.2_biqbaboplfbrettd7655fr4n2y transitivePeerDependencies: - '@babel/core' - '@types/react' dev: false - /react-shallow-renderer/16.15.0_react@18.1.0: + /react-shallow-renderer/16.15.0_react@18.2.0: resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: object-assign: 4.1.1 - react: 18.1.0 - react-is: 18.1.0 + react: 18.2.0 + react-is: 18.2.0 dev: true - /react-style-singleton/2.2.1_cbpnieqasrszcwkqeh5i7z7nse: + /react-style-singleton/2.2.1_luyos4mouogwq6z3wafb3re4ce: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -18413,14 +18396,14 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.12 + '@types/react': 18.0.14 get-nonce: 1.0.1 invariant: 2.2.4 - react: 18.1.0 + react: 18.2.0 tslib: 2.4.0 dev: false - /react-syntax-highlighter/15.5.0_react@18.1.0: + /react-syntax-highlighter/15.5.0_react@18.2.0: resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} peerDependencies: react: '>= 0.14.0 || 18' @@ -18429,19 +18412,19 @@ packages: highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.28.0 - react: 18.1.0 + react: 18.2.0 refractor: 3.6.0 dev: true - /react-test-renderer/18.1.0_react@18.1.0: - resolution: {integrity: sha512-OfuueprJFW7h69GN+kr4Ywin7stcuqaYAt1g7airM5cUgP0BoF5G5CXsPGmXeDeEkncb2fqYNECO4y18sSqphg==} + /react-test-renderer/18.2.0_react@18.2.0: + resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} peerDependencies: - react: ^18.1.0 || 18 + react: ^18.2.0 || 18 dependencies: - react: 18.1.0 - react-is: 18.1.0 - react-shallow-renderer: 16.15.0_react@18.1.0 - scheduler: 0.22.0 + react: 18.2.0 + react-is: 18.2.0 + react-shallow-renderer: 16.15.0_react@18.2.0 + scheduler: 0.23.0 dev: true /react-transform-catch-errors/1.0.2: @@ -18455,7 +18438,7 @@ packages: react-proxy: 1.1.8 dev: true - /react-transition-group/4.4.2_ef5jwxihqo6n7gxfmzogljlgcm: + /react-transition-group/4.4.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} peerDependencies: react: '>=16.6.0 || 18' @@ -18465,18 +18448,18 @@ packages: dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: false - /react/18.1.0: - resolution: {integrity: sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ==} + /react/18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 /read-pkg-up/1.0.1: - resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=} + resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} engines: {node: '>=0.10.0'} dependencies: find-up: 1.1.2 @@ -18494,7 +18477,7 @@ packages: dev: true /read-pkg/1.1.0: - resolution: {integrity: sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=} + resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} engines: {node: '>=0.10.0'} dependencies: load-json-file: 1.1.0 @@ -18581,7 +18564,7 @@ packages: dev: false /redent/1.0.0: - resolution: {integrity: sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=} + resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} engines: {node: '>=0.10.0'} dependencies: indent-string: 2.1.0 @@ -18609,7 +18592,7 @@ packages: deep-diff: 0.3.8 dev: false - /redux-persist/6.0.0_react@18.1.0+redux@4.2.0: + /redux-persist/6.0.0_react@18.2.0+redux@4.2.0: resolution: {integrity: sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==} peerDependencies: react: '>=16 || 18' @@ -18618,7 +18601,7 @@ packages: react: optional: true dependencies: - react: 18.1.0 + react: 18.2.0 redux: 4.2.0 dev: false @@ -18781,7 +18764,7 @@ packages: dev: true /remove-trailing-separator/1.1.0: - resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=} + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} dev: true /renderkid/2.0.7: @@ -18810,12 +18793,12 @@ packages: dev: true /repeat-string/1.6.1: - resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=} + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} dev: true /repeating/2.0.1: - resolution: {integrity: sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=} + resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} engines: {node: '>=0.10.0'} dependencies: is-finite: 1.1.0 @@ -18823,7 +18806,7 @@ packages: optional: true /require-directory/2.1.1: - resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} /require-from-string/2.0.2: @@ -18836,7 +18819,7 @@ packages: dev: true /requires-port/1.0.0: - resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=} + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true /reselect/4.1.5: @@ -18858,7 +18841,7 @@ packages: engines: {node: '>=8'} /resolve-url/0.2.1: - resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=} + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} deprecated: https://github.com/lydell/resolve-url#deprecated dev: true @@ -18883,7 +18866,7 @@ packages: dev: true /responselike/1.0.2: - resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=} + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} dependencies: lowercase-keys: 1.0.1 @@ -18900,7 +18883,7 @@ packages: dev: true /retry/0.12.0: - resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=} + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} engines: {node: '>= 4'} dev: false optional: true @@ -18957,20 +18940,20 @@ packages: sprintf-js: 1.1.2 optional: true - /rollup-plugin-terser/7.0.2_rollup@2.75.5: + /rollup-plugin-terser/7.0.2_rollup@2.75.6: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 dependencies: '@babel/code-frame': 7.16.7 jest-worker: 26.6.2 - rollup: 2.75.5 + rollup: 2.75.6 serialize-javascript: 4.0.0 terser: 5.14.0 dev: true - /rollup-plugin-typescript2/0.32.0_5tbauevimgxepjeo5powblb5xq: - resolution: {integrity: sha512-sIiCObzETQagImlNa/xVZY2aKB/7w77EzKAzpmVkXZbDuso6PrW2hdQv6m4/UuMqnzqTFWGF4FPLbVuQISeYZw==} + /rollup-plugin-typescript2/0.32.1_63sirsnfvviu2qxghjzgkmnlpm: + resolution: {integrity: sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw==} peerDependencies: rollup: '>=1.26.3' typescript: '>=2.4.0' @@ -18979,13 +18962,13 @@ packages: find-cache-dir: 3.3.2 fs-extra: 10.1.0 resolve: 1.22.0 - rollup: 2.75.5 + rollup: 2.75.6 tslib: 2.4.0 - typescript: 4.7.3 + typescript: 4.7.4 dev: true - /rollup/2.75.5: - resolution: {integrity: sha512-JzNlJZDison3o2mOxVmb44Oz7t74EfSd1SQrplQk0wSaXV7uLQXtVdHbxlcT3w+8tZ1TL4r/eLfc7nAbz38BBA==} + /rollup/2.75.6: + resolution: {integrity: sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -19009,7 +18992,7 @@ packages: dev: true /run-queue/1.0.3: - resolution: {integrity: sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=} + resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==} dependencies: aproba: 1.2.0 dev: true @@ -19030,7 +19013,7 @@ packages: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} /safe-regex/1.1.0: - resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=} + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} dependencies: ret: 0.1.15 dev: true @@ -19070,8 +19053,8 @@ packages: /sc-formatter/3.0.3: resolution: {integrity: sha512-lYI/lTs1u1c0geKElcj+bmEUfcP/HuKg2iDeTijPSjiTNFzN3Cf8Qh6tVd65oi7Qn+2/oD7LP4s6GC13v/9NiQ==} - /scheduler/0.22.0: - resolution: {integrity: sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ==} + /scheduler/0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 @@ -19122,7 +19105,7 @@ packages: dev: true /select-hose/2.0.0: - resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=} + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} dev: true /selenium-webdriver/4.2.0: @@ -19145,7 +19128,7 @@ packages: dev: true /semver-compare/1.0.0: - resolution: {integrity: sha1-De4hahyUGrN+nvsXiPavxf9VN/w=} + resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} optional: true /semver/5.7.1: @@ -19222,7 +19205,7 @@ packages: dev: true /serve-favicon/2.5.0: - resolution: {integrity: sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=} + resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} engines: {node: '>= 0.8.0'} dependencies: etag: 1.8.1 @@ -19233,7 +19216,7 @@ packages: dev: true /serve-index/1.9.1: - resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=} + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} engines: {node: '>= 0.8.0'} dependencies: accepts: 1.3.8 @@ -19259,7 +19242,7 @@ packages: - supports-color /set-blocking/2.0.0: - resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=} + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} /set-cookie-parser/2.5.0: resolution: {integrity: sha512-cHMAtSXilfyBePduZEBVPTCftTQWz6ehWJD5YNUg4mqvRosrrjKbo4WS8JkB0/RxonMoohHm7cOGH60mDkRQ9w==} @@ -19303,7 +19286,7 @@ packages: resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} /shebang-command/1.2.0: - resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=} + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} engines: {node: '>=0.10.0'} dependencies: shebang-regex: 1.0.0 @@ -19316,7 +19299,7 @@ packages: shebang-regex: 3.0.0 /shebang-regex/1.0.0: - resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=} + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} engines: {node: '>=0.10.0'} dev: true @@ -19406,11 +19389,12 @@ packages: dev: false optional: true - /smartwrap/1.2.5: - resolution: {integrity: sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg==} - deprecated: Backported compatibility to node > 6 + /smartwrap/2.0.2: + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} + engines: {node: '>=6'} hasBin: true dependencies: + array.prototype.flat: 1.3.0 breakword: 1.0.5 grapheme-splitter: 1.0.4 strip-ansi: 6.0.1 @@ -19634,11 +19618,6 @@ packages: - supports-color dev: true - /specificity/0.4.1: - resolution: {integrity: sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==} - hasBin: true - dev: true - /split-string/3.1.0: resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} engines: {node: '>=0.10.0'} @@ -19647,7 +19626,7 @@ packages: dev: true /sprintf-js/1.0.3: - resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true /sprintf-js/1.1.2: @@ -19704,7 +19683,7 @@ packages: dev: true /static-extend/0.1.2: - resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=} + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} engines: {node: '>=0.10.0'} dependencies: define-property: 0.2.5 @@ -19712,7 +19691,7 @@ packages: dev: true /statuses/1.5.0: - resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} dev: true @@ -19844,7 +19823,7 @@ packages: safe-buffer: 5.2.1 /strip-ansi/3.0.1: - resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=} + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 @@ -19857,7 +19836,7 @@ packages: ansi-regex: 5.0.1 /strip-bom/2.0.0: - resolution: {integrity: sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=} + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} engines: {node: '>=0.10.0'} dependencies: is-utf8: 0.2.1 @@ -19865,7 +19844,7 @@ packages: optional: true /strip-bom/3.0.0: - resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} dev: true @@ -19875,7 +19854,7 @@ packages: dev: true /strip-eof/1.0.0: - resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=} + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} engines: {node: '>=0.10.0'} dev: true @@ -19885,7 +19864,7 @@ packages: dev: true /strip-indent/1.0.1: - resolution: {integrity: sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=} + resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} engines: {node: '>=0.10.0'} hasBin: true dependencies: @@ -19922,11 +19901,11 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /style-search/0.1.0: - resolution: {integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=} + resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} dev: true /style-to-object/0.3.0: @@ -19942,7 +19921,7 @@ packages: tslib: 2.4.0 dev: false - /styled-components/5.3.5_4klixn56hmiqf6hh5nx3jyckvq: + /styled-components/5.3.5_7i5myeigehqah43i5u7wbekgba: resolution: {integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==} engines: {node: '>=10'} requiresBuild: true @@ -19959,37 +19938,37 @@ packages: babel-plugin-styled-components: 2.0.7_styled-components@5.3.5 css-to-react-native: 3.0.0 hoist-non-react-statics: 3.3.2 - react: 18.1.0 - react-dom: 18.1.0_react@18.1.0 - react-is: 18.1.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 shallowequal: 1.1.0 supports-color: 5.5.0 - /stylelint-config-prettier/9.0.3_stylelint@14.8.5: + /stylelint-config-prettier/9.0.3_stylelint@14.9.1: resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==} engines: {node: '>= 12'} hasBin: true peerDependencies: stylelint: '>=11.0.0' dependencies: - stylelint: 14.8.5 + stylelint: 14.9.1 dev: true - /stylelint-config-recommended/7.0.0_stylelint@14.8.5: + /stylelint-config-recommended/7.0.0_stylelint@14.9.1: resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==} peerDependencies: stylelint: ^14.4.0 dependencies: - stylelint: 14.8.5 + stylelint: 14.9.1 dev: true - /stylelint-config-standard/25.0.0_stylelint@14.8.5: + /stylelint-config-standard/25.0.0_stylelint@14.9.1: resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==} peerDependencies: stylelint: ^14.4.0 dependencies: - stylelint: 14.8.5 - stylelint-config-recommended: 7.0.0_stylelint@14.8.5 + stylelint: 14.9.1 + stylelint-config-recommended: 7.0.0_stylelint@14.9.1 dev: true /stylelint-config-styled-components/0.1.1: @@ -20007,11 +19986,12 @@ packages: - supports-color dev: true - /stylelint/14.8.5: - resolution: {integrity: sha512-e3t4H/hlWlspkcNUrkhf44RU3OpPTA7uBOoREGBzSwdEF+2g/+gbZq7WEpMP7BpopcSe/uLaTvDuL+URL7cdnQ==} + /stylelint/14.9.1: + resolution: {integrity: sha512-RdAkJdPiLqHawCSnu21nE27MjNXaVd4WcOHA4vK5GtIGjScfhNnaOuWR2wWdfKFAvcWQPOYe311iveiVKSmwsA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: + '@csstools/selector-specificity': 2.0.1_444rcjjorr3kpoqtvoodsr46pu balanced-match: 2.0.0 colord: 2.9.2 cosmiconfig: 7.0.1 @@ -20043,7 +20023,6 @@ packages: postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 - specificity: 0.4.1 string-width: 4.2.3 strip-ansi: 6.0.1 style-search: 0.1.0 @@ -20129,7 +20108,7 @@ packages: engines: {node: '>= 0.4'} /svg-tags/1.0.0: - resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=} + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} dev: true /symbol-observable/1.2.0: @@ -20297,7 +20276,7 @@ packages: schema-utils: 3.1.1 serialize-javascript: 6.0.0 terser: 5.14.0 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /terser/4.8.0: @@ -20332,7 +20311,7 @@ packages: dev: true /text-table/0.2.0: - resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true /throat/6.0.1: @@ -20340,7 +20319,7 @@ packages: dev: true /through/2.3.8: - resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: false /through2/2.0.5: @@ -20395,7 +20374,7 @@ packages: dev: true /to-arraybuffer/1.0.1: - resolution: {integrity: sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=} + resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==} dev: true /to-fast-properties/1.0.3: @@ -20408,7 +20387,7 @@ packages: engines: {node: '>=4'} /to-object-path/0.3.0: - resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=} + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -20419,7 +20398,7 @@ packages: engines: {node: '>=6'} /to-regex-range/2.1.1: - resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=} + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 @@ -20447,7 +20426,7 @@ packages: dev: false /toggle-selection/1.0.6: - resolution: {integrity: sha1-bkWxJj8gF/oKzH2J14sVuL932jI=} + resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} dev: false /toidentifier/1.0.1: @@ -20478,7 +20457,7 @@ packages: dev: true /trim-newlines/1.0.0: - resolution: {integrity: sha1-WIeWa7WCpFA6QetST301ARgVphM=} + resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} engines: {node: '>=0.10.0'} dev: true optional: true @@ -20493,7 +20472,7 @@ packages: dev: true /trim/0.0.1: - resolution: {integrity: sha1-WFhUf2spB1fulczMZm+1AITEYN0=} + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} dev: true /trough/1.0.5: @@ -20505,7 +20484,7 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-jest/27.1.5_bpd7ociw4jsnx5mdyykezdwa4q: + /ts-jest/27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm: resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -20526,41 +20505,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.18.2 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.7.3 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.5_ikyry4vjszs3yiy6j74lwhwpya: - resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.18.2 + '@babel/core': 7.18.5 '@types/jest': 27.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -20570,11 +20515,45 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.7 - typescript: 4.7.3 + typescript: 4.7.4 yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.5_zydwki6ztrgm452or5cw6tjo5q: + /ts-jest/27.1.5_fddvm4zdts2kttulaik7bnebje: + resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@babel/core': 7.18.5 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.5.1 + jest-util: 27.5.1 + json5: 2.2.1 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.7 + typescript: 4.7.4 + yargs-parser: 20.2.9 + dev: true + + /ts-jest/27.1.5_mqaoisgizytgigbr3gbjwvnjie: resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -20604,11 +20583,11 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.7 - typescript: 4.7.3 + typescript: 4.7.4 yargs-parser: 20.2.9 dev: true - /ts-node/10.8.1_xrrid5ahylip6fa4hrbwh6apl4: + /ts-node/10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu: resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} hasBin: true peerDependencies: @@ -20627,19 +20606,19 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 16.11.38 + '@types/node': 16.11.41 acorn: 8.7.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.7.3 + typescript: 4.7.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /ts-pnp/1.2.0_typescript@4.7.3: + /ts-pnp/1.2.0_typescript@4.7.4: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -20648,7 +20627,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.7.3 + typescript: 4.7.4 dev: true /ts-toolbelt/6.15.5: @@ -20670,31 +20649,32 @@ packages: /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - /tsutils/3.21.0_typescript@4.7.3: + /tsutils/3.21.0_typescript@4.7.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.7.3 + typescript: 4.7.4 dev: true /tty-browserify/0.0.0: - resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=} + resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} dev: true - /tty-table/2.8.13: - resolution: {integrity: sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ==} - engines: {node: '>=8.16.0'} + /tty-table/4.1.6: + resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==} + engines: {node: '>=8.0.0'} hasBin: true dependencies: - chalk: 3.0.0 + chalk: 4.1.2 csv: 5.5.3 - smartwrap: 1.2.5 + kleur: 4.1.4 + smartwrap: 2.0.2 strip-ansi: 6.0.1 wcwidth: 1.0.1 - yargs: 15.4.1 + yargs: 17.5.1 dev: true /tunnel/0.0.6: @@ -20768,10 +20748,10 @@ packages: dev: true /typedarray/0.0.6: - resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=} + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - /typescript/4.7.3: - resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} + /typescript/4.7.4: + resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} engines: {node: '>=4.2.0'} hasBin: true @@ -20809,15 +20789,15 @@ packages: which-boxed-primitive: 1.0.2 dev: true - /uncontrollable/7.2.1_react@18.1.0: + /uncontrollable/7.2.1_react@18.2.0: resolution: {integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==} peerDependencies: react: '>=15.0.0 || 18' dependencies: '@babel/runtime': 7.18.3 - '@types/react': 18.0.12 + '@types/react': 18.0.14 invariant: 2.2.4 - react: 18.1.0 + react: 18.2.0 react-lifecycles-compat: 3.0.4 dev: false @@ -20949,7 +20929,7 @@ packages: engines: {node: '>= 0.8'} /unset-value/1.0.0: - resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=} + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} engines: {node: '>=0.10.0'} dependencies: has-value: 0.3.1 @@ -20957,7 +20937,7 @@ packages: dev: true /untildify/2.1.0: - resolution: {integrity: sha1-F+soB5h/dpUunASF/DEdBqgmouA=} + resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} engines: {node: '>=0.10.0'} dependencies: os-homedir: 1.0.2 @@ -20980,7 +20960,7 @@ packages: dev: true /urix/0.1.0: - resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=} + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} deprecated: Please see https://github.com/lydell/urix#deprecated dev: true @@ -21002,19 +20982,19 @@ packages: dev: true /url-parse-lax/3.0.0: - resolution: {integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=} + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} engines: {node: '>=4'} dependencies: prepend-http: 2.0.0 /url/0.11.0: - resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=} + resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} dependencies: punycode: 1.3.2 querystring: 0.2.0 dev: true - /use-callback-ref/1.3.0_cbpnieqasrszcwkqeh5i7z7nse: + /use-callback-ref/1.3.0_luyos4mouogwq6z3wafb3re4ce: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -21024,12 +21004,12 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.12 - react: 18.1.0 + '@types/react': 18.0.14 + react: 18.2.0 tslib: 2.4.0 dev: false - /use-sidecar/1.1.2_cbpnieqasrszcwkqeh5i7z7nse: + /use-sidecar/1.1.2_luyos4mouogwq6z3wafb3re4ce: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -21039,18 +21019,18 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.12 + '@types/react': 18.0.14 detect-node-es: 1.1.0 - react: 18.1.0 + react: 18.2.0 tslib: 2.4.0 dev: false - /use-sync-external-store/1.1.0_react@18.1.0: + /use-sync-external-store/1.1.0_react@18.2.0: resolution: {integrity: sha512-SEnieB2FPKEVne66NpXPd1Np4R1lTNKfjuy3XdIoPQKYBAFdzbzSZlSn1KJZUiihQLQC5Znot4SBz1EOTBwQAQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - react: 18.1.0 + react: 18.2.0 /use/3.1.1: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} @@ -21068,7 +21048,7 @@ packages: dev: true /util/0.10.3: - resolution: {integrity: sha1-evsa/lCAUkZInj23/g7TeTNqwPk=} + resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==} dependencies: inherits: 2.0.1 dev: true @@ -21080,7 +21060,7 @@ packages: dev: true /utila/0.4.0: - resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=} + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} dev: true /utils-merge/1.0.1: @@ -21088,7 +21068,7 @@ packages: engines: {node: '>= 0.4.0'} /uuid-browser/3.1.0: - resolution: {integrity: sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=} + resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} dev: true /uuid/3.4.0: @@ -21260,7 +21240,7 @@ packages: dev: true /wcwidth/1.0.1: - resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=} + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.3 @@ -21281,8 +21261,8 @@ packages: engines: {node: '>=10.4'} dev: true - /webpack-cli/4.9.2_hp63p7q42cvfilxmz3bdou5zeq: - resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} + /webpack-cli/4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju: + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -21302,23 +21282,23 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.1.1_gkh3o7gdsall36kyfdv2sybo54 - '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2 - '@webpack-cli/serve': 1.6.1_wrq76o5olao5kakxgxx43iiltu + '@webpack-cli/configtest': 1.2.0_77l47gmqkrqiei5z7sbwz5iaj4 + '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0 + '@webpack-cli/serve': 1.7.0_b6kp5g2s4uywsci7bb7pbu5to4 colorette: 2.0.17 commander: 7.2.0 - execa: 5.1.1 + cross-spawn: 7.0.3 fastest-levenshtein: 1.0.12 import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-dev-server: 4.9.1_gkh3o7gdsall36kyfdv2sybo54 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 webpack-merge: 5.8.0 dev: true - /webpack-cli/4.9.2_webpack@5.73.0: - resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} + /webpack-cli/4.10.0_webpack@5.73.0: + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -21338,17 +21318,17 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.1.1_gkh3o7gdsall36kyfdv2sybo54 - '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2 - '@webpack-cli/serve': 1.6.1_webpack-cli@4.9.2 + '@webpack-cli/configtest': 1.2.0_77l47gmqkrqiei5z7sbwz5iaj4 + '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0 + '@webpack-cli/serve': 1.7.0_webpack-cli@4.10.0 colorette: 2.0.17 commander: 7.2.0 - execa: 5.1.1 + cross-spawn: 7.0.3 fastest-levenshtein: 1.0.12 import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 webpack-merge: 5.8.0 dev: true @@ -21377,11 +21357,11 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.73.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true - /webpack-dev-server/4.9.1_gkh3o7gdsall36kyfdv2sybo54: - resolution: {integrity: sha512-CTMfu2UMdR/4OOZVHRpdy84pNopOuigVIsRbGX3LVDMWNP8EUgC5mUBMErbwBlHTEX99ejZJpVqrir6EXAEajA==} + /webpack-dev-server/4.9.2_77l47gmqkrqiei5z7sbwz5iaj4: + resolution: {integrity: sha512-H95Ns95dP24ZsEzO6G9iT+PNw4Q7ltll1GfJHV4fKphuHWgKFzGHWi4alTlTnpk1SPPk41X+l2RB7rLfIhnB9Q==} engines: {node: '>= 12.13.0'} hasBin: true peerDependencies: @@ -21395,6 +21375,7 @@ packages: '@types/connect-history-api-fallback': 1.3.5 '@types/express': 4.17.13 '@types/serve-index': 1.9.1 + '@types/serve-static': 1.13.10 '@types/sockjs': 0.3.33 '@types/ws': 8.5.3 ansi-html-community: 0.0.8 @@ -21417,8 +21398,8 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.73.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju webpack-dev-middleware: 5.3.3_webpack@5.73.0 ws: 8.7.0 transitivePeerDependencies: @@ -21562,7 +21543,7 @@ packages: - uglify-js dev: true - /webpack/5.73.0_webpack-cli@4.9.2: + /webpack/5.73.0_webpack-cli@4.10.0: resolution: {integrity: sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==} engines: {node: '>=10.13.0'} hasBin: true @@ -21595,7 +21576,7 @@ packages: tapable: 2.2.1 terser-webpack-plugin: 5.3.3_webpack@5.73.0 watchpack: 2.4.0 - webpack-cli: 4.9.2_hp63p7q42cvfilxmz3bdou5zeq + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -21658,7 +21639,7 @@ packages: dev: true /which-module/2.0.0: - resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=} + resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} dev: true /which-pm/2.0.0: @@ -21722,7 +21703,7 @@ packages: dev: true /wordwrap/1.0.0: - resolution: {integrity: sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=} + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: true /worker-farm/1.7.0: @@ -21755,7 +21736,7 @@ packages: strip-ansi: 6.0.1 /wrappy/1.0.2: - resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} /writable-consumable-stream/2.0.0: resolution: {integrity: sha512-SITambzxtPTFU/wR82h+zOKGBiEv5V8gC1mt8xvoE1/168ApEa8H+6s2UToYJo3VLL7sNYTaApKuPD+pZHMGJQ==} @@ -21805,7 +21786,7 @@ packages: dev: true /x-default-browser/0.4.0: - resolution: {integrity: sha1-cM8NqF2nwKtcsPFaiX8jIqa91IE=} + resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} hasBin: true optionalDependencies: default-browser-id: 1.0.4 @@ -21841,7 +21822,7 @@ packages: engines: {node: '>=10'} /yallist/2.1.2: - resolution: {integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=} + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} dev: true /yallist/3.1.1: From 4e061f46000963279d978f5c26e449542a96db6f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 19 Jun 2022 21:39:55 -0400 Subject: [PATCH 28/29] chore(deps): lock file maintenance (#1191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 863 +++++++++++++++++++++---------------------------- 1 file changed, 361 insertions(+), 502 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7393bd25..0f413d73 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2581,7 +2581,7 @@ packages: /@apollographql/graphql-playground-html/1.6.29: resolution: {integrity: sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==} dependencies: - xss: 1.0.12 + xss: 1.0.13 dev: false /@babel/cli/7.17.10_@babel+core@7.18.5: @@ -2610,8 +2610,8 @@ packages: dependencies: '@babel/highlight': 7.17.12 - /@babel/compat-data/7.17.10: - resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==} + /@babel/compat-data/7.18.5: + resolution: {integrity: sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg==} engines: {node: '>=6.9.0'} /@babel/core/7.12.9: @@ -2631,7 +2631,7 @@ packages: gensync: 1.0.0-beta.2 json5: 2.2.1 lodash: 4.17.21 - resolve: 1.22.0 + resolve: 1.22.1 semver: 5.7.1 source-map: 0.5.7 transitivePeerDependencies: @@ -2702,10 +2702,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.17.10 + '@babel/compat-data': 7.18.5 '@babel/core': 7.18.5 '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.3 + browserslist: 4.20.4 semver: 6.3.0 /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.5: @@ -2749,7 +2749,7 @@ packages: '@babel/traverse': 7.18.5 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -2767,7 +2767,7 @@ packages: '@babel/traverse': 7.18.5 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -2921,13 +2921,6 @@ packages: chalk: github.com/Methuselah96/chalk/7e66d0ff681fc10462ce327f1c4f82bfa13193e2 js-tokens: 4.0.0 - /@babel/parser/7.18.4: - resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.18.4 - /@babel/parser/7.18.5: resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==} engines: {node: '>=6.0.0'} @@ -3098,7 +3091,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.17.12 + '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.12.9 dev: true @@ -3109,7 +3102,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 + '@babel/compat-data': 7.18.5 '@babel/core': 7.18.5 '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 @@ -3600,8 +3593,8 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.18.4_@babel+core@7.18.5: - resolution: {integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==} + /@babel/plugin-transform-modules-systemjs/7.18.5_@babel+core@7.18.5: + resolution: {integrity: sha512-SEewrhPpcqMF1V7DhnEbhVJLrC+nnYfe1E0piZMZXBpxi9WvZqWGwpsk7JYP7wPWeqaBh4gyKlBhHJu3uz5g4Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3640,8 +3633,8 @@ packages: '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.18.5: - resolution: {integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==} + /@babel/plugin-transform-new-target/7.18.5_@babel+core@7.18.5: + resolution: {integrity: sha512-TuRL5uGW4KXU6OsRj+mLp9BM7pO8e7SGNTEokQRRxHFkXYMFiy2jlKSZPFtI/mKORDzciH+hneskcSOp0gU8hg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3876,7 +3869,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 + '@babel/compat-data': 7.18.5 '@babel/core': 7.18.5 '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-plugin-utils': 7.17.12 @@ -3929,10 +3922,10 @@ packages: '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.5 '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.5 '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.5 - '@babel/plugin-transform-modules-systemjs': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-modules-systemjs': 7.18.5_@babel+core@7.18.5 '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.5 '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.5 - '@babel/plugin-transform-new-target': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-new-target': 7.18.5_@babel+core@7.18.5 '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.5 '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5 '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.5 @@ -3950,7 +3943,7 @@ packages: babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5 babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5 babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5 - core-js-compat: 3.22.8 + core-js-compat: 3.23.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -4028,7 +4021,7 @@ packages: resolution: {integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==} engines: {node: '>=6.9.0'} dependencies: - core-js-pure: 3.22.8 + core-js-pure: 3.23.1 regenerator-runtime: 0.13.9 dev: true @@ -4046,41 +4039,6 @@ packages: '@babel/parser': 7.18.5 '@babel/types': 7.18.4 - /@babel/traverse/7.18.2: - resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.7 - '@babel/generator': 7.18.2 - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.18.4 - '@babel/types': 7.18.4 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/traverse/7.18.2_supports-color@5.5.0: - resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.7 - '@babel/generator': 7.18.2 - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.18.4 - '@babel/types': 7.18.4 - debug: 4.3.4_supports-color@5.5.0 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/traverse/7.18.5: resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} engines: {node: '>=6.9.0'} @@ -4098,6 +4056,23 @@ packages: transitivePeerDependencies: - supports-color + /@babel/traverse/7.18.5_supports-color@5.5.0: + resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 + '@babel/helper-function-name': 7.17.9 + '@babel/helper-hoist-variables': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 + debug: 4.3.4_supports-color@5.5.0 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/types/7.18.4: resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} engines: {node: '>=6.9.0'} @@ -5165,16 +5140,6 @@ packages: stylis: 4.0.13 dev: false - /@emotion/cache/11.7.1: - resolution: {integrity: sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==} - dependencies: - '@emotion/memoize': 0.7.5 - '@emotion/sheet': 1.1.0 - '@emotion/utils': 1.1.0 - '@emotion/weak-memoize': 0.2.5 - stylis: 4.0.13 - dev: false - /@emotion/cache/11.9.3: resolution: {integrity: sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg==} dependencies: @@ -5197,16 +5162,10 @@ packages: dev: false optional: true - /@emotion/is-prop-valid/1.1.2: - resolution: {integrity: sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==} - dependencies: - '@emotion/memoize': 0.7.5 - /@emotion/is-prop-valid/1.1.3: resolution: {integrity: sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==} dependencies: '@emotion/memoize': 0.7.5 - dev: false /@emotion/memoize/0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} @@ -5216,30 +5175,6 @@ packages: /@emotion/memoize/0.7.5: resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==} - /@emotion/react/11.9.0_7eu627umq2cbnjxmysy5yb5jqq: - resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/react': '*' - react: '>=16.8.0 || 18' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/core': 7.18.5 - '@babel/runtime': 7.18.3 - '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.5 - '@emotion/cache': 11.7.1 - '@emotion/serialize': 1.0.3 - '@emotion/utils': 1.1.0 - '@emotion/weak-memoize': 0.2.5 - '@types/react': 18.0.14 - hoist-non-react-statics: 3.3.2 - react: 18.2.0 - dev: false - /@emotion/react/11.9.3_7eu627umq2cbnjxmysy5yb5jqq: resolution: {integrity: sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ==} peerDependencies: @@ -5264,16 +5199,6 @@ packages: react: 18.2.0 dev: false - /@emotion/serialize/1.0.3: - resolution: {integrity: sha512-2mSSvgLfyV3q+iVh3YWgNlUc2a9ZlDU7DjuP5MjK3AXRR0dYigCrP99aeFtaB2L/hjfEZdSThn5dsZ0ufqbvsA==} - dependencies: - '@emotion/hash': 0.8.0 - '@emotion/memoize': 0.7.5 - '@emotion/unitless': 0.7.5 - '@emotion/utils': 1.1.0 - csstype: 3.1.0 - dev: false - /@emotion/serialize/1.0.4: resolution: {integrity: sha512-1JHamSpH8PIfFwAMryO2bNka+y8+KA5yga5Ocf2d7ZEiJjb7xlLW7aknBGZqJLajuLOvJ+72vN+IBSwPlXD1Pg==} dependencies: @@ -5284,10 +5209,6 @@ packages: csstype: 3.1.0 dev: false - /@emotion/sheet/1.1.0: - resolution: {integrity: sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==} - dev: false - /@emotion/sheet/1.1.1: resolution: {integrity: sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA==} dev: false @@ -5350,42 +5271,42 @@ packages: /@gar/promisify/1.1.3: resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - /@graphql-tools/merge/8.2.13_graphql@16.5.0: - resolution: {integrity: sha512-lhzjCa6wCthOYl7B6UzER3SGjU2WjSGnW0WGr8giMYsrtf6G3vIRotMcSVMlhDzyyMIOn7uPULOUt3/kaJ/rIA==} + /@graphql-tools/merge/8.2.14_graphql@16.5.0: + resolution: {integrity: sha512-od6lTF732nwPX91G79eiJf+dyRBHxCaKe7QL4IYeH4d1k+NYqx/ihYpFJNjDaqxmpHH92Hr+TxsP9SYRK3/QKg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.6.12_graphql@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 graphql: 16.5.0 tslib: 2.4.0 dev: false - /@graphql-tools/mock/8.6.11_graphql@16.5.0: - resolution: {integrity: sha512-O9q/tdKCMURAzRLM6hGBCik/bCh8Opk6XUX5AhhDrEyLwTJVwGUsI/vSctRmVq7yfFm0dNBQosz/EsqL0fkNZg==} + /@graphql-tools/mock/8.6.12_graphql@16.5.0: + resolution: {integrity: sha512-o4plehiIgwqIB3TJDlEx7s6CHucTnrYsv4LqBXfyiXN10E9x0Ab44UxXjePbAd9yJFYEUYp0thqb7WjI3/3cmQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 8.3.13_graphql@16.5.0 - '@graphql-tools/utils': 8.6.12_graphql@16.5.0 + '@graphql-tools/schema': 8.3.14_graphql@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 fast-json-stable-stringify: 2.1.0 graphql: 16.5.0 tslib: 2.4.0 dev: false - /@graphql-tools/schema/8.3.13_graphql@16.5.0: - resolution: {integrity: sha512-e+bx1VHj1i5v4HmhCYCar0lqdoLmkRi/CfV07rTqHR6CRDbIb/S/qDCajHLt7FCovQ5ozlI5sRVbBhzfq5H0PQ==} + /@graphql-tools/schema/8.3.14_graphql@16.5.0: + resolution: {integrity: sha512-ntA4pKwyyPHFFKcIw17FfqGZAiTNZl0tHieQpPIkN5fPc4oHcXOfaj1vBjtIC/Qn6H7XBBu3l2kMA8FpobdxTQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.2.13_graphql@16.5.0 - '@graphql-tools/utils': 8.6.12_graphql@16.5.0 + '@graphql-tools/merge': 8.2.14_graphql@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 graphql: 16.5.0 tslib: 2.4.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/utils/8.6.12_graphql@16.5.0: - resolution: {integrity: sha512-WQ91O40RC+UJgZ9K+IzevSf8oolR1QE+WQ21Oyc2fgDYYiqT0eSf+HVyhZr/8x9rVjn3N9HeqCsywbdmbljg0w==} + /@graphql-tools/utils/8.6.13_graphql@16.5.0: + resolution: {integrity: sha512-FiVqrQzj4cgz0HcZ3CxUs8NtBGPZFpmsVyIgwmL6YCwIhjJQnT72h8G3/vk5zVfjfesht85YGp0inWWuoCKWzg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: @@ -5429,7 +5350,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -5450,7 +5371,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -5495,7 +5416,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -5532,7 +5453,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 jest-mock: 27.5.1 dev: true @@ -5542,7 +5463,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 17.0.40 + '@types/node': 16.11.41 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -5571,7 +5492,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -5678,7 +5599,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 17.0.40 + '@types/node': 18.0.0 '@types/yargs': 15.0.14 chalk: 4.1.2 dev: true @@ -5689,7 +5610,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true @@ -5752,7 +5673,7 @@ packages: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: '@babel/runtime': 7.18.3 - '@types/node': 12.20.54 + '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 dev: true @@ -5864,8 +5785,8 @@ packages: - typescript dev: false - /@mswjs/interceptors/0.16.4: - resolution: {integrity: sha512-McPKUFlZNS/wo+OAor15k0fv2skK+EdWl9CEcdxAqsN4vKajlxCxDU4B5W/pn1y0TJPSAOmxR6LYFe/8esePrg==} + /@mswjs/interceptors/0.16.6: + resolution: {integrity: sha512-7ax1sRx5s4ZWl0KvVhhcPOUoPbCCkVh8M8hYaqOyvoAQOiqLVzy+Z6Mh2ywPhYw4zudr5Mo/E8UT/zJBO/Wxrw==} engines: {node: '>=14'} dependencies: '@open-draft/until': 1.0.3 @@ -5996,8 +5917,8 @@ packages: dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 - core-js-pure: 3.22.8 - error-stack-parser: 2.1.2 + core-js-pure: 3.23.1 + error-stack-parser: 2.1.4 find-up: 5.0.0 html-entities: 2.3.3 loader-utils: 2.0.2 @@ -6074,12 +5995,12 @@ packages: react-redux: optional: true dependencies: - immer: 9.0.14 + immer: 9.0.15 react: 18.2.0 react-redux: 8.0.2_fzknh3pugl53jp7xsetxkg5ani redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 - reselect: 4.1.5 + reselect: 4.1.6 dev: false /@reduxjs/toolkit/1.8.2_react@18.2.0: @@ -6093,11 +6014,11 @@ packages: react-redux: optional: true dependencies: - immer: 9.0.14 + immer: 9.0.15 react: 18.2.0 redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 - reselect: 4.1.5 + reselect: 4.1.6 dev: true /@restart/hooks/0.4.7_react@18.2.0: @@ -6136,7 +6057,7 @@ packages: dependencies: '@types/json-schema': 7.0.11 ajv: 6.12.6 - core-js-pure: 3.22.8 + core-js-pure: 3.23.1 json-schema-merge-allof: 0.6.0 jsonpointer: 5.0.0 lodash: 4.17.21 @@ -6174,7 +6095,7 @@ packages: glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 - resolve: 1.22.0 + resolve: 1.22.1 rollup: 2.75.6 dev: true @@ -6189,7 +6110,7 @@ packages: deepmerge: 4.2.2 is-builtin-module: 3.1.0 is-module: 1.0.0 - resolve: 1.22.0 + resolve: 1.22.1 rollup: 2.75.6 dev: true @@ -6266,7 +6187,7 @@ packages: '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y - core-js: 3.22.8 + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -6300,7 +6221,7 @@ packages: '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 memoizerific: 1.11.3 react: 18.2.0 @@ -6330,7 +6251,7 @@ packages: '@storybook/node-logger': 6.5.9 '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y - core-js: 3.22.8 + core-js: 3.23.1 lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -6377,7 +6298,7 @@ packages: '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke - core-js: 3.22.8 + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -6469,7 +6390,7 @@ packages: '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi '@storybook/node-logger': 6.5.9 - core-js: 3.22.8 + core-js: 3.23.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 @@ -6502,7 +6423,7 @@ packages: '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -6525,7 +6446,7 @@ packages: '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -6549,7 +6470,7 @@ packages: '@storybook/client-logger': 6.5.9 '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y - core-js: 3.22.8 + core-js: 3.23.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 @@ -6572,7 +6493,7 @@ packages: '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/core-events': 6.5.9 '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 @@ -6595,7 +6516,7 @@ packages: '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/webpack-env': 1.17.0 - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -6615,7 +6536,7 @@ packages: '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y - core-js: 3.22.8 + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -6661,7 +6582,7 @@ packages: autoprefixer: 9.8.8 babel-loader: 8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.22.8 + core-js: 3.23.1 css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 @@ -6704,9 +6625,9 @@ packages: '@storybook/channels': 6.5.9 '@storybook/client-logger': 6.5.9 '@storybook/core-events': 6.5.9 - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 - qs: 6.10.3 + qs: 6.10.5 telejson: 6.0.8 dev: true @@ -6715,7 +6636,7 @@ packages: dependencies: '@storybook/channels': 6.5.9 '@storybook/client-logger': 6.5.9 - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 telejson: 6.0.8 dev: true @@ -6723,7 +6644,7 @@ packages: /@storybook/channels/6.5.9: resolution: {integrity: sha512-FvGA35nV38UPXWOl9ERapFTJaxwSTamQ339s2Ev7E9riyRG+GRkgTWzf5kECJgS1PAYKd/7m/RqKJT9BVv6A5g==} dependencies: - core-js: 3.22.8 + core-js: 3.23.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true @@ -6743,12 +6664,12 @@ packages: '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/qs': 6.9.7 '@types/webpack-env': 1.17.0 - core-js: 3.22.8 + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - qs: 6.10.3 + qs: 6.10.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 @@ -6761,7 +6682,7 @@ packages: /@storybook/client-logger/6.5.9: resolution: {integrity: sha512-DOHL6p0uiDd3gV/Sb2FR+Vh6OiPrrf8BrA06uvXWsMRIIvEEvnparxv9EvPg7FlmUX0T3nq7d3juwjx4F8Wbcg==} dependencies: - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 dev: true @@ -6775,9 +6696,9 @@ packages: '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/react-syntax-highlighter': 11.0.5 - core-js: 3.22.8 + core-js: 3.23.1 memoizerific: 1.11.3 - qs: 6.10.3 + qs: 6.10.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-syntax-highlighter: 15.5.0_react@18.2.0 @@ -6808,10 +6729,10 @@ packages: '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 lodash: 4.17.21 - qs: 6.10.3 + qs: 6.10.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 @@ -6845,10 +6766,10 @@ packages: '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 lodash: 4.17.21 - qs: 6.10.3 + qs: 6.10.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 @@ -6899,7 +6820,7 @@ packages: babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.5 chalk: 4.1.2 - core-js: 3.22.8 + core-js: 3.23.1 express: 4.18.1 file-system-cache: 1.1.0 find-up: 5.0.0 @@ -6933,7 +6854,7 @@ packages: /@storybook/core-events/6.5.9: resolution: {integrity: sha512-tXt7a3ZvJOCeEKpNa/B5rQM5VI7UJLlOh3IHOImWn4HqoBRrZvbourmac+PRZAtXpos0h3c6554Hjapj/Sny5Q==} dependencies: - core-js: 3.22.8 + core-js: 3.23.1 dev: true /@storybook/core-server/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: @@ -6965,7 +6886,7 @@ packages: '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/telemetry': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi '@types/node': 16.11.41 - '@types/node-fetch': 2.6.1 + '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 '@types/webpack': 4.41.32 better-opn: 2.1.1 @@ -6974,7 +6895,7 @@ packages: cli-table3: 0.6.2 commander: 6.2.1 compression: 1.7.4 - core-js: 3.22.8 + core-js: 3.23.1 cpy: 8.1.2 detect-port: 1.3.0 express: 4.18.1 @@ -6998,7 +6919,7 @@ packages: util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 - ws: 8.7.0 + ws: 8.8.0 x-default-browser: 0.4.0 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -7066,7 +6987,7 @@ packages: '@babel/types': 7.18.4 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.5 - core-js: 3.22.8 + core-js: 3.23.1 fs-extra: 9.1.0 global: 4.4.0 regenerator-runtime: 0.13.9 @@ -7087,7 +7008,7 @@ packages: '@babel/core': 7.18.5 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y - core-js: 3.22.8 + core-js: 3.23.1 doctrine: 3.0.0 lodash: 4.17.21 regenerator-runtime: 0.13.9 @@ -7121,7 +7042,7 @@ packages: babel-loader: 8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 - core-js: 3.22.8 + core-js: 3.23.1 css-loader: 3.6.0_webpack@4.46.0 express: 4.18.1 file-loader: 6.2.0_webpack@4.46.0 @@ -7179,7 +7100,7 @@ packages: dependencies: '@types/npmlog': 4.1.4 chalk: 4.1.2 - core-js: 3.22.8 + core-js: 3.23.1 npmlog: 5.0.1 pretty-hrtime: 1.0.3 dev: true @@ -7187,7 +7108,7 @@ packages: /@storybook/postinstall/6.5.9: resolution: {integrity: sha512-KQBupK+FMRrtSt8IL0MzCZ/w9qbd25Yxxp/+ajfWgZTRgsWgVFOqcDyMhS16eNbBp5qKIBCBDXfEF+/mK8HwQQ==} dependencies: - core-js: 3.22.8 + core-js: 3.23.1 dev: true /@storybook/preview-web/6.5.9_biqbaboplfbrettd7655fr4n2y: @@ -7203,10 +7124,10 @@ packages: '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y ansi-to-html: 0.6.15 - core-js: 3.22.8 + core-js: 3.23.1 global: 4.4.0 lodash: 4.17.21 - qs: 6.10.3 + qs: 6.10.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 @@ -7285,7 +7206,7 @@ packages: acorn-walk: 7.2.0 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-react-docgen: 4.2.1 - core-js: 3.22.8 + core-js: 3.23.1 escodegen: 2.0.0 fs-extra: 9.1.0 global: 4.4.0 @@ -7332,9 +7253,9 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/client-logger': 6.5.9 - core-js: 3.22.8 + core-js: 3.23.1 memoizerific: 1.11.3 - qs: 6.10.3 + qs: 6.10.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 @@ -7345,7 +7266,7 @@ packages: engines: {node: '>=10'} hasBin: true dependencies: - core-js: 3.22.8 + core-js: 3.23.1 find-up: 4.1.0 dev: true @@ -7358,7 +7279,7 @@ packages: '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.22.8 + core-js: 3.23.1 estraverse: 5.3.0 global: 4.4.0 loader-utils: 2.0.2 @@ -7379,7 +7300,7 @@ packages: '@storybook/client-logger': 6.5.9 '@storybook/core-events': 6.5.9 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.22.8 + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -7400,7 +7321,7 @@ packages: '@storybook/client-logger': 6.5.9 '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi chalk: 4.1.2 - core-js: 3.22.8 + core-js: 3.23.1 detect-package-manager: 2.0.1 fetch-retry: 5.0.2 fs-extra: 9.1.0 @@ -7428,7 +7349,7 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@storybook/client-logger': 6.5.9 - core-js: 3.22.8 + core-js: 3.23.1 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -7450,9 +7371,9 @@ packages: '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y - core-js: 3.22.8 + core-js: 3.23.1 memoizerific: 1.11.3 - qs: 6.10.3 + qs: 6.10.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 @@ -7525,26 +7446,26 @@ packages: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} - /@tsconfig/node10/1.0.8: - resolution: {integrity: sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==} + /@tsconfig/node10/1.0.9: + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} dev: true - /@tsconfig/node12/1.0.9: - resolution: {integrity: sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==} + /@tsconfig/node12/1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} dev: true - /@tsconfig/node14/1.0.1: - resolution: {integrity: sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==} + /@tsconfig/node14/1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} dev: true - /@tsconfig/node16/1.0.2: - resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==} + /@tsconfig/node16/1.0.3: + resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} dev: true /@types/accepts/1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: false /@types/ag-auth/1.0.0: @@ -7593,7 +7514,7 @@ packages: /@types/babel__core/7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.18.4 + '@babel/parser': 7.18.5 '@babel/types': 7.18.4 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 @@ -7609,7 +7530,7 @@ packages: /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.18.4 + '@babel/parser': 7.18.5 '@babel/types': 7.18.4 dev: true @@ -7632,12 +7553,12 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 17.0.40 + '@types/node': 16.11.41 /@types/bonjour/3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/chrome/0.0.190: @@ -7679,18 +7600,18 @@ packages: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: '@types/express-serve-static-core': 4.17.29 - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 /@types/consumable-stream/2.0.0: resolution: {integrity: sha512-RuXAZX3pQ2jGgETa1p4fTZb4Y1IxanZ8hafWewNoWW+Nqc4OcDw2VbAPzB1Wq7l5rtvmmCmHnpDX0CNRthqsAA==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/cookie/0.4.1: @@ -7704,7 +7625,7 @@ packages: /@types/copy-webpack-plugin/8.0.1_webpack-cli@4.10.0: resolution: {integrity: sha512-TwEeGse0/wq+t3SFW0DEwroMS/cDkwVZT+vj7tMAYTp7llt/yz6NuW2n04X2M5P/kSfBQOORhrHAN2mqZdmybg==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 tapable: 2.2.1 webpack: 5.73.0_webpack-cli@4.10.0 transitivePeerDependencies: @@ -7720,7 +7641,7 @@ packages: /@types/cross-spawn/6.0.2: resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/d3/3.5.47: @@ -7740,12 +7661,12 @@ packages: /@types/eslint-scope/3.7.3: resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==} dependencies: - '@types/eslint': 8.4.2 + '@types/eslint': 8.4.3 '@types/estree': 0.0.51 dev: true - /@types/eslint/8.4.2: - resolution: {integrity: sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==} + /@types/eslint/8.4.3: + resolution: {integrity: sha512-YP1S7YJRMPs+7KZKDb9G63n8YejIwW9BALq7a5j2+H4yl6iOv9CB29edho+cuFRrvmJbbaH2yiVChKLJVysDGw==} dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 @@ -7758,17 +7679,10 @@ packages: /@types/estree/0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - /@types/express-serve-static-core/4.17.28: - resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==} - dependencies: - '@types/node': 17.0.40 - '@types/qs': 6.9.7 - '@types/range-parser': 1.2.4 - /@types/express-serve-static-core/4.17.29: resolution: {integrity: sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 @@ -7776,7 +7690,7 @@ packages: resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==} dependencies: '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.28 + '@types/express-serve-static-core': 4.17.29 '@types/qs': 6.9.7 '@types/serve-static': 1.13.10 @@ -7796,13 +7710,13 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/har-format/1.2.8: @@ -7846,13 +7760,13 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/is-ci/3.0.0: resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} dependencies: - ci-info: 3.3.1 + ci-info: 3.3.2 dev: true /@types/is-function/1.0.1: @@ -7899,13 +7813,13 @@ packages: /@types/jsonwebtoken/8.5.8: resolution: {integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 /@types/lodash.curry/4.1.7: resolution: {integrity: sha512-R+IkSvh7CI8klh7FkQuTAiAR+aPFqYrNEjw/hMxjCSO7TsAqBAxpR99PxxJN1lgE6YuvpHEoktqbh6V5VLzxZA==} @@ -7961,13 +7875,13 @@ packages: /@types/morgan/1.9.3: resolution: {integrity: sha512-BiLcfVqGBZCyNCnCH3F4o2GmDLrpy0HeBVnNlyZG4fo88ZiE9SoiBe3C+2ezuwbjlEyT+PDZ17//TAlRxAn75Q==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true - /@types/node-fetch/2.6.1: - resolution: {integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==} + /@types/node-fetch/2.6.2: + resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 form-data: 3.0.1 dev: true @@ -7975,15 +7889,16 @@ packages: resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} dev: false - /@types/node/12.20.54: - resolution: {integrity: sha512-CFMnEPkSXWALI73t1oIWyb8QOmVrp6RruAqIx349sd+1ImaFwzlKcz55mwrx/yLyOyz1gkq/UKuNOigt27PXqg==} + /@types/node/12.20.55: + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true /@types/node/16.11.41: resolution: {integrity: sha512-mqoYK2TnVjdkGk8qXAVGc/x9nSaTpSrFaGFm43BUH3IdoBV0nta6hYaGmdOvIMlbHJbUEVen3gvwpwovAZKNdQ==} - /@types/node/17.0.40: - resolution: {integrity: sha512-UXdBxNGqTMtm7hCwh9HtncFVLrXoqA3oJW30j6XWp5BH/wu3mVeaxo7cq5benFdBw34HB3XDT2TRPI7rXZ+mDg==} + /@types/node/18.0.0: + resolution: {integrity: sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==} + dev: true /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -8089,13 +8004,13 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 /@types/retry/0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -8130,12 +8045,12 @@ packages: resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} dependencies: '@types/mime': 1.3.2 - '@types/node': 17.0.40 + '@types/node': 16.11.41 /@types/set-cookie-parser/2.4.2: resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: false /@types/simple-diff/1.6.1: @@ -8176,7 +8091,7 @@ packages: /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/source-list-map/0.1.2: @@ -8210,7 +8125,7 @@ packages: resolution: {integrity: sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==} dependencies: '@types/cookiejar': 2.1.2 - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/supertest/2.0.12: @@ -8235,8 +8150,8 @@ packages: '@types/jest': 27.5.2 dev: true - /@types/uglify-js/3.13.3: - resolution: {integrity: sha512-9dmBYXt/rKxedUXfCvXSxyiPvpDXLkiRlv17DnqdhS+pRustL1967rI1jZVt1xysTO+xJGMoZzcy3cWC9+b6Tw==} + /@types/uglify-js/3.16.0: + resolution: {integrity: sha512-0yeUr92L3r0GLRnBOvtYK1v2SjqMIqQDHMl7GLb+l2L8+6LSFWEEWEIgVsPdMn5ImLM8qzWT8xFPtQYpp8co0g==} dependencies: source-map: 0.6.1 dev: true @@ -8262,7 +8177,7 @@ packages: /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 '@types/source-list-map': 0.1.2 source-map: 0.7.4 dev: true @@ -8270,9 +8185,9 @@ packages: /@types/webpack/4.41.32: resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 '@types/tapable': 1.0.8 - '@types/uglify-js': 3.13.3 + '@types/uglify-js': 3.16.0 '@types/webpack-sources': 3.2.0 anymatch: 3.1.2 source-map: 0.6.1 @@ -8287,7 +8202,7 @@ packages: /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /@types/yargs-parser/21.0.0: @@ -8310,7 +8225,7 @@ packages: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 17.0.40 + '@types/node': 18.0.0 dev: true optional: true @@ -8361,14 +8276,6 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/5.27.0: - resolution: {integrity: sha512-VnykheBQ/sHd1Vt0LJ1JLrMH1GzHO+SzX6VTXuStISIsvRiurue/eRkTqSrG0CexHQgKG8shyJfR4o5VYioB9g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.27.0 - '@typescript-eslint/visitor-keys': 5.27.0 - dev: true - /@typescript-eslint/scope-manager/5.28.0: resolution: {integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8396,37 +8303,11 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.27.0: - resolution: {integrity: sha512-lY6C7oGm9a/GWhmUDOs3xAVRz4ty/XKlQ2fOLr8GAIryGn0+UBOoJDWyHer3UgrHkenorwvBnphhP+zPmzmw0A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - /@typescript-eslint/types/5.28.0: resolution: {integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.27.0_typescript@4.7.4: - resolution: {integrity: sha512-QywPMFvgZ+MHSLRofLI7BDL+UczFFHyj0vF5ibeChDAJgdTV8k4xgEwF0geFhVlPc1p8r70eYewzpo6ps+9LJQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.27.0 - '@typescript-eslint/visitor-keys': 5.27.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/typescript-estree/5.28.0_typescript@4.7.4: resolution: {integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8448,24 +8329,6 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.27.0_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-nZvCrkIJppym7cIbP3pOwIkAefXOmfGPnCM0LQfzNaKxJHI6VjI8NC662uoiPlaf5f6ymkTy9C3NQXev2mdXmA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.27.0 - '@typescript-eslint/types': 5.27.0 - '@typescript-eslint/typescript-estree': 5.27.0_typescript@4.7.4 - eslint: 8.18.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.18.0 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - /@typescript-eslint/utils/5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e: resolution: {integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8484,14 +8347,6 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.27.0: - resolution: {integrity: sha512-46cYrteA2MrIAjv9ai44OQDUoCZyHeGIc4lsjCUX2WT6r4C+kidz1bNiR4017wHOPUythYeH+Sc7/cFP97KEAA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.27.0 - eslint-visitor-keys: 3.3.0 - dev: true - /@typescript-eslint/visitor-keys/5.28.0: resolution: {integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9134,8 +8989,8 @@ packages: '@apollo/utils.usagereporting': 1.0.0_graphql@16.5.0 '@apollographql/apollo-tools': 0.5.4_graphql@16.5.0 '@apollographql/graphql-playground-html': 1.6.29 - '@graphql-tools/mock': 8.6.11_graphql@16.5.0 - '@graphql-tools/schema': 8.3.13_graphql@16.5.0 + '@graphql-tools/mock': 8.6.12_graphql@16.5.0 + '@graphql-tools/schema': 8.3.14_graphql@16.5.0 '@josephg/resolvable': 1.0.1 apollo-datasource: 3.3.2 apollo-reporting-protobuf: 3.3.1 @@ -9258,7 +9113,7 @@ packages: engines: {node: '>= 10'} dependencies: archiver-utils: 2.1.0 - async: 3.2.3 + async: 3.2.4 buffer-crc32: 0.2.13 readable-stream: 3.6.0 readdir-glob: 1.1.1 @@ -9355,7 +9210,7 @@ packages: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 is-string: 1.0.7 dev: true @@ -9490,8 +9345,8 @@ packages: dependencies: stream-demux: 8.0.0 - /async/3.2.3: - resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==} + /async/3.2.4: + resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} dev: true /asynckit/0.4.0: @@ -9517,8 +9372,8 @@ packages: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: - browserslist: 4.20.3 - caniuse-lite: 1.0.30001346 + browserslist: 4.20.4 + caniuse-lite: 1.0.30001356 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -9655,7 +9510,7 @@ packages: dependencies: '@babel/runtime': 7.18.3 cosmiconfig: 6.0.0 - resolve: 1.22.0 + resolve: 1.22.1 dev: false /babel-plugin-macros/3.1.0: @@ -9664,7 +9519,7 @@ packages: dependencies: '@babel/runtime': 7.18.3 cosmiconfig: 7.0.1 - resolve: 1.22.0 + resolve: 1.22.1 dev: true /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.5: @@ -9672,7 +9527,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 + '@babel/compat-data': 7.18.5 '@babel/core': 7.18.5 '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5 semver: 6.3.0 @@ -9687,7 +9542,7 @@ packages: dependencies: '@babel/core': 7.18.5 '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.18.5 - core-js-compat: 3.22.8 + core-js-compat: 3.23.1 transitivePeerDependencies: - supports-color dev: true @@ -9699,7 +9554,7 @@ packages: dependencies: '@babel/core': 7.18.5 '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5 - core-js-compat: 3.22.8 + core-js-compat: 3.23.1 transitivePeerDependencies: - supports-color dev: true @@ -9720,7 +9575,7 @@ packages: dependencies: ast-types: 0.14.2 lodash: 4.17.21 - react-docgen: 5.4.1 + react-docgen: 5.4.2 transitivePeerDependencies: - supports-color dev: true @@ -9845,7 +9700,7 @@ packages: hasBin: true dependencies: archiver: 5.3.1 - async: 3.2.3 + async: 3.2.4 glob: 7.2.3 which: 2.0.2 yargs: 16.2.0 @@ -9941,8 +9796,8 @@ packages: transitivePeerDependencies: - supports-color - /bonjour-service/1.0.12: - resolution: {integrity: sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==} + /bonjour-service/1.0.13: + resolution: {integrity: sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==} dependencies: array-flatten: 2.1.2 dns-equal: 1.0.0 @@ -10078,13 +9933,13 @@ packages: pako: 1.0.11 dev: true - /browserslist/4.20.3: - resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==} + /browserslist/4.20.4: + resolution: {integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001346 - electron-to-chromium: 1.4.146 + caniuse-lite: 1.0.30001356 + electron-to-chromium: 1.4.161 escalade: 3.1.1 node-releases: 2.0.5 picocolors: 1.0.0 @@ -10106,7 +9961,7 @@ packages: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} /buffer-equal-constant-time/1.0.1: - resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=} + resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} dev: false /buffer-from/1.1.2: @@ -10243,7 +10098,7 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 /call-me-maybe/1.0.1: resolution: {integrity: sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==} @@ -10307,8 +10162,8 @@ packages: /camelize/1.0.0: resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==} - /caniuse-lite/1.0.30001346: - resolution: {integrity: sha512-q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ==} + /caniuse-lite/1.0.30001356: + resolution: {integrity: sha512-/30854bktMLhxtjieIxsrJBfs2gTM1pel6MXKF3K+RdIVJZcsn2A2QdhsuR4/p9+R204fZw0zCBBhktX8xWuyQ==} /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -10479,8 +10334,8 @@ packages: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} dev: true - /ci-info/3.3.1: - resolution: {integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==} + /ci-info/3.3.2: + resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} dev: true /cipher-base/1.0.4: @@ -10670,8 +10525,8 @@ packages: resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==} dev: false - /colorette/2.0.17: - resolution: {integrity: sha512-hJo+3Bkn0NCHybn9Tu35fIeoOKGOk5OCC32y4Hz2It+qlCO2Q3DeQ1hRn/tDDMQKRYUEzqsl7jbF6dYKjlE60g==} + /colorette/2.0.19: + resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} dev: true /combined-stream/1.0.8: @@ -10895,22 +10750,22 @@ packages: dependencies: fast-glob: 3.2.11 glob-parent: 6.0.2 - globby: 13.1.1 + globby: 13.1.2 normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.0 webpack: 5.73.0_webpack-cli@4.10.0 dev: true - /core-js-compat/3.22.8: - resolution: {integrity: sha512-pQnwg4xtuvc2Bs/5zYQPaEYYSuTxsF7LBWF0SvnVhthZo/Qe+rJpcEekrdNK5DWwDJ0gv0oI9NNX5Mppdy0ctg==} + /core-js-compat/3.23.1: + resolution: {integrity: sha512-KeYrEc8t6FJsKYB2qnDwRHWaC0cJNaqlHfCpMe5q3j/W1nje3moib/txNklddLPCtGb+etcBIyJ8zuMa/LN5/A==} dependencies: - browserslist: 4.20.3 + browserslist: 4.20.4 semver: 7.0.0 dev: true - /core-js-pure/3.22.8: - resolution: {integrity: sha512-bOxbZIy9S5n4OVH63XaLVXZ49QKicjowDx/UELyJ68vxfCRpYsbyh/WNZNfEfAk+ekA8vSjt+gCDpvh672bc3w==} + /core-js-pure/3.23.1: + resolution: {integrity: sha512-3qNgf6TqI3U1uhuSYRzJZGfFd4T+YlbyVPl+jgRiKjdZopvG4keZQwWZDAWpu1UH9nCgTpUzIV3GFawC7cJsqg==} requiresBuild: true /core-js/2.6.12: @@ -10918,8 +10773,8 @@ packages: deprecated: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js. requiresBuild: true - /core-js/3.22.8: - resolution: {integrity: sha512-UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA==} + /core-js/3.23.1: + resolution: {integrity: sha512-wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w==} requiresBuild: true dev: true @@ -11579,8 +11434,8 @@ packages: resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} dev: true - /dns-packet/5.3.1: - resolution: {integrity: sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==} + /dns-packet/5.4.0: + resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==} engines: {node: '>=6'} dependencies: '@leichtgewicht/ip-codec': 2.0.4 @@ -11713,8 +11568,8 @@ packages: /ee-first/1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - /electron-to-chromium/1.4.146: - resolution: {integrity: sha512-4eWebzDLd+hYLm4csbyMU2EbBnqhwl8Oe9eF/7CBDPWcRxFmqzx4izxvHH+lofQxzieg8UbB8ZuzNTxeukzfTg==} + /electron-to-chromium/1.4.161: + resolution: {integrity: sha512-sTjBRhqh6wFodzZtc5Iu8/R95OkwaPNn7tj/TaDU5nu/5EFiQDtADGAXdR4tJcTEHlYfJpHqigzJqHvPgehP8A==} /electron/19.0.4: resolution: {integrity: sha512-roRYr1VNAWIhjD9n8qZdmhROtrzsFpuZEXrjWAw+GqPbZlrUInmvFCviRDC2Lt+VBsTNRpTfPpfzXSlLL4reEw==} @@ -11842,9 +11697,8 @@ packages: dependencies: is-arrayish: 0.2.1 - /error-stack-parser/2.1.2: - resolution: {integrity: sha512-SIJp3QwJ81ski8Fi3vojI8S/3fsf3rUhe0duVn9Gpf1sfO/+YUARW0Xyjx7ilS/V/hNj3nW6dVLW1OoHsyuJ4A==} - deprecated: Please upgrade to error-stack-parser >= v2.1.4, see https://github.com/stacktracejs/error-stack-parser/issues/80 + /error-stack-parser/2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} dependencies: stackframe: 1.3.4 dev: true @@ -11857,7 +11711,7 @@ packages: es-to-primitive: 1.2.1 function-bind: 1.1.1 function.prototype.name: 1.1.5 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 get-symbol-description: 1.0.0 has: 1.0.3 has-property-descriptors: 1.0.0 @@ -11886,7 +11740,7 @@ packages: resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 @@ -12022,7 +11876,7 @@ packages: resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} dependencies: debug: 3.2.7 - resolve: 1.22.0 + resolve: 1.22.1 transitivePeerDependencies: - supports-color dev: true @@ -12074,7 +11928,7 @@ packages: is-glob: 4.0.3 minimatch: 3.1.2 object.values: 1.1.5 - resolve: 1.22.0 + resolve: 1.22.1 tsconfig-paths: 3.14.1 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -12096,7 +11950,7 @@ packages: optional: true dependencies: '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/utils': 5.27.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 jest: 27.5.1 transitivePeerDependencies: @@ -12152,7 +12006,7 @@ packages: object.hasown: 1.1.1 object.values: 1.1.5 prop-types: 15.8.1 - resolve: 2.0.0-next.3 + resolve: 2.0.0-next.4 semver: 6.3.0 string.prototype.matchall: 4.0.7 dev: true @@ -12857,7 +12711,7 @@ packages: eslint: 8.18.0 fs-extra: 9.1.0 glob: 7.2.3 - memfs: 3.4.4 + memfs: 3.4.6 minimatch: 3.1.2 schema-utils: 2.7.0 semver: 7.3.7 @@ -12883,7 +12737,7 @@ packages: cosmiconfig: 7.0.1 deepmerge: 4.2.2 fs-extra: 10.1.0 - memfs: 3.4.4 + memfs: 3.4.6 minimatch: 3.1.2 schema-utils: 3.1.1 semver: 7.3.7 @@ -13118,8 +12972,8 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - /get-intrinsic/1.1.1: - resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} + /get-intrinsic/1.1.2: + resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} dependencies: function-bind: 1.1.1 has: 1.0.3 @@ -13171,7 +13025,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 dev: true /get-value/2.0.6: @@ -13234,7 +13088,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.0.5 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -13325,8 +13179,8 @@ packages: slash: 3.0.0 dev: true - /globby/13.1.1: - resolution: {integrity: sha512-XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q==} + /globby/13.1.2: + resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: dir-glob: 3.0.1 @@ -13415,7 +13269,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.16.0 + uglify-js: 3.16.1 dev: true /hard-rejection/2.1.0: @@ -13445,7 +13299,7 @@ packages: /has-property-descriptors/1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 /has-symbols/1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} @@ -13691,7 +13545,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.14.0 + terser: 5.14.1 dev: true /html-tags/3.2.0: @@ -13898,8 +13752,8 @@ packages: /immediate/3.0.6: resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} - /immer/9.0.14: - resolution: {integrity: sha512-ubBeqQutOSLIFCUBN03jGeOS6a3DoYlSYwYJTa+gSKEZKU5redJIqkIdZ3JVv/4RZpfcXdAWH5zCNLWPRv2WDw==} + /immer/9.0.15: + resolution: {integrity: sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ==} /immutable/4.1.0: resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==} @@ -13973,7 +13827,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 - chalk: 4.1.2 + chalk: 4.1.1 cli-cursor: 3.1.0 cli-width: 3.0.0 external-editor: 3.1.0 @@ -13993,7 +13847,7 @@ packages: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 has: 1.0.3 side-channel: 1.0.4 dev: true @@ -14135,7 +13989,7 @@ packages: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true dependencies: - ci-info: 3.3.1 + ci-info: 3.3.2 dev: true /is-core-module/2.9.0: @@ -14523,7 +14377,7 @@ packages: engines: {node: '>=8'} dependencies: '@babel/core': 7.18.5 - '@babel/parser': 7.18.4 + '@babel/parser': 7.18.5 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -14590,7 +14444,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -14684,7 +14538,7 @@ packages: '@jest/types': 27.5.1 babel-jest: 27.5.1_@babel+core@7.18.5 chalk: 4.1.2 - ci-info: 3.3.1 + ci-info: 3.3.2 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -14724,7 +14578,7 @@ packages: '@jest/types': 27.5.1 babel-jest: 27.5.1_@babel+core@7.18.5 chalk: 4.1.2 - ci-info: 3.3.1 + ci-info: 3.3.2 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -14786,7 +14640,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -14804,7 +14658,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 jest-mock: 27.5.1 jest-util: 27.5.1 dev: true @@ -14820,7 +14674,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.40 + '@types/node': 18.0.0 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -14843,7 +14697,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.40 + '@types/node': 16.11.41 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -14865,7 +14719,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -14920,7 +14774,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1: @@ -14967,7 +14821,7 @@ packages: jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1 jest-util: 27.5.1 jest-validate: 27.5.1 - resolve: 1.22.0 + resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 dev: true @@ -14981,7 +14835,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.10 @@ -15038,7 +14892,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 17.0.40 + '@types/node': 18.0.0 graceful-fs: 4.2.10 dev: true @@ -15046,7 +14900,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 graceful-fs: 4.2.10 dev: true @@ -15057,7 +14911,7 @@ packages: '@babel/core': 7.18.5 '@babel/generator': 7.18.2 '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.5 - '@babel/traverse': 7.18.2 + '@babel/traverse': 7.18.5 '@babel/types': 7.18.4 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 @@ -15085,7 +14939,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 17.0.40 + '@types/node': 18.0.0 chalk: 4.1.2 graceful-fs: 4.2.10 is-ci: 2.0.0 @@ -15097,9 +14951,9 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 chalk: 4.1.2 - ci-info: 3.3.1 + ci-info: 3.3.2 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true @@ -15122,7 +14976,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.40 + '@types/node': 16.11.41 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -15133,7 +14987,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 17.0.40 + '@types/node': 16.11.41 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -15142,7 +14996,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 17.0.40 + '@types/node': 18.0.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -15343,7 +15197,6 @@ packages: chalk: 2.4.2 diff-match-patch: 1.0.5 dev: false - bundledDependencies: [] /jsonfile/4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} @@ -15661,7 +15514,7 @@ packages: dependencies: '@babel/runtime': 7.18.3 app-root-dir: 1.0.2 - core-js: 3.22.8 + core-js: 3.23.1 dotenv: 8.6.0 dotenv-expand: 5.1.0 dev: true @@ -15896,7 +15749,7 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: - chalk: 4.1.2 + chalk: 4.1.1 is-unicode-supported: 0.1.0 dev: false @@ -16139,8 +15992,8 @@ packages: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} - /memfs/3.4.4: - resolution: {integrity: sha512-W4gHNUE++1oSJVn8Y68jPXi+mkx3fXR5ITE/Ubz6EQ3xRpCN5k2CQ4AUR8094Z7211F876TyoBACGsIveqgiGA==} + /memfs/3.4.6: + resolution: {integrity: sha512-rH9mjopto6Wkr7RFuH9l9dk3qb2XGOcYKr7xMhaYqfzuJqOqhRrcFvfD7JMuPj6SLmPreh5+6eAuv36NFAU+Mw==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 @@ -16491,7 +16344,7 @@ packages: optional: true dependencies: '@mswjs/cookies': 0.2.1 - '@mswjs/interceptors': 0.16.4 + '@mswjs/interceptors': 0.16.6 '@open-draft/until': 1.0.3 '@types/cookie': 0.4.1 '@types/js-levenshtein': 1.1.1 @@ -16520,7 +16373,7 @@ packages: resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true dependencies: - dns-packet: 5.3.1 + dns-packet: 5.4.0 thunky: 1.1.0 dev: true @@ -16709,7 +16562,7 @@ packages: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.0 + resolve: 1.22.1 semver: 5.7.1 validate-npm-package-license: 3.0.4 dev: true @@ -17018,7 +16871,7 @@ packages: engines: {node: '>=10'} dependencies: bl: 4.1.0 - chalk: 4.1.2 + chalk: 4.1.1 cli-cursor: 3.1.0 cli-spinners: 2.6.1 is-interactive: 1.0.0 @@ -17725,7 +17578,7 @@ packages: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 iterate-value: 1.0.2 dev: true @@ -17846,7 +17699,7 @@ packages: jstransformer: 1.0.0 pug-error: 1.3.3 pug-walk: 1.1.8 - resolve: 1.22.0 + resolve: 1.22.1 uglify-js: 2.8.29 dev: true @@ -17952,6 +17805,13 @@ packages: dependencies: side-channel: 1.0.4 + /qs/6.10.5: + resolution: {integrity: sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: true + /qs/6.9.3: resolution: {integrity: sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==} engines: {node: '>=0.6'} @@ -18081,8 +17941,8 @@ packages: typescript: 4.7.4 dev: true - /react-docgen/5.4.1: - resolution: {integrity: sha512-TZqD1aApirw86NV6tHrmDoxUn8wlinkVyutFarzbdwuhEurAzDN0y5sSj64o+BrHLPqjwpH9tunpfwgy+3Uyww==} + /react-docgen/5.4.2: + resolution: {integrity: sha512-4Z5XYpHsn2bbUfaflxoS30VhUvQLBe4GCwwM5v1e1FUOeDdaoJi6wUGSmYp6OdXYEISEAOEIaSPBk4iezNCKBw==} engines: {node: '>=8.10.0'} hasBin: true dependencies: @@ -18110,7 +17970,7 @@ packages: scheduler: 0.23.0 /react-dragula/1.1.17: - resolution: {integrity: sha1-s8s1KkcKcZNnupnWpUAcYPrU9v8=} + resolution: {integrity: sha512-gJdY190sPWAyV8jz79vyK9SGk97bVOHjUguVNIYIEVosvt27HLxnbJo4qiuEkb/nAuGY13Im2CHup92fUyO3fw==} dependencies: atoa: 1.0.0 dragula: 3.7.2 @@ -18178,9 +18038,6 @@ packages: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} dev: true - /react-is/18.1.0: - resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} - /react-is/18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} @@ -18189,7 +18046,7 @@ packages: dev: false /react-proxy/1.1.8: - resolution: {integrity: sha1-nb/Z2SdSjDqp9ETkVYw3gwq4wmo=} + resolution: {integrity: sha512-46GkBpZD97R/vV+iw+u6aFACzIHOst9gCl41d5K5vepPBz2i2gqHmXQJWKXsrUsSOdylKahN3sd9taswFN8Wzw==} dependencies: lodash: 4.17.21 react-deep-force-update: 1.1.2 @@ -18223,9 +18080,9 @@ packages: hoist-non-react-statics: 3.3.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-is: 18.1.0 + react-is: 18.2.0 redux: 4.2.0 - use-sync-external-store: 1.1.0_react@18.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 dev: true /react-redux/8.0.2_fzknh3pugl53jp7xsetxkg5ani: @@ -18257,8 +18114,8 @@ packages: hoist-non-react-statics: 3.3.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-is: 18.1.0 - use-sync-external-store: 1.1.0_react@18.2.0 + react-is: 18.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 dev: false /react-redux/8.0.2_jcbkrypqxz3emsprsw5dchskju: @@ -18290,9 +18147,9 @@ packages: hoist-non-react-statics: 3.3.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-is: 18.1.0 + react-is: 18.2.0 redux: 4.2.0 - use-sync-external-store: 1.1.0_react@18.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 dev: false /react-refresh/0.11.0: @@ -18363,8 +18220,8 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 - '@emotion/cache': 11.7.1 - '@emotion/react': 11.9.0_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/cache': 11.9.3 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq '@types/react-transition-group': 4.4.4 memoize-one: 5.2.1 prop-types: 15.8.1 @@ -18428,11 +18285,11 @@ packages: dev: true /react-transform-catch-errors/1.0.2: - resolution: {integrity: sha1-G01KdulycYlvwW/jCGx5PsiKnus=} + resolution: {integrity: sha512-FCeTXLTpRM8wMrwAlYVoEI+HXUFYEJLKdmf9zd5YtH1yc2Dq81JL1YMr0eHeUe699CCTezG4CfEB5D9RpmovEw==} dev: true /react-transform-hmr/1.0.4: - resolution: {integrity: sha1-4aQL0Krvxy6N/Xp82gmvhQZjl7s=} + resolution: {integrity: sha512-8bK1DWUZynE6swD2jNPbzO5mvhB8fs9Ub5GksoVqYkc9i06FdSLC36qQYjaKOW79KBdsROq2cK0tRKITiEzmyg==} dependencies: global: 4.4.0 react-proxy: 1.1.8 @@ -18553,14 +18410,14 @@ packages: resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} engines: {node: '>= 0.10'} dependencies: - resolve: 1.22.0 + resolve: 1.22.1 dev: true /rechoir/0.8.0: resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} engines: {node: '>= 10.13.0'} dependencies: - resolve: 1.22.0 + resolve: 1.22.1 dev: false /redent/1.0.0: @@ -18581,13 +18438,13 @@ packages: dev: true /redux-devtools-themes/1.0.0: - resolution: {integrity: sha1-xILc48U3OXYEX0ATSQfZ3LOuPV0=} + resolution: {integrity: sha512-hBWqdZX+dioMWnTjf8+uSm0q1wCdYO4kU5gERzHcMMbu0Qg7JDR42TnJ6GHJ6r7k/tIpsCSygc9U0ehAtR24TQ==} dependencies: base16: 1.0.0 dev: false /redux-logger/3.0.6: - resolution: {integrity: sha1-91VZZvMJjzyIYExEnPC69XeCdL8=} + resolution: {integrity: sha512-JoCIok7bg/XpqA1JqCqXFypuqBbQzGQySrhFzewB7ThcnysTO30l4VCst86AuB9T9tuT03MAA56Jw2PNhRSNCg==} dependencies: deep-diff: 0.3.8 dev: false @@ -18695,7 +18552,7 @@ packages: dev: true /relateurl/0.2.7: - resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=} + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} dev: true @@ -18822,8 +18679,8 @@ packages: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true - /reselect/4.1.5: - resolution: {integrity: sha512-uVdlz8J7OO+ASpBYoz1Zypgx0KasCY20H+N8JD13oUMtPvSHQuscrHop4KbXrbsBcdB9Ds7lVK7eRkBIfO43vQ==} + /reselect/4.1.6: + resolution: {integrity: sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ==} /resolve-cwd/3.0.0: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} @@ -18850,19 +18707,21 @@ packages: engines: {node: '>=10'} dev: true - /resolve/1.22.0: - resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} + /resolve/1.22.1: + resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: is-core-module: 2.9.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve/2.0.0-next.3: - resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} + /resolve/2.0.0-next.4: + resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + hasBin: true dependencies: is-core-module: 2.9.0 path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 dev: true /responselike/1.0.2: @@ -18898,7 +18757,7 @@ packages: dev: true /right-align/0.1.3: - resolution: {integrity: sha1-YTObci/mo1FWiSENJOFMlhSGE+8=} + resolution: {integrity: sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg==} engines: {node: '>=0.10.0'} dependencies: align-text: 0.1.4 @@ -18949,7 +18808,7 @@ packages: jest-worker: 26.6.2 rollup: 2.75.6 serialize-javascript: 4.0.0 - terser: 5.14.0 + terser: 5.14.1 dev: true /rollup-plugin-typescript2/0.32.1_63sirsnfvviu2qxghjzgkmnlpm: @@ -18961,7 +18820,7 @@ packages: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - resolve: 1.22.0 + resolve: 1.22.1 rollup: 2.75.6 tslib: 2.4.0 typescript: 4.7.4 @@ -19114,7 +18973,7 @@ packages: dependencies: jszip: 3.10.0 tmp: 0.2.1 - ws: 8.7.0 + ws: 8.8.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -19259,7 +19118,7 @@ packages: dev: true /setimmediate/1.0.5: - resolution: {integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=} + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} dev: true /setprototypeof/1.1.0: @@ -19311,14 +19170,14 @@ packages: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 object-inspect: 1.12.2 /signal-exit/3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} /simple-diff/1.6.0: - resolution: {integrity: sha1-m7XZUKe0ZNHsyG8gTog2UBnVpUI=} + resolution: {integrity: sha512-99OIdUsKPcn8V8eGl+UGy3H95WpKcZGv3Iz/CoPCt6ZV4XuYkxk38sWEDXyXL7xOUfLoKHA4zXlcp3Z4DhxN0g==} dev: false /simple-element-resize-detector/1.3.0: @@ -19326,7 +19185,7 @@ packages: dev: false /simple-swizzle/0.2.2: - resolution: {integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=} + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} dependencies: is-arrayish: 0.3.2 dev: false @@ -19380,7 +19239,7 @@ packages: dev: true /sliced/1.0.1: - resolution: {integrity: sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E=} + resolution: {integrity: sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==} dev: false /smart-buffer/4.2.0: @@ -19542,7 +19401,7 @@ packages: dev: true /source-map/0.5.7: - resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=} + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} /source-map/0.6.1: @@ -19771,7 +19630,7 @@ packages: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 has-symbols: 1.0.3 internal-slot: 1.0.3 regexp.prototype.flags: 1.4.3 @@ -19931,8 +19790,8 @@ packages: react-is: '>= 16.8.0' dependencies: '@babel/helper-module-imports': 7.16.7 - '@babel/traverse': 7.18.2_supports-color@5.5.0 - '@emotion/is-prop-valid': 1.1.2 + '@babel/traverse': 7.18.5_supports-color@5.5.0 + '@emotion/is-prop-valid': 1.1.3 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 babel-plugin-styled-components: 2.0.7_styled-components@5.3.5 @@ -19978,8 +19837,8 @@ packages: /stylelint-processor-styled-components/1.10.0: resolution: {integrity: sha512-g4HpN9rm0JD0LoHuIOcd/FIjTZCJ0ErQ+dC3VTxp+dSvnkV+MklKCCmCQEdz5K5WxF4vPuzfVgdbSDuPYGZhoA==} dependencies: - '@babel/parser': 7.18.4 - '@babel/traverse': 7.18.2 + '@babel/parser': 7.18.5 + '@babel/traverse': 7.18.5 micromatch: 4.0.5 postcss: 7.0.39 transitivePeerDependencies: @@ -20059,7 +19918,7 @@ packages: formidable: 2.0.1 methods: 1.1.2 mime: 2.6.0 - qs: 6.10.3 + qs: 6.10.5 readable-stream: 3.6.0 semver: 7.3.7 transitivePeerDependencies: @@ -20248,7 +20107,7 @@ packages: schema-utils: 3.1.1 serialize-javascript: 5.0.1 source-map: 0.6.1 - terser: 5.14.0 + terser: 5.14.1 webpack: 4.46.0 webpack-sources: 1.4.3 transitivePeerDependencies: @@ -20275,7 +20134,7 @@ packages: jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.14.0 + terser: 5.14.1 webpack: 5.73.0_webpack-cli@4.10.0 dev: true @@ -20290,8 +20149,8 @@ packages: source-map-support: 0.5.21 dev: true - /terser/5.14.0: - resolution: {integrity: sha512-JC6qfIEkPBd9j1SMO3Pfn+A6w2kQV54tv+ABQLgZr7dA3k/DL/OBoYSWxzVpZev3J+bUHXfr55L8Mox7AaNo6g==} + /terser/5.14.1: + resolution: {integrity: sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==} engines: {node: '>=10'} hasBin: true dependencies: @@ -20333,7 +20192,7 @@ packages: dev: true /ticky/1.0.1: - resolution: {integrity: sha1-t8+nHnaPHJAAxJe5FRswlHxQ5G0=} + resolution: {integrity: sha512-RX35iq/D+lrsqhcPWIazM9ELkjOe30MSeoBHQHSsRwd1YuhJO5ui1K1/R0r7N3mFvbLBs33idw+eR6j+w6i/DA==} dev: false /tildify/2.0.0: @@ -20378,12 +20237,12 @@ packages: dev: true /to-fast-properties/1.0.3: - resolution: {integrity: sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=} + resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} engines: {node: '>=0.10.0'} dev: true /to-fast-properties/2.0.0: - resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} /to-object-path/0.3.0: @@ -20434,7 +20293,7 @@ packages: engines: {node: '>=0.6'} /token-stream/0.0.1: - resolution: {integrity: sha1-zu78cXp2xDFvEm0LnbqlXX598Bo=} + resolution: {integrity: sha512-nfjOAu/zAWmX9tgwi5NRp7O7zTDUD1miHiB40klUnAh9qnL1iXdgzcz/i5dMaL5jahcBAaSfmNOBBJBLJW8TEg==} dev: true /tough-cookie/4.0.0: @@ -20447,7 +20306,7 @@ packages: dev: true /tr46/0.0.3: - resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=} + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} /tr46/2.1.0: resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} @@ -20602,10 +20461,10 @@ packages: optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.8 - '@tsconfig/node12': 1.0.9 - '@tsconfig/node14': 1.0.1 - '@tsconfig/node16': 1.0.2 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 '@types/node': 16.11.41 acorn: 8.7.1 acorn-walk: 8.2.0 @@ -20683,7 +20542,7 @@ packages: optional: true /type-check/0.3.2: - resolution: {integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=} + resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 @@ -20756,7 +20615,7 @@ packages: hasBin: true /uglify-js/2.8.29: - resolution: {integrity: sha1-KcVzMUgFe7Th913zW3qcty5qWd0=} + resolution: {integrity: sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==} engines: {node: '>=0.8.0'} hasBin: true dependencies: @@ -20766,8 +20625,8 @@ packages: uglify-to-browserify: 1.0.2 dev: true - /uglify-js/3.16.0: - resolution: {integrity: sha512-FEikl6bR30n0T3amyBh3LoiBdqHRy/f4H80+My34HOesOKyHfOsxAPAxOoqC0JUnC1amnO0IwkYC3sko51caSw==} + /uglify-js/3.16.1: + resolution: {integrity: sha512-X5BGTIDH8U6IQ1TIRP62YC36k+ULAa1d59BxlWvPUJ1NkW5L3FwcGfEzuVvGmhJFBu0YJ5Ge25tmRISqCmLiRQ==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -20925,7 +20784,7 @@ packages: dev: true /unpipe/1.0.0: - resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} /unset-value/1.0.0: @@ -21025,8 +20884,8 @@ packages: tslib: 2.4.0 dev: false - /use-sync-external-store/1.1.0_react@18.2.0: - resolution: {integrity: sha512-SEnieB2FPKEVne66NpXPd1Np4R1lTNKfjuy3XdIoPQKYBAFdzbzSZlSn1KJZUiihQLQC5Znot4SBz1EOTBwQAQ==} + /use-sync-external-store/1.2.0_react@18.2.0: + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: @@ -21064,7 +20923,7 @@ packages: dev: true /utils-merge/1.0.1: - resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} /uuid-browser/3.1.0: @@ -21115,24 +20974,24 @@ packages: dev: true /validate.io-array/1.0.6: - resolution: {integrity: sha1-W1osr9j4uFq7L4hroVPy2Tond00=} + resolution: {integrity: sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==} /validate.io-function/1.0.2: - resolution: {integrity: sha1-NDoZgC7TsZaCaceA5VjpNBHAutc=} + resolution: {integrity: sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==} /validate.io-integer-array/1.0.0: - resolution: {integrity: sha1-LKveAzKTpry+Bj/q/pHq9GsToIk=} + resolution: {integrity: sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==} dependencies: validate.io-array: 1.0.6 validate.io-integer: 1.0.5 /validate.io-integer/1.0.5: - resolution: {integrity: sha1-FoSWSAuVviJH7EQ/IjPeT4mHgGg=} + resolution: {integrity: sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==} dependencies: validate.io-number: 1.0.3 /validate.io-number/1.0.3: - resolution: {integrity: sha1-9j/+2iSL8opnqNSODjtGGhZluvg=} + resolution: {integrity: sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==} /value-or-promise/1.0.11: resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==} @@ -21140,7 +20999,7 @@ packages: dev: false /vary/1.1.2: - resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} /vfile-location/3.2.0: @@ -21174,7 +21033,7 @@ packages: dev: true /void-elements/2.0.1: - resolution: {integrity: sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=} + resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==} engines: {node: '>=0.10.0'} dev: true @@ -21249,7 +21108,7 @@ packages: dev: true /webidl-conversions/3.0.1: - resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=} + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} /webidl-conversions/5.0.0: resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} @@ -21285,7 +21144,7 @@ packages: '@webpack-cli/configtest': 1.2.0_77l47gmqkrqiei5z7sbwz5iaj4 '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0 '@webpack-cli/serve': 1.7.0_b6kp5g2s4uywsci7bb7pbu5to4 - colorette: 2.0.17 + colorette: 2.0.19 commander: 7.2.0 cross-spawn: 7.0.3 fastest-levenshtein: 1.0.12 @@ -21321,7 +21180,7 @@ packages: '@webpack-cli/configtest': 1.2.0_77l47gmqkrqiei5z7sbwz5iaj4 '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0 '@webpack-cli/serve': 1.7.0_webpack-cli@4.10.0 - colorette: 2.0.17 + colorette: 2.0.19 commander: 7.2.0 cross-spawn: 7.0.3 fastest-levenshtein: 1.0.12 @@ -21352,8 +21211,8 @@ packages: peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: - colorette: 2.0.17 - memfs: 3.4.4 + colorette: 2.0.19 + memfs: 3.4.6 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 @@ -21379,9 +21238,9 @@ packages: '@types/sockjs': 0.3.33 '@types/ws': 8.5.3 ansi-html-community: 0.0.8 - bonjour-service: 1.0.12 + bonjour-service: 1.0.13 chokidar: 3.5.3 - colorette: 2.0.17 + colorette: 2.0.19 compression: 1.7.4 connect-history-api-fallback: 1.6.0 default-gateway: 6.0.3 @@ -21401,7 +21260,7 @@ packages: webpack: 5.73.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju webpack-dev-middleware: 5.3.3_webpack@5.73.0 - ws: 8.7.0 + ws: 8.8.0 transitivePeerDependencies: - bufferutil - debug @@ -21520,7 +21379,7 @@ packages: '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.7.1 acorn-import-assertions: 1.8.0_acorn@8.7.1 - browserslist: 4.20.3 + browserslist: 4.20.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.9.3 es-module-lexer: 0.9.3 @@ -21560,7 +21419,7 @@ packages: '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.7.1 acorn-import-assertions: 1.8.0_acorn@8.7.1 - browserslist: 4.20.3 + browserslist: 4.20.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.9.3 es-module-lexer: 0.9.3 @@ -21614,7 +21473,7 @@ packages: dev: false /whatwg-url/5.0.0: - resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=} + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 @@ -21681,12 +21540,12 @@ packages: dev: true /window-size/0.1.0: - resolution: {integrity: sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=} + resolution: {integrity: sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg==} engines: {node: '>= 0.8.0'} dev: true /with/5.1.1: - resolution: {integrity: sha1-+k2qktrzLE6pTtRTyB8EaGtXXf4=} + resolution: {integrity: sha512-uAnSsFGfSpF6DNhBXStvlZILfHJfJu4eUkfbRGk94kGO1Ta7bg6FwfvoOhhyHAJuFbCw+0xk4uJ3u57jLvlCJg==} dependencies: acorn: 3.3.0 acorn-globals: 3.1.0 @@ -21698,7 +21557,7 @@ packages: dev: true /wordwrap/0.0.2: - resolution: {integrity: sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=} + resolution: {integrity: sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==} engines: {node: '>=0.4.0'} dev: true @@ -21772,8 +21631,8 @@ packages: utf-8-validate: optional: true - /ws/8.7.0: - resolution: {integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==} + /ws/8.8.0: + resolution: {integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -21800,8 +21659,8 @@ packages: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} dev: true - /xss/1.0.12: - resolution: {integrity: sha512-8pXgz5BUUfKMrb81tmcbvLNA97ab4d6HdoBHYF5XYHa8oarc2s64hF+oqI4FhBHVBWvEM1wHGy+vqt8kZhCaNw==} + /xss/1.0.13: + resolution: {integrity: sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q==} engines: {node: '>= 0.10.0'} hasBin: true dependencies: @@ -21896,7 +21755,7 @@ packages: yargs-parser: 21.0.1 /yargs/3.10.0: - resolution: {integrity: sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=} + resolution: {integrity: sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==} dependencies: camelcase: 1.2.1 cliui: 2.1.0 @@ -21905,7 +21764,7 @@ packages: dev: true /yauzl/2.10.0: - resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=} + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 From db1fcd12c0312c240e90c10a6bf3a7363b70b987 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Jun 2022 07:14:31 -0400 Subject: [PATCH 29/29] chore(deps): update all non-major dependencies (#1192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- extension/package.json | 10 +- package.json | 6 +- .../examples/tree/package.json | 4 +- packages/d3-state-visualizer/package.json | 8 +- packages/d3tooltip/package.json | 8 +- packages/map2tree/package.json | 8 +- packages/react-base16-styling/package.json | 4 +- packages/react-dock/demo/package.json | 6 +- packages/react-dock/package.json | 6 +- .../react-json-tree/examples/package.json | 6 +- packages/react-json-tree/package.json | 10 +- packages/redux-devtools-app/package.json | 8 +- .../redux-devtools-chart-monitor/package.json | 6 +- packages/redux-devtools-cli/package.json | 6 +- .../redux-devtools-dock-monitor/package.json | 6 +- .../redux-devtools-extension/package.json | 4 +- .../demo/package.json | 6 +- .../package.json | 6 +- .../package.json | 8 +- .../demo/package.json | 6 +- .../package.json | 6 +- .../redux-devtools-instrument/package.json | 4 +- .../redux-devtools-log-monitor/package.json | 6 +- packages/redux-devtools-remote/package.json | 4 +- .../demo/package.json | 10 +- .../package.json | 6 +- .../redux-devtools-serialize/package.json | 4 +- .../examples/todomvc/package.json | 6 +- .../package.json | 8 +- packages/redux-devtools-ui/package.json | 10 +- packages/redux-devtools-utils/package.json | 4 +- .../examples/counter/package.json | 6 +- .../examples/todomvc/package.json | 6 +- packages/redux-devtools/package.json | 6 +- pnpm-lock.yaml | 781 ++++++++++-------- 35 files changed, 534 insertions(+), 465 deletions(-) diff --git a/extension/package.json b/extension/package.json index 0fd349d5..4f8d5599 100644 --- a/extension/package.json +++ b/extension/package.json @@ -59,7 +59,7 @@ "@babel/register": "^7.17.7", "@testing-library/jest-dom": "^5.16.4", "@testing-library/react": "^13.3.0", - "@types/chrome": "^0.0.190", + "@types/chrome": "^0.0.191", "@types/lodash": "^4.14.182", "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", @@ -70,12 +70,12 @@ "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "electron": "^19.0.4", + "electron": "^19.0.6", "eslint": "^8.18.0", "eslint-config-airbnb": "^19.0.4", "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-jsx-a11y": "^6.6.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "file-loader": "^6.2.0", "fork-ts-checker-webpack-plugin": "^7.2.11", @@ -87,7 +87,7 @@ "react-transform-catch-errors": "^1.0.2", "react-transform-hmr": "^1.0.4", "rimraf": "^3.0.2", - "selenium-webdriver": "^4.2.0", + "selenium-webdriver": "^4.3.0", "sinon-chrome": "^3.0.1", "style-loader": "^3.3.1", "ts-jest": "^27.1.5", diff --git a/package.json b/package.json index 53df58cf..c2024fcb 100644 --- a/package.json +++ b/package.json @@ -4,12 +4,12 @@ "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", "@changesets/cli": "^2.23.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", "prettier": "2.7.1", diff --git a/packages/d3-state-visualizer/examples/tree/package.json b/packages/d3-state-visualizer/examples/tree/package.json index 0b08a7dc..ab15dfac 100644 --- a/packages/d3-state-visualizer/examples/tree/package.json +++ b/packages/d3-state-visualizer/examples/tree/package.json @@ -33,8 +33,8 @@ "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@types/node": "^16.11.41", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "eslint": "^8.18.0", diff --git a/packages/d3-state-visualizer/package.json b/packages/d3-state-visualizer/package.json index db97f526..71d341da 100644 --- a/packages/d3-state-visualizer/package.json +++ b/packages/d3-state-visualizer/package.json @@ -58,16 +58,16 @@ "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", "@types/node": "^16.11.41", "@types/ramda": "^0.28.14", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.75.6", + "rollup": "^2.75.7", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.32.1", "tslib": "^2.4.0", diff --git a/packages/d3tooltip/package.json b/packages/d3tooltip/package.json index 2ac9055a..92fbe6b4 100644 --- a/packages/d3tooltip/package.json +++ b/packages/d3tooltip/package.json @@ -49,18 +49,18 @@ "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", "@types/d3": "^3.5.47", "@types/node": "^16.11.41", "@types/ramda": "^0.28.14", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "d3": "^3.5.17", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.75.6", + "rollup": "^2.75.7", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.32.1", "tslib": "^2.4.0", diff --git a/packages/map2tree/package.json b/packages/map2tree/package.json index 5359a1e6..b25f59a8 100755 --- a/packages/map2tree/package.json +++ b/packages/map2tree/package.json @@ -53,20 +53,20 @@ "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", "@types/node": "^16.11.41", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "immutable": "^4.1.0", "jest": "^27.5.1", "rimraf": "^3.0.2", - "rollup": "^2.75.6", + "rollup": "^2.75.7", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.32.1", "ts-jest": "^27.1.5", diff --git a/packages/react-base16-styling/package.json b/packages/react-base16-styling/package.json index e33e64f1..6e419401 100644 --- a/packages/react-base16-styling/package.json +++ b/packages/react-base16-styling/package.json @@ -57,8 +57,8 @@ "@types/color": "^3.0.3", "@types/jest": "^27.5.2", "@types/lodash.curry": "^4.1.7", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", diff --git a/packages/react-dock/demo/package.json b/packages/react-dock/demo/package.json index 957c8b5d..a4b30e90 100644 --- a/packages/react-dock/demo/package.json +++ b/packages/react-dock/demo/package.json @@ -27,13 +27,13 @@ "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", diff --git a/packages/react-dock/package.json b/packages/react-dock/package.json index 4417f088..a2f046de 100644 --- a/packages/react-dock/package.json +++ b/packages/react-dock/package.json @@ -57,12 +57,12 @@ "@types/lodash.debounce": "^4.0.7", "@types/react": "^18.0.14", "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", "react": "^18.2.0", diff --git a/packages/react-json-tree/examples/package.json b/packages/react-json-tree/examples/package.json index 9d39ad8f..972f5ae1 100644 --- a/packages/react-json-tree/examples/package.json +++ b/packages/react-json-tree/examples/package.json @@ -33,13 +33,13 @@ "@types/node": "^16.11.41", "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", diff --git a/packages/react-json-tree/package.json b/packages/react-json-tree/package.json index 772f5750..92f5200b 100644 --- a/packages/react-json-tree/package.json +++ b/packages/react-json-tree/package.json @@ -60,24 +60,24 @@ "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", "@types/jest": "^27.5.2", "@types/node": "^16.11.41", "@types/react": "^18.0.14", "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", "react": "^18.2.0", "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", - "rollup": "^2.75.6", + "rollup": "^2.75.7", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.32.1", "ts-jest": "^27.1.5", diff --git a/packages/redux-devtools-app/package.json b/packages/redux-devtools-app/package.json index 4ca989a4..cde495d0 100644 --- a/packages/redux-devtools-app/package.json +++ b/packages/redux-devtools-app/package.json @@ -86,17 +86,17 @@ "@types/react-dom": "^18.0.5", "@types/socketcluster-client": "^16.0.0", "@types/styled-components": "^5.1.25", - "@types/testing-library__jest-dom": "^5.14.4", + "@types/testing-library__jest-dom": "^5.14.5", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-loader": "^3.1.2", diff --git a/packages/redux-devtools-chart-monitor/package.json b/packages/redux-devtools-chart-monitor/package.json index 03993b63..e16f5297 100644 --- a/packages/redux-devtools-chart-monitor/package.json +++ b/packages/redux-devtools-chart-monitor/package.json @@ -57,11 +57,11 @@ "@babel/preset-typescript": "^7.17.12", "@redux-devtools/core": "^3.13.1", "@types/react": "^18.0.14", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-cli/package.json b/packages/redux-devtools-cli/package.json index 4cc982ab..110cc185 100644 --- a/packages/redux-devtools-cli/package.json +++ b/packages/redux-devtools-cli/package.json @@ -47,7 +47,7 @@ "chalk": "^4.1.2", "cors": "^2.8.5", "cross-spawn": "^7.0.3", - "electron": "^19.0.4", + "electron": "^19.0.6", "express": "^4.18.1", "getport": "^0.1.0", "graphql": "^16.5.0", @@ -81,8 +81,8 @@ "@types/styled-components": "^5.1.25", "@types/supertest": "^2.0.12", "@types/uuid": "^8.3.4", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", diff --git a/packages/redux-devtools-dock-monitor/package.json b/packages/redux-devtools-dock-monitor/package.json index 90ad87f3..0d53534f 100644 --- a/packages/redux-devtools-dock-monitor/package.json +++ b/packages/redux-devtools-dock-monitor/package.json @@ -58,11 +58,11 @@ "@redux-devtools/core": "^3.13.1", "@types/parse-key": "^0.2.0", "@types/react": "^18.0.14", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-extension/package.json b/packages/redux-devtools-extension/package.json index c28f77c3..0cab2bdd 100644 --- a/packages/redux-devtools-extension/package.json +++ b/packages/redux-devtools-extension/package.json @@ -38,8 +38,8 @@ "@babel/plugin-transform-runtime": "^7.18.5", "@babel/preset-env": "^7.18.2", "@babel/preset-typescript": "^7.17.12", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json index 6c6ea102..cd4e2eff 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json @@ -38,14 +38,14 @@ "@types/redux-logger": "^3.0.9", "@types/styled-components": "^5.1.25", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools-inspector-monitor-test-tab/package.json b/packages/redux-devtools-inspector-monitor-test-tab/package.json index 97cad327..341cc8a7 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/package.json @@ -71,12 +71,12 @@ "@types/object-path": "^0.11.1", "@types/react": "^18.0.14", "@types/simple-diff": "^1.6.1", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", "react": "^18.2.0", diff --git a/packages/redux-devtools-inspector-monitor-trace-tab/package.json b/packages/redux-devtools-inspector-monitor-trace-tab/package.json index 1cebe74d..2dd86bd4 100644 --- a/packages/redux-devtools-inspector-monitor-trace-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-trace-tab/package.json @@ -32,7 +32,7 @@ "dependencies": { "@babel/code-frame": "^7.16.7", "@babel/runtime": "^7.18.3", - "@types/chrome": "^0.0.190", + "@types/chrome": "^0.0.191", "anser": "^2.1.1", "html-entities": "^2.3.3", "path-browserify": "^1.0.1", @@ -58,12 +58,12 @@ "@types/react": "^18.0.14", "@types/redux-devtools-themes": "^1.0.0", "@types/source-map": "0.5.2", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", "react": "^18.2.0", diff --git a/packages/redux-devtools-inspector-monitor/demo/package.json b/packages/redux-devtools-inspector-monitor/demo/package.json index b0e255e5..64909a2b 100644 --- a/packages/redux-devtools-inspector-monitor/demo/package.json +++ b/packages/redux-devtools-inspector-monitor/demo/package.json @@ -36,13 +36,13 @@ "@types/react-dom": "^18.0.5", "@types/redux-logger": "^3.0.9", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools-inspector-monitor/package.json b/packages/redux-devtools-inspector-monitor/package.json index 7a446058..cac5d79a 100644 --- a/packages/redux-devtools-inspector-monitor/package.json +++ b/packages/redux-devtools-inspector-monitor/package.json @@ -69,11 +69,11 @@ "@types/react": "^18.0.14", "@types/react-dragula": "^1.1.0", "@types/redux-devtools-themes": "^1.0.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-instrument/package.json b/packages/redux-devtools-instrument/package.json index 5070ebe6..4ce30cae 100644 --- a/packages/redux-devtools-instrument/package.json +++ b/packages/redux-devtools-instrument/package.json @@ -54,8 +54,8 @@ "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", "@types/node": "^16.11.41", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", diff --git a/packages/redux-devtools-log-monitor/package.json b/packages/redux-devtools-log-monitor/package.json index 6b820d25..1af5fa7f 100644 --- a/packages/redux-devtools-log-monitor/package.json +++ b/packages/redux-devtools-log-monitor/package.json @@ -60,11 +60,11 @@ "@babel/preset-typescript": "^7.17.12", "@redux-devtools/core": "^3.13.1", "@types/react": "^18.0.14", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-remote/package.json b/packages/redux-devtools-remote/package.json index c03c1140..93667456 100644 --- a/packages/redux-devtools-remote/package.json +++ b/packages/redux-devtools-remote/package.json @@ -60,8 +60,8 @@ "@types/node": "^16.11.41", "@types/rn-host-detect": "^1.2.0", "@types/socketcluster-client": "^16.0.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-rtk-query-monitor/demo/package.json b/packages/redux-devtools-rtk-query-monitor/demo/package.json index 3ec78bee..f5e55d87 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/package.json +++ b/packages/redux-devtools-rtk-query-monitor/demo/package.json @@ -19,8 +19,8 @@ "@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/rtk-query-monitor": "^3.0.0", "@reduxjs/toolkit": "^1.8.2", - "framer-motion": "^6.3.11", - "msw": "^0.42.1", + "framer-motion": "^6.3.15", + "msw": "^0.42.3", "react": "^18.2.0", "react-dom": "^18.2.0", "react-icons": "^4.4.0", @@ -40,15 +40,15 @@ "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools-rtk-query-monitor/package.json b/packages/redux-devtools-rtk-query-monitor/package.json index 27e39614..d1bac00f 100644 --- a/packages/redux-devtools-rtk-query-monitor/package.json +++ b/packages/redux-devtools-rtk-query-monitor/package.json @@ -71,11 +71,11 @@ "@types/hex-rgba": "^1.0.1", "@types/lodash.debounce": "^4.0.7", "@types/react": "^18.0.14", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-serialize/package.json b/packages/redux-devtools-serialize/package.json index 66686e75..c9e0407e 100644 --- a/packages/redux-devtools-serialize/package.json +++ b/packages/redux-devtools-serialize/package.json @@ -49,8 +49,8 @@ "@babel/preset-typescript": "^7.17.12", "@types/jest": "^27.5.2", "@types/jsan": "^3.1.2", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", diff --git a/packages/redux-devtools-slider-monitor/examples/todomvc/package.json b/packages/redux-devtools-slider-monitor/examples/todomvc/package.json index d48743a6..69acb4ec 100644 --- a/packages/redux-devtools-slider-monitor/examples/todomvc/package.json +++ b/packages/redux-devtools-slider-monitor/examples/todomvc/package.json @@ -41,14 +41,14 @@ "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools-slider-monitor/package.json b/packages/redux-devtools-slider-monitor/package.json index e7630269..7ce57061 100644 --- a/packages/redux-devtools-slider-monitor/package.json +++ b/packages/redux-devtools-slider-monitor/package.json @@ -51,16 +51,16 @@ "@rollup/plugin-babel": "^5.3.1", "@types/node": "^16.11.41", "@types/react": "^18.0.14", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "rollup": "^2.75.6", + "rollup": "^2.75.7", "rollup-plugin-typescript2": "^0.32.1", "tslib": "^2.4.0", "typescript": "~4.7.4" diff --git a/packages/redux-devtools-ui/package.json b/packages/redux-devtools-ui/package.json index 24577490..63bb5956 100644 --- a/packages/redux-devtools-ui/package.json +++ b/packages/redux-devtools-ui/package.json @@ -51,7 +51,7 @@ "@types/redux-devtools-themes": "^1.0.0", "@types/simple-element-resize-detector": "^1.3.0", "base16": "^1.0.0", - "codemirror": "^5.65.5", + "codemirror": "^5.65.6", "color": "^4.2.3", "prop-types": "^15.8.1", "react-icons": "^4.4.0", @@ -69,21 +69,21 @@ "@babel/preset-typescript": "^7.17.12", "@storybook/addon-essentials": "^6.5.9", "@storybook/react": "^6.5.9", - "@testing-library/dom": "^8.13.0", + "@testing-library/dom": "^8.14.0", "@testing-library/react": "^13.3.0", "@testing-library/user-event": "^14.2.1", "@types/color": "^3.0.3", "@types/jest": "^27.5.2", "@types/react": "^18.0.14", "@types/styled-components": "^5.1.25", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "csstype": "^3.1.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", "ncp": "^2.0.0", diff --git a/packages/redux-devtools-utils/package.json b/packages/redux-devtools-utils/package.json index 3ec6ed6f..9d00d926 100644 --- a/packages/redux-devtools-utils/package.json +++ b/packages/redux-devtools-utils/package.json @@ -53,8 +53,8 @@ "@types/jsan": "^3.1.2", "@types/lodash": "^4.14.182", "@types/node": "^16.11.41", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", diff --git a/packages/redux-devtools/examples/counter/package.json b/packages/redux-devtools/examples/counter/package.json index 1de8caf0..af3c3768 100644 --- a/packages/redux-devtools/examples/counter/package.json +++ b/packages/redux-devtools/examples/counter/package.json @@ -39,13 +39,13 @@ "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools/examples/todomvc/package.json b/packages/redux-devtools/examples/todomvc/package.json index ae26aa57..14f64201 100644 --- a/packages/redux-devtools/examples/todomvc/package.json +++ b/packages/redux-devtools/examples/todomvc/package.json @@ -53,14 +53,14 @@ "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools/package.json b/packages/redux-devtools/package.json index d0186397..7be343ec 100644 --- a/packages/redux-devtools/package.json +++ b/packages/redux-devtools/package.json @@ -59,12 +59,12 @@ "@types/lodash": "^4.14.182", "@types/node": "^16.11.41", "@types/react": "^18.0.14", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", "react": "^18.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0f413d73..de524e56 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,12 +11,12 @@ importers: '@babel/eslint-parser': ^7.18.2 '@changesets/cli': ^2.23.0 '@nrwl/nx-cloud': ^14.1.2 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 nx: ^14.3.6 @@ -27,12 +27,12 @@ importers: '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom '@changesets/cli': 2.23.0 '@nrwl/nx-cloud': 14.1.2 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 nx: 14.3.6 @@ -56,7 +56,7 @@ importers: '@redux-devtools/utils': ^2.0.0 '@testing-library/jest-dom': ^5.16.4 '@testing-library/react': ^13.3.0 - '@types/chrome': ^0.0.190 + '@types/chrome': ^0.0.191 '@types/jsan': ^3.1.2 '@types/lodash': ^4.14.182 '@types/react': ^18.0.14 @@ -68,12 +68,12 @@ importers: copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - electron: ^19.0.4 + electron: ^19.0.6 eslint: ^8.18.0 eslint-config-airbnb: ^19.0.4 eslint-plugin-import: ^2.26.0 - eslint-plugin-jsx-a11y: ^6.5.1 - eslint-plugin-react: ^7.30.0 + eslint-plugin-jsx-a11y: ^6.6.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 file-loader: ^6.2.0 fork-ts-checker-webpack-plugin: ^7.2.11 @@ -96,7 +96,7 @@ importers: redux: ^4.2.0 redux-persist: ^6.0.0 rimraf: ^3.0.2 - selenium-webdriver: ^4.2.0 + selenium-webdriver: ^4.3.0 sinon-chrome: ^3.0.1 style-loader: ^3.3.1 styled-components: ^5.3.5 @@ -134,7 +134,7 @@ importers: '@babel/register': 7.17.7_@babel+core@7.18.5 '@testing-library/jest-dom': 5.16.4 '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y - '@types/chrome': 0.0.190 + '@types/chrome': 0.0.191 '@types/lodash': 4.14.182 '@types/react': 18.0.14 '@types/react-dom': 18.0.5 @@ -145,12 +145,12 @@ importers: copy-webpack-plugin: 11.0.0_webpack@5.73.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 - electron: 19.0.4 + electron: 19.0.6 eslint: 8.18.0 - eslint-config-airbnb: 19.0.4_33hhosu7yovqp6ljggjzij5oci + eslint-config-airbnb: 19.0.4_egamsbadvc6ovgxe5yxurj2cai eslint-plugin-import: 2.26.0_eslint@8.18.0 - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jsx-a11y: 6.6.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 file-loader: 6.2.0_webpack@5.73.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei @@ -162,7 +162,7 @@ importers: react-transform-catch-errors: 1.0.2 react-transform-hmr: 1.0.4 rimraf: 3.0.2 - selenium-webdriver: 4.2.0 + selenium-webdriver: 4.3.0 sinon-chrome: 3.0.1 style-loader: 3.3.1_webpack@5.73.0 ts-jest: 27.1.5_fddvm4zdts2kttulaik7bnebje @@ -180,13 +180,13 @@ importers: '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 '@types/d3': ^3.5.47 '@types/node': ^16.11.41 '@types/ramda': ^0.28.14 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 d3: ^3.5.17 d3tooltip: ^2.1.0 deepmerge: ^4.2.2 @@ -195,7 +195,7 @@ importers: map2tree: ^2.1.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.75.6 + rollup: ^2.75.7 rollup-plugin-terser: ^7.0.2 rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 @@ -215,19 +215,19 @@ importers: '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 '@babel/preset-env': 7.18.2_@babel+core@7.18.5 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 - '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 '@types/node': 16.11.41 '@types/ramda': 0.28.14 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 - rollup: 2.75.6 - rollup-plugin-terser: 7.0.2_rollup@2.75.6 - rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm + rollup: 2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei tslib: 2.4.0 typescript: 4.7.4 @@ -237,8 +237,8 @@ importers: '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@types/node': ^16.11.41 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 d3-state-visualizer: ^1.6.0 @@ -260,8 +260,8 @@ importers: '@babel/preset-env': 7.18.2_@babel+core@7.18.5 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/node': 16.11.41 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 eslint: 8.18.0 @@ -284,19 +284,19 @@ importers: '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 '@types/d3': ^3.5.47 '@types/node': ^16.11.41 '@types/ramda': ^0.28.14 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 d3: ^3.5.17 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.75.6 + rollup: ^2.75.7 rollup-plugin-terser: ^7.0.2 rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 @@ -311,21 +311,21 @@ importers: '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 '@babel/preset-env': 7.18.2_@babel+core@7.18.5 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 - '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 '@types/d3': 3.5.47 '@types/node': 16.11.41 '@types/ramda': 0.28.14 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e d3: 3.5.17 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 - rollup: 2.75.6 - rollup-plugin-terser: 7.0.2_rollup@2.75.6 - rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm + rollup: 2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei tslib: 2.4.0 typescript: 4.7.4 @@ -339,13 +339,13 @@ importers: '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 '@types/node': ^16.11.41 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 @@ -353,7 +353,7 @@ importers: jest: ^27.5.1 lodash: ^4.17.21 rimraf: ^3.0.2 - rollup: ^2.75.6 + rollup: ^2.75.7 rollup-plugin-terser: ^7.0.2 rollup-plugin-typescript2: ^0.32.1 ts-jest: ^27.1.5 @@ -369,23 +369,23 @@ importers: '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 '@babel/preset-env': 7.18.2_@babel+core@7.18.5 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 - '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 '@types/jest': 27.5.2 '@types/lodash': 4.14.182 '@types/node': 16.11.41 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi immutable: 4.1.0 jest: 27.5.1 rimraf: 3.0.2 - rollup: 2.75.6 - rollup-plugin-terser: 7.0.2_rollup@2.75.6 - rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm + rollup: 2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm tslib: 2.4.0 typescript: 4.7.4 @@ -404,8 +404,8 @@ importers: '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 '@types/lodash.curry': ^4.1.7 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 base16: ^1.0.0 color: ^4.2.3 csstype: ^3.1.0 @@ -435,11 +435,11 @@ importers: '@types/color': 3.0.3 '@types/jest': 27.5.2 '@types/lodash.curry': 4.1.7 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi jest: 27.5.1 rimraf: 3.0.2 ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm @@ -461,12 +461,12 @@ importers: '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 '@types/react-test-renderer': ^18.0.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 lodash.debounce: ^4.0.8 @@ -494,12 +494,12 @@ importers: '@types/lodash.debounce': 4.0.7 '@types/react': 18.0.14 '@types/react-test-renderer': 18.0.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 react: 18.2.0 @@ -518,13 +518,13 @@ importers: '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 @@ -557,13 +557,13 @@ importers: '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 @@ -584,7 +584,7 @@ importers: '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 @@ -592,12 +592,12 @@ importers: '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 '@types/react-test-renderer': ^18.0.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 prop-types: ^15.8.1 @@ -605,7 +605,7 @@ importers: react-base16-styling: ^0.9.1 react-test-renderer: ^18.2.0 rimraf: ^3.0.2 - rollup: ^2.75.6 + rollup: ^2.75.7 rollup-plugin-terser: ^7.0.2 rollup-plugin-typescript2: ^0.32.1 ts-jest: ^27.1.5 @@ -625,27 +625,27 @@ importers: '@babel/preset-env': 7.18.2_@babel+core@7.18.5 '@babel/preset-react': 7.17.12_@babel+core@7.18.5 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 - '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 '@types/jest': 27.5.2 '@types/node': 16.11.41 '@types/react': 18.0.14 '@types/react-test-renderer': 18.0.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 react: 18.2.0 react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - rollup: 2.75.6 - rollup-plugin-terser: 7.0.2_rollup@2.75.6 - rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm + rollup: 2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm tslib: 2.4.0 typescript: 4.7.4 @@ -659,13 +659,13 @@ importers: '@types/node': ^16.11.41 '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 @@ -693,13 +693,13 @@ importers: '@types/node': 16.11.41 '@types/react': 18.0.14 '@types/react-dom': 18.0.5 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 @@ -725,12 +725,12 @@ importers: '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 lodash: ^4.17.21 @@ -760,12 +760,12 @@ importers: '@types/lodash': 4.14.182 '@types/node': 16.11.41 '@types/react': 18.0.14 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 react: 18.2.0 @@ -809,10 +809,10 @@ importers: '@types/react-dom': ^18.0.5 '@types/socketcluster-client': ^16.0.0 '@types/styled-components': ^5.1.25 - '@types/testing-library__jest-dom': ^5.14.4 + '@types/testing-library__jest-dom': ^5.14.5 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 css-loader: ^6.7.1 @@ -820,7 +820,7 @@ importers: eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-loader: ^3.1.2 @@ -896,17 +896,17 @@ importers: '@types/react-dom': 18.0.5 '@types/socketcluster-client': 16.0.0 '@types/styled-components': 5.1.25 - '@types/testing-library__jest-dom': 5.14.4 + '@types/testing-library__jest-dom': 5.14.5 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-loader: 3.1.2_webpack@5.73.0 @@ -939,13 +939,13 @@ importers: '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 d3-state-visualizer: ^1.6.0 deepmerge: ^4.2.2 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 react: ^18.2.0 @@ -971,11 +971,11 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@types/react': 18.0.14 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 react: 18.2.0 redux: 4.2.0 @@ -1001,14 +1001,14 @@ importers: '@types/styled-components': ^5.1.25 '@types/supertest': ^2.0.12 '@types/uuid': ^8.3.4 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 apollo-server-express: ^3.9.0 body-parser: ^1.20.0 chalk: ^4.1.2 cors: ^2.8.5 cross-spawn: ^7.0.3 - electron: ^19.0.4 + electron: ^19.0.6 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 @@ -1043,7 +1043,7 @@ importers: chalk: 4.1.2 cors: 2.8.5 cross-spawn: 7.0.3 - electron: 19.0.4 + electron: 19.0.6 express: 4.18.1 getport: 0.1.0 graphql: 16.5.0 @@ -1076,11 +1076,11 @@ importers: '@types/styled-components': 5.1.25 '@types/supertest': 2.0.12 '@types/uuid': 8.3.4 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi jest: 27.5.1 ncp: 2.0.0 rimraf: 3.0.2 @@ -1103,11 +1103,11 @@ importers: '@types/parse-key': ^0.2.0 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 parse-key: ^0.2.1 prop-types: ^15.8.1 @@ -1133,11 +1133,11 @@ importers: '@redux-devtools/core': link:../redux-devtools '@types/parse-key': 0.2.0 '@types/react': 18.0.14 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 react: 18.2.0 redux: 4.2.0 @@ -1153,8 +1153,8 @@ importers: '@babel/preset-env': ^7.18.2 '@babel/preset-typescript': ^7.17.12 '@babel/runtime': ^7.18.3 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 redux: ^4.2.0 @@ -1169,8 +1169,8 @@ importers: '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 '@babel/preset-env': 7.18.2_@babel+core@7.18.5 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 redux: 4.2.0 @@ -1198,12 +1198,12 @@ importers: '@types/react': ^18.0.14 '@types/react-dragula': ^1.1.0 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 dateformat: ^4.6.3 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 immutable: ^4.1.0 @@ -1255,11 +1255,11 @@ importers: '@types/react': 18.0.14 '@types/react-dragula': 1.1.0 '@types/redux-devtools-themes': 1.0.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 react: 18.2.0 redux: 4.2.0 @@ -1287,13 +1287,13 @@ importers: '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 '@types/simple-diff': ^1.6.1 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 es6template: ^1.0.5 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 javascript-stringify: ^2.1.0 jest: ^27.5.1 @@ -1336,12 +1336,12 @@ importers: '@types/object-path': 0.11.1 '@types/react': 18.0.14 '@types/simple-diff': 1.6.1 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 react: 18.2.0 @@ -1369,14 +1369,14 @@ importers: '@types/redux-logger': ^3.0.9 '@types/styled-components': ^5.1.25 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 @@ -1424,14 +1424,14 @@ importers: '@types/redux-logger': 3.0.9 '@types/styled-components': 5.1.25 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 @@ -1457,7 +1457,7 @@ importers: '@redux-devtools/inspector-monitor': ^3.0.0 '@testing-library/react': ^13.3.0 '@types/babel__code-frame': ^7.0.3 - '@types/chrome': ^0.0.190 + '@types/chrome': ^0.0.191 '@types/html-entities': ^1.3.4 '@types/jest': ^27.5.2 '@types/node': ^16.11.41 @@ -1465,13 +1465,13 @@ importers: '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 anser: ^2.1.1 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 html-entities: ^2.3.3 jest: ^27.5.1 @@ -1488,7 +1488,7 @@ importers: dependencies: '@babel/code-frame': 7.16.7 '@babel/runtime': 7.18.3 - '@types/chrome': 0.0.190 + '@types/chrome': 0.0.191 anser: 2.1.1 html-entities: 2.3.3 path-browserify: 1.0.1 @@ -1513,12 +1513,12 @@ importers: '@types/react': 18.0.14 '@types/redux-devtools-themes': 1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 react: 18.2.0 @@ -1545,14 +1545,14 @@ importers: '@types/react-dom': ^18.0.5 '@types/redux-logger': ^3.0.9 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 base16: ^1.0.0 cross-env: ^7.0.3 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 @@ -1596,13 +1596,13 @@ importers: '@types/react-dom': 18.0.5 '@types/redux-logger': 3.0.9 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 @@ -1624,8 +1624,8 @@ importers: '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 '@types/node': ^16.11.41 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 @@ -1649,11 +1649,11 @@ importers: '@types/jest': 27.5.2 '@types/lodash': 4.14.182 '@types/node': 16.11.41 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi jest: 27.5.1 redux: 4.2.0 rimraf: 3.0.2 @@ -1676,11 +1676,11 @@ importers: '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 @@ -1709,11 +1709,11 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@types/react': 18.0.14 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 react: 18.2.0 redux: 4.2.0 @@ -1735,8 +1735,8 @@ importers: '@types/node': ^16.11.41 '@types/rn-host-detect': ^1.2.0 '@types/socketcluster-client': ^16.0.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 jsan: ^3.1.14 @@ -1765,8 +1765,8 @@ importers: '@types/node': 16.11.41 '@types/rn-host-detect': 1.2.0 '@types/socketcluster-client': 16.0.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 redux: 4.2.0 @@ -1792,11 +1792,11 @@ importers: '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 immutable: ^4.1.0 @@ -1839,11 +1839,11 @@ importers: '@types/hex-rgba': 1.0.1 '@types/lodash.debounce': 4.0.7 '@types/react': 18.0.14 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 react: 18.2.0 redux: 4.2.0 @@ -1871,20 +1871,20 @@ importers: '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 - framer-motion: ^6.3.11 + framer-motion: ^6.3.15 html-webpack-plugin: ^5.5.0 - msw: ^0.42.1 + msw: ^0.42.3 react: ^18.2.0 react-dom: ^18.2.0 react-icons: ^4.4.0 @@ -1900,7 +1900,7 @@ importers: webpack-dev-server: ^4.9.2 dependencies: '@babel/runtime': 7.18.3 - '@chakra-ui/react': 2.2.1_dersw4eko4axp24m2cfli7j6ja + '@chakra-ui/react': 2.2.1_5z4lybafbsej23lhe66gvmikba '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm '@mswjs/data': 0.10.1_typescript@4.7.4 @@ -1908,8 +1908,8 @@ importers: '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/rtk-query-monitor': link:.. '@reduxjs/toolkit': 1.8.2_kkwg4cbsojnjnupd3btipussee - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y - msw: 0.42.1_typescript@4.7.4 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + msw: 0.42.3_typescript@4.7.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-icons: 4.4.0_react@18.2.0 @@ -1928,15 +1928,15 @@ importers: '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke copy-webpack-plugin: 11.0.0_webpack@5.73.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 @@ -1958,8 +1958,8 @@ importers: '@babel/runtime': ^7.18.3 '@types/jest': ^27.5.2 '@types/jsan': ^3.1.2 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 @@ -1981,11 +1981,11 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jest': 27.5.2 '@types/jsan': 3.1.2 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi immutable: 4.1.0 jest: 27.5.1 rimraf: 3.0.2 @@ -2009,18 +2009,18 @@ importers: '@types/prop-types': ^15.7.5 '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 react: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - rollup: ^2.75.6 + rollup: ^2.75.7 rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 typescript: ~4.7.4 @@ -2040,20 +2040,20 @@ importers: '@babel/preset-react': 7.17.12_@babel+core@7.18.5 '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@rollup/plugin-babel': 5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 '@types/node': 16.11.41 '@types/react': 18.0.14 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - rollup: 2.75.6 - rollup-plugin-typescript2: 0.32.1_63sirsnfvviu2qxghjzgkmnlpm + rollup: 2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei tslib: 2.4.0 typescript: 4.7.4 @@ -2074,15 +2074,15 @@ importers: '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 classnames: ^2.3.1 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 @@ -2126,14 +2126,14 @@ importers: '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 @@ -2157,7 +2157,7 @@ importers: '@rjsf/core': ^4.2.0 '@storybook/addon-essentials': ^6.5.9 '@storybook/react': ^6.5.9 - '@testing-library/dom': ^8.13.0 + '@testing-library/dom': ^8.14.0 '@testing-library/react': ^13.3.0 '@testing-library/user-event': ^14.2.1 '@types/base16': ^1.0.2 @@ -2170,17 +2170,17 @@ importers: '@types/redux-devtools-themes': ^1.0.0 '@types/simple-element-resize-detector': ^1.3.0 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 base16: ^1.0.0 - codemirror: ^5.65.5 + codemirror: ^5.65.6 color: ^4.2.3 csstype: ^3.1.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-plugin-jest: ^26.5.3 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 ncp: ^2.0.0 @@ -2213,7 +2213,7 @@ importers: '@types/redux-devtools-themes': 1.0.0 '@types/simple-element-resize-detector': 1.3.0 base16: 1.0.0 - codemirror: 5.65.5 + codemirror: 5.65.6 color: 4.2.3 prop-types: 15.8.1 react-icons: 4.4.0_react@18.2.0 @@ -2230,21 +2230,21 @@ importers: '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@storybook/addon-essentials': 6.5.9_kegi444pbrxunz45jv6pd3z7ki '@storybook/react': 6.5.9_qvaipyr63plem3mgv5krfvm7b4 - '@testing-library/dom': 8.13.0 + '@testing-library/dom': 8.14.0 '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y - '@testing-library/user-event': 14.2.1_tlwynutqiyp5mns3woioasuxnq + '@testing-library/user-event': 14.2.1_ihvo3xlg2d6kwqju3os3zitn3y '@types/color': 3.0.3 '@types/jest': 27.5.2 '@types/react': 18.0.14 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke csstype: 3.1.0 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-jest: 26.5.3_zxzftnn2st6hdax52fud6lzt74 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 ncp: 2.0.0 @@ -2278,8 +2278,8 @@ importers: '@types/jsan': ^3.1.2 '@types/lodash': ^4.14.182 '@types/node': ^16.11.41 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 get-params: ^0.1.2 @@ -2311,8 +2311,8 @@ importers: '@types/jsan': 3.1.2 '@types/lodash': 4.14.182 '@types/node': 16.11.41 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 @@ -2332,13 +2332,13 @@ importers: '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 @@ -2373,13 +2373,13 @@ importers: '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 @@ -2404,15 +2404,15 @@ importers: '@types/react': ^18.0.14 '@types/react-dom': ^18.0.5 '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 classnames: ^2.3.1 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.0 + eslint-plugin-react: ^7.30.1 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 @@ -2450,14 +2450,14 @@ importers: '@types/react': 18.0.14 '@types/react-dom': 18.0.5 '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 eslint: 8.18.0 eslint-config-prettier: 8.5.0_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei html-webpack-plugin: 5.5.0_webpack@5.73.0 @@ -4088,7 +4088,7 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@chakra-ui/accordion/2.0.3_inccl32eslsh7jtablwho5kv2e: + /@chakra-ui/accordion/2.0.3_vtyuavm5aokxji6drgmjpa5nda: resolution: {integrity: sha512-3fu5q6I6QtYVfpBHK+xxIkZ3b/spHgDongXuKuLEJZswcSU8+X5B9YmNfv73ZMRKO3PboYtyHAmZZo4pYqzbbA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' @@ -4100,9 +4100,9 @@ packages: '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/react-utils': 2.0.1_react@18.2.0 '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q - '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga '@chakra-ui/utils': 2.0.2 - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false @@ -4168,7 +4168,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/checkbox/2.1.0_inccl32eslsh7jtablwho5kv2e: + /@chakra-ui/checkbox/2.1.0_vtyuavm5aokxji6drgmjpa5nda: resolution: {integrity: sha512-LPKhJM/IMp8LKdr52PVfSGAnmqcgwTMPcjyWT8jXQ3OhEXRUKc5rSUORmPtJmffNLjLq1nPCcSMWQsVHhJ9MXw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' @@ -4182,7 +4182,7 @@ packages: '@chakra-ui/utils': 2.0.2 '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle '@zag-js/focus-visible': 0.1.0 - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false @@ -4381,7 +4381,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/menu/2.0.3_inccl32eslsh7jtablwho5kv2e: + /@chakra-ui/menu/2.0.3_vtyuavm5aokxji6drgmjpa5nda: resolution: {integrity: sha512-hW1XBK0ZOEvnrwurqZiQ7+CFW8Olfk82BilNOulQ7LxQ2hQAAg4JBQxs755jVEtqhSAP+oe/yuWEabWtCWLGQw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' @@ -4394,13 +4394,13 @@ packages: '@chakra-ui/popper': 3.0.2_react@18.2.0 '@chakra-ui/react-utils': 2.0.1_react@18.2.0 '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q - '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga '@chakra-ui/utils': 2.0.2 - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/modal/2.0.3_4s7debdozfrn2zrndnc46esm3q: + /@chakra-ui/modal/2.0.3_fyzxmzue2kafzgbnbtznxaoljq: resolution: {integrity: sha512-GS1Apvrsr8scM1d/awVgJdcheITja4fMKTKwWljstw7SfAMOPc4skKIg+MzriLvtIialm1WFxOWYfiQ5MKAAcQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' @@ -4414,10 +4414,10 @@ packages: '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y '@chakra-ui/react-utils': 2.0.1_react@18.2.0 '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q - '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga '@chakra-ui/utils': 2.0.2 aria-hidden: 1.1.3 - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-remove-scroll: 2.5.4_luyos4mouogwq6z3wafb3re4ce @@ -4455,7 +4455,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/popover/2.0.2_inccl32eslsh7jtablwho5kv2e: + /@chakra-ui/popover/2.0.2_vtyuavm5aokxji6drgmjpa5nda: resolution: {integrity: sha512-i9Tsx+gpN470V7eLPng+lVK25DfUdQ44OAzWMUavIiutCtVJknZEPYbSr72JnT4NHBnr7b8rqUBEYq9+36LmlQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' @@ -4468,7 +4468,7 @@ packages: '@chakra-ui/react-utils': 2.0.1_react@18.2.0 '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q '@chakra-ui/utils': 2.0.2 - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false @@ -4559,7 +4559,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react/2.2.1_dersw4eko4axp24m2cfli7j6ja: + /@chakra-ui/react/2.2.1_5z4lybafbsej23lhe66gvmikba: resolution: {integrity: sha512-m2vFICTUO3GivTkJROnTTJT+w8otcYMraKqOSdrAGmsjqtZAp8/FaGS+1bxzeZnZTszMn65LoLvlgBUDrTHhQA==} peerDependencies: '@emotion/react': ^11.0.0 @@ -4568,12 +4568,12 @@ packages: react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/accordion': 2.0.3_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/accordion': 2.0.3_vtyuavm5aokxji6drgmjpa5nda '@chakra-ui/alert': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/avatar': 2.0.3_smtw3k2wuexenqj33awaujbhle '@chakra-ui/breadcrumb': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/button': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/checkbox': 2.1.0_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/checkbox': 2.1.0_vtyuavm5aokxji6drgmjpa5nda '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/control-box': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/counter': 2.0.2_react@18.2.0 @@ -4587,11 +4587,11 @@ packages: '@chakra-ui/layout': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/live-region': 2.0.2_react@18.2.0 '@chakra-ui/media-query': 3.1.0_swpbf3sk2xubz3bowba44eqanu - '@chakra-ui/menu': 2.0.3_inccl32eslsh7jtablwho5kv2e - '@chakra-ui/modal': 2.0.3_4s7debdozfrn2zrndnc46esm3q + '@chakra-ui/menu': 2.0.3_vtyuavm5aokxji6drgmjpa5nda + '@chakra-ui/modal': 2.0.3_fyzxmzue2kafzgbnbtznxaoljq '@chakra-ui/number-input': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/pin-input': 2.0.3_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/popover': 2.0.2_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/popover': 2.0.2_vtyuavm5aokxji6drgmjpa5nda '@chakra-ui/popper': 3.0.2_react@18.2.0 '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y '@chakra-ui/progress': 2.0.2_smtw3k2wuexenqj33awaujbhle @@ -4603,21 +4603,21 @@ packages: '@chakra-ui/slider': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/stat': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/switch': 2.0.3_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/switch': 2.0.3_vtyuavm5aokxji6drgmjpa5nda '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q '@chakra-ui/table': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/tabs': 2.0.3_smtw3k2wuexenqj33awaujbhle '@chakra-ui/tag': 2.0.2_smtw3k2wuexenqj33awaujbhle '@chakra-ui/textarea': 2.0.3_smtw3k2wuexenqj33awaujbhle '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 - '@chakra-ui/toast': 2.1.0_cdgnzpyqhm67cfidphy3xhoqqi - '@chakra-ui/tooltip': 2.0.2_qafgcfmixptan4yq35qlzbgnj4 - '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/toast': 2.1.0_65wlen2m7s2gqkmujk2syargwy + '@chakra-ui/tooltip': 2.0.2_zpzruzl5qtrb2u52xbwuohvqyi + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga '@chakra-ui/utils': 2.0.2 '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: @@ -4699,17 +4699,17 @@ packages: csstype: 3.1.0 dev: false - /@chakra-ui/switch/2.0.3_inccl32eslsh7jtablwho5kv2e: + /@chakra-ui/switch/2.0.3_vtyuavm5aokxji6drgmjpa5nda: resolution: {integrity: sha512-k7HLnKBM9GsY/RdqUWqe233QNFa2JtE+G4UyX8BsYLquWOkBfgJvI+f2gSUye1zLS8e1bFwz5BBIljTQMb/Smw==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/checkbox': 2.1.0_inccl32eslsh7jtablwho5kv2e + '@chakra-ui/checkbox': 2.1.0_vtyuavm5aokxji6drgmjpa5nda '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q '@chakra-ui/utils': 2.0.2 - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false @@ -4801,7 +4801,7 @@ packages: '@chakra-ui/utils': 2.0.2 dev: false - /@chakra-ui/toast/2.1.0_cdgnzpyqhm67cfidphy3xhoqqi: + /@chakra-ui/toast/2.1.0_65wlen2m7s2gqkmujk2syargwy: resolution: {integrity: sha512-xXgwzff/gtNrq2HGGG3fuqcfRQEIObluHzHhqgS3gesf8KYut/5ZJoLdgV4RKE+NYgJIi77BFUcQDiLJttxxPA==} peerDependencies: framer-motion: '>=4.0.0' @@ -4815,9 +4815,9 @@ packages: '@chakra-ui/react-utils': 2.0.1_react@18.2.0 '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 - '@chakra-ui/transition': 2.0.2_pas2gixxmlyrpeqapn6u4ylzzq + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga '@chakra-ui/utils': 2.0.2 - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: @@ -4825,7 +4825,7 @@ packages: - '@emotion/styled' dev: false - /@chakra-ui/tooltip/2.0.2_qafgcfmixptan4yq35qlzbgnj4: + /@chakra-ui/tooltip/2.0.2_zpzruzl5qtrb2u52xbwuohvqyi: resolution: {integrity: sha512-oK6gXybFe/MmHBXbd9w3XgNChVHQ9BeLW0IAtFeDyeHn5gJg0iKul/SNmJkD73Iyv/j+BsmBMn98mbNYQkeMQA==} peerDependencies: '@chakra-ui/system': '>=2.0.0-next.0' @@ -4840,19 +4840,19 @@ packages: '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q '@chakra-ui/utils': 2.0.2 '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/transition/2.0.2_pas2gixxmlyrpeqapn6u4ylzzq: + /@chakra-ui/transition/2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga: resolution: {integrity: sha512-s98gDFIGbv60WMyniVjy381NXxgS1Y/6RACR1Z1pReC5XZLY5GyMqeRYyFCAeE78qKkqon77Y8EDPQXl6X78dw==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/utils': 2.0.2 - framer-motion: 6.3.11_biqbaboplfbrettd7655fr4n2y + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false @@ -5778,7 +5778,7 @@ packages: strict-event-emitter: 0.2.4 uuid: 8.3.2 optionalDependencies: - msw: 0.42.1_typescript@4.7.4 + msw: 0.42.3_typescript@4.7.4 transitivePeerDependencies: - encoding - supports-color @@ -6066,7 +6066,7 @@ packages: react: 18.2.0 react-is: 16.13.1 - /@rollup/plugin-babel/5.3.1_zlefvkjd3mp2eij3mw2gs4aqfm: + /@rollup/plugin-babel/5.3.1_za5spbk65gc2bmrclluhieacz4: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -6079,42 +6079,42 @@ packages: dependencies: '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 - '@rollup/pluginutils': 3.1.0_rollup@2.75.6 - rollup: 2.75.6 + '@rollup/pluginutils': 3.1.0_rollup@2.75.7 + rollup: 2.75.7 dev: true - /@rollup/plugin-commonjs/22.0.0_rollup@2.75.6: - resolution: {integrity: sha512-Ktvf2j+bAO+30awhbYoCaXpBcyPmJbaEUYClQns/+6SNCYFURbvBiNbWgHITEsIgDDWCDUclWRKEuf8cwZCFoQ==} + /@rollup/plugin-commonjs/22.0.1_rollup@2.75.7: + resolution: {integrity: sha512-dGfEZvdjDHObBiP5IvwTKMVeq/tBZGMBHZFMdIV1ClMM/YoWS34xrHFGfag9SN2ZtMgNZRFruqvxZQEa70O6nQ==} engines: {node: '>= 12.0.0'} peerDependencies: rollup: ^2.68.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.6 + '@rollup/pluginutils': 3.1.0_rollup@2.75.7 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 resolve: 1.22.1 - rollup: 2.75.6 + rollup: 2.75.7 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.6: + /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.7: resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^2.42.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.6 + '@rollup/pluginutils': 3.1.0_rollup@2.75.7 '@types/resolve': 1.17.1 deepmerge: 4.2.2 is-builtin-module: 3.1.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 2.75.6 + rollup: 2.75.7 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.75.6: + /@rollup/pluginutils/3.1.0_rollup@2.75.7: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -6123,7 +6123,7 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 2.75.6 + rollup: 2.75.7 dev: true /@rollup/pluginutils/4.2.1: @@ -7390,8 +7390,8 @@ packages: resolution: {integrity: sha512-1c4ZOETSRpI0iBfIFUqU4KqwBAB2lHUAlBjZz/YqOHqwM9dTTzjV6Km0ZkiEiSCx/tLr1BtESIKyWWMww+RUqw==} dev: true - /@testing-library/dom/8.13.0: - resolution: {integrity: sha512-9VHgfIatKNXQNaZTtLnalIy0jNZzY35a4S3oi08YAt9Hv1VsfZ/DfA45lM8D/UhtHBGJ4/lGwp0PZkVndRkoOQ==} + /@testing-library/dom/8.14.0: + resolution: {integrity: sha512-m8FOdUo77iMTwVRCyzWcqxlEIk+GnopbrRI15a0EaLbpZSCinIVI4kSQzWhkShK83GogvEFJSsHF3Ws0z1vrqA==} engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.16.7 @@ -7409,7 +7409,7 @@ packages: engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@babel/runtime': 7.18.3 - '@types/testing-library__jest-dom': 5.14.4 + '@types/testing-library__jest-dom': 5.14.5 aria-query: 5.0.0 chalk: 3.0.0 css: 3.0.0 @@ -7427,19 +7427,19 @@ packages: react-dom: ^18.0.0 || 18 dependencies: '@babel/runtime': 7.18.3 - '@testing-library/dom': 8.13.0 + '@testing-library/dom': 8.14.0 '@types/react-dom': 18.0.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: true - /@testing-library/user-event/14.2.1_tlwynutqiyp5mns3woioasuxnq: + /@testing-library/user-event/14.2.1_ihvo3xlg2d6kwqju3os3zitn3y: resolution: {integrity: sha512-HOr1QiODrq+0j9lKU5i10y9TbhxMBMRMGimNx10asdmau9cb8Xb1Vyg0GvTwyIL2ziQyh2kAloOtAQFBQVuecA==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@testing-library/dom': 8.13.0 + '@testing-library/dom': 8.14.0 dev: true /@tootallnate/once/1.1.2: @@ -7561,8 +7561,8 @@ packages: '@types/node': 16.11.41 dev: true - /@types/chrome/0.0.190: - resolution: {integrity: sha512-lCwwIBfaD+PhG62qFB46mIBpD+xBIa+PedNB24KR9YnmJ0Zn9h0OwP1NQBhI8Cbu1rKwTQHTxhs7GhWGyUvinw==} + /@types/chrome/0.0.191: + resolution: {integrity: sha512-hXYHJJ1Y265xKCw0o2Kz4CnR8aUhOMdyxK1AinET4EDr3fhpEMvOFDwdqz9LUX4syfTVYWb8w7vfC12s112ehg==} dependencies: '@types/filesystem': 0.0.32 '@types/har-format': 1.2.8 @@ -7819,7 +7819,7 @@ packages: /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 16.11.41 + '@types/node': 18.0.0 /@types/lodash.curry/4.1.7: resolution: {integrity: sha512-R+IkSvh7CI8klh7FkQuTAiAR+aPFqYrNEjw/hMxjCSO7TsAqBAxpR99PxxJN1lgE6YuvpHEoktqbh6V5VLzxZA==} @@ -7898,7 +7898,6 @@ packages: /@types/node/18.0.0: resolution: {integrity: sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==} - dev: true /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -8010,7 +8009,7 @@ packages: /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 16.11.41 + '@types/node': 18.0.0 /@types/retry/0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -8050,7 +8049,7 @@ packages: /@types/set-cookie-parser/2.4.2: resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==} dependencies: - '@types/node': 16.11.41 + '@types/node': 18.0.0 dev: false /@types/simple-diff/1.6.1: @@ -8144,8 +8143,8 @@ packages: '@types/estree': 0.0.51 dev: false - /@types/testing-library__jest-dom/5.14.4: - resolution: {integrity: sha512-EUCs9PTBOEyfRtLKkKd31YrRCx/9Wxjy2Uqb6IH/KAOr7/vP0i8iClOyxQqjm/UxMGU5r5s2vOBM7vSPQVmabg==} + /@types/testing-library__jest-dom/5.14.5: + resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: '@types/jest': 27.5.2 dev: true @@ -8229,8 +8228,8 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/5.28.0_py5roj3ykd3sga4gtxlmfvv4pa: - resolution: {integrity: sha512-DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA==} + /@typescript-eslint/eslint-plugin/5.29.0_qqmbkyiaixvppdwswpytuf2hgm: + resolution: {integrity: sha512-kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -8240,10 +8239,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e - '@typescript-eslint/scope-manager': 5.28.0 - '@typescript-eslint/type-utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e - '@typescript-eslint/utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/scope-manager': 5.29.0 + '@typescript-eslint/type-utils': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/utils': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 eslint: 8.18.0 functional-red-black-tree: 1.0.1 @@ -8256,8 +8255,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA==} + /@typescript-eslint/parser/5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -8266,9 +8265,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.28.0 - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.29.0 + '@typescript-eslint/types': 5.29.0 + '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.7.4 debug: 4.3.4 eslint: 8.18.0 typescript: 4.7.4 @@ -8284,8 +8283,16 @@ packages: '@typescript-eslint/visitor-keys': 5.28.0 dev: true - /@typescript-eslint/type-utils/5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ==} + /@typescript-eslint/scope-manager/5.29.0: + resolution: {integrity: sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.29.0 + '@typescript-eslint/visitor-keys': 5.29.0 + dev: true + + /@typescript-eslint/type-utils/5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -8294,7 +8301,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/utils': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 eslint: 8.18.0 tsutils: 3.21.0_typescript@4.7.4 @@ -8308,6 +8315,11 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true + /@typescript-eslint/types/5.29.0: + resolution: {integrity: sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + /@typescript-eslint/typescript-estree/5.28.0_typescript@4.7.4: resolution: {integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8329,6 +8341,27 @@ packages: - supports-color dev: true + /@typescript-eslint/typescript-estree/5.29.0_typescript@4.7.4: + resolution: {integrity: sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.29.0 + '@typescript-eslint/visitor-keys': 5.29.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/utils/5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e: resolution: {integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8347,6 +8380,24 @@ packages: - typescript dev: true + /@typescript-eslint/utils/5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.11 + '@typescript-eslint/scope-manager': 5.29.0 + '@typescript-eslint/types': 5.29.0 + '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.7.4 + eslint: 8.18.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@8.18.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + /@typescript-eslint/visitor-keys/5.28.0: resolution: {integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8355,6 +8406,14 @@ packages: eslint-visitor-keys: 3.3.0 dev: true + /@typescript-eslint/visitor-keys/5.29.0: + resolution: {integrity: sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.29.0 + eslint-visitor-keys: 3.3.0 + dev: true + /@webassemblyjs/ast/1.11.1: resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} dependencies: @@ -10461,8 +10520,8 @@ packages: engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: true - /codemirror/5.65.5: - resolution: {integrity: sha512-HNyhvGLnYz5c+kIsB9QKVitiZUevha3ovbIYaQiGzKo7ECSL/elWD9RXt3JgNr0NdnyqE9/Rc/7uLfkJQL638w==} + /codemirror/5.65.6: + resolution: {integrity: sha512-zNihMSMoDxK9Gqv9oEyDT8oM51rcRrQ+IEo2zyS48gJByBq5Fj8XuNEguMra+MuIOuh6lkpnLUJeL70DoTt6yw==} dev: false /collapse-white-space/1.0.6: @@ -11571,8 +11630,8 @@ packages: /electron-to-chromium/1.4.161: resolution: {integrity: sha512-sTjBRhqh6wFodzZtc5Iu8/R95OkwaPNn7tj/TaDU5nu/5EFiQDtADGAXdR4tJcTEHlYfJpHqigzJqHvPgehP8A==} - /electron/19.0.4: - resolution: {integrity: sha512-roRYr1VNAWIhjD9n8qZdmhROtrzsFpuZEXrjWAw+GqPbZlrUInmvFCviRDC2Lt+VBsTNRpTfPpfzXSlLL4reEw==} + /electron/19.0.6: + resolution: {integrity: sha512-S9Yud32nKhB0iWC0lGl2JXz4FQnCiLCnP5Vehm1/CqyeICcQGmgQaZl2HYpCJ2pesKIsYL9nsgmku/10cxm/gg==} engines: {node: '>= 8.6'} hasBin: true requiresBuild: true @@ -11843,7 +11902,7 @@ packages: semver: 6.3.0 dev: true - /eslint-config-airbnb/19.0.4_33hhosu7yovqp6ljggjzij5oci: + /eslint-config-airbnb/19.0.4_egamsbadvc6ovgxe5yxurj2cai: resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11856,8 +11915,8 @@ packages: eslint: 8.18.0 eslint-config-airbnb-base: 15.0.0_srrmf5la5dmnsfe2mpg6sboreu eslint-plugin-import: 2.26.0_eslint@8.18.0 - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.18.0 - eslint-plugin-react: 7.30.0_eslint@8.18.0 + eslint-plugin-jsx-a11y: 6.6.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 object.assign: 4.1.2 object.entries: 1.1.5 @@ -11936,7 +11995,7 @@ packages: - supports-color dev: true - /eslint-plugin-jest/26.5.3_zxzftnn2st6hdax52fud6lzt74: + /eslint-plugin-jest/26.5.3_hkaktba3mic4t6mktu5mmyzyhi: resolution: {integrity: sha512-sICclUqJQnR1bFRZGLN2jnSVsYOsmPYYnroGCIMVSvTS3y8XR3yjzy1EcTQmk6typ5pRgyIWzbjqxK6cZHEZuQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11949,7 +12008,7 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.28.0_py5roj3ykd3sga4gtxlmfvv4pa + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm '@typescript-eslint/utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 jest: 27.5.1 @@ -11958,8 +12017,8 @@ packages: - typescript dev: true - /eslint-plugin-jsx-a11y/6.5.1_eslint@8.18.0: - resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} + /eslint-plugin-jsx-a11y/6.6.0_eslint@8.18.0: + resolution: {integrity: sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 @@ -11974,9 +12033,10 @@ packages: emoji-regex: 9.2.2 eslint: 8.18.0 has: 1.0.3 - jsx-ast-utils: 3.3.0 + jsx-ast-utils: 3.3.1 language-tags: 1.0.5 minimatch: 3.1.2 + semver: 6.3.0 dev: true /eslint-plugin-react-hooks/4.6.0_eslint@8.18.0: @@ -11988,8 +12048,8 @@ packages: eslint: 8.18.0 dev: true - /eslint-plugin-react/7.30.0_eslint@8.18.0: - resolution: {integrity: sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==} + /eslint-plugin-react/7.30.1_eslint@8.18.0: + resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 @@ -12789,8 +12849,8 @@ packages: map-cache: 0.2.2 dev: true - /framer-motion/6.3.11_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-xQLk+ZSklNs5QNCUmdWPpKMOuWiB8ZETsvcIOWw8xvri9K3TamuifgCI/B6XpaEDR0/V2ZQF2Wm+gUAZrXo+rw==} + /framer-motion/6.3.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-tqyEaYfr+7p3rnMcMzdVxWoHLsAfpz7bk6xZljndSEfafQ0BfwlZ/CeFZkEETRFr16w/LxfDKBVhinU66ucDYw==} peerDependencies: react: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' react-dom: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' @@ -13827,7 +13887,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-width: 3.0.0 external-editor: 3.1.0 @@ -15197,6 +15257,7 @@ packages: chalk: 2.4.2 diff-match-patch: 1.0.5 dev: false + bundledDependencies: [] /jsonfile/4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} @@ -15366,6 +15427,14 @@ packages: object.assign: 4.1.2 dev: true + /jsx-ast-utils/3.3.1: + resolution: {integrity: sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==} + engines: {node: '>=4.0'} + dependencies: + array-includes: 3.1.5 + object.assign: 4.1.2 + dev: true + /jszip/3.10.0: resolution: {integrity: sha512-LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q==} dependencies: @@ -15749,7 +15818,7 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: - chalk: 4.1.1 + chalk: 4.1.2 is-unicode-supported: 0.1.0 dev: false @@ -16332,8 +16401,8 @@ packages: /ms/2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /msw/0.42.1_typescript@4.7.4: - resolution: {integrity: sha512-LZZuz7VddL45gCBgfBWHyXj6a4W7OTJY0mZPoipJ3P/xwbuJwrtwB3IJrWlqBM8aink/eTKlRxwzmtIAwCj5yQ==} + /msw/0.42.3_typescript@4.7.4: + resolution: {integrity: sha512-zrKBIGCDsNUCZLd3DLSeUtRruZ0riwJgORg9/bSDw3D0PTI8XUGAK3nC0LJA9g0rChGuKaWK/SwObA8wpFrz4g==} engines: {node: '>=14'} hasBin: true requiresBuild: true @@ -16871,7 +16940,7 @@ packages: engines: {node: '>=10'} dependencies: bl: 4.1.0 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 is-interactive: 1.0.0 @@ -18799,19 +18868,19 @@ packages: sprintf-js: 1.1.2 optional: true - /rollup-plugin-terser/7.0.2_rollup@2.75.6: + /rollup-plugin-terser/7.0.2_rollup@2.75.7: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 dependencies: '@babel/code-frame': 7.16.7 jest-worker: 26.6.2 - rollup: 2.75.6 + rollup: 2.75.7 serialize-javascript: 4.0.0 terser: 5.14.1 dev: true - /rollup-plugin-typescript2/0.32.1_63sirsnfvviu2qxghjzgkmnlpm: + /rollup-plugin-typescript2/0.32.1_okefoyb4o5sittgqayreuhurei: resolution: {integrity: sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw==} peerDependencies: rollup: '>=1.26.3' @@ -18821,13 +18890,13 @@ packages: find-cache-dir: 3.3.2 fs-extra: 10.1.0 resolve: 1.22.1 - rollup: 2.75.6 + rollup: 2.75.7 tslib: 2.4.0 typescript: 4.7.4 dev: true - /rollup/2.75.6: - resolution: {integrity: sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==} + /rollup/2.75.7: + resolution: {integrity: sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -18967,8 +19036,8 @@ packages: resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} dev: true - /selenium-webdriver/4.2.0: - resolution: {integrity: sha512-gPPXYSz4jJBM2kANRQ9cZW6KFBzR/ptxqGLtyC75eXtdgOsWWRRRyZz5F2pqdnwNmAjrCSFMMXfisJaZeWVejg==} + /selenium-webdriver/4.3.0: + resolution: {integrity: sha512-9XFr8w95BO7jageR61AtiB83fJNem3fdtOQcUpqIIDHWSxihomyG/yBlL1H4y/shi/dO/Ai3PJMAOG+OW3+JHw==} engines: {node: '>= 10.15.0'} dependencies: jszip: 3.10.0