Upgrade dependencies to latest version (#29012)
Signed-off-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
parent
c56f062416
commit
b24d81c846
8 changed files with 812 additions and 455 deletions
|
@ -21,20 +21,20 @@
|
|||
"test": "wireit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@patternfly/patternfly": "^5.2.1",
|
||||
"@patternfly/react-core": "^5.2.3",
|
||||
"@patternfly/react-icons": "^5.2.1",
|
||||
"@patternfly/react-table": "^5.2.4",
|
||||
"@keycloak/keycloak-ui-shared": "workspace:*",
|
||||
"@patternfly/patternfly": "^5.3.0",
|
||||
"@patternfly/react-core": "^5.3.0",
|
||||
"@patternfly/react-icons": "^5.3.0",
|
||||
"@patternfly/react-table": "^5.3.0",
|
||||
"i18next": "^23.11.2",
|
||||
"i18next-http-backend": "^2.5.0",
|
||||
"i18next-http-backend": "^2.5.1",
|
||||
"keycloak-js": "workspace:*",
|
||||
"lodash-es": "^4.17.21",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-hook-form": "^7.51.3",
|
||||
"react-i18next": "^14.1.0",
|
||||
"react-router-dom": "^6.22.3",
|
||||
"@keycloak/keycloak-ui-shared": "workspace:*"
|
||||
"react-i18next": "^14.1.1",
|
||||
"react-router-dom": "^6.23.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@keycloak/keycloak-admin-client": "workspace:*",
|
||||
|
@ -44,9 +44,9 @@
|
|||
"@types/react-dom": "^18.2.25",
|
||||
"@vitejs/plugin-react-swc": "^3.6.0",
|
||||
"lightningcss": "^1.24.1",
|
||||
"vite": "^5.2.9",
|
||||
"vite": "^5.2.10",
|
||||
"vite-plugin-checker": "^0.6.4",
|
||||
"vite-plugin-dts": "^3.8.3"
|
||||
"vite-plugin-dts": "^3.9.0"
|
||||
},
|
||||
"wireit": {
|
||||
"dev": {
|
||||
|
|
|
@ -113,7 +113,7 @@ export default class TablePage extends CommonElements {
|
|||
(this.#tableInModal ? ".pf-v5-c-modal-box.pf-m-md " : "") +
|
||||
this.#tableHeaderRowItem,
|
||||
)
|
||||
.find("td:nth-child(" + column + ") " + appendChildren)
|
||||
.find("th:nth-child(" + column + ") " + appendChildren)
|
||||
.click();
|
||||
return this;
|
||||
}
|
||||
|
|
|
@ -62,38 +62,38 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@keycloak/keycloak-admin-client": "workspace:*",
|
||||
"@patternfly/patternfly": "^5.2.1",
|
||||
"@patternfly/react-code-editor": "^5.2.3",
|
||||
"@patternfly/react-core": "^5.2.3",
|
||||
"@patternfly/react-icons": "^5.2.1",
|
||||
"@patternfly/react-styles": "^5.2.1",
|
||||
"@patternfly/react-table": "^5.2.4",
|
||||
"@keycloak/keycloak-ui-shared": "workspace:*",
|
||||
"@patternfly/patternfly": "^5.3.0",
|
||||
"@patternfly/react-code-editor": "^5.3.0",
|
||||
"@patternfly/react-core": "^5.3.0",
|
||||
"@patternfly/react-icons": "^5.3.0",
|
||||
"@patternfly/react-styles": "^5.3.0",
|
||||
"@patternfly/react-table": "^5.3.0",
|
||||
"admin-ui": "file:",
|
||||
"dagre": "^0.8.5",
|
||||
"file-saver": "^2.0.5",
|
||||
"file-selector": "^0.6.0",
|
||||
"flat": "^6.0.1",
|
||||
"i18next": "^23.11.2",
|
||||
"i18next-http-backend": "^2.5.0",
|
||||
"i18next-http-backend": "^2.5.1",
|
||||
"keycloak-js": "workspace:*",
|
||||
"lodash-es": "^4.17.21",
|
||||
"monaco-editor": "^0.47.0",
|
||||
"monaco-editor": "^0.48.0",
|
||||
"p-debounce": "^4.0.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-dropzone": "^14.2.3",
|
||||
"react-hook-form": "^7.51.3",
|
||||
"react-i18next": "^14.1.0",
|
||||
"react-router-dom": "^6.22.3",
|
||||
"reactflow": "^11.11.1",
|
||||
"@keycloak/keycloak-ui-shared": "workspace:*",
|
||||
"react-i18next": "^14.1.1",
|
||||
"react-router-dom": "^6.23.0",
|
||||
"reactflow": "^11.11.2",
|
||||
"use-react-router-breadcrumbs": "^4.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@4tw/cypress-drag-drop": "^2.2.5",
|
||||
"@testing-library/cypress": "^10.0.1",
|
||||
"@testing-library/jest-dom": "^6.4.2",
|
||||
"@testing-library/react": "^15.0.2",
|
||||
"@testing-library/react": "^15.0.4",
|
||||
"@types/dagre": "^0.7.52",
|
||||
"@types/file-saver": "^2.0.7",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
|
@ -101,7 +101,7 @@
|
|||
"@types/react-dom": "^18.2.25",
|
||||
"@types/uuid": "^9.0.8",
|
||||
"@vitejs/plugin-react-swc": "^3.6.0",
|
||||
"cypress": "^13.7.3",
|
||||
"cypress": "^13.8.1",
|
||||
"cypress-axe": "^1.5.0",
|
||||
"cypress-split": "^1.23.0",
|
||||
"jsdom": "^24.0.0",
|
||||
|
@ -109,7 +109,7 @@
|
|||
"lightningcss": "^1.24.1",
|
||||
"ts-node": "^10.9.2",
|
||||
"uuid": "^9.0.1",
|
||||
"vite": "^5.2.9",
|
||||
"vite": "^5.2.10",
|
||||
"vite-plugin-checker": "^0.6.4",
|
||||
"vitest": "^1.5.0"
|
||||
}
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"@rollup/plugin-terser": "^0.4.4",
|
||||
"@rollup/plugin-typescript": "^11.1.6",
|
||||
"es6-promise": "^4.2.8",
|
||||
"rollup": "^4.14.3",
|
||||
"rollup": "^4.16.4",
|
||||
"shx": "^0.3.4"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
|
@ -42,16 +42,16 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@keycloak/keycloak-admin-client": "workspace:*",
|
||||
"@patternfly/react-core": "^5.2.3",
|
||||
"@patternfly/react-icons": "^5.2.1",
|
||||
"@patternfly/react-styles": "^5.2.1",
|
||||
"@patternfly/react-core": "^5.3.0",
|
||||
"@patternfly/react-icons": "^5.3.0",
|
||||
"@patternfly/react-styles": "^5.3.0",
|
||||
"i18next": "^23.11.2",
|
||||
"keycloak-js": "workspace:*",
|
||||
"lodash-es": "^4.17.21",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-hook-form": "7.51.3",
|
||||
"react-i18next": "^14.1.0"
|
||||
"react-i18next": "^14.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
|
@ -59,9 +59,9 @@
|
|||
"@types/react-dom": "^18.2.25",
|
||||
"@vitejs/plugin-react-swc": "^3.6.0",
|
||||
"rollup-plugin-peer-deps-external": "^2.2.4",
|
||||
"vite": "^5.2.9",
|
||||
"vite": "^5.2.10",
|
||||
"vite-plugin-checker": "^0.6.4",
|
||||
"vite-plugin-dts": "^3.8.3",
|
||||
"vite-plugin-dts": "^3.9.0",
|
||||
"vite-plugin-lib-inject-css": "^2.0.1",
|
||||
"vitest": "^1.5.0"
|
||||
}
|
||||
|
|
|
@ -7,13 +7,13 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@eslint/eslintrc": "^3.0.2",
|
||||
"@eslint/js": "^9.0.0",
|
||||
"@eslint/js": "^9.1.1",
|
||||
"@types/node": "^20.12.7",
|
||||
"eslint": "^8.52.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-cypress": "^2.15.2",
|
||||
"eslint-plugin-cypress": "^3.0.0",
|
||||
"eslint-plugin-lodash": "^7.4.0",
|
||||
"eslint-plugin-mocha": "^10.4.2",
|
||||
"eslint-plugin-mocha": "^10.4.3",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"eslint-plugin-react": "^7.34.1",
|
||||
"eslint-plugin-react-hooks": "^4.6.0",
|
||||
|
@ -22,7 +22,7 @@
|
|||
"prettier": "^3.2.5",
|
||||
"tslib": "^2.6.2",
|
||||
"typescript": "^5.4.5",
|
||||
"typescript-eslint": "^7.7.0",
|
||||
"typescript-eslint": "^7.7.1",
|
||||
"wireit": "^0.14.4"
|
||||
},
|
||||
"lint-staged": {
|
||||
|
|
1187
pnpm-lock.yaml
1187
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -6,10 +6,10 @@
|
|||
"build:clean": "shx rm -rf vendor"
|
||||
},
|
||||
"dependencies": {
|
||||
"@patternfly-v5/patternfly": "npm:@patternfly/patternfly@^5.1.0",
|
||||
"@patternfly-v5/patternfly": "npm:@patternfly/patternfly@^5.3.0",
|
||||
"@patternfly/patternfly": "^4.224.5",
|
||||
"@patternfly/react-core": "^4.278.1",
|
||||
"alpinejs": "^3.13.8",
|
||||
"alpinejs": "^3.13.9",
|
||||
"jquery": "^3.7.1",
|
||||
"patternfly": "^3.59.5",
|
||||
"react": "^18.2.0",
|
||||
|
@ -21,7 +21,7 @@
|
|||
"@rollup/plugin-node-resolve": "^15.2.3",
|
||||
"@rollup/plugin-replace": "^5.0.5",
|
||||
"@rollup/plugin-terser": "^0.4.4",
|
||||
"rollup": "^4.14.3",
|
||||
"rollup": "^4.16.4",
|
||||
"shx": "^0.3.4"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue