Merge branch 'main' into issue-1783-remote-conn-csp-error

This commit is contained in:
Sangmok Han 2025-10-18 01:42:41 -07:00 committed by GitHub
commit ffacd3006b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
48 changed files with 3469 additions and 3359 deletions

View File

@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
with:
node-version: 'lts/*'
cache: 'pnpm'

View File

@ -21,7 +21,7 @@ jobs:
- uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 'lts/*'
cache: 'pnpm'

View File

@ -1,4 +1,5 @@
import { defineConfig } from 'eslint/config';
import eslint from '@eslint/js';
import eslintConfigPrettier from 'eslint-config-prettier';
export default [eslint.configs.recommended, eslintConfigPrettier];
export default defineConfig([eslint.configs.recommended, eslintConfigPrettier]);

View File

@ -1,11 +1,11 @@
import { defineConfig } from 'eslint/config';
import eslint from '@eslint/js';
import react from 'eslint-plugin-react';
import { fixupPluginRules } from '@eslint/compat';
import eslintPluginReactHooks from 'eslint-plugin-react-hooks';
import reactHooks from 'eslint-plugin-react-hooks';
import jest from 'eslint-plugin-jest';
import eslintConfigPrettier from 'eslint-config-prettier';
export default [
export default defineConfig([
{
files: ['test/**/*.js', 'test/**/*.jsx'],
...eslint.configs.recommended,
@ -24,9 +24,7 @@ export default [
},
{
files: ['test/**/*.js', 'test/**/*.jsx'],
plugins: {
'react-hooks': fixupPluginRules(eslintPluginReactHooks),
},
...reactHooks.configs.flat.recommended,
},
{
files: ['test/**/*.js', 'test/**/*.jsx'],
@ -40,4 +38,4 @@ export default [
files: ['test/**/*.js', 'test/**/*.jsx'],
...eslintConfigPrettier,
},
];
]);

View File

@ -1,55 +1,57 @@
import { defineConfig } from 'eslint/config';
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import eslintConfigPrettier from 'eslint-config-prettier';
export default (tsconfigRootDir, files = ['**/*.ts'], project = true) => [
{
files,
...eslint.configs.recommended,
},
...tseslint.configs.recommendedTypeChecked.map((config) => ({
files,
...config,
})),
...tseslint.configs.stylisticTypeChecked.map((config) => ({
files,
...config,
})),
{
files,
languageOptions: {
parserOptions: {
project,
tsconfigRootDir,
export default (tsconfigRootDir, files = ['**/*.ts'], project = true) =>
defineConfig([
{
files,
...eslint.configs.recommended,
},
...tseslint.configs.recommendedTypeChecked.map((config) => ({
files,
...config,
})),
...tseslint.configs.stylisticTypeChecked.map((config) => ({
files,
...config,
})),
{
files,
languageOptions: {
parserOptions: {
project,
tsconfigRootDir,
},
},
},
},
{
files,
...eslintConfigPrettier,
},
{
files,
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/class-literal-property-style': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/prefer-string-starts-ends-with': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/prefer-function-type': 'off',
{
files,
...eslintConfigPrettier,
},
},
];
{
files,
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/class-literal-property-style': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/prefer-string-starts-ends-with': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/prefer-function-type': 'off',
},
},
]);

View File

@ -1,64 +1,66 @@
import { defineConfig } from 'eslint/config';
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import jest from 'eslint-plugin-jest';
import eslintConfigPrettier from 'eslint-config-prettier';
export default (tsconfigRootDir) => [
{
files: ['test/**/*.ts'],
...eslint.configs.recommended,
},
...tseslint.configs.recommendedTypeChecked.map((config) => ({
files: ['test/**/*.ts'],
...config,
})),
...tseslint.configs.stylisticTypeChecked.map((config) => ({
files: ['test/**/*.ts'],
...config,
})),
{
files: ['test/**/*.ts'],
languageOptions: {
parserOptions: {
project: ['./tsconfig.test.json'],
tsconfigRootDir,
export default (tsconfigRootDir) =>
defineConfig([
{
files: ['test/**/*.ts'],
...eslint.configs.recommended,
},
...tseslint.configs.recommendedTypeChecked.map((config) => ({
files: ['test/**/*.ts'],
...config,
})),
...tseslint.configs.stylisticTypeChecked.map((config) => ({
files: ['test/**/*.ts'],
...config,
})),
{
files: ['test/**/*.ts'],
languageOptions: {
parserOptions: {
project: ['./tsconfig.test.json'],
tsconfigRootDir,
},
},
},
},
{
files: ['test/**/*.ts'],
...jest.configs['flat/recommended'],
},
{
files: ['test/**/*.ts'],
...jest.configs['jest/style'],
},
{
files: ['test/**/*.ts'],
...eslintConfigPrettier,
},
{
files: ['test/**/*.ts'],
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/class-literal-property-style': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/prefer-string-starts-ends-with': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/prefer-function-type': 'off',
{
files: ['test/**/*.ts'],
...jest.configs['flat/recommended'],
},
},
];
{
files: ['test/**/*.ts'],
...jest.configs['jest/style'],
},
{
files: ['test/**/*.ts'],
...eslintConfigPrettier,
},
{
files: ['test/**/*.ts'],
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/class-literal-property-style': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/prefer-string-starts-ends-with': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/prefer-function-type': 'off',
},
},
]);

View File

@ -1,89 +1,88 @@
import { defineConfig } from 'eslint/config';
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import react from 'eslint-plugin-react';
import { fixupPluginRules } from '@eslint/compat';
import eslintPluginReactHooks from 'eslint-plugin-react-hooks';
import reactHooks from 'eslint-plugin-react-hooks';
import eslintConfigPrettier from 'eslint-config-prettier';
export default (
tsconfigRootDir,
files = ['**/*.ts', '**/*.tsx'],
project = true,
) => [
{
files,
...eslint.configs.recommended,
},
...tseslint.configs.recommendedTypeChecked.map((config) => ({
files,
...config,
})),
...tseslint.configs.stylisticTypeChecked.map((config) => ({
files,
...config,
})),
{
files,
languageOptions: {
parserOptions: {
project,
tsconfigRootDir,
},
) =>
defineConfig([
{
files,
...eslint.configs.recommended,
},
},
{
files,
...react.configs.flat.recommended,
},
{
files,
settings: {
react: {
version: 'detect',
},
},
},
{
files,
plugins: {
'react-hooks': fixupPluginRules(eslintPluginReactHooks),
},
},
{
files,
...eslintConfigPrettier,
},
{
files,
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-misused-promises': [
'error',
{
checksVoidReturn: {
attributes: false,
},
...tseslint.configs.recommendedTypeChecked.map((config) => ({
files,
...config,
})),
...tseslint.configs.stylisticTypeChecked.map((config) => ({
files,
...config,
})),
{
files,
languageOptions: {
parserOptions: {
project,
tsconfigRootDir,
},
],
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/class-literal-property-style': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/prefer-string-starts-ends-with': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/prefer-function-type': 'off',
'react/prop-types': 'off',
},
},
},
];
{
files,
...react.configs.flat.recommended,
},
{
files,
settings: {
react: {
version: 'detect',
},
},
},
{
files,
...reactHooks.configs.flat.recommended,
},
{
files,
...eslintConfigPrettier,
},
{
files,
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-misused-promises': [
'error',
{
checksVoidReturn: {
attributes: false,
},
},
],
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/class-literal-property-style': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/prefer-string-starts-ends-with': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/prefer-function-type': 'off',
'react/prop-types': 'off',
},
},
]);

View File

@ -1,85 +1,84 @@
import { defineConfig } from 'eslint/config';
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import react from 'eslint-plugin-react';
import { fixupPluginRules } from '@eslint/compat';
import eslintPluginReactHooks from 'eslint-plugin-react-hooks';
import reactHooks from 'eslint-plugin-react-hooks';
import jest from 'eslint-plugin-jest';
import eslintConfigPrettier from 'eslint-config-prettier';
export default (tsconfigRootDir) => [
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...eslint.configs.recommended,
},
...tseslint.configs.recommendedTypeChecked.map((config) => ({
files: ['test/**/*.ts', 'test/**/*.tsx'],
...config,
})),
...tseslint.configs.stylisticTypeChecked.map((config) => ({
files: ['test/**/*.ts', 'test/**/*.tsx'],
...config,
})),
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
languageOptions: {
parserOptions: {
project: ['./tsconfig.test.json'],
tsconfigRootDir,
export default (tsconfigRootDir) =>
defineConfig([
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...eslint.configs.recommended,
},
...tseslint.configs.recommendedTypeChecked.map((config) => ({
files: ['test/**/*.ts', 'test/**/*.tsx'],
...config,
})),
...tseslint.configs.stylisticTypeChecked.map((config) => ({
files: ['test/**/*.ts', 'test/**/*.tsx'],
...config,
})),
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
languageOptions: {
parserOptions: {
project: ['./tsconfig.test.json'],
tsconfigRootDir,
},
},
},
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...react.configs.flat.recommended,
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
settings: {
react: {
version: 'detect',
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...react.configs.flat.recommended,
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
settings: {
react: {
version: 'detect',
},
},
},
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
plugins: {
'react-hooks': fixupPluginRules(eslintPluginReactHooks),
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...reactHooks.configs.flat.recommended,
},
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...jest.configs['flat/recommended'],
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...jest.configs['jest/style'],
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...eslintConfigPrettier,
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/class-literal-property-style': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/prefer-string-starts-ends-with': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/prefer-function-type': 'off',
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...jest.configs['flat/recommended'],
},
},
];
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...jest.configs['jest/style'],
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
...eslintConfigPrettier,
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/class-literal-property-style': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/prefer-string-starts-ends-with': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/prefer-function-type': 'off',
},
},
]);

View File

@ -38,10 +38,10 @@
"jsan": "^3.1.14",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-is": "^19.1.1",
"react-is": "^19.2.0",
"react-json-tree": "workspace:^",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
@ -54,27 +54,27 @@
"@babel/preset-typescript": "^7.27.1",
"@babel/register": "^7.28.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.1.11",
"@types/chrome": "^0.1.24",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"chromedriver": "^126.0.5",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"electron": "^31.7.7",
"esbuild": "^0.25.9",
"esbuild": "^0.25.10",
"globals": "^16.4.0",
"immutable": "^5.1.3",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"immutable": "^5.1.4",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"pug": "^3.0.3",
"rimraf": "^6.0.1",
"selenium-webdriver": "^4.35.0",
"selenium-webdriver": "^4.36.0",
"sinon-chrome": "^3.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"ts-jest": "^29.4.5",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
}
}

View File

@ -3,17 +3,16 @@
"devDependencies": {
"@babel/core": "^7.28.4",
"@changesets/cli": "^2.29.7",
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.35.0",
"eslint": "^9.35.0",
"@eslint/js": "^9.37.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^30.1.3",
"eslint-plugin-react-hooks": "^7.0.0",
"jest": "^30.2.0",
"prettier": "3.6.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.43.0"
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.1"
},
"scripts": {
"format": "prettier --write .",
@ -24,5 +23,5 @@
"clean:all": "pnpm --recursive run clean",
"release": "pnpm build:all && pnpm publish -r"
},
"packageManager": "pnpm@10.16.1"
"packageManager": "pnpm@10.18.3"
}

View File

@ -32,14 +32,14 @@
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.18.3",
"@types/node": "^22.18.10",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}

View File

@ -42,11 +42,11 @@
"d3tooltip": "workspace:^",
"deepmerge": "^4.3.1",
"map2tree": "workspace:^",
"ramda": "^0.31.3"
"ramda": "^0.32.0"
},
"devDependencies": {
"@types/ramda": "^0.31.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
}
}

View File

@ -36,7 +36,7 @@
"@types/d3": "^7.4.3",
"d3": "^7.9.0",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@types/d3": "^7.4.3",

View File

@ -42,10 +42,10 @@
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"immutable": "^5.1.3",
"jest": "^30.1.3",
"immutable": "^5.1.4",
"jest": "^30.2.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
}
}

View File

@ -45,10 +45,10 @@
"@types/color": "^4.2.0",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
}
}

View File

@ -11,28 +11,28 @@
},
"dependencies": {
"@emotion/styled": "^11.14.1",
"react": "^19.1.1",
"react": "^19.2.0",
"react-bootstrap": "^2.10.10",
"react-dock": "workspace:^",
"react-dom": "^19.1.1",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-is": "^19.1.1"
"react-is": "^19.2.0"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}

View File

@ -39,10 +39,10 @@
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@types/react": "^19.1.13",
"react": "^19.1.1",
"@types/react": "^19.2.2",
"react": "^19.2.0",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",

View File

@ -19,10 +19,10 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"immutable": "^5.1.3",
"react": "^19.1.1",
"immutable": "^5.1.4",
"react": "^19.2.0",
"react-base16-styling": "workspace:^",
"react-dom": "^19.1.1",
"react-dom": "^19.2.0",
"react-json-tree": "workspace:^"
},
"devDependencies": {
@ -30,16 +30,16 @@
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}

View File

@ -45,12 +45,12 @@
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "^19.1.13",
"jest": "^30.1.3",
"react": "^19.1.1",
"@types/react": "^19.2.2",
"jest": "^30.2.0",
"react": "^19.2.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
},
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",

View File

@ -50,7 +50,7 @@
"jsan": "^3.1.14",
"jsondiffpatch": "^0.7.3",
"react-icons": "^5.5.0",
"react-is": "^19.1.1"
"react-is": "^19.2.0"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
@ -65,27 +65,27 @@
"@reduxjs/toolkit": "^2.9.0",
"@rjsf/core": "^5.24.13",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/jsan": "^3.1.5",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"cross-env": "^10.0.0",
"esbuild": "^0.25.9",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"cross-env": "^10.1.0",
"esbuild": "^0.25.10",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",

View File

@ -62,27 +62,27 @@
"@rjsf/core": "^5.24.13",
"@types/jsan": "^3.1.5",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/socketcluster-client": "^19.1.0",
"@types/webpack-env": "^1.18.8",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"esbuild": "^0.25.9",
"esbuild": "^0.25.10",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"globals": "^16.4.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.4",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},

View File

@ -53,11 +53,11 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@redux-devtools/core": "workspace:^",
"@types/react": "^19.1.13",
"react": "^19.1.1",
"@types/react": "^19.2.2",
"react": "^19.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@redux-devtools/core": "workspace:^",

View File

@ -47,7 +47,7 @@
"@emotion/styled": "^11.14.1",
"@redux-devtools/app": "workspace:^",
"@reduxjs/toolkit": "^2.9.0",
"@types/react": "^19.1.13",
"@types/react": "^19.2.2",
"body-parser": "^2.2.0",
"chalk": "^5.6.2",
"cors": "^2.8.5",
@ -61,11 +61,11 @@
"minimist": "^1.2.8",
"morgan": "^1.10.1",
"open": "^10.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-is": "^19.1.1",
"semver": "^7.7.2",
"socketcluster-server": "^19.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-is": "^19.2.0",
"semver": "^7.7.3",
"socketcluster-server": "^19.2.1",
"sqlite3": "^5.1.7",
"uuid": "^13.0.0"
},
@ -78,19 +78,19 @@
"@types/lodash-es": "^4.17.12",
"@types/minimist": "^1.2.5",
"@types/morgan": "^1.9.10",
"@types/node": "^22.18.3",
"@types/node": "^22.18.10",
"@types/semver": "^7.7.1",
"@types/socketcluster-client": "^19.1.0",
"@types/socketcluster-server": "^19.0.1",
"@types/supertest": "^6.0.3",
"@types/uuid": "^11.0.0",
"globals": "^16.4.0",
"jest": "^30.1.3",
"jest": "^30.2.0",
"ncp": "^2.0.0",
"rimraf": "^6.0.1",
"socketcluster-client": "^19.2.7",
"supertest": "^7.1.4",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
}
}

View File

@ -55,11 +55,11 @@
"@babel/preset-typescript": "^7.27.1",
"@redux-devtools/core": "workspace:^",
"@types/parse-key": "^0.2.2",
"@types/react": "^19.1.13",
"react": "^19.1.1",
"@types/react": "^19.2.2",
"react": "^19.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@redux-devtools/core": "workspace:^",

View File

@ -40,7 +40,7 @@
"@babel/preset-typescript": "^7.27.1",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"redux": "^3.1.0 || ^4.0.0 || ^5.0.0"

View File

@ -17,13 +17,13 @@
"@redux-devtools/inspector-monitor": "workspace:^",
"@redux-devtools/inspector-monitor-test-tab": "workspace:^",
"@redux-devtools/ui": "workspace:^",
"immutable": "^5.1.3",
"immutable": "^5.1.4",
"lodash.shuffle": "^4.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-is": "^19.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-is": "^19.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.1",
"react-router-dom": "^7.9.4",
"redux": "^5.0.1",
"redux-logger": "^3.0.6"
},
@ -33,20 +33,20 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/lodash.shuffle": "^4.2.9",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/redux-logger": "^3.0.13",
"@types/webpack-env": "^1.18.8",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}

View File

@ -36,5 +36,6 @@ export const getDevTools = (location: { search: string }) =>
export function ConnectedDevTools() {
const location = useLocation();
const DevTools = getDevTools(location);
// eslint-disable-next-line react-hooks/static-components
return <DevTools />;
}

View File

@ -70,15 +70,15 @@
"@types/jest": "^30.0.0",
"@types/jsan": "^3.1.5",
"@types/object-path": "^0.11.4",
"@types/react": "^19.1.13",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"@types/react": "^19.2.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",

View File

@ -32,7 +32,7 @@
"dependencies": {
"@babel/code-frame": "^8.0.0-beta.2",
"@babel/runtime": "^7.28.4",
"@types/chrome": "^0.1.11",
"@types/chrome": "^0.1.24",
"anser": "^2.3.2",
"html-entities": "^2.6.0",
"path-browserify": "^1.0.1",
@ -54,18 +54,18 @@
"@testing-library/react": "^16.3.0",
"@types/babel__code-frame": "^7.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^22.18.3",
"@types/node": "^22.18.10",
"@types/path-browserify": "^1.0.3",
"@types/react": "^19.1.13",
"@types/react": "^19.2.2",
"@types/source-map": "0.5.2",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",

View File

@ -14,14 +14,14 @@
"@redux-devtools/core": "workspace:^",
"@redux-devtools/dock-monitor": "workspace:^",
"@redux-devtools/inspector-monitor": "workspace:^",
"immutable": "^5.1.3",
"immutable": "^5.1.4",
"lodash.shuffle": "^4.2.0",
"react": "^19.1.1",
"react": "^19.2.0",
"react-base16-styling": "workspace:^",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.1.1",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.1",
"react-router-dom": "^7.9.4",
"redux": "^5.0.1",
"redux-logger": "^3.0.6"
},
@ -31,18 +31,18 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/lodash.shuffle": "^4.2.9",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/redux-logger": "^3.0.13",
"@types/webpack-env": "^1.18.8",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}

View File

@ -47,5 +47,6 @@ export const getDevTools = (location: { search: string }) =>
export function ConnectedDevTools() {
const location = useLocation();
const DevTools = getDevTools(location);
// eslint-disable-next-line react-hooks/static-components
return <DevTools />;
}

View File

@ -43,7 +43,7 @@
"@types/lodash": "^4.17.20",
"dateformat": "^5.0.3",
"hex-rgba": "^1.0.2",
"immutable": "^5.1.3",
"immutable": "^5.1.4",
"javascript-stringify": "^2.1.0",
"jsondiffpatch": "^0.7.3",
"lodash.debounce": "^4.0.8",
@ -64,11 +64,11 @@
"@types/dateformat": "^5.0.3",
"@types/hex-rgba": "^1.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^19.1.13",
"react": "^19.1.1",
"@types/react": "^19.2.2",
"react": "^19.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",

View File

@ -48,13 +48,13 @@
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.18.3",
"jest": "^30.1.3",
"@types/node": "^22.18.10",
"jest": "^30.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"rxjs": "^7.8.2",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
},
"peerDependencies": {
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0"

View File

@ -56,11 +56,11 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@redux-devtools/core": "workspace:^",
"@types/react": "^19.1.13",
"react": "^19.1.1",
"@types/react": "^19.2.2",
"react": "^19.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@redux-devtools/core": "workspace:^",

View File

@ -56,16 +56,16 @@
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@types/jsan": "^3.1.5",
"@types/node": "^22.18.3",
"@types/node": "^22.18.10",
"@types/rn-host-detect": "^1.2.2",
"@types/socketcluster-client": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"redux": "^3.5.2 || ^4.0.0 || ^5.0.0"

View File

@ -11,7 +11,7 @@
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"@chakra-ui/react": "^3.27.0",
"@chakra-ui/react": "^3.27.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mswjs/data": "^0.16.2",
@ -19,13 +19,13 @@
"@redux-devtools/dock-monitor": "workspace:^",
"@redux-devtools/rtk-query-monitor": "workspace:^",
"@reduxjs/toolkit": "^2.9.0",
"msw": "^2.11.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"msw": "^2.11.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-is": "^19.1.1",
"react-is": "^19.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.1"
"react-router-dom": "^7.9.4"
},
"devDependencies": {
"@babel/core": "^7.28.4",
@ -33,19 +33,19 @@
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},

View File

