mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-09 15:52:26 +03:00
Remainder
This commit is contained in:
parent
9ba88afd9c
commit
282a9bf9f7
|
@ -25,6 +25,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/app": "workspace:^",
|
||||
"@redux-devtools/core": "workspace:^",
|
||||
"@redux-devtools/instrument": "workspace:^",
|
||||
|
@ -44,8 +45,7 @@
|
|||
"react-json-tree": "workspace:^",
|
||||
"react-redux": "^9.2.0",
|
||||
"redux": "^5.0.1",
|
||||
"redux-persist": "^6.0.0",
|
||||
"styled-components": "^5.3.11"
|
||||
"redux-persist": "^6.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.27.1",
|
||||
|
@ -60,7 +60,6 @@
|
|||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/react": "^19.1.6",
|
||||
"@types/react-dom": "^19.1.5",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"chromedriver": "^126.0.5",
|
||||
"cross-env": "^7.0.3",
|
||||
"electron": "^31.7.7",
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
"@babel/preset-react": "^7.27.1",
|
||||
"@babel/preset-typescript": "^7.27.1",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@reduxjs/toolkit": "^2.8.2",
|
||||
"@rjsf/core": "^5.24.10",
|
||||
"@testing-library/dom": "^10.4.0",
|
||||
|
@ -72,7 +73,6 @@
|
|||
"@types/node": "^22.15.21",
|
||||
"@types/react": "^19.1.6",
|
||||
"@types/react-dom": "^19.1.5",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"cross-env": "^7.0.3",
|
||||
"esbuild": "^0.25.4",
|
||||
"jest": "^29.7.0",
|
||||
|
@ -83,21 +83,19 @@
|
|||
"redux": "^5.0.1",
|
||||
"redux-persist": "^6.0.0",
|
||||
"rimraf": "^6.0.1",
|
||||
"styled-components": "^5.3.11",
|
||||
"ts-jest": "^29.3.4",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "~5.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@reduxjs/toolkit": "^1.0.0 || ^2.0.0",
|
||||
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"react-redux": "^8.0.0 || ^9.0.0",
|
||||
"redux": "^4.0.0 || ^5.0.0",
|
||||
"redux-persist": "^6.0.0",
|
||||
"styled-components": "^5.3.11"
|
||||
"redux-persist": "^6.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import React, { Component } from 'react';
|
||||
import { withTheme } from 'styled-components';
|
||||
import { withTheme } from '@emotion/react';
|
||||
import { LiftedAction, LiftedState } from '@redux-devtools/core';
|
||||
import { Action } from 'redux';
|
||||
import getMonitor from '../utils/getMonitor';
|
||||
|
|
|
@ -1,8 +1,14 @@
|
|||
// Based on https://github.com/YoruNoHikage/redux-devtools-dispatch
|
||||
|
||||
import React, { Component } from 'react';
|
||||
import styled from 'styled-components';
|
||||
import { Button, Select, Editor, Toolbar } from '@redux-devtools/ui';
|
||||
import styled from '@emotion/styled';
|
||||
import {
|
||||
Button,
|
||||
Select,
|
||||
Editor,
|
||||
Toolbar,
|
||||
Base16Theme,
|
||||
} from '@redux-devtools/ui';
|
||||
import { connect, ResolveThunks } from 'react-redux';
|
||||
import { dispatchRemotely } from '../../actions';
|
||||
import { Options } from '../../reducers/instances';
|
||||
|
@ -12,7 +18,7 @@ export const DispatcherContainer = styled.div`
|
|||
flex-direction: column;
|
||||
flex-shrink: 0;
|
||||
padding-top: 2px;
|
||||
background: ${(props) => props.theme.base01};
|
||||
background: ${(props: { theme?: Base16Theme }) => props.theme!.base01};
|
||||
`;
|
||||
|
||||
export const CodeContainer = styled.div`
|
||||
|
@ -24,7 +30,7 @@ export const CodeContainer = styled.div`
|
|||
export const ActionContainer = styled.div`
|
||||
display: table;
|
||||
width: 100%;
|
||||
color: ${(props) => props.theme.base06};
|
||||
color: ${(props: { theme?: Base16Theme }) => props.theme!.base06};
|
||||
|
||||
> div {
|
||||
display: table-row;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import React, { Component, RefCallback } from 'react';
|
||||
import { connect, ResolveThunks } from 'react-redux';
|
||||
import { withTheme } from 'styled-components';
|
||||
import { withTheme } from '@emotion/react';
|
||||
import { tree } from 'd3-state-visualizer';
|
||||
import type { HierarchyPointNode, Node, Options } from 'd3-state-visualizer';
|
||||
import { getPath } from '../ChartMonitorWrapper';
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import React, { Component } from 'react';
|
||||
import type { Delta } from 'jsondiffpatch';
|
||||
import * as htmlFormatter from 'jsondiffpatch/formatters/html';
|
||||
import styled, { ThemedStyledProps } from 'styled-components';
|
||||
import { effects, Theme } from '@redux-devtools/ui';
|
||||
import styled from '@emotion/styled';
|
||||
import { Base16Theme, effects } from '@redux-devtools/ui';
|
||||
|
||||
export const StyledContainer = styled.div`
|
||||
.jsondiffpatch-delta {
|
||||
|
@ -19,8 +19,7 @@ export const StyledContainer = styled.div`
|
|||
padding: 2px 3px;
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
|
||||
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base07};
|
||||
color: ${(props: { theme?: Base16Theme }) => props.theme!.base07};
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
|
@ -44,25 +43,22 @@ export const StyledContainer = styled.div`
|
|||
.jsondiffpatch-modified .jsondiffpatch-right-value:before {
|
||||
vertical-align: top;
|
||||
padding: 2px;
|
||||
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
|
||||
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base0E};
|
||||
color: ${(props) => props.theme.base0E};
|
||||
content: ' => ';
|
||||
}
|
||||
|
||||
.jsondiffpatch-added .jsondiffpatch-value pre,
|
||||
.jsondiffpatch-modified .jsondiffpatch-right-value pre,
|
||||
.jsondiffpatch-textdiff-added {
|
||||
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
|
||||
background: ${(props: ThemedStyledProps<{}, Theme>) =>
|
||||
effects.color(props.theme.base0B, 'alpha', 0.2)};
|
||||
background: ${(props: { theme?: Base16Theme }) =>
|
||||
effects.color(props.theme!.base0B, 'alpha', 0.2)};
|
||||
}
|
||||
|
||||
.jsondiffpatch-deleted pre,
|
||||
.jsondiffpatch-modified .jsondiffpatch-left-value pre,
|
||||
.jsondiffpatch-textdiff-deleted {
|
||||
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
|
||||
background: ${(props: ThemedStyledProps<{}, Theme>) =>
|
||||
effects.color(props.theme.base08, 'alpha', 0.2)};
|
||||
background: ${(props: { theme?: Base16Theme }) =>
|
||||
effects.color(props.theme!.base08, 'alpha', 0.2)};
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
|
@ -129,14 +125,12 @@ export const StyledContainer = styled.div`
|
|||
padding: 2px 0;
|
||||
padding-right: 5px;
|
||||
vertical-align: top;
|
||||
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
|
||||
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base0D};
|
||||
color: ${(props) => props.theme.base0D};
|
||||
}
|
||||
|
||||
.jsondiffpatch-property-name:after {
|
||||
content: ': ';
|
||||
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
|
||||
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base07};
|
||||
color: ${(props) => props.theme.base07};
|
||||
}
|
||||
|
||||
.jsondiffpatch-child-node-type-array > .jsondiffpatch-property-name:after {
|
||||
|
@ -172,8 +166,7 @@ export const StyledContainer = styled.div`
|
|||
}
|
||||
|
||||
.jsondiffpatch-value pre:after {
|
||||
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
|
||||
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base07};
|
||||
color: ${(props) => props.theme.base07};
|
||||
content: ',';
|
||||
}
|
||||
|
||||
|
@ -196,8 +189,7 @@ export const StyledContainer = styled.div`
|
|||
|
||||
.jsondiffpatch-moved .jsondiffpatch-moved-destination {
|
||||
display: inline-block;
|
||||
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
|
||||
background: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base0A};
|
||||
background: ${(props) => props.theme.base0A};
|
||||
}
|
||||
|
||||
.jsondiffpatch-moved .jsondiffpatch-moved-destination:before {
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
import React, { Component } from 'react';
|
||||
import styled, { withTheme } from 'styled-components';
|
||||
import styled from '@emotion/styled';
|
||||
import { withTheme } from '@emotion/react';
|
||||
import { SliderMonitor } from '@redux-devtools/slider-monitor';
|
||||
import { LiftedAction } from '@redux-devtools/core';
|
||||
import { Action } from 'redux';
|
||||
import { ThemeFromProvider } from '@redux-devtools/ui';
|
||||
import { Base16Theme, ThemeFromProvider } from '@redux-devtools/ui';
|
||||
import { State } from '../../reducers/instances';
|
||||
|
||||
const SliderWrapper = styled.div`
|
||||
border-color: ${(props) => props.theme.base02};
|
||||
border-color: ${(props: { theme?: Base16Theme }) => props.theme!.base02};
|
||||
border-style: solid;
|
||||
border-width: 1px 0;
|
||||
`;
|
||||
|
|
|
@ -57,6 +57,7 @@
|
|||
"@babel/preset-react": "^7.27.1",
|
||||
"@babel/preset-typescript": "^7.27.1",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@reduxjs/toolkit": "^2.8.2",
|
||||
"@rjsf/core": "^5.24.10",
|
||||
"@types/jsan": "^3.1.5",
|
||||
|
@ -65,7 +66,6 @@
|
|||
"@types/react": "^19.1.6",
|
||||
"@types/react-dom": "^19.1.5",
|
||||
"@types/socketcluster-client": "^19.1.0",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"@types/webpack-env": "^1.18.8",
|
||||
"babel-loader": "^10.0.0",
|
||||
"cross-env": "^7.0.3",
|
||||
|
@ -79,7 +79,6 @@
|
|||
"react-dom": "^19.1.0",
|
||||
"rimraf": "^6.0.1",
|
||||
"style-loader": "^4.0.0",
|
||||
"styled-components": "^5.3.11",
|
||||
"ts-jest": "^29.3.4",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "~5.8.3",
|
||||
|
@ -89,11 +88,10 @@
|
|||
},
|
||||
"peerDependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@reduxjs/toolkit": "^1.0.0 || ^2.0.0",
|
||||
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"styled-components": "^5.3.11"
|
||||
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
"dependencies": {
|
||||
"@apollo/server": "^4.12.1",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/app": "workspace:^",
|
||||
"@reduxjs/toolkit": "^2.8.2",
|
||||
"@types/react": "^19.1.6",
|
||||
|
@ -65,7 +66,6 @@
|
|||
"semver": "^7.7.2",
|
||||
"socketcluster-server": "^19.1.1",
|
||||
"sqlite3": "^5.1.7",
|
||||
"styled-components": "^5.3.11",
|
||||
"uuid": "^11.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -81,7 +81,6 @@
|
|||
"@types/semver": "^7.7.0",
|
||||
"@types/socketcluster-client": "^19.1.0",
|
||||
"@types/socketcluster-server": "^19.0.1",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"@types/supertest": "^6.0.3",
|
||||
"@types/uuid": "^10.0.0",
|
||||
"globals": "^16.1.0",
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/core": "workspace:^",
|
||||
"@redux-devtools/dock-monitor": "workspace:^",
|
||||
"@redux-devtools/inspector-monitor": "workspace:^",
|
||||
|
@ -24,8 +25,7 @@
|
|||
"react-redux": "^9.2.0",
|
||||
"react-router-dom": "^7.6.1",
|
||||
"redux": "^5.0.1",
|
||||
"redux-logger": "^3.0.6",
|
||||
"styled-components": "^5.3.11"
|
||||
"redux-logger": "^3.0.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.27.1",
|
||||
|
@ -37,7 +37,6 @@
|
|||
"@types/react": "^19.1.6",
|
||||
"@types/react-dom": "^19.1.5",
|
||||
"@types/redux-logger": "^3.0.13",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"@types/webpack-env": "^1.18.8",
|
||||
"babel-loader": "^10.0.0",
|
||||
"cross-env": "^7.0.3",
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
"@babel/preset-react": "^7.27.1",
|
||||
"@babel/preset-typescript": "^7.27.1",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/core": "workspace:^",
|
||||
"@redux-devtools/inspector-monitor": "workspace:^",
|
||||
"@testing-library/dom": "^10.4.0",
|
||||
|
@ -81,12 +82,11 @@
|
|||
},
|
||||
"peerDependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/inspector-monitor": "workspace:^",
|
||||
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0",
|
||||
"styled-components": "^5.3.11"
|
||||
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
"@babel/runtime": "^7.27.1",
|
||||
"@chakra-ui/react": "^3.19.1",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@mswjs/data": "^0.16.2",
|
||||
"@redux-devtools/core": "workspace:^",
|
||||
"@redux-devtools/dock-monitor": "workspace:^",
|
||||
|
@ -24,8 +25,7 @@
|
|||
"react-icons": "^5.5.0",
|
||||
"react-is": "^19.1.0",
|
||||
"react-redux": "^9.2.0",
|
||||
"react-router-dom": "^7.6.1",
|
||||
"styled-components": "^5.3.11"
|
||||
"react-router-dom": "^7.6.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.27.1",
|
||||
|
@ -36,7 +36,6 @@
|
|||
"@types/node": "^22.15.21",
|
||||
"@types/react": "^19.1.6",
|
||||
"@types/react-dom": "^19.1.5",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"babel-loader": "^10.0.0",
|
||||
"copy-webpack-plugin": "^13.0.0",
|
||||
"cross-env": "^7.0.3",
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
"@babel/preset-typescript": "^7.27.1",
|
||||
"@emotion/babel-preset-css-prop": "^11.12.0",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/core": "workspace:^",
|
||||
"@reduxjs/toolkit": "^2.8.2",
|
||||
"@testing-library/dom": "^10.4.0",
|
||||
|
@ -84,12 +85,11 @@
|
|||
},
|
||||
"peerDependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/core": "workspace:^",
|
||||
"@reduxjs/toolkit": "^1.0.0 || ^2.0.0",
|
||||
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0",
|
||||
"styled-components": "^5.3.11"
|
||||
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/core": "workspace:^",
|
||||
"@redux-devtools/dock-monitor": "workspace:^",
|
||||
"@redux-devtools/log-monitor": "workspace:^",
|
||||
|
@ -25,7 +27,6 @@
|
|||
"react-is": "^19.1.0",
|
||||
"react-redux": "^9.2.0",
|
||||
"redux": "^5.0.1",
|
||||
"styled-components": "^5.3.11",
|
||||
"todomvc-app-css": "^2.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -36,7 +37,6 @@
|
|||
"@types/node": "^22.15.21",
|
||||
"@types/react": "^19.1.6",
|
||||
"@types/react-dom": "^19.1.5",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"@types/webpack-env": "^1.18.8",
|
||||
"babel-loader": "^10.0.0",
|
||||
"cross-env": "^7.0.3",
|
||||
|
|
|
@ -52,11 +52,11 @@
|
|||
"typescript": "~5.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@redux-devtools/core": "workspace:^",
|
||||
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"@types/styled-components": "^5.1.34",
|
||||
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0",
|
||||
"styled-components": "^5.3.11"
|
||||
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0"
|
||||
}
|
||||
}
|
||||
|
|
299
pnpm-lock.yaml
299
pnpm-lock.yaml
|
@ -64,6 +64,9 @@ importers:
|
|||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@redux-devtools/app':
|
||||
specifier: workspace:^
|
||||
version: link:../packages/redux-devtools-app
|
||||
|
@ -124,9 +127,6 @@ importers:
|
|||
redux-persist:
|
||||
specifier: ^6.0.0
|
||||
version: 6.0.0(react@19.1.0)(redux@5.0.1)
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
devDependencies:
|
||||
'@babel/core':
|
||||
specifier: ^7.27.1
|
||||
|
@ -164,9 +164,6 @@ importers:
|
|||
'@types/react-dom':
|
||||
specifier: ^19.1.5
|
||||
version: 19.1.5(@types/react@19.1.6)
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
chromedriver:
|
||||
specifier: ^126.0.5
|
||||
version: 126.0.5
|
||||
|
@ -687,6 +684,9 @@ importers:
|
|||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@reduxjs/toolkit':
|
||||
specifier: ^2.8.2
|
||||
version: 2.8.2(react-redux@9.2.0(@types/react@19.1.6)(react@19.1.0)(redux@5.0.1))(react@19.1.0)
|
||||
|
@ -711,9 +711,6 @@ importers:
|
|||
'@types/socketcluster-client':
|
||||
specifier: ^19.1.0
|
||||
version: 19.1.0
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
'@types/webpack-env':
|
||||
specifier: ^1.18.8
|
||||
version: 1.18.8
|
||||
|
@ -753,9 +750,6 @@ importers:
|
|||
style-loader:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.0(webpack@5.99.9)
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
ts-jest:
|
||||
specifier: ^29.3.4
|
||||
version: 29.3.4(@babel/core@7.27.1)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.27.1))(esbuild@0.25.4)(jest@29.7.0(@types/node@22.15.21)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.21)(typescript@5.8.3)))(typescript@5.8.3)
|
||||
|
@ -850,6 +844,9 @@ importers:
|
|||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@reduxjs/toolkit':
|
||||
specifier: ^2.8.2
|
||||
version: 2.8.2(react-redux@9.2.0(@types/react@19.1.6)(react@19.1.0)(redux@5.0.1))(react@19.1.0)
|
||||
|
@ -883,9 +880,6 @@ importers:
|
|||
'@types/react-dom':
|
||||
specifier: ^19.1.5
|
||||
version: 19.1.5(@types/react@19.1.6)
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
cross-env:
|
||||
specifier: ^7.0.3
|
||||
version: 7.0.3
|
||||
|
@ -916,9 +910,6 @@ importers:
|
|||
rimraf:
|
||||
specifier: ^6.0.1
|
||||
version: 6.0.1
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
ts-jest:
|
||||
specifier: ^29.3.4
|
||||
version: 29.3.4(@babel/core@7.27.1)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.27.1))(esbuild@0.25.4)(jest@29.7.0(@types/node@22.15.21)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.21)(typescript@5.8.3)))(typescript@5.8.3)
|
||||
|
@ -992,6 +983,9 @@ importers:
|
|||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@redux-devtools/app':
|
||||
specifier: workspace:^
|
||||
version: link:../redux-devtools-app
|
||||
|
@ -1058,9 +1052,6 @@ importers:
|
|||
sqlite3:
|
||||
specifier: ^5.1.7
|
||||
version: 5.1.7
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
uuid:
|
||||
specifier: ^11.1.0
|
||||
version: 11.1.0
|
||||
|
@ -1101,9 +1092,6 @@ importers:
|
|||
'@types/socketcluster-server':
|
||||
specifier: ^19.0.1
|
||||
version: 19.0.1
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
'@types/supertest':
|
||||
specifier: ^6.0.3
|
||||
version: 6.0.3
|
||||
|
@ -1335,9 +1323,6 @@ importers:
|
|||
'@redux-devtools/ui':
|
||||
specifier: workspace:^
|
||||
version: link:../redux-devtools-ui
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
es6template:
|
||||
specifier: ^1.0.5
|
||||
version: 1.0.5
|
||||
|
@ -1356,9 +1341,6 @@ importers:
|
|||
simple-diff:
|
||||
specifier: ^1.7.2
|
||||
version: 1.7.2
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
devDependencies:
|
||||
'@babel/cli':
|
||||
specifier: ^7.27.2
|
||||
|
@ -1384,6 +1366,9 @@ importers:
|
|||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@redux-devtools/core':
|
||||
specifier: workspace:^
|
||||
version: link:../redux-devtools
|
||||
|
@ -1441,6 +1426,9 @@ importers:
|
|||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@redux-devtools/core':
|
||||
specifier: workspace:^
|
||||
version: link:../../redux-devtools
|
||||
|
@ -1483,9 +1471,6 @@ importers:
|
|||
redux-logger:
|
||||
specifier: ^3.0.6
|
||||
version: 3.0.6
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
devDependencies:
|
||||
'@babel/core':
|
||||
specifier: ^7.27.1
|
||||
|
@ -1514,9 +1499,6 @@ importers:
|
|||
'@types/redux-logger':
|
||||
specifier: ^3.0.13
|
||||
version: 3.0.13
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
'@types/webpack-env':
|
||||
specifier: ^1.18.8
|
||||
version: 1.18.8
|
||||
|
@ -1950,9 +1932,6 @@ importers:
|
|||
'@types/lodash':
|
||||
specifier: ^4.17.17
|
||||
version: 4.17.17
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
hex-rgba:
|
||||
specifier: ^1.0.2
|
||||
version: 1.0.2
|
||||
|
@ -1968,9 +1947,6 @@ importers:
|
|||
react-json-tree:
|
||||
specifier: workspace:^
|
||||
version: link:../react-json-tree
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
devDependencies:
|
||||
'@babel/cli':
|
||||
specifier: ^7.27.2
|
||||
|
@ -1999,6 +1975,9 @@ importers:
|
|||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@redux-devtools/core':
|
||||
specifier: workspace:^
|
||||
version: link:../redux-devtools
|
||||
|
@ -2065,6 +2044,9 @@ importers:
|
|||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@mswjs/data':
|
||||
specifier: ^0.16.2
|
||||
version: 0.16.2(@types/node@22.15.21)(typescript@5.8.3)
|
||||
|
@ -2101,9 +2083,6 @@ importers:
|
|||
react-router-dom:
|
||||
specifier: ^7.6.1
|
||||
version: 7.6.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
devDependencies:
|
||||
'@babel/core':
|
||||
specifier: ^7.27.1
|
||||
|
@ -2129,9 +2108,6 @@ importers:
|
|||
'@types/react-dom':
|
||||
specifier: ^19.1.5
|
||||
version: 19.1.5(@types/react@19.1.6)
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
babel-loader:
|
||||
specifier: ^10.0.0
|
||||
version: 10.0.0(@babel/core@7.27.1)(webpack@5.99.9)
|
||||
|
@ -2223,18 +2199,18 @@ importers:
|
|||
'@babel/runtime':
|
||||
specifier: ^7.27.1
|
||||
version: 7.27.1
|
||||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@redux-devtools/ui':
|
||||
specifier: workspace:^
|
||||
version: link:../redux-devtools-ui
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
react-base16-styling:
|
||||
specifier: workspace:^
|
||||
version: link:../react-base16-styling
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
devDependencies:
|
||||
'@babel/cli':
|
||||
specifier: ^7.27.2
|
||||
|
@ -2278,6 +2254,12 @@ importers:
|
|||
|
||||
packages/redux-devtools-slider-monitor/examples/todomvc:
|
||||
dependencies:
|
||||
'@emotion/react':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@types/react@19.1.6)(react@19.1.0)
|
||||
'@emotion/styled':
|
||||
specifier: ^11.14.0
|
||||
version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.6)(react@19.1.0))(@types/react@19.1.6)(react@19.1.0)
|
||||
'@redux-devtools/core':
|
||||
specifier: workspace:^
|
||||
version: link:../../../redux-devtools
|
||||
|
@ -2308,9 +2290,6 @@ importers:
|
|||
redux:
|
||||
specifier: ^5.0.1
|
||||
version: 5.0.1
|
||||
styled-components:
|
||||
specifier: ^5.3.11
|
||||
version: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
todomvc-app-css:
|
||||
specifier: ^2.4.3
|
||||
version: 2.4.3
|
||||
|
@ -2336,9 +2315,6 @@ importers:
|
|||
'@types/react-dom':
|
||||
specifier: ^19.1.5
|
||||
version: 19.1.5(@types/react@19.1.6)
|
||||
'@types/styled-components':
|
||||
specifier: ^5.1.34
|
||||
version: 5.1.34
|
||||
'@types/webpack-env':
|
||||
specifier: ^1.18.8
|
||||
version: 1.18.8
|
||||
|
@ -3654,15 +3630,9 @@ packages:
|
|||
'@types/react':
|
||||
optional: true
|
||||
|
||||
'@emotion/stylis@0.8.5':
|
||||
resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
|
||||
|
||||
'@emotion/unitless@0.10.0':
|
||||
resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
|
||||
|
||||
'@emotion/unitless@0.7.5':
|
||||
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
|
||||
|
||||
'@emotion/use-insertion-effect-with-fallbacks@1.2.0':
|
||||
resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==}
|
||||
peerDependencies:
|
||||
|
@ -4782,9 +4752,6 @@ packages:
|
|||
'@types/hex-rgba@1.0.3':
|
||||
resolution: {integrity: sha512-yUcRdf2uwKR97Kv/l/UeOg+rfB7HAI/vLdctkQntJTWJyx/ParAekUtKgSrzLgZzURCPEa/SY1Py9HKeAo4cPA==}
|
||||
|
||||
'@types/hoist-non-react-statics@3.3.6':
|
||||
resolution: {integrity: sha512-lPByRJUer/iN/xa4qpyL0qmL11DqNW81iU/IG1S3uvRUq4oKagz8VCxZjiWkumgt66YT3vOdDgZ0o32sGKtCEw==}
|
||||
|
||||
'@types/html-minifier-terser@6.1.0':
|
||||
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
|
||||
|
||||
|
@ -4966,9 +4933,6 @@ packages:
|
|||
'@types/stream-demux@10.0.0':
|
||||
resolution: {integrity: sha512-BQD0DEq7o07IROdAaKrj8GQS1QBKKRhXE18vCT3HgDF6HHk8z3wMKLQw+5rGm3snnyUHOepQd25p4U40hkJRhQ==}
|
||||
|
||||
'@types/styled-components@5.1.34':
|
||||
resolution: {integrity: sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==}
|
||||
|
||||
'@types/superagent@8.1.9':
|
||||
resolution: {integrity: sha512-pTVjI73witn+9ILmoJdajHGW2jkSaOzhiFYF1Rd3EQ94kymLqB9PjD9ISg7WaALC7+dCHT0FGe9T2LktLq/3GQ==}
|
||||
|
||||
|
@ -5621,11 +5585,6 @@ packages:
|
|||
peerDependencies:
|
||||
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
||||
|
||||
babel-plugin-styled-components@2.1.4:
|
||||
resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==}
|
||||
peerDependencies:
|
||||
styled-components: '>= 2'
|
||||
|
||||
babel-preset-current-node-syntax@1.1.0:
|
||||
resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
|
||||
peerDependencies:
|
||||
|
@ -5778,9 +5737,6 @@ packages:
|
|||
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
||||
engines: {node: '>=10'}
|
||||
|
||||
camelize@1.0.1:
|
||||
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
|
||||
|
||||
caniuse-lite@1.0.30001718:
|
||||
resolution: {integrity: sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==}
|
||||
|
||||
|
@ -6067,10 +6023,6 @@ packages:
|
|||
crypt@0.0.2:
|
||||
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
|
||||
|
||||
css-color-keywords@1.0.0:
|
||||
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
|
||||
engines: {node: '>=4'}
|
||||
|
||||
css-loader@7.1.2:
|
||||
resolution: {integrity: sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==}
|
||||
engines: {node: '>= 18.12.0'}
|
||||
|
@ -6086,9 +6038,6 @@ packages:
|
|||
css-select@4.3.0:
|
||||
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
|
||||
|
||||
css-to-react-native@3.2.0:
|
||||
resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
|
||||
|
||||
css-what@6.1.0:
|
||||
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
|
||||
engines: {node: '>= 6'}
|
||||
|
@ -9180,9 +9129,6 @@ packages:
|
|||
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
shallowequal@1.1.0:
|
||||
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
|
||||
|
||||
shebang-command@2.0.0:
|
||||
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
||||
engines: {node: '>=8'}
|
||||
|
@ -9423,14 +9369,6 @@ packages:
|
|||
peerDependencies:
|
||||
webpack: ^5.27.0
|
||||
|
||||
styled-components@5.3.11:
|
||||
resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==}
|
||||
engines: {node: '>=10'}
|
||||
peerDependencies:
|
||||
react: '>= 16.8.0'
|
||||
react-dom: '>= 16.8.0'
|
||||
react-is: '>= 16.8.0'
|
||||
|
||||
stylis@4.2.0:
|
||||
resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
|
||||
|
||||
|
@ -10340,10 +10278,10 @@ snapshots:
|
|||
'@babel/helpers': 7.27.1
|
||||
'@babel/parser': 7.27.2
|
||||
'@babel/template': 7.27.2
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
'@babel/types': 7.27.1
|
||||
convert-source-map: 2.0.0
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
gensync: 1.0.0-beta.2
|
||||
json5: 2.2.3
|
||||
semver: 6.3.1
|
||||
|
@ -10386,7 +10324,7 @@ snapshots:
|
|||
'@babel/helper-optimise-call-expression': 7.27.1
|
||||
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1)
|
||||
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
semver: 6.3.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -10403,7 +10341,7 @@ snapshots:
|
|||
'@babel/core': 7.27.1
|
||||
'@babel/helper-compilation-targets': 7.27.2
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
lodash.debounce: 4.0.8
|
||||
resolve: 1.22.10
|
||||
transitivePeerDependencies:
|
||||
|
@ -10411,14 +10349,14 @@ snapshots:
|
|||
|
||||
'@babel/helper-member-expression-to-functions@7.27.1':
|
||||
dependencies:
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
'@babel/types': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-module-imports@7.27.1(supports-color@5.5.0)':
|
||||
'@babel/helper-module-imports@7.27.1':
|
||||
dependencies:
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
'@babel/types': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -10426,9 +10364,9 @@ snapshots:
|
|||
'@babel/helper-module-transforms@7.27.1(@babel/core@7.27.1)':
|
||||
dependencies:
|
||||
'@babel/core': 7.27.1
|
||||
'@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/helper-module-imports': 7.27.1
|
||||
'@babel/helper-validator-identifier': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -10443,7 +10381,7 @@ snapshots:
|
|||
'@babel/core': 7.27.1
|
||||
'@babel/helper-annotate-as-pure': 7.27.1
|
||||
'@babel/helper-wrap-function': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -10452,13 +10390,13 @@ snapshots:
|
|||
'@babel/core': 7.27.1
|
||||
'@babel/helper-member-expression-to-functions': 7.27.1
|
||||
'@babel/helper-optimise-call-expression': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
|
||||
dependencies:
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
'@babel/types': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -10474,7 +10412,7 @@ snapshots:
|
|||
'@babel/helper-wrap-function@7.27.1':
|
||||
dependencies:
|
||||
'@babel/template': 7.27.2
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
'@babel/types': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -10492,7 +10430,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@babel/core': 7.27.1
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -10519,7 +10457,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@babel/core': 7.27.1
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -10633,14 +10571,14 @@ snapshots:
|
|||
'@babel/core': 7.27.1
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.1)
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.1)':
|
||||
dependencies:
|
||||
'@babel/core': 7.27.1
|
||||
'@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/helper-module-imports': 7.27.1
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.1)
|
||||
transitivePeerDependencies:
|
||||
|
@ -10679,7 +10617,7 @@ snapshots:
|
|||
'@babel/helper-compilation-targets': 7.27.2
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1)
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
globals: 11.12.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -10740,7 +10678,7 @@ snapshots:
|
|||
'@babel/core': 7.27.1
|
||||
'@babel/helper-compilation-targets': 7.27.2
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -10786,7 +10724,7 @@ snapshots:
|
|||
'@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1)
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
'@babel/helper-validator-identifier': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -10891,7 +10829,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@babel/core': 7.27.1
|
||||
'@babel/helper-annotate-as-pure': 7.27.1
|
||||
'@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/helper-module-imports': 7.27.1
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.1)
|
||||
'@babel/types': 7.27.1
|
||||
|
@ -10923,7 +10861,7 @@ snapshots:
|
|||
'@babel/plugin-transform-runtime@7.27.1(@babel/core@7.27.1)':
|
||||
dependencies:
|
||||
'@babel/core': 7.27.1
|
||||
'@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/helper-module-imports': 7.27.1
|
||||
'@babel/helper-plugin-utils': 7.27.1
|
||||
babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.1)
|
||||
babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.1)
|
||||
|
@ -11116,14 +11054,14 @@ snapshots:
|
|||
'@babel/parser': 7.27.2
|
||||
'@babel/types': 7.27.1
|
||||
|
||||
'@babel/traverse@7.27.1(supports-color@5.5.0)':
|
||||
'@babel/traverse@7.27.1':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.27.1
|
||||
'@babel/generator': 7.27.1
|
||||
'@babel/parser': 7.27.2
|
||||
'@babel/template': 7.27.2
|
||||
'@babel/types': 7.27.1
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
globals: 11.12.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -11348,7 +11286,7 @@ snapshots:
|
|||
|
||||
'@electron/get@2.0.3':
|
||||
dependencies:
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
env-paths: 2.2.1
|
||||
fs-extra: 8.1.0
|
||||
got: 11.8.6
|
||||
|
@ -11367,7 +11305,7 @@ snapshots:
|
|||
|
||||
'@emotion/babel-plugin@11.13.5':
|
||||
dependencies:
|
||||
'@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/helper-module-imports': 7.27.1
|
||||
'@babel/runtime': 7.27.1
|
||||
'@emotion/hash': 0.9.2
|
||||
'@emotion/memoize': 0.9.0
|
||||
|
@ -11448,12 +11386,8 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@emotion/stylis@0.8.5': {}
|
||||
|
||||
'@emotion/unitless@0.10.0': {}
|
||||
|
||||
'@emotion/unitless@0.7.5': {}
|
||||
|
||||
'@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.1.0)':
|
||||
dependencies:
|
||||
react: 19.1.0
|
||||
|
@ -11551,7 +11485,7 @@ snapshots:
|
|||
'@eslint/config-array@0.20.0':
|
||||
dependencies:
|
||||
'@eslint/object-schema': 2.1.6
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
minimatch: 3.1.2
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -11565,7 +11499,7 @@ snapshots:
|
|||
'@eslint/eslintrc@3.3.1':
|
||||
dependencies:
|
||||
ajv: 6.12.6
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
espree: 10.3.0
|
||||
globals: 14.0.0
|
||||
ignore: 5.3.2
|
||||
|
@ -11933,7 +11867,7 @@ snapshots:
|
|||
'@types/pluralize': 0.0.29
|
||||
'@types/uuid': 8.3.4
|
||||
date-fns: 2.30.0
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
graphql: 16.11.0
|
||||
lodash: 4.17.21
|
||||
md5: 2.3.0
|
||||
|
@ -12649,11 +12583,6 @@ snapshots:
|
|||
|
||||
'@types/hex-rgba@1.0.3': {}
|
||||
|
||||
'@types/hoist-non-react-statics@3.3.6':
|
||||
dependencies:
|
||||
'@types/react': 19.1.6
|
||||
hoist-non-react-statics: 3.3.2
|
||||
|
||||
'@types/html-minifier-terser@6.1.0': {}
|
||||
|
||||
'@types/http-cache-semantics@4.0.4': {}
|
||||
|
@ -12853,12 +12782,6 @@ snapshots:
|
|||
'@types/consumable-stream': 3.0.0
|
||||
'@types/writable-consumable-stream': 4.1.0
|
||||
|
||||
'@types/styled-components@5.1.34':
|
||||
dependencies:
|
||||
'@types/hoist-non-react-statics': 3.3.6
|
||||
'@types/react': 19.1.6
|
||||
csstype: 3.1.3
|
||||
|
||||
'@types/superagent@8.1.9':
|
||||
dependencies:
|
||||
'@types/cookiejar': 2.1.5
|
||||
|
@ -12929,7 +12852,7 @@ snapshots:
|
|||
'@typescript-eslint/types': 8.32.1
|
||||
'@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.3)
|
||||
'@typescript-eslint/visitor-keys': 8.32.1
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
eslint: 9.27.0
|
||||
typescript: 5.8.3
|
||||
transitivePeerDependencies:
|
||||
|
@ -12944,7 +12867,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.3)
|
||||
'@typescript-eslint/utils': 8.32.1(eslint@9.27.0)(typescript@5.8.3)
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
eslint: 9.27.0
|
||||
ts-api-utils: 2.1.0(typescript@5.8.3)
|
||||
typescript: 5.8.3
|
||||
|
@ -12957,7 +12880,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@typescript-eslint/types': 8.32.1
|
||||
'@typescript-eslint/visitor-keys': 8.32.1
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
fast-glob: 3.3.3
|
||||
is-glob: 4.0.3
|
||||
minimatch: 9.0.5
|
||||
|
@ -13645,7 +13568,7 @@ snapshots:
|
|||
|
||||
agent-base@6.0.2:
|
||||
dependencies:
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -13912,18 +13835,6 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
babel-plugin-styled-components@2.1.4(@babel/core@7.27.1)(styled-components@5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0))(supports-color@5.5.0):
|
||||
dependencies:
|
||||
'@babel/helper-annotate-as-pure': 7.27.1
|
||||
'@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.1)
|
||||
lodash: 4.17.21
|
||||
picomatch: 2.3.1
|
||||
styled-components: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0)
|
||||
transitivePeerDependencies:
|
||||
- '@babel/core'
|
||||
- supports-color
|
||||
|
||||
babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.1):
|
||||
dependencies:
|
||||
'@babel/core': 7.27.1
|
||||
|
@ -14128,8 +14039,6 @@ snapshots:
|
|||
|
||||
camelcase@6.3.0: {}
|
||||
|
||||
camelize@1.0.1: {}
|
||||
|
||||
caniuse-lite@1.0.30001718: {}
|
||||
|
||||
chai@5.2.0:
|
||||
|
@ -14417,8 +14326,6 @@ snapshots:
|
|||
|
||||
crypt@0.0.2: {}
|
||||
|
||||
css-color-keywords@1.0.0: {}
|
||||
|
||||
css-loader@7.1.2(webpack@5.99.9):
|
||||
dependencies:
|
||||
icss-utils: 5.1.0(postcss@8.5.3)
|
||||
|
@ -14440,12 +14347,6 @@ snapshots:
|
|||
domutils: 2.8.0
|
||||
nth-check: 2.1.1
|
||||
|
||||
css-to-react-native@3.2.0:
|
||||
dependencies:
|
||||
camelize: 1.0.1
|
||||
css-color-keywords: 1.0.0
|
||||
postcss-value-parser: 4.2.0
|
||||
|
||||
css-what@6.1.0: {}
|
||||
|
||||
css.escape@1.5.1: {}
|
||||
|
@ -14658,11 +14559,9 @@ snapshots:
|
|||
dependencies:
|
||||
ms: 2.1.2
|
||||
|
||||
debug@4.4.1(supports-color@5.5.0):
|
||||
debug@4.4.1:
|
||||
dependencies:
|
||||
ms: 2.1.3
|
||||
optionalDependencies:
|
||||
supports-color: 5.5.0
|
||||
|
||||
decimal.js@10.5.0: {}
|
||||
|
||||
|
@ -14997,7 +14896,7 @@ snapshots:
|
|||
|
||||
esbuild-register@3.6.0(esbuild@0.25.4):
|
||||
dependencies:
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
esbuild: 0.25.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -15121,7 +15020,7 @@ snapshots:
|
|||
ajv: 6.12.6
|
||||
chalk: 4.1.2
|
||||
cross-spawn: 7.0.6
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
escape-string-regexp: 4.0.0
|
||||
eslint-scope: 8.3.0
|
||||
eslint-visitor-keys: 4.2.0
|
||||
|
@ -15249,7 +15148,7 @@ snapshots:
|
|||
|
||||
extract-zip@2.0.1:
|
||||
dependencies:
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
get-stream: 5.2.0
|
||||
yauzl: 2.10.0
|
||||
optionalDependencies:
|
||||
|
@ -15501,7 +15400,7 @@ snapshots:
|
|||
dependencies:
|
||||
basic-ftp: 5.0.5
|
||||
data-uri-to-buffer: 6.0.2
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -15722,7 +15621,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@tootallnate/once': 1.1.2
|
||||
agent-base: 6.0.2
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
optional: true
|
||||
|
@ -15731,14 +15630,14 @@ snapshots:
|
|||
dependencies:
|
||||
'@tootallnate/once': 2.0.0
|
||||
agent-base: 6.0.2
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
http-proxy-agent@7.0.2:
|
||||
dependencies:
|
||||
agent-base: 7.1.3
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -15770,14 +15669,14 @@ snapshots:
|
|||
https-proxy-agent@5.0.1:
|
||||
dependencies:
|
||||
agent-base: 6.0.2
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
https-proxy-agent@7.0.6:
|
||||
dependencies:
|
||||
agent-base: 7.1.3
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -16084,7 +15983,7 @@ snapshots:
|
|||
|
||||
istanbul-lib-source-maps@4.0.1:
|
||||
dependencies:
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
istanbul-lib-coverage: 3.2.2
|
||||
source-map: 0.6.1
|
||||
transitivePeerDependencies:
|
||||
|
@ -17191,7 +17090,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@tootallnate/quickjs-emscripten': 0.23.0
|
||||
agent-base: 7.1.3
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
get-uri: 6.0.4
|
||||
http-proxy-agent: 7.0.2
|
||||
https-proxy-agent: 7.0.6
|
||||
|
@ -17418,7 +17317,7 @@ snapshots:
|
|||
proxy-agent@6.5.0:
|
||||
dependencies:
|
||||
agent-base: 7.1.3
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
http-proxy-agent: 7.0.2
|
||||
https-proxy-agent: 7.0.6
|
||||
lru-cache: 7.18.3
|
||||
|
@ -17581,7 +17480,7 @@ snapshots:
|
|||
react-docgen@8.0.0:
|
||||
dependencies:
|
||||
'@babel/core': 7.27.1
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1
|
||||
'@babel/types': 7.27.1
|
||||
'@types/babel__core': 7.20.5
|
||||
'@types/babel__traverse': 7.20.7
|
||||
|
@ -18045,8 +17944,6 @@ snapshots:
|
|||
dependencies:
|
||||
kind-of: 6.0.3
|
||||
|
||||
shallowequal@1.1.0: {}
|
||||
|
||||
shebang-command@2.0.0:
|
||||
dependencies:
|
||||
shebang-regex: 3.0.0
|
||||
|
@ -18170,7 +18067,7 @@ snapshots:
|
|||
socks-proxy-agent@6.2.1:
|
||||
dependencies:
|
||||
agent-base: 6.0.2
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
socks: 2.8.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -18179,7 +18076,7 @@ snapshots:
|
|||
socks-proxy-agent@8.0.5:
|
||||
dependencies:
|
||||
agent-base: 7.1.3
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
socks: 2.8.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -18212,7 +18109,7 @@ snapshots:
|
|||
|
||||
spdy-transport@3.0.0:
|
||||
dependencies:
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
detect-node: 2.1.0
|
||||
hpack.js: 2.1.6
|
||||
obuf: 1.1.2
|
||||
|
@ -18223,7 +18120,7 @@ snapshots:
|
|||
|
||||
spdy@4.0.2:
|
||||
dependencies:
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
handle-thing: 2.0.1
|
||||
http-deceiver: 1.2.7
|
||||
select-hose: 2.0.0
|
||||
|
@ -18387,29 +18284,11 @@ snapshots:
|
|||
dependencies:
|
||||
webpack: 5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.4)(webpack-cli@6.0.1)
|
||||
|
||||
styled-components@5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0):
|
||||
dependencies:
|
||||
'@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
|
||||
'@babel/traverse': 7.27.1(supports-color@5.5.0)
|
||||
'@emotion/is-prop-valid': 1.3.1
|
||||
'@emotion/stylis': 0.8.5
|
||||
'@emotion/unitless': 0.7.5
|
||||
babel-plugin-styled-components: 2.1.4(@babel/core@7.27.1)(styled-components@5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.0)(react@19.1.0))(supports-color@5.5.0)
|
||||
css-to-react-native: 3.2.0
|
||||
hoist-non-react-statics: 3.3.2
|
||||
react: 19.1.0
|
||||
react-dom: 19.1.0(react@19.1.0)
|
||||
react-is: 19.1.0
|
||||
shallowequal: 1.1.0
|
||||
supports-color: 5.5.0
|
||||
transitivePeerDependencies:
|
||||
- '@babel/core'
|
||||
|
||||
stylis@4.2.0: {}
|
||||
|
||||
sumchecker@3.0.1:
|
||||
dependencies:
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -18417,7 +18296,7 @@ snapshots:
|
|||
dependencies:
|
||||
component-emitter: 1.3.1
|
||||
cookiejar: 2.1.4
|
||||
debug: 4.4.1(supports-color@5.5.0)
|
||||
debug: 4.4.1
|
||||
fast-safe-stringify: 2.1.1
|
||||
form-data: 4.0.2
|
||||
formidable: 3.5.4
|
||||
|
|
Loading…
Reference in New Issue
Block a user