Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
"jsan": "^3.1.14",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-is": "^18.3.1",
"react-is": "^19.1.0",
"react-json-tree": "workspace:^",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
Expand All @@ -58,8 +58,8 @@
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.0.323",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^29.7.0",
"prettier": "3.5.3",
"typescript": "~5.8.3",
Expand Down
10 changes: 5 additions & 5 deletions packages/react-dock/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"react": "^18.3.1",
"react": "^19.1.0",
"react-bootstrap": "^2.10.10",
"react-dock": "workspace:^",
"react-dom": "^18.3.1",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-is": "^18.3.1",
"react-is": "^19.1.0",
"styled-components": "^5.3.11"
},
"devDependencies": {
Expand All @@ -24,8 +24,8 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.15.21",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@types/styled-components": "^5.1.34",
"babel-loader": "^10.0.0",
"cross-env": "^7.0.3",
Expand Down
2 changes: 0 additions & 2 deletions packages/react-dock/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import eslintJs from '../../eslint.js.config.base.mjs';
import eslintTsReact from '../../eslint.ts.react.config.base.mjs';
import eslintTsReactJest from '../../eslint.ts.react.jest.config.base.mjs';

export default [
...eslintJs,
...eslintTsReact(import.meta.dirname),
...eslintTsReactJest(import.meta.dirname),
{
ignores: ['demo', 'lib'],
},
Expand Down
13 changes: 0 additions & 13 deletions packages/react-dock/jest.config.cjs

This file was deleted.

13 changes: 3 additions & 10 deletions packages/react-dock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,19 @@
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"prepack": "pnpm run clean && pnpm run build",
"prepublish": "pnpm run lint && pnpm run test"
"prepublish": "pnpm run lint"
},
"dependencies": {
"@types/lodash-es": "^4.17.12",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/react": "^18.3.22",
"@types/react-test-renderer": "^18.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-test-renderer": "^18.3.1",
"@types/react": "^19.1.6",
"react": "^19.1.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
"typescript": "~5.8.3"
},
"peerDependencies": {
Expand Down
13 changes: 3 additions & 10 deletions packages/react-dock/src/Dock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@ interface Props {
dockHiddenStyle?: React.CSSProperties | null;
duration: number;
children?:
| React.FunctionComponent<{
| ((params: {
position: 'left' | 'right' | 'top' | 'bottom';
isResizing: boolean | undefined;
size: number;
isVisible: boolean | undefined;
}>
}) => ReactNode)
| ReactNode;
}

Expand Down Expand Up @@ -363,14 +363,7 @@ export default class Dock extends Component<Props, State> {
/>
<div style={styles.dockContent}>
{typeof children === 'function'
? (
children as React.FunctionComponent<{
position: 'left' | 'right' | 'top' | 'bottom';
isResizing: boolean | undefined;
size: number;
isVisible: boolean | undefined;
}>
)({
? children({
position,
isResizing,
size,
Expand Down
23 changes: 0 additions & 23 deletions packages/react-dock/test/index.test.tsx

This file was deleted.

8 changes: 4 additions & 4 deletions packages/react-json-tree/examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
},
"dependencies": {
"immutable": "^5.1.2",
"react": "^18.3.1",
"react": "^19.1.0",
"react-base16-styling": "workspace:^",
"react-dom": "^18.3.1",
"react-dom": "^19.1.0",
"react-json-tree": "workspace:^"
},
"devDependencies": {
Expand All @@ -31,8 +31,8 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.15.21",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"babel-loader": "^10.0.0",
"cross-env": "^7.0.3",
"fork-ts-checker-webpack-plugin": "^9.1.0",
Expand Down
6 changes: 2 additions & 4 deletions packages/react-json-tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,9 @@
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/react": "^18.3.22",
"@types/react-test-renderer": "^18.3.1",
"@types/react": "^19.1.6",
"jest": "^29.7.0",
"react": "^18.3.1",
"react-test-renderer": "^18.3.1",
"react": "^19.1.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
"typescript": "~5.8.3"
Expand Down
22 changes: 0 additions & 22 deletions packages/react-json-tree/test/index.spec.tsx

This file was deleted.

10 changes: 5 additions & 5 deletions packages/redux-devtools-app-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"jsan": "^3.1.14",
"jsondiffpatch": "^0.7.3",
"react-icons": "^5.5.0",
"react-is": "^18.3.1"
"react-is": "^19.1.0"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
Expand All @@ -70,15 +70,15 @@
"@types/jsan": "^3.1.5",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.15.21",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@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",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/redux-devtools-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
"@types/jsan": "^3.1.5",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.15.21",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@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",
Expand All @@ -75,8 +75,8 @@
"globals": "^16.1.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"styled-components": "^5.3.11",
Expand Down
4 changes: 2 additions & 2 deletions packages/redux-devtools-chart-monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@redux-devtools/core": "workspace:^",
"@types/react": "^18.3.22",
"react": "^18.3.1",
"@types/react": "^19.1.6",
"react": "^19.1.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.8.3"
Expand Down
8 changes: 4 additions & 4 deletions packages/redux-devtools-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@emotion/react": "^11.14.0",
"@redux-devtools/app": "workspace:^",
"@reduxjs/toolkit": "^2.8.2",
"@types/react": "^18.3.22",
"@types/react": "^19.1.6",
"body-parser": "^1.20.3",
"chalk": "^5.4.1",
"cors": "^2.8.5",
Expand All @@ -59,9 +59,9 @@
"minimist": "^1.2.8",
"morgan": "^1.10.0",
"open": "^10.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-is": "^19.1.0",
"semver": "^7.7.2",
"socketcluster-server": "^19.1.1",
"sqlite3": "^5.1.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/redux-devtools-dock-monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"@babel/preset-typescript": "^7.27.1",
"@redux-devtools/core": "workspace:^",
"@types/parse-key": "^0.2.2",
"@types/react": "^18.3.22",
"react": "^18.3.1",
"@types/react": "^19.1.6",
"react": "^19.1.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.8.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"@redux-devtools/ui": "workspace:^",
"immutable": "^5.1.2",
"lodash.shuffle": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-is": "^19.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^6.30.1",
"redux": "^5.0.1",
Expand All @@ -34,8 +34,8 @@
"@babel/preset-typescript": "^7.27.1",
"@types/lodash.shuffle": "^4.2.9",
"@types/node": "^22.15.21",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ interface Props
}

function DemoApp(props: Props) {
const timeout = useRef<number | undefined>();
const timeout = useRef<number | undefined>(undefined);
const location = useLocation();

const options = getOptions(location);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@
"@types/jest": "^29.5.14",
"@types/jsan": "^3.1.5",
"@types/object-path": "^0.11.4",
"@types/react": "^18.3.22",
"@types/react": "^19.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,12 @@
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"@types/path-browserify": "^1.0.3",
"@types/react": "^18.3.22",
"@types/react": "^19.1.6",
"@types/source-map": "0.5.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
Expand Down
Loading