@ -7,7 +7,7 @@
* - Please do NOT modify this file.
*/
const PACKAGE_VERSION = '2.11.2'
const PACKAGE_VERSION = '2.11.5'
const INTEGRITY_CHECKSUM = '4db4a41e972cec1b64cc569c66952d82'
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
const activeClientIds = new Set()
@ -205,6 +205,7 @@ async function resolveMainClient(event) {
* @param {FetchEvent} event
* @param {Client | undefined} client
* @param {string} requestId
* @param {number} requestInterceptedAt
* @returns {Promise<Response>}
*/
async function getResponse(event, client, requestId, requestInterceptedAt) {

View File

@ -48,7 +48,7 @@
"@redux-devtools/ui": "workspace:^",
"@types/lodash": "^4.17.20",
"hex-rgba": "^1.0.2",
"immutable": "^5.1.3",
"immutable": "^5.1.4",
"lodash.debounce": "^4.0.8",
"react-base16-styling": "workspace:^",
"react-json-tree": "workspace:^"
@ -67,21 +67,21 @@
"@redux-devtools/core": "workspace:^",
"@reduxjs/toolkit": "^2.9.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/hex-rgba": "^1.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^19.1.13",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"@types/react": "^19.2.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",

View File

@ -49,13 +49,13 @@
"@babel/preset-typescript": "^7.27.1",
"@types/jest": "^30.0.0",
"@types/jsan": "^3.1.5",
"immutable": "^5.1.3",
"jest": "^30.1.3",
"immutable": "^5.1.4",
"jest": "^30.2.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
},
"peerDependencies": {
"immutable": "^5.1.3"
"immutable": "^5.1.4"
}
}

View File

@ -22,9 +22,9 @@
"@redux-devtools/log-monitor": "workspace:^",
"@redux-devtools/slider-monitor": "workspace:^",
"classnames": "^2.5.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-is": "^19.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-is": "^19.2.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"todomvc-app-css": "^2.4.3"
@ -34,19 +34,19 @@
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/webpack-env": "^1.18.8",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}

View File

@ -44,12 +44,12 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@redux-devtools/core": "workspace:^",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"react": "^19.1.1",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"react": "^19.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",

View File

@ -65,28 +65,28 @@
"@babel/preset-typescript": "^7.27.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@storybook/addon-onboarding": "^9.1.6",
"@storybook/react-vite": "^9.1.6",
"@storybook/addon-onboarding": "^9.1.10",
"@storybook/react-vite": "^9.1.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/color": "^4.2.0",
"@types/node": "^22.18.3",
"@types/node": "^22.18.10",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.13",
"@types/react": "^19.2.2",
"babel-loader": "^10.0.0",
"csstype": "^3.1.3",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"ncp": "^2.0.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-is": "^19.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-is": "^19.2.0",
"rimraf": "^6.0.1",
"storybook": "^9.1.6",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2",
"vite": "^7.1.5"
"storybook": "^9.1.10",
"ts-jest": "^29.4.5",
"typescript": "~5.9.3",
"vite": "^7.1.10"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",

View File

@ -37,9 +37,9 @@
"@redux-devtools/serialize": "workspace:^",
"@types/get-params": "^0.1.2",
"get-params": "^0.1.2",
"immutable": "^5.1.3",
"immutable": "^5.1.4",
"jsan": "^3.1.14",
"nanoid": "^5.1.5",
"nanoid": "^5.1.6",
"redux": "^5.0.1"
},
"devDependencies": {
@ -50,13 +50,13 @@
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@types/jsan": "^3.1.5",
"@types/node": "^22.18.3",
"@types/node": "^22.18.10",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
"typescript": "~5.9.3"
},
"peerDependencies": {
"@redux-devtools/core": "workspace:^",
"immutable": "^5.1.3",
"immutable": "^5.1.4",
"redux": "^4.0.0 || ^5.0.0"
}
}

View File

@ -22,8 +22,8 @@
"@redux-devtools/core": "workspace:^",
"@redux-devtools/dock-monitor": "workspace:^",
"@redux-devtools/log-monitor": "workspace:^",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0"
@ -33,17 +33,17 @@
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/webpack-env": "^1.18.8",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}

View File

@ -35,8 +35,8 @@
"@redux-devtools/dock-monitor": "workspace:^",
"@redux-devtools/log-monitor": "workspace:^",
"classnames": "^2.5.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"todomvc-app-css": "^2.4.3"
@ -46,19 +46,19 @@
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/webpack-env": "^1.18.8",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.4",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"webpack": "^5.101.3",
"typescript": "~5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}

View File

@ -53,16 +53,16 @@
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"jest": "^30.1.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"jest": "^30.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
"ts-jest": "^29.4.5",
"typescript": "~5.9.3"
},
"peerDependencies": {
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",

File diff suppressed because it is too large Load Diff

View File

@ -7,6 +7,7 @@
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"types": []
"types": [],
"isolatedModules": true
}
}