From cf58278f762780091d878d4753bf506845436fbc Mon Sep 17 00:00:00 2001 From: Nicola Molinari Date: Tue, 12 Sep 2023 21:29:35 +0200 Subject: [PATCH] chore: initial migration to eslint flat config --- .eslintignore | 9 - .eslintrc.js | 117 --- eslint.config.js | 153 ++++ package.json | 1 + pnpm-lock.yaml | 2106 +++++++++++----------------------------------- 5 files changed, 630 insertions(+), 1756 deletions(-) delete mode 100644 .eslintignore delete mode 100644 .eslintrc.js create mode 100644 eslint.config.js diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index cb70cb95f1..0000000000 --- a/.eslintignore +++ /dev/null @@ -1,9 +0,0 @@ -_translations/ -dist/ -build/ -node_modules/* -**/node_modules/* -packages/application-shell/test-utils/index.js -packages/application-shell-connectors/test-utils/index.js -packages/sdk/test-utils/index.js -**/.cache/* diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 4430fdd788..0000000000 --- a/.eslintrc.js +++ /dev/null @@ -1,117 +0,0 @@ -process.env.ENABLE_NEW_JSX_TRANSFORM = 'true'; - -/** - * @type {import("eslint").Linter.Config} - */ -module.exports = { - extends: ['@commercetools-frontend/eslint-config-mc-app'], - plugins: ['graphql'], - rules: { - 'import/order': [ - 'error', - { - alphabetize: { order: 'asc', caseInsensitive: true }, - pathGroups: [ - { - pattern: 'jest-mock', - group: 'external', - position: 'before', - }, - { - pattern: 'msw', - group: 'external', - position: 'before', - }, - { - pattern: 'react', - group: 'external', - position: 'before', - }, - { - pattern: 'prop-types', - group: 'external', - position: 'before', - }, - { - pattern: '@emotion/**', - group: 'external', - position: 'before', - }, - { - pattern: '@commercetools-frontend/**', - group: 'external', - position: 'after', - }, - { - pattern: '@commercetools-uikit/**', - group: 'external', - position: 'after', - }, - ], - pathGroupsExcludedImportTypes: ['builtin'], - }, - ], - }, - overrides: [ - { - files: ['**/*.mc.graphql'], - rules: { - 'graphql/template-strings': [ - 'error', - { - env: 'literal', - schemaJson: require('./schemas/mc.json'), - }, - ], - }, - }, - { - files: ['**/*.ctp.graphql'], - rules: { - 'graphql/template-strings': [ - 'error', - { - env: 'literal', - schemaJson: require('./schemas/ctp.json'), - }, - ], - }, - }, - { - files: ['**/*.core.graphql'], - rules: { - 'graphql/template-strings': [ - 'error', - { - env: 'literal', - schemaJson: require('./schemas/core.json'), - }, - ], - }, - }, - { - files: ['**/*.settings.graphql'], - rules: { - 'graphql/template-strings': [ - 'error', - { - env: 'literal', - schemaJson: require('./schemas/settings.json'), - }, - ], - }, - }, - { - files: ['**/*.proxy.graphql'], - rules: { - 'graphql/template-strings': [ - 'error', - { - env: 'literal', - schemaJson: require('./schemas/proxy.json'), - }, - ], - }, - }, - ], -}; diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000000..d44dcc1d18 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,153 @@ +process.env.ENABLE_NEW_JSX_TRANSFORM = 'true'; + +const { FlatCompat } = require('@eslint/eslintrc'); +const graphqlPlugin = require('eslint-plugin-graphql'); + +// To be able to load legacy ESLint configurations and plugins (https://github.com/eslint/eslintrc) +// TODO: remove once the new flat format is fully supported. +const compat = new FlatCompat(); + +/** + * @type {import("eslint").Linter.FlatConfig[]} + */ +module.exports = [ + // Global ignores + { + ignores: [ + '_translations/', + 'dist/', + 'build/', + 'node_modules/*', + '**/node_modules/*', + 'packages/application-shell/test-utils/index.js', + 'packages/application-shell-connectors/test-utils/index.js', + 'packages/sdk/test-utils/index.js', + '**/.cache/*', + ], + }, + ...compat.extends('@commercetools-frontend/eslint-config-mc-app'), + { + files: ['**/*.{js,jsx,ts,tsx,cjs,mjs}'], + rules: { + 'import/order': [ + 'error', + { + alphabetize: { order: 'asc', caseInsensitive: true }, + pathGroups: [ + { + pattern: 'jest-mock', + group: 'external', + position: 'before', + }, + { + pattern: 'msw', + group: 'external', + position: 'before', + }, + { + pattern: 'react', + group: 'external', + position: 'before', + }, + { + pattern: 'prop-types', + group: 'external', + position: 'before', + }, + { + pattern: '@emotion/**', + group: 'external', + position: 'before', + }, + { + pattern: '@commercetools-frontend/**', + group: 'external', + position: 'after', + }, + { + pattern: '@commercetools-uikit/**', + group: 'external', + position: 'after', + }, + ], + pathGroupsExcludedImportTypes: ['builtin'], + }, + ], + }, + }, + { + files: ['**/*.mc.graphql'], + plugins: { + graphql: graphqlPlugin, + }, + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/mc.json'), + }, + ], + }, + }, + { + files: ['**/*.ctp.graphql'], + plugins: { + graphql: graphqlPlugin, + }, + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/ctp.json'), + }, + ], + }, + }, + { + files: ['**/*.core.graphql'], + plugins: { + graphql: graphqlPlugin, + }, + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/core.json'), + }, + ], + }, + }, + { + files: ['**/*.settings.graphql'], + plugins: { + graphql: graphqlPlugin, + }, + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/settings.json'), + }, + ], + }, + }, + { + files: ['**/*.proxy.graphql'], + plugins: { + graphql: graphqlPlugin, + }, + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/proxy.json'), + }, + ], + }, + }, +]; diff --git a/package.json b/package.json index 02f0919653..bed302b008 100644 --- a/package.json +++ b/package.json @@ -91,6 +91,7 @@ "@commercetools/github-labels": "1.1.0", "@commitlint/cli": "17.6.3", "@commitlint/config-conventional": "17.6.3", + "@eslint/eslintrc": "2.1.2", "@faker-js/faker": "7.6.0", "@formatjs/cli": "6.1.1", "@graphql-codegen/add": "3.2.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9c92d5e2c5..48803a9a58 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -65,7 +65,7 @@ importers: version: 4.11.1 '@commercetools-uikit/design-system': specifier: ^16.7.3 - version: 16.7.3(@types/react@18.2.21) + version: 16.7.3(@types/react@17.0.56) '@commercetools/github-labels': specifier: 1.1.0 version: 1.1.0(@octokit/core@5.0.0) @@ -75,6 +75,9 @@ importers: '@commitlint/config-conventional': specifier: 17.6.3 version: 17.6.3 + '@eslint/eslintrc': + specifier: 2.1.2 + version: 2.1.2 '@faker-js/faker': specifier: 7.6.0 version: 7.6.0 @@ -770,7 +773,7 @@ importers: version: 11.1.0(eslint@8.40.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.40.0)(prettier@3.0.3) + version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.40.0)(prettier@2.8.8) devDependencies: '@tsconfig/node16': specifier: ^16.1.1 @@ -1591,7 +1594,7 @@ importers: version: link:../application-components '@emotion/react': specifier: 11.11.0 - version: 11.11.0(@types/react@18.2.21)(react@18.2.0) + version: 11.11.0(@types/react@17.0.56)(react@18.2.0) '@tsconfig/node16': specifier: ^16.1.1 version: 16.1.1 @@ -2603,7 +2606,7 @@ importers: dependencies: '@commercetools-docs/ui-kit': specifier: 22.5.0 - version: 22.5.0(@types/react@18.2.21)(react-dom@17.0.2)(react-router-dom@5.3.4)(react@17.0.2)(typescript@5.0.4) + version: 22.5.0(@types/react@17.0.56)(react-dom@17.0.2)(react-router-dom@5.3.4)(react@17.0.2)(typescript@5.0.4) '@commercetools-frontend/actions-global': specifier: 22.7.1 version: link:../packages/actions-global @@ -2639,64 +2642,64 @@ importers: version: link:../packages/sdk '@commercetools-uikit/card': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/checkbox-input': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.4) + version: 16.7.3(@types/react@17.0.56)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.4) '@commercetools-uikit/constraints': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/data-table': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) '@commercetools-uikit/date-time-input': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(moment-timezone@0.5.40)(moment@2.29.4)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) + version: 16.7.3(@types/react@17.0.56)(moment-timezone@0.5.40)(moment@2.29.4)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) '@commercetools-uikit/flat-button': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) '@commercetools-uikit/grid': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/hooks': specifier: 16.7.3 version: 16.7.3(react@17.0.2) '@commercetools-uikit/icons': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/label': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) '@commercetools-uikit/link': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2) '@commercetools-uikit/loading-spinner': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) '@commercetools-uikit/notifications': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) '@commercetools-uikit/pagination': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) + version: 16.7.3(@types/react@17.0.56)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) '@commercetools-uikit/primary-button': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) '@commercetools-uikit/secondary-button': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2) '@commercetools-uikit/spacings': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/text': specifier: 16.7.3 - version: 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) + version: 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) '@emotion/react': specifier: 11.11.0 - version: 11.11.0(@types/react@18.2.21)(react@17.0.2) + version: 11.11.0(@types/react@17.0.56)(react@17.0.2) apollo-link-rest: specifier: ^0.9.0 - version: 0.9.0(@apollo/client@3.8.3)(graphql@16.6.0)(qs@6.11.2) + version: 0.9.0(@apollo/client@3.7.14)(graphql@16.6.0)(qs@6.11.2) graphql: specifier: 16.6.0 version: 16.6.0 @@ -2880,34 +2883,34 @@ importers: dependencies: '@commercetools-docs/gatsby-theme-docs': specifier: 22.5.0 - version: 22.5.0(@babel/core@7.22.17)(@types/react@18.2.21)(gatsby-cli@5.9.0)(gatsby@5.9.1)(graphql@16.8.0)(moment@2.29.4)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(webpack@5.88.2) + version: 22.5.0(@babel/core@7.22.17)(@types/react@17.0.56)(gatsby-cli@5.9.0)(gatsby@5.9.1)(graphql@16.8.0)(moment@2.29.4)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(webpack@5.82.1) '@commercetools-docs/ui-kit': specifier: 22.5.0 - version: 22.5.0(@types/react@18.2.21)(react-dom@18.2.0)(react-router-dom@5.3.4)(react@18.2.0)(typescript@5.2.2) + version: 22.5.0(@types/react@17.0.56)(react-dom@18.2.0)(react-router-dom@5.3.4)(react@18.2.0)(typescript@5.2.2) '@commercetools-frontend/assets': specifier: workspace:* version: link:../packages/assets '@commercetools-uikit/card': specifier: ^16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@18.2.0) + version: 16.7.3(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/grid': specifier: ^16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@18.2.0) + version: 16.7.3(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/icons': specifier: ^16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@18.2.0) + version: 16.7.3(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/spacings-inline': specifier: ^16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@18.2.0) + version: 16.7.3(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/spacings-stack': specifier: ^16.7.3 - version: 16.7.3(@types/react@18.2.21)(react@18.2.0) + version: 16.7.3(@types/react@17.0.56)(react@18.2.0) '@emotion/react': specifier: 11.11.0 - version: 11.11.0(@types/react@18.2.21)(react@18.2.0) + version: 11.11.0(@types/react@17.0.56)(react@18.2.0) '@emotion/styled': specifier: 11.11.0 - version: 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + version: 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) '@gatsbyjs/reach-router': specifier: ^2.0.1 version: 2.0.1(react-dom@18.2.0)(react@18.2.0) @@ -2946,7 +2949,7 @@ importers: version: 15.8.1 raw-loader: specifier: 4.0.2 - version: 4.0.2(webpack@5.88.2) + version: 4.0.2(webpack@5.82.1) react: specifier: 18.2.0 version: 18.2.0 @@ -3088,10 +3091,6 @@ packages: resolution: {integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==} dev: false - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - /@adobe/css-tools@4.2.0: resolution: {integrity: sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==} dev: false @@ -3174,42 +3173,6 @@ packages: zen-observable-ts: 1.2.5 dev: false - /@apollo/client@3.8.3(graphql@16.6.0)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-mK86JM6hCpMEBGDgdO9U8ZYS8r9lPjXE1tVGpJMdSFUsIcXpmEfHUAbbFpPtYmxn8Qa7XsYy0dwDaDhpf4UUPw==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - graphql-ws: ^5.5.5 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - subscriptions-transport-ws: ^0.9.0 || ^0.11.0 - peerDependenciesMeta: - graphql-ws: - optional: true - react: - optional: true - react-dom: - optional: true - subscriptions-transport-ws: - optional: true - dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) - '@wry/context': 0.7.3 - '@wry/equality': 0.5.6 - '@wry/trie': 0.4.3 - graphql: 16.6.0 - graphql-tag: 2.12.6(graphql@16.6.0) - hoist-non-react-statics: 3.3.2 - optimism: 0.17.5 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - response-iterator: 0.2.6 - symbol-observable: 4.0.0 - ts-invariant: 0.10.3 - tslib: 2.6.2 - zen-observable-ts: 1.2.5 - dev: false - /@ardatan/aggregate-error@0.0.6: resolution: {integrity: sha512-vyrkEHG1jrukmzTPtyWB4NLPauUw5bQeg4uhn8f+1SSynmrOcyvlb1GKQjjgoBzElLdfXCRYX8UnBlhklOHYRQ==} engines: {node: '>=8'} @@ -5030,7 +4993,7 @@ packages: '@babel/runtime-corejs3': 7.22.15 dev: false - /@commercetools-docs/gatsby-theme-docs@22.5.0(@babel/core@7.22.17)(@types/react@18.2.21)(gatsby-cli@5.9.0)(gatsby@5.9.1)(graphql@16.8.0)(moment@2.29.4)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(webpack@5.88.2): + /@commercetools-docs/gatsby-theme-docs@22.5.0(@babel/core@7.22.17)(@types/react@17.0.56)(gatsby-cli@5.9.0)(gatsby@5.9.1)(graphql@16.8.0)(moment@2.29.4)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(webpack@5.82.1): resolution: {integrity: sha512-C+FYHFmFzXkG3h8AUvJbyLECxb3XphCRTbLxrKHFLUGJntMCsMqZpQEjkb44571dsnVKXlWu5BB5WNRAMuwxyw==} engines: {node: '>=18'} hasBin: true @@ -5041,31 +5004,31 @@ packages: react-dom: 18.x dependencies: '@auth0/auth0-react': 2.2.0(react-dom@18.2.0)(react@18.2.0) - '@commercetools-docs/ui-kit': 22.5.0(@types/react@18.2.21)(react-dom@18.2.0)(react-router-dom@6.14.2)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/card': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/checkbox-input': 16.5.0(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icon-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/link': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0) - '@commercetools-uikit/loading-spinner': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/messages': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/notifications': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) - '@commercetools-uikit/primary-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/radio-input': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/secondary-button': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0) - '@commercetools-uikit/secondary-icon-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/spacings': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/stamp': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) - '@commercetools-uikit/text-field': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/text-input': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) + '@commercetools-docs/ui-kit': 22.5.0(@types/react@17.0.56)(react-dom@18.2.0)(react-router-dom@6.14.2)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/card': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/checkbox-input': 16.5.0(@types/react@17.0.56)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icon-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/link': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0) + '@commercetools-uikit/loading-spinner': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/messages': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/notifications': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/primary-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/radio-input': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/secondary-button': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0) + '@commercetools-uikit/secondary-icon-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/spacings': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/stamp': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/text-field': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/text-input': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) '@emotion/server': 11.10.0 - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) '@fontsource/roboto-mono': 5.0.8 '@mdx-js/mdx': 1.6.22 '@mdx-js/react': 1.6.22(react@18.2.0) @@ -5104,16 +5067,16 @@ packages: md5-file: 5.0.0 mdast-util-to-string: 4.0.0 mdast-util-toc: 7.0.0 - moment-locales-webpack-plugin: 1.2.0(moment@2.29.4)(webpack@5.88.2) + moment-locales-webpack-plugin: 1.2.0(moment@2.29.4)(webpack@5.82.1) moment-timezone: 0.5.43 - moment-timezone-data-webpack-plugin: 1.5.1(moment-timezone@0.5.43)(webpack@5.88.2) + moment-timezone-data-webpack-plugin: 1.5.1(moment-timezone@0.5.43)(webpack@5.82.1) prism-react-renderer: 2.0.6(react@18.2.0) prismjs: 1.29.0 process-top: 1.2.0 prompts: 2.4.2 prop-types: 15.8.1 qss: 3.0.0 - raw-loader: 4.0.2(webpack@5.88.2) + raw-loader: 4.0.2(webpack@5.82.1) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-intersection-observer: 9.5.2(react@18.2.0) @@ -5144,7 +5107,7 @@ packages: - webpack dev: false - /@commercetools-docs/ui-kit@22.5.0(@types/react@18.2.21)(react-dom@17.0.2)(react-router-dom@5.3.4)(react@17.0.2)(typescript@5.0.4): + /@commercetools-docs/ui-kit@22.5.0(@types/react@17.0.56)(react-dom@17.0.2)(react-router-dom@5.3.4)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-DkvCCKkQlvFsf4kurOGnX2Z8IQoZNm0KYviVsHF8c+KjJigLuwxvmDtUKiDRtZJDBeDi66qnS8988dr8PJnUwQ==} peerDependencies: react: 18.x @@ -5152,20 +5115,20 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/card': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/loading-spinner': 16.5.0(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/primary-button': 16.5.0(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/secondary-button': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2) - '@commercetools-uikit/secondary-icon-button': 16.5.0(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/spacings': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/tooltip': 16.5.0(@types/react@18.2.21)(react@17.0.2) + '@commercetools-uikit/card': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/loading-spinner': 16.5.0(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) + '@commercetools-uikit/primary-button': 16.5.0(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) + '@commercetools-uikit/secondary-button': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2) + '@commercetools-uikit/secondary-icon-button': 16.5.0(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) + '@commercetools-uikit/spacings': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/tooltip': 16.5.0(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) '@react-hook/latest': 1.0.3(react@17.0.2) '@react-hook/resize-observer': 1.2.6(react@17.0.2) '@types/lodash.kebabcase': 4.1.7 @@ -5186,7 +5149,7 @@ packages: react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) react-is: 18.2.0 react-modal: 3.16.1(react-dom@17.0.2)(react@17.0.2) - rehype-react: 7.2.0(@types/react@18.2.21) + rehype-react: 7.2.0(@types/react@17.0.56) remark-frontmatter: 4.0.1 remark-parse: 10.0.2 remark-rehype: 10.1.0 @@ -5201,7 +5164,7 @@ packages: - typescript dev: false - /@commercetools-docs/ui-kit@22.5.0(@types/react@18.2.21)(react-dom@18.2.0)(react-router-dom@5.3.4)(react@18.2.0)(typescript@5.2.2): + /@commercetools-docs/ui-kit@22.5.0(@types/react@17.0.56)(react-dom@18.2.0)(react-router-dom@5.3.4)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-DkvCCKkQlvFsf4kurOGnX2Z8IQoZNm0KYviVsHF8c+KjJigLuwxvmDtUKiDRtZJDBeDi66qnS8988dr8PJnUwQ==} peerDependencies: react: 18.x @@ -5209,20 +5172,20 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/card': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/loading-spinner': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/primary-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/secondary-button': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@18.2.0) - '@commercetools-uikit/secondary-icon-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/spacings': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) - '@commercetools-uikit/tooltip': 16.5.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/card': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/loading-spinner': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/primary-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/secondary-button': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@18.2.0) + '@commercetools-uikit/secondary-icon-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/spacings': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/tooltip': 16.5.0(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) '@react-hook/latest': 1.0.3(react@18.2.0) '@react-hook/resize-observer': 1.2.6(react@18.2.0) '@types/lodash.kebabcase': 4.1.7 @@ -5243,7 +5206,7 @@ packages: react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) react-is: 18.2.0 react-modal: 3.16.1(react-dom@18.2.0)(react@18.2.0) - rehype-react: 7.2.0(@types/react@18.2.21) + rehype-react: 7.2.0(@types/react@17.0.56) remark-frontmatter: 4.0.1 remark-parse: 10.0.2 remark-rehype: 10.1.0 @@ -5258,7 +5221,7 @@ packages: - typescript dev: false - /@commercetools-docs/ui-kit@22.5.0(@types/react@18.2.21)(react-dom@18.2.0)(react-router-dom@6.14.2)(react@18.2.0)(typescript@5.2.2): + /@commercetools-docs/ui-kit@22.5.0(@types/react@17.0.56)(react-dom@18.2.0)(react-router-dom@6.14.2)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-DkvCCKkQlvFsf4kurOGnX2Z8IQoZNm0KYviVsHF8c+KjJigLuwxvmDtUKiDRtZJDBeDi66qnS8988dr8PJnUwQ==} peerDependencies: react: 18.x @@ -5266,20 +5229,20 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/card': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/loading-spinner': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/primary-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/secondary-button': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0) - '@commercetools-uikit/secondary-icon-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/spacings': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) - '@commercetools-uikit/tooltip': 16.5.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/card': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/loading-spinner': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/primary-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/secondary-button': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0) + '@commercetools-uikit/secondary-icon-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/spacings': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/tooltip': 16.5.0(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) '@react-hook/latest': 1.0.3(react@18.2.0) '@react-hook/resize-observer': 1.2.6(react@18.2.0) '@types/lodash.kebabcase': 4.1.7 @@ -5300,7 +5263,7 @@ packages: react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) react-is: 18.2.0 react-modal: 3.16.1(react-dom@18.2.0)(react@18.2.0) - rehype-react: 7.2.0(@types/react@18.2.21) + rehype-react: 7.2.0(@types/react@17.0.56) remark-frontmatter: 4.0.1 remark-parse: 10.0.2 remark-rehype: 10.1.0 @@ -5369,17 +5332,17 @@ packages: '@faker-js/faker': 7.6.0 dev: false - /@commercetools-uikit/accessible-button@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/accessible-button@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-VdOm2b1DLzyWKlqK0FO6+tMmeYOIkFyoolPROz4tdYNvfGFkav86+SOh6zLNTy1eA1O8ZI8HXfMx7+FI7bQdNA==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) '@types/react-is': 17.0.4 lodash: 4.17.21 prop-types: 15.8.1 @@ -5389,17 +5352,17 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/accessible-button@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/accessible-button@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-VdOm2b1DLzyWKlqK0FO6+tMmeYOIkFyoolPROz4tdYNvfGFkav86+SOh6zLNTy1eA1O8ZI8HXfMx7+FI7bQdNA==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) '@types/react-is': 17.0.4 lodash: 4.17.21 prop-types: 15.8.1 @@ -5429,26 +5392,6 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/accessible-button@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-po0eteNTgpMp2umK9Y4SgHOjsGrR6jvAhJVr87/S5JLf3u58vB5fyxHoPJBNpJj1b8IwhDObeiaUb54mpF8g9w==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - '@types/react-is': 17.0.4 - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-is: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - /@commercetools-uikit/accessible-hidden@16.7.3(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-9XwbT+X/a588atPw/zKDJNvHcHWmymKr493Y7LtYANg7c89KUg9w6YarPQJAKoYgM2FgTM/Z56bkUg6XWdj9MQ==} peerDependencies: @@ -5493,7 +5436,7 @@ packages: - react dev: false - /@commercetools-uikit/calendar-utils@16.7.3(@types/react@18.2.21)(moment@2.29.4)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): + /@commercetools-uikit/calendar-utils@16.7.3(@types/react@17.0.56)(moment@2.29.4)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-OVvGQigV2Ua4I7I+7iKsLSTWwR7bzyR/39kXHPaLkL6UiUKx795JP2ga9X3az94SHEhUPK33lKTVjtGPustfAw==} peerDependencies: moment: 2.x @@ -5502,59 +5445,59 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) + '@commercetools-uikit/accessible-button': 16.7.3(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) '@commercetools-uikit/hooks': 16.7.3(react@17.0.2) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/input-utils': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/secondary-icon-button': 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/tooltip': 16.7.3(@types/react@18.2.21)(react@17.0.2) + '@commercetools-uikit/icons': 16.7.3(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/input-utils': 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) + '@commercetools-uikit/secondary-icon-button': 16.7.3(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) + '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/text': 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/tooltip': 16.7.3(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) moment: 2.29.4 prop-types: 15.8.1 react: 17.0.2 react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - react-select: 5.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react@17.0.2) + react-select: 5.7.3(@types/react@17.0.56)(react-dom@17.0.2)(react@17.0.2) transitivePeerDependencies: - '@types/react' - react-dom - typescript dev: false - /@commercetools-uikit/card@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/card@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-48kqMjR8npQlT2cSTeK2omJwnhMAexzrRE7TugM7TcPhZM/lIl/xUcMj1zDvu1axqAXaCWUh0mFAgHgoBYyTvw==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@18.2.21)(react@17.0.2) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/card@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/card@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-48kqMjR8npQlT2cSTeK2omJwnhMAexzrRE7TugM7TcPhZM/lIl/xUcMj1zDvu1axqAXaCWUh0mFAgHgoBYyTvw==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -5579,56 +5522,38 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/card@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-0Sqd3gPPDKTZnWLVRszj1OqE8sFlbKroO4I0wxAT2p1Xh0kXgEMQOnBMkk0SLBvBdcyTmC6go12yqavpueuslw==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/spacings-inset': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/card@16.7.3(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/card@16.7.3(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-0Sqd3gPPDKTZnWLVRszj1OqE8sFlbKroO4I0wxAT2p1Xh0kXgEMQOnBMkk0SLBvBdcyTmC6go12yqavpueuslw==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/spacings-inset': 16.7.3(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) + '@commercetools-uikit/spacings-inset': 16.7.3(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/utils': 16.7.3(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/checkbox-input@16.5.0(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/checkbox-input@16.5.0(@types/react@17.0.56)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-9InCls8ZEmuK2h6WZp3J6v+sMx62oA+IUlFE3EN8c1ZI5l+9ChbHnqSQfHduv+FBmsq9oppzGdTuJI7ZaiO3WA==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/input-utils': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/select-utils': 16.5.0(@types/react@18.2.21)(react-dom@18.2.0)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/input-utils': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/select-utils': 16.5.0(@types/react@17.0.56)(react-dom@18.2.0)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) @@ -5638,20 +5563,20 @@ packages: - typescript dev: false - /@commercetools-uikit/checkbox-input@16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.4): + /@commercetools-uikit/checkbox-input@16.7.3(@types/react@17.0.56)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-iHNiVGxblrXa25f2OcJYSridOddScnNpGCo1FNzJuRlS/zn9yXvWzc88ommaGQQuKoOZmCjuCTnsP+pJu9H8hQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/input-utils': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/select-utils': 16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.7.3(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/input-utils': 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) + '@commercetools-uikit/select-utils': 16.7.3(@types/react@17.0.56)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2) '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) @@ -5661,34 +5586,34 @@ packages: - typescript dev: false - /@commercetools-uikit/constraints@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/constraints@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-OEa6aOcaeAXkg0FSmu/WSIwxZhqzSLXjvUfrilYQAvI84X2L35VFVRrytp4OT1WxsOzTHatmfUf0tDEvM3GI2A==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/constraints@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/constraints@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-OEa6aOcaeAXkg0FSmu/WSIwxZhqzSLXjvUfrilYQAvI84X2L35VFVRrytp4OT1WxsOzTHatmfUf0tDEvM3GI2A==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -5712,23 +5637,6 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/constraints@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-UpGXitu3B2Ab9O91bL0mA+uO+RV+PTPlmQYGgbjoInZwwNZVGPcyjMDXT4UUxEplJYZvPZzY9vqDcL8e/I1UYg==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - /@commercetools-uikit/data-table@16.7.3(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-l2h3YvYW7BNU6kU2A9/VU/6CMa4x8V3buez+suJTJSjfpndim6N4y+kOngOrVrOp+daIOHpgoxmMk3lWfmuBuQ==} peerDependencies: @@ -5777,31 +5685,7 @@ packages: - typescript dev: false - /@commercetools-uikit/data-table@16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4): - resolution: {integrity: sha512-l2h3YvYW7BNU6kU2A9/VU/6CMa4x8V3buez+suJTJSjfpndim6N4y+kOngOrVrOp+daIOHpgoxmMk3lWfmuBuQ==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/hooks': 16.7.3(react@17.0.2) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/secondary-icon-button': 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false - - /@commercetools-uikit/date-time-input@16.7.3(@types/react@18.2.21)(moment-timezone@0.5.40)(moment@2.29.4)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): + /@commercetools-uikit/date-time-input@16.7.3(@types/react@17.0.56)(moment-timezone@0.5.40)(moment@2.29.4)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-VhNqZjZnI7VympHbNajh6nch7P/HJavkMz13sU47zgGLxWwMhRYhahiBOWYveUpybMBC/IA9nk3qh6zTItzEoQ==} peerDependencies: moment: 2.x @@ -5810,21 +5694,21 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) + '@commercetools-uikit/accessible-button': 16.7.3(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/calendar-time-utils': 16.7.3(moment-timezone@0.5.40)(react@17.0.2) - '@commercetools-uikit/calendar-utils': 16.7.3(@types/react@18.2.21)(moment@2.29.4)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/constraints': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) + '@commercetools-uikit/calendar-utils': 16.7.3(@types/react@17.0.56)(moment@2.29.4)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) + '@commercetools-uikit/constraints': 16.7.3(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) '@commercetools-uikit/hooks': 16.7.3(react@17.0.2) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/secondary-icon-button': 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/select-utils': 16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/tooltip': 16.7.3(@types/react@18.2.21)(react@17.0.2) + '@commercetools-uikit/icons': 16.7.3(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/secondary-icon-button': 16.7.3(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4) + '@commercetools-uikit/select-utils': 16.7.3(@types/react@17.0.56)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/text': 16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/tooltip': 16.7.3(@types/react@17.0.56)(react@17.0.2) '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) downshift: 6.1.12(react@17.0.2) moment: 2.29.4 prop-types: 15.8.1 @@ -5839,13 +5723,13 @@ packages: - typescript dev: false - /@commercetools-uikit/design-system@16.5.0(@types/react@18.2.21): + /@commercetools-uikit/design-system@16.5.0(@types/react@17.0.56): resolution: {integrity: sha512-Xjwp6hl8IGMoTmPgBlJiGC5+E5XPfrMumugjV+Jpq+UDwQcKSx55FAg/NW85wkcBUSQ41XeKHDLb3H/2tBnDcQ==} dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 '@commercetools-uikit/hooks': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 @@ -5867,21 +5751,7 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/design-system@16.7.3(@types/react@18.2.21): - resolution: {integrity: sha512-/qJPwekl4RgVY3IfC+bCOAbIdrVAxt9IwMf+cPAH5DVq2iAvDKbBoHWNFwKbbpOcxMCF2xawI8L7aiQACGU8PA==} - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/hooks': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/field-errors@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/field-errors@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-owDXP1GlNIy0DA3lZqh5Lrci29wT7aQtGuEg34uyjcpgEFGwAw+9xO319qSHzGLALbFkF5n/2kE3Rt4krReZLg==} peerDependencies: react: 17.x @@ -5889,9 +5759,9 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/messages': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/messages': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) @@ -5938,24 +5808,24 @@ packages: - typescript dev: false - /@commercetools-uikit/field-label@16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/field-label@16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-XxtWAvKA5kGM1Ob9+9qpY4P4a9cp/OnNMu/avC2ofXBCAS2EkLC5ofMQYU07Pf5kARghLfrt0mJCRsnh3F1RAg==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icon-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/label': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/constraints': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icon-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/label': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) @@ -6016,20 +5886,20 @@ packages: - typescript dev: false - /@commercetools-uikit/flat-button@16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/flat-button@16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-2i14dm+pS98z6Y6IOlBtT66IggrFZnS+NBtmHUpI+GksnUQY43fYN9kISEcf6OZpjOg6Ux8SxqZ9wiqb9dhfmw==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 @@ -6085,29 +5955,6 @@ packages: - typescript dev: false - /@commercetools-uikit/flat-button@16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4): - resolution: {integrity: sha512-wF9nP0lv6RsZnkuQ0qFb8CZb1lm4LNJRs2M3oL9i/4rL6hmMGz33GIptx2tIGJjJDQuWM+zeLE2tPPViCO7wEA==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false - /@commercetools-uikit/grid@16.7.3(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-ikAxLgw3T5LAZA91Ue1BLdHloeUtgiyAOZhU8oyXPTI9RgQ9EJEdBeonJG5WoE+Dy2hoFaOOU8Cc4L0+zsqsIQ==} peerDependencies: @@ -6123,30 +5970,15 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/grid@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-ikAxLgw3T5LAZA91Ue1BLdHloeUtgiyAOZhU8oyXPTI9RgQ9EJEdBeonJG5WoE+Dy2hoFaOOU8Cc4L0+zsqsIQ==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/grid@16.7.3(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/grid@16.7.3(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-ikAxLgw3T5LAZA91Ue1BLdHloeUtgiyAOZhU8oyXPTI9RgQ9EJEdBeonJG5WoE+Dy2hoFaOOU8Cc4L0+zsqsIQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -6202,20 +6034,20 @@ packages: '@babel/runtime-corejs3': 7.22.15 dev: false - /@commercetools-uikit/icon-button@16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/icon-button@16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-aGciaRU/zLlE60tkLZBS3GCLD4FZL6G58apiczLPij7cxFy8mNKHSCMjugjFWoziUrk/tYmQl+0l4JiuthzExQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 @@ -6271,17 +6103,17 @@ packages: - typescript dev: false - /@commercetools-uikit/icons@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/icons@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-yDiB+DJq19fDHvkMGs18gGedpcVpV3RH/IE9KjFjcIa4PmSCwBskcSeETeja8+GMHhyWdogIo/YvDdvq5WHk/g==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) '@types/dompurify': 2.4.0 dompurify: 2.4.5 prop-types: 15.8.1 @@ -6291,17 +6123,17 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/icons@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/icons@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-yDiB+DJq19fDHvkMGs18gGedpcVpV3RH/IE9KjFjcIa4PmSCwBskcSeETeja8+GMHhyWdogIo/YvDdvq5WHk/g==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) '@types/dompurify': 2.4.0 dompurify: 2.4.5 prop-types: 15.8.1 @@ -6331,37 +6163,17 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/icons@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-RYnH9rJfVoxSrZT6Tkzs4Robf21j+bp2E5I+IUW0heD/swoaZN3UPecTwrvriUqVvwE8zfhnx1WUIYpIdUxHpQ==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - '@types/dompurify': 2.4.0 - dompurify: 2.4.7 - prop-types: 15.8.1 - react: 17.0.2 - react-from-dom: 0.6.2(react@17.0.2) - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/icons@16.7.3(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/icons@16.7.3(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-RYnH9rJfVoxSrZT6Tkzs4Robf21j+bp2E5I+IUW0heD/swoaZN3UPecTwrvriUqVvwE8zfhnx1WUIYpIdUxHpQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) '@commercetools-uikit/utils': 16.7.3(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) '@types/dompurify': 2.4.0 dompurify: 2.4.7 prop-types: 15.8.1 @@ -6371,7 +6183,7 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/input-utils@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/input-utils@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-mevIQd1QWXw1vQ6zZNytUXyAWOfI+3BmAIh/5Ktf/FPQ3fWy6bGoVpa9jQhVrE2/ujDxHwhi7IQ4vd3IO56MGw==} peerDependencies: react: 17.x @@ -6379,15 +6191,15 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/flat-button': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/flat-button': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) - react-textarea-autosize: 8.4.0(@types/react@18.2.21)(react@18.2.0) + react-textarea-autosize: 8.4.0(@types/react@17.0.56)(react@18.2.0) transitivePeerDependencies: - '@types/react' - typescript @@ -6437,29 +6249,7 @@ packages: - typescript dev: false - /@commercetools-uikit/input-utils@16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): - resolution: {integrity: sha512-V67MP85yQp9JasRSqgtR/mPySw7IHFYHWGoBUN1U0AAtTXGKELmhVpJp2p8jqhuDlU8gLv1D3s7cnBD4+02T0Q==} - peerDependencies: - react: 17.x - react-intl: 6.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/flat-button': 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - react-textarea-autosize: 8.4.0(@types/react@18.2.21)(react@17.0.2) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false - - /@commercetools-uikit/label@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0): + /@commercetools-uikit/label@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0): resolution: {integrity: sha512-OtEFrPD10l0TnUq6YczsltmY+HCnqgJyb/MYu7OPDuoJFOr4yGOTp4A91cIlY6npWkUoCMb4LQ1m35xNkOC/2g==} peerDependencies: react: 17.x @@ -6467,11 +6257,11 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) @@ -6494,32 +6284,12 @@ packages: '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.2.2) - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/label@16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2): - resolution: {integrity: sha512-J7FVgRB+ZCVL1Mj6Fcndj/+Lvz2qyP1huNS2MFnFLx1KX+N2/v/ciYfxt3tE9tUMvZ5vWIWbMYpJBmaGXhbM6A==} - peerDependencies: - react: 17.x - react-intl: 6.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/link@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0): + /@commercetools-uikit/link@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0): resolution: {integrity: sha512-sDFx6d/gqMsEdVU/c2ykYLMIfo7VfYKofpjBMdHHmamDm0bCga2k5OEjueUTeNkfSZ4QV1uHKFQ0yL1N9Ydwvw==} peerDependencies: react: 17.x @@ -6528,12 +6298,12 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) '@types/history': 4.7.11 '@types/react-router-dom': 5.3.3 history: 4.10.1 @@ -6571,64 +6341,38 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/link@16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2): - resolution: {integrity: sha512-lFS0+QWWt+dw497AT8B7vf3AwE6DoKBmbEf1GAaP3IWy0rcy4YGXY8TtQ27MXIgsbA5OUL6SdyBw+DlWlundNQ==} + /@commercetools-uikit/loading-spinner@16.5.0(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4): + resolution: {integrity: sha512-o3PXQBIUpM1AksxkLOOGLjcHtDCdZdIupFET4i3tu2KXTLIOLobd3xUFIW4ieGPp9ixAi/svNkGLiQfo9xxDdw==} peerDependencies: react: 17.x - react-intl: 6.x - react-router-dom: 5.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - '@types/history': 4.7.11 - '@types/react-router-dom': 5.3.3 - history: 4.10.1 + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/utils': 16.5.0(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - react-router-dom: 5.3.4(react@17.0.2) transitivePeerDependencies: - '@types/react' + - typescript dev: false - /@commercetools-uikit/loading-spinner@16.5.0(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4): + /@commercetools-uikit/loading-spinner@16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-o3PXQBIUpM1AksxkLOOGLjcHtDCdZdIupFET4i3tu2KXTLIOLobd3xUFIW4ieGPp9ixAi/svNkGLiQfo9xxDdw==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false - - /@commercetools-uikit/loading-spinner@16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2): - resolution: {integrity: sha512-o3PXQBIUpM1AksxkLOOGLjcHtDCdZdIupFET4i3tu2KXTLIOLobd3xUFIW4ieGPp9ixAi/svNkGLiQfo9xxDdw==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) - '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/utils': 16.5.0(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) @@ -6677,26 +6421,6 @@ packages: - typescript dev: false - /@commercetools-uikit/loading-spinner@16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4): - resolution: {integrity: sha512-wocMD5xg7OsZhwbDcdRhJ5mjJm4Xxq/pVyIdLPPlZgFuYw6pPqzykoB5+hTtSZ3zRb3nnGlxL2FLzsR+ReHG/w==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false - /@commercetools-uikit/localized-text-field@16.7.3(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-Vq2Jhb/EnTtNI9bNP0cTeuseHm1tR3jFaCa6F5L/Z3mSF+C6/b4QGZ4GHBlnaJKYg4mcIqita2d89+trtDTiSw==} peerDependencies: @@ -6816,17 +6540,17 @@ packages: - react dev: false - /@commercetools-uikit/messages@16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/messages@16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-GhDDQXv973Ufd1FlrvrLegZwAm/Q2KLRB6CG3JdidtFSosQcpyTT1U9P3rQYBJ7cRC+WCsBj3WGitqr6tNJggQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) @@ -6927,7 +6651,7 @@ packages: - typescript dev: false - /@commercetools-uikit/notifications@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0): + /@commercetools-uikit/notifications@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0): resolution: {integrity: sha512-QM7OCSLE+akh2ZV7pB+XDdMBQlYZOBYt0EyVCYDs35snf5eVxAGIhp9ikxq2Ehmi81upxIJOD5vTe+SJFgydUw==} peerDependencies: react: 17.x @@ -6935,11 +6659,11 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) @@ -6967,26 +6691,6 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/notifications@16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2): - resolution: {integrity: sha512-dpvlfk0O8L8/JwmL0A/qKSBqcbzGL4zpyzYoHIFW82zXcYd1mGQqFf8XDFRv4amtkNCON24gfq3E7E6BPGRYZA==} - peerDependencies: - react: 17.x - react-intl: 6.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - transitivePeerDependencies: - - '@types/react' - dev: false - /@commercetools-uikit/number-input@16.7.3(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-yNIEbgK6Mck2PZxjS/R+N2vmRlQoX7RFhgOB/1gCC26unEB4/P7dcc2Cvy/Q+xjh9f5y3j4pjQc+dS5pJVxEAA==} peerDependencies: @@ -7029,27 +6733,6 @@ packages: - typescript dev: false - /@commercetools-uikit/number-input@16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): - resolution: {integrity: sha512-yNIEbgK6Mck2PZxjS/R+N2vmRlQoX7RFhgOB/1gCC26unEB4/P7dcc2Cvy/Q+xjh9f5y3j4pjQc+dS5pJVxEAA==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/input-utils': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - - react-intl - - typescript - dev: false - /@commercetools-uikit/pagination@16.7.3(@types/react@17.0.56)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-SwMggD9J7H68QOl/ZOeVrY6J58hlzb0mlT4kawILk266FZFR4EpXlZxjFPuxHnc8A5NhBYewfxkWZ/joG3yZmQ==} peerDependencies: @@ -7112,51 +6795,20 @@ packages: - typescript dev: false - /@commercetools-uikit/pagination@16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4): - resolution: {integrity: sha512-SwMggD9J7H68QOl/ZOeVrY6J58hlzb0mlT4kawILk266FZFR4EpXlZxjFPuxHnc8A5NhBYewfxkWZ/joG3yZmQ==} - peerDependencies: - react: 17.x - react-intl: 6.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/label': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/number-input': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/secondary-icon-button': 16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4) - '@commercetools-uikit/select-input': 16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/spacings': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - formik: 2.2.9(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - transitivePeerDependencies: - - '@types/react' - - react-dom - - typescript - dev: false - - /@commercetools-uikit/primary-button@16.5.0(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4): + /@commercetools-uikit/primary-button@16.5.0(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-+cmF4mY0bu4mCoaeuB/aGaacJ472CVaYiTVsu7Ifg2FzvsQ0HVEnPAQNib3zgAg3vuRG+iXnkNmt6DKkK05bsg==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 @@ -7166,20 +6818,20 @@ packages: - typescript dev: false - /@commercetools-uikit/primary-button@16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/primary-button@16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-+cmF4mY0bu4mCoaeuB/aGaacJ472CVaYiTVsu7Ifg2FzvsQ0HVEnPAQNib3zgAg3vuRG+iXnkNmt6DKkK05bsg==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 @@ -7212,46 +6864,23 @@ packages: - typescript dev: false - /@commercetools-uikit/primary-button@16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4): - resolution: {integrity: sha512-Ht09jneMTSgwo499ZHqmxdbY/SZ/lOtMbNEgkj0KksESlkO/NYipWWepGTd8mmJgekIjH6w6tix5Pf4yNCe6wA==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false - - /@commercetools-uikit/radio-input@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/radio-input@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-qkFTvAP4JHVgHF5e32Wq1RawvDcqS0afBswjD8nBEr7Rae9+n740L1wt9cfmLzlZl6ANY0lXavk2gue90gVjiQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/input-utils': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/constraints': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/input-utils': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@17.0.56)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-is: 17.0.2 @@ -7261,7 +6890,7 @@ packages: - typescript dev: false - /@commercetools-uikit/secondary-button@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2): + /@commercetools-uikit/secondary-button@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2): resolution: {integrity: sha512-31Kc7fk3XwicjOl37RPJz5xhpXWs6k/PrB0kl8Rqkri3iZG97lu+a1eCNn17Tw1bAsvrZbrHWoeJPeTUF2WyVQ==} peerDependencies: react: 17.x @@ -7270,13 +6899,13 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 @@ -7286,7 +6915,7 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/secondary-button@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@18.2.0): + /@commercetools-uikit/secondary-button@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@18.2.0): resolution: {integrity: sha512-31Kc7fk3XwicjOl37RPJz5xhpXWs6k/PrB0kl8Rqkri3iZG97lu+a1eCNn17Tw1bAsvrZbrHWoeJPeTUF2WyVQ==} peerDependencies: react: 17.x @@ -7295,13 +6924,13 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 @@ -7311,7 +6940,7 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/secondary-button@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0): + /@commercetools-uikit/secondary-button@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react-router-dom@6.14.2)(react@18.2.0): resolution: {integrity: sha512-31Kc7fk3XwicjOl37RPJz5xhpXWs6k/PrB0kl8Rqkri3iZG97lu+a1eCNn17Tw1bAsvrZbrHWoeJPeTUF2WyVQ==} peerDependencies: react: 17.x @@ -7320,13 +6949,13 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 @@ -7361,45 +6990,20 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/secondary-button@16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react-router-dom@5.3.4)(react@17.0.2): - resolution: {integrity: sha512-BVdMaCXjyxGtY28LtfUJm1XyYooQ7+g4gFcCX8FP/yDWUp3dou/ia5R7gVvdNsGmyggn3S62lqNCVgOXARTvYA==} - peerDependencies: - react: 17.x - react-intl: 6.x - react-router-dom: 5.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - react-router-dom: 5.3.4(react@17.0.2) - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/secondary-icon-button@16.5.0(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4): + /@commercetools-uikit/secondary-icon-button@16.5.0(@types/react@17.0.56)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-OqzGr/LliCA56YpSuJWcKWr3tle7d23F8yorOylcAFYmmTjB6+dE804w0XZjmWIzwKh79qcBvVHxQu33EJIGrg==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 @@ -7409,20 +7013,20 @@ packages: - typescript dev: false - /@commercetools-uikit/secondary-icon-button@16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/secondary-icon-button@16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-OqzGr/LliCA56YpSuJWcKWr3tle7d23F8yorOylcAFYmmTjB6+dE804w0XZjmWIzwKh79qcBvVHxQu33EJIGrg==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 @@ -7478,29 +7082,6 @@ packages: - typescript dev: false - /@commercetools-uikit/secondary-icon-button@16.7.3(@types/react@18.2.21)(react@17.0.2)(typescript@5.0.4): - resolution: {integrity: sha512-DjJgIyDXwftJles2hY/UEsSAvukDz+aVXtQYgeLPxbIHdzEdgL2HriGRMEx3/24NnoEnHnVNBXS6gz1vZse2qw==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/spacings': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false - /@commercetools-uikit/select-field@16.7.3(@types/react@17.0.56)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.4): resolution: {integrity: sha512-pY5exFSknTITuJRNosB/6g6qQRdz0qvDVhovEQ9HpiXBaYPG52jw8DClUJvA8REdhiT9uqylNaY9gemVy+vIaA==} peerDependencies: @@ -7577,33 +7158,7 @@ packages: - react-dom dev: false - /@commercetools-uikit/select-input@16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2): - resolution: {integrity: sha512-//W4iSDPVQeo447uhb0h+V3RoHaSe5RIdbBS56LKCvB6D23grTz2xPVnSbFSGh+2ZNt5DjqfJCzE/doN6N6wIw==} - peerDependencies: - react: 17.x - react-intl: 6.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/select-utils': 16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/is-prop-valid': 1.2.1 - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - react-select: 5.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react@17.0.2) - transitivePeerDependencies: - - '@types/react' - - react-dom - dev: false - - /@commercetools-uikit/select-utils@16.5.0(@types/react@18.2.21)(react-dom@18.2.0)(react-intl@6.4.5)(react@18.2.0): + /@commercetools-uikit/select-utils@16.5.0(@types/react@17.0.56)(react-dom@18.2.0)(react-intl@6.4.5)(react@18.2.0): resolution: {integrity: sha512-UfnssQchEQMclMmLqFEwASQIJNu6fxEkIviPyppOlwNJrE2HViKPiALPi/8ha8e9Ua3R4JLp/g9l1kn2yWiEHw==} peerDependencies: react: 17.x @@ -7611,19 +7166,19 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/accessible-button': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/icons': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) - react-select: 5.7.3(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) + react-select: 5.7.3(@types/react@17.0.56)(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-dom @@ -7655,58 +7210,32 @@ packages: - react-dom dev: false - /@commercetools-uikit/select-utils@16.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react-intl@6.4.5)(react@17.0.2): - resolution: {integrity: sha512-NcpmkPYXWHXmtEDF6WbBt1ClG2Bs48FnCoLqttmU8UGFEC+Goh2qUECI4hoEQs4wjLSnGbuYiWjOxTwWqwkZpA==} - peerDependencies: - react: 17.x - react-intl: 6.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/accessible-button': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/icons': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/text': 16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - react-select: 5.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react@17.0.2) - transitivePeerDependencies: - - '@types/react' - - react-dom - dev: false - - /@commercetools-uikit/spacings-inline@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/spacings-inline@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-qpW5MT1WRXiLu5dm1mvEy/czQLI99L0DTjGvA62zIIGZDRA8FPb8cQT2UJpqJ/hpw4bujGTNlzT1IyviynVEKA==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/spacings-inline@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/spacings-inline@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-qpW5MT1WRXiLu5dm1mvEy/czQLI99L0DTjGvA62zIIGZDRA8FPb8cQT2UJpqJ/hpw4bujGTNlzT1IyviynVEKA==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -7729,64 +7258,48 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/spacings-inline@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-8rQlNcURGTGhqHSghl6+HH1MvzFuhZGG5ZpSoQOi4vTD48/0Vhdh7OU8ymxFuWHzxd+tm3n6x6/HFSJb9l0+Kg==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/spacings-inline@16.7.3(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/spacings-inline@16.7.3(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-8rQlNcURGTGhqHSghl6+HH1MvzFuhZGG5ZpSoQOi4vTD48/0Vhdh7OU8ymxFuWHzxd+tm3n6x6/HFSJb9l0+Kg==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) '@commercetools-uikit/utils': 16.7.3(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/spacings-inset-squish@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/spacings-inset-squish@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-mMo60sjGtoxE5hYiZeohvvhRROsN29wdsAekyTr6VhSwb4iT8rlJiS0yc75f3zAZOsA5RXMeb6WcgB1xbU60oA==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/spacings-inset-squish@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/spacings-inset-squish@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-mMo60sjGtoxE5hYiZeohvvhRROsN29wdsAekyTr6VhSwb4iT8rlJiS0yc75f3zAZOsA5RXMeb6WcgB1xbU60oA==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -7809,48 +7322,32 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/spacings-inset-squish@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-wCcmh38tXX9bY5jHqvXB1+qT4nlLWpzqbUTLMvcdGRX+5Q9rTQK7iL67IyZ3bBdXMB95A7nwugf0ITQwHcEzpg==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/spacings-inset@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/spacings-inset@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-rqOchPNu3q1HCtiZhlj4pI6IwVTfPrgwEWwcv8fWWuu8vzL1nJL7V5HhT+HWudPz2B2OZ6ZlJUWCIbE+gL1y+w==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/spacings-inset@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/spacings-inset@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-rqOchPNu3q1HCtiZhlj4pI6IwVTfPrgwEWwcv8fWWuu8vzL1nJL7V5HhT+HWudPz2B2OZ6ZlJUWCIbE+gL1y+w==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -7873,64 +7370,48 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/spacings-inset@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-v9Id7SxapkHpK5NibwF4zcghLN3KukSlsmU+LM1INTg+wW9Ucu65RrIdRz1FC57bjMZg1iwyuB58DEVySHmsZA==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/spacings-inset@16.7.3(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/spacings-inset@16.7.3(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-v9Id7SxapkHpK5NibwF4zcghLN3KukSlsmU+LM1INTg+wW9Ucu65RrIdRz1FC57bjMZg1iwyuB58DEVySHmsZA==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) '@commercetools-uikit/utils': 16.7.3(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/spacings-stack@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/spacings-stack@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-Zlyx2pc+RcN5LTdb+PM8Jw+Msm9JqeFTxGMRw7rI6yNzSo4jaHKO8vXceyJq3Vu5L7vHkO9mbMCtKkoVZYKyRQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) prop-types: 15.8.1 react: 17.0.2 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/spacings-stack@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/spacings-stack@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-Zlyx2pc+RcN5LTdb+PM8Jw+Msm9JqeFTxGMRw7rI6yNzSo4jaHKO8vXceyJq3Vu5L7vHkO9mbMCtKkoVZYKyRQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -7953,65 +7434,49 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/spacings-stack@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-YuXqCRjskONpmE72ls3M9ZyJgLDSDWdbjf6iYlBlMmd1lKL2R9lUBwADaZELAcIPZfgJjjxTfwQ19k6OhyAfxw==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/spacings-stack@16.7.3(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/spacings-stack@16.7.3(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-YuXqCRjskONpmE72ls3M9ZyJgLDSDWdbjf6iYlBlMmd1lKL2R9lUBwADaZELAcIPZfgJjjxTfwQ19k6OhyAfxw==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) '@commercetools-uikit/utils': 16.7.3(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/spacings@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/spacings@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-RQImM1i2InTSCo+9FgDP4yRl4+nBztKPgpIaqyGPQeLLImZquzjyN5mY0zo6E5+ZZasEnvAzKob/LHjuZg5R0w==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings-inset-squish': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@18.2.21)(react@17.0.2) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/spacings-inset-squish': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@17.0.56)(react@17.0.2) react: 17.0.2 transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/spacings@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/spacings@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-RQImM1i2InTSCo+9FgDP4yRl4+nBztKPgpIaqyGPQeLLImZquzjyN5mY0zo6E5+ZZasEnvAzKob/LHjuZg5R0w==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-inset-squish': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@18.2.21)(react@18.2.0) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-inset': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-inset-squish': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@17.0.56)(react@18.2.0) react: 18.2.0 transitivePeerDependencies: - '@types/react' @@ -8033,34 +7498,18 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/spacings@16.7.3(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-uVWgwG2sAxVgdSIjCNflzEfl2pI3Nj+3lsJfgr8UrMIrTgCQA9eWLNdeUcxmFf92z61SL2tsNB/lV7hlBOxzsw==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/spacings-inline': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings-inset': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings-inset-squish': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/spacings-stack': 16.7.3(@types/react@18.2.21)(react@17.0.2) - react: 17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/stamp@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0): + /@commercetools-uikit/stamp@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0): resolution: {integrity: sha512-ywDtwb8LyvSPwxRORZtRaFI/81deMgVhWJG38BY6hG7q+Vq3YUZvDqcUS+J6/e6WFGX+NVTXzrf0SPWuqM95SQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/spacings-inline': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -8068,22 +7517,22 @@ packages: - react-intl dev: false - /@commercetools-uikit/text-field@16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/text-field@16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-wZbo9+BoKYYDocctGRrSk/HZKwlS0Lk9184zRcF89EY+FPctJ8u4E7qDPBZ96xWgYQlQ9xGKQmB3KRd/HIYt2Q==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/field-errors': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/field-label': 16.5.0(@types/react@18.2.21)(react@18.2.0)(typescript@5.2.2) - '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/text-input': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/constraints': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/field-errors': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/field-label': 16.5.0(@types/react@17.0.56)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/spacings-stack': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/text-input': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 react-intl: 6.4.5(react@18.2.0)(typescript@5.2.2) @@ -8140,19 +7589,19 @@ packages: - typescript dev: false - /@commercetools-uikit/text-input@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2): + /@commercetools-uikit/text-input@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-xdpPqWJrmHnHEc2+d/7ttGZNQYI66vTVUF9k9kfeK9KQh1yFwjbZ0JWd4T0BQTE1QBUB0jirytAKghAbzHObFw==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) - '@commercetools-uikit/input-utils': 16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) + '@commercetools-uikit/constraints': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) + '@commercetools-uikit/input-utils': 16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0)(typescript@5.2.2) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 transitivePeerDependencies: @@ -8203,7 +7652,7 @@ packages: - typescript dev: false - /@commercetools-uikit/text@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2): + /@commercetools-uikit/text@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@17.0.2): resolution: {integrity: sha512-SLFqEIAiscOtAOHp7RJaO00KjD5P32KCjytmNBuUH70ew8ycI1deR2ELL+NDqmzLwGl3sqfCzbZgJNdRlXr6ng==} peerDependencies: react: 17.x @@ -8211,9 +7660,9 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 @@ -8223,7 +7672,7 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/text@16.5.0(@types/react@18.2.21)(react-intl@6.4.5)(react@18.2.0): + /@commercetools-uikit/text@16.5.0(@types/react@17.0.56)(react-intl@6.4.5)(react@18.2.0): resolution: {integrity: sha512-SLFqEIAiscOtAOHp7RJaO00KjD5P32KCjytmNBuUH70ew8ycI1deR2ELL+NDqmzLwGl3sqfCzbZgJNdRlXr6ng==} peerDependencies: react: 17.x @@ -8231,9 +7680,9 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 @@ -8263,39 +7712,19 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/text@16.7.3(@types/react@18.2.21)(react-intl@6.4.5)(react@17.0.2): - resolution: {integrity: sha512-SiRlEr1Icn85sfGmdZKSXS4r795DxvCBipeYCOidkdKJ60o4vS2R0KVmO3n02WbeaB19yZpqSgz+e09AwZs5LA==} - peerDependencies: - react: 17.x - react-intl: 6.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-intl: 6.4.5(react@17.0.2)(typescript@5.0.4) - warning: 4.0.3 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/tooltip@16.5.0(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/tooltip@16.5.0(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-IAdCOh0epg9SbbbIq/tEcMKwAsLXIXeYF3NLN7FJOibMihq4R2JqrQngH8PDi9bS9wmzlBdV20vDgwgfxxEdpQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.5.0(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/constraints': 16.5.0(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/hooks': 16.5.0(react@17.0.2) '@commercetools-uikit/utils': 16.5.0(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 @@ -8305,63 +7734,41 @@ packages: - '@types/react' dev: false - /@commercetools-uikit/tooltip@16.5.0(@types/react@18.2.21)(react@18.2.0): + /@commercetools-uikit/tooltip@16.5.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-IAdCOh0epg9SbbbIq/tEcMKwAsLXIXeYF3NLN7FJOibMihq4R2JqrQngH8PDi9bS9wmzlBdV20vDgwgfxxEdpQ==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.5.0(@types/react@18.2.21)(react@18.2.0) - '@commercetools-uikit/design-system': 16.5.0(@types/react@18.2.21) + '@commercetools-uikit/constraints': 16.5.0(@types/react@17.0.56)(react@18.2.0) + '@commercetools-uikit/design-system': 16.5.0(@types/react@17.0.56) '@commercetools-uikit/hooks': 16.5.0(react@18.2.0) '@commercetools-uikit/utils': 16.5.0(react@18.2.0) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0) - lodash: 4.17.21 - prop-types: 15.8.1 - react: 18.2.0 - react-is: 17.0.2 - use-popper: 1.1.6(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - dev: false - - /@commercetools-uikit/tooltip@16.7.3(@types/react@17.0.56)(react@17.0.2): - resolution: {integrity: sha512-KeoyU3B78y88Qag5OjEuINdi95kFjABNWdmk8eYIn7xm1F0mq9bk8lQ6fGNmbVcn/IOEYxOxJHFvJ40BA+zoMg==} - peerDependencies: - react: 17.x - dependencies: - '@babel/runtime': 7.22.15 - '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.7.3(@types/react@17.0.56)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) - '@commercetools-uikit/hooks': 16.7.3(react@17.0.2) - '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0) lodash: 4.17.21 prop-types: 15.8.1 - react: 17.0.2 + react: 18.2.0 react-is: 17.0.2 - use-popper: 1.1.6(react@17.0.2) + use-popper: 1.1.6(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@commercetools-uikit/tooltip@16.7.3(@types/react@18.2.21)(react@17.0.2): + /@commercetools-uikit/tooltip@16.7.3(@types/react@17.0.56)(react@17.0.2): resolution: {integrity: sha512-KeoyU3B78y88Qag5OjEuINdi95kFjABNWdmk8eYIn7xm1F0mq9bk8lQ6fGNmbVcn/IOEYxOxJHFvJ40BA+zoMg==} peerDependencies: react: 17.x dependencies: '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.22.15 - '@commercetools-uikit/constraints': 16.7.3(@types/react@18.2.21)(react@17.0.2) - '@commercetools-uikit/design-system': 16.7.3(@types/react@18.2.21) + '@commercetools-uikit/constraints': 16.7.3(@types/react@17.0.56)(react@17.0.2) + '@commercetools-uikit/design-system': 16.7.3(@types/react@17.0.56) '@commercetools-uikit/hooks': 16.7.3(react@17.0.2) '@commercetools-uikit/utils': 16.7.3(react@17.0.2) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@17.0.2) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@17.0.2) lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 @@ -8850,28 +8257,7 @@ packages: hoist-non-react-statics: 3.3.2 react: 17.0.2 - /@emotion/react@11.11.0(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-ZSK3ZJsNkwfjT3JpDAWJZlrGD81Z3ytNDsxw1LKq1o+xkmO5pnWfr6gmCC8gHEFf3nSSX/09YrG67jybNPxSUw==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.22.15 - '@emotion/babel-plugin': 11.11.0 - '@emotion/cache': 11.11.0 - '@emotion/serialize': 1.1.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.2) - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 - '@types/react': 18.2.21 - hoist-non-react-statics: 3.3.2 - react: 17.0.2 - dev: false - - /@emotion/react@11.11.0(@types/react@18.2.21)(react@18.2.0): + /@emotion/react@11.11.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-ZSK3ZJsNkwfjT3JpDAWJZlrGD81Z3ytNDsxw1LKq1o+xkmO5pnWfr6gmCC8gHEFf3nSSX/09YrG67jybNPxSUw==} peerDependencies: '@types/react': '*' @@ -8887,7 +8273,7 @@ packages: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 - '@types/react': 18.2.21 + '@types/react': 17.0.56 hoist-non-react-statics: 3.3.2 react: 18.2.0 @@ -8938,28 +8324,7 @@ packages: react: 17.0.2 dev: false - /@emotion/styled@11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.22.15 - '@emotion/babel-plugin': 11.11.0 - '@emotion/is-prop-valid': 1.2.1 - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@emotion/serialize': 1.1.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.2) - '@emotion/utils': 1.2.1 - '@types/react': 18.2.21 - react: 17.0.2 - dev: false - - /@emotion/styled@11.11.0(@emotion/react@11.11.0)(@types/react@18.2.21)(react@18.2.0): + /@emotion/styled@11.11.0(@emotion/react@11.11.0)(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -8972,11 +8337,11 @@ packages: '@babel/runtime': 7.22.15 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.1 - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) '@emotion/serialize': 1.1.2 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) '@emotion/utils': 1.2.1 - '@types/react': 18.2.21 + '@types/react': 17.0.56 react: 18.2.0 dev: false @@ -9218,15 +8583,6 @@ packages: eslint: 8.40.0 eslint-visitor-keys: 3.4.3 - /@eslint-community/eslint-utils@4.4.0(eslint@8.49.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - dependencies: - eslint: 8.49.0 - eslint-visitor-keys: 3.4.3 - /@eslint-community/regexpp@4.5.0: resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -9235,10 +8591,6 @@ packages: resolution: {integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - /@eslint-community/regexpp@4.8.1: - resolution: {integrity: sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - /@eslint/eslintrc@0.4.3: resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} engines: {node: ^10.12.0 || >=12.0.0} @@ -9255,22 +8607,6 @@ packages: transitivePeerDependencies: - supports-color - /@eslint/eslintrc@2.0.3: - resolution: {integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) - espree: 9.5.2 - globals: 13.20.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - /@eslint/eslintrc@2.1.2: resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9291,10 +8627,6 @@ packages: resolution: {integrity: sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@eslint/js@8.49.0: - resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@faker-js/faker@7.6.0: resolution: {integrity: sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==} engines: {node: '>=14.0.0', npm: '>=6.0.0'} @@ -10687,16 +10019,6 @@ packages: dependencies: '@hapi/hoek': 9.3.0 - /@humanwhocodes/config-array@0.11.11: - resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} - engines: {node: '>=10.10.0'} - dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4(supports-color@8.1.1) - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - /@humanwhocodes/config-array@0.11.8: resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} engines: {node: '>=10.10.0'} @@ -11027,13 +10349,6 @@ packages: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.19 - /@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 - dev: false - /@jridgewell/sourcemap-codec@1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} @@ -13771,13 +13086,6 @@ packages: '@types/scheduler': 0.16.3 csstype: 3.1.2 - /@types/react@18.2.21: - resolution: {integrity: sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 - csstype: 3.1.2 - /@types/redux-logger@3.0.9: resolution: {integrity: sha512-cwYhVbYNgH01aepeMwhd0ABX6fhVB2rcQ9m80u8Fl50ZODhsZ8RhQArnLTkE7/Zrfq4Sz/taNoF7DQy9pCZSKg==} dependencies: @@ -13991,34 +13299,6 @@ packages: typescript: 5.2.2 transitivePeerDependencies: - supports-color - dev: false - - /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@eslint-community/regexpp': 4.8.0 - '@typescript-eslint/parser': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.49.0 - graphemer: 1.4.0 - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - semver: 7.5.2 - tsutils: 3.21.0(typescript@5.2.2) - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color /@typescript-eslint/parser@5.62.0(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} @@ -14039,25 +13319,6 @@ packages: transitivePeerDependencies: - supports-color - /@typescript-eslint/parser@5.62.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.49.0 - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/scope-manager@5.58.0: resolution: {integrity: sha512-b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -14091,26 +13352,6 @@ packages: typescript: 5.2.2 transitivePeerDependencies: - supports-color - dev: false - - /@typescript-eslint/type-utils@5.62.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) - '@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.49.0 - tsutils: 3.21.0(typescript@5.2.2) - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color /@typescript-eslint/types@5.58.0: resolution: {integrity: sha512-JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g==} @@ -14200,26 +13441,6 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: false - - /@typescript-eslint/utils@5.62.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.1 - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) - eslint: 8.49.0 - eslint-scope: 5.1.1 - semver: 7.5.2 - transitivePeerDependencies: - - supports-color - - typescript /@typescript-eslint/visitor-keys@5.58.0: resolution: {integrity: sha512-/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA==} @@ -14265,7 +13486,7 @@ packages: hasBin: true dependencies: '@mapbox/node-pre-gyp': 1.0.10 - acorn: 8.8.2 + acorn: 8.10.0 bindings: 1.5.0 estree-walker: 2.0.2 glob: 7.2.3 @@ -14572,13 +13793,6 @@ packages: dependencies: tslib: 2.5.0 - /@wry/context@0.7.3: - resolution: {integrity: sha512-Nl8WTesHp89RF803Se9X3IiHjdmLBrIvPMaJkl+rKVJAYyPsz1TEUbu89943HpvujtSJgDUx9W4vZw3K1Mr3sA==} - engines: {node: '>=8'} - dependencies: - tslib: 2.6.2 - dev: false - /@wry/equality@0.1.11: resolution: {integrity: sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==} dependencies: @@ -14591,26 +13805,12 @@ packages: dependencies: tslib: 2.5.0 - /@wry/equality@0.5.6: - resolution: {integrity: sha512-D46sfMTngaYlrH+OspKf8mIJETntFnf6Hsjb0V41jAXJ7Bx2kB8Rv8RCUujuVWYttFtHkUNp7g+FwxNQAr6mXA==} - engines: {node: '>=8'} - dependencies: - tslib: 2.6.2 - dev: false - /@wry/trie@0.3.2: resolution: {integrity: sha512-yRTyhWSls2OY/pYLfwff867r8ekooZ4UI+/gxot5Wj8EFwSf2rG+n+Mo/6LoLQm1TKA4GRj2+LCpbfS937dClQ==} engines: {node: '>=8'} dependencies: tslib: 2.5.0 - /@wry/trie@0.4.3: - resolution: {integrity: sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==} - engines: {node: '>=8'} - dependencies: - tslib: 2.6.2 - dev: false - /@xmldom/xmldom@0.8.7: resolution: {integrity: sha512-sI1Ly2cODlWStkINzqGrZ8K6n+MTSbAeQnAipGyL+KZCXuHaRlj2gyyy8B/9MvsFFqN7XHryQnB2QwhzvJXovg==} engines: {node: '>=10.0.0'} @@ -14662,7 +13862,7 @@ packages: /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: - acorn: 8.8.2 + acorn: 8.10.0 acorn-walk: 8.2.0 dev: false @@ -14673,14 +13873,6 @@ packages: dependencies: acorn: 8.8.2 - /acorn-import-assertions@1.9.0(acorn@8.10.0): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 - dependencies: - acorn: 8.10.0 - dev: false - /acorn-jsx@5.3.2(acorn@7.4.1): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: @@ -14695,18 +13887,11 @@ packages: dependencies: acorn: 8.10.0 - /acorn-jsx@5.3.2(acorn@8.8.2): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - acorn: 8.8.2 - /acorn-loose@8.3.0: resolution: {integrity: sha512-75lAs9H19ldmW+fAbyqHdjgdCrz0pWGXKmnqFoh8PyVd1L2RIb4RzYrSjmopeqv3E1G3/Pimu6GgLlrGbrkF7w==} engines: {node: '>=0.4.0'} dependencies: - acorn: 8.8.2 + acorn: 8.10.0 /acorn-walk@8.2.0: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} @@ -14855,7 +14040,7 @@ packages: resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==} engines: {node: '>=14.16'} dependencies: - type-fest: 3.8.0 + type-fest: 3.13.1 dev: false /ansi-html-community@0.0.8: @@ -14920,14 +14105,14 @@ packages: '@apollo/client': 3.7.14(graphql@16.6.0)(react-dom@17.0.2)(react@17.0.2) dev: false - /apollo-link-rest@0.9.0(@apollo/client@3.8.3)(graphql@16.6.0)(qs@6.11.2): + /apollo-link-rest@0.9.0(@apollo/client@3.7.14)(graphql@16.6.0)(qs@6.11.2): resolution: {integrity: sha512-kuXjR56Y12w0TZcqwVaONKlipB6g3Ya1dAy4NMCaylPpNXq6tO+qzQFPUyDJC7B0JoJPIFjxPV2rAet4uGM4UQ==} peerDependencies: '@apollo/client': '>=3' graphql: '>=0.11' qs: '>=6' dependencies: - '@apollo/client': 3.8.3(graphql@16.6.0)(react-dom@17.0.2)(react@17.0.2) + '@apollo/client': 3.7.14(graphql@16.6.0)(react-dom@17.0.2)(react@17.0.2) graphql: 16.6.0 qs: 6.11.2 dev: false @@ -15235,7 +14420,7 @@ packages: '@babel/core': 7.22.17 dev: false - /babel-eslint@10.1.0(eslint@8.49.0): + /babel-eslint@10.1.0(eslint@8.40.0): resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} engines: {node: '>=6'} deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. @@ -15246,7 +14431,7 @@ packages: '@babel/parser': 7.22.16 '@babel/traverse': 7.22.17 '@babel/types': 7.22.17 - eslint: 8.49.0 + eslint: 8.40.0 eslint-visitor-keys: 1.3.0 resolve: 1.22.4 transitivePeerDependencies: @@ -18013,14 +17198,6 @@ packages: graceful-fs: 4.2.11 tapable: 2.2.1 - /enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - dev: false - /enquirer@2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} @@ -18181,10 +17358,6 @@ packages: /es-module-lexer@1.2.1: resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==} - /es-module-lexer@1.3.1: - resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} - dev: false - /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} @@ -18554,16 +17727,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/parser': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - babel-eslint: 10.1.0(eslint@8.49.0) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.40.0)(typescript@5.2.2) + '@typescript-eslint/parser': 5.62.0(eslint@8.40.0)(typescript@5.2.2) + babel-eslint: 10.1.0(eslint@8.40.0) confusing-browser-globals: 1.0.11 eslint: 7.32.0 - eslint-plugin-flowtype: 5.10.0(eslint@8.49.0) + eslint-plugin-flowtype: 5.10.0(eslint@8.40.0) eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.40.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.49.0) - eslint-plugin-react: 7.33.2(eslint@8.49.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.49.0) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.40.0) + eslint-plugin-react: 7.33.2(eslint@8.40.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.40.0) typescript: 5.2.2 /eslint-formatter-pretty@4.1.0: @@ -18660,13 +17833,13 @@ packages: regexpp: 3.2.0 dev: false - /eslint-plugin-flowtype@5.10.0(eslint@8.49.0): + /eslint-plugin-flowtype@5.10.0(eslint@8.40.0): resolution: {integrity: sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: eslint: ^7.1.0 dependencies: - eslint: 8.49.0 + eslint: 8.40.0 lodash: 4.17.21 string-natural-compare: 3.0.1 @@ -18818,65 +17991,23 @@ packages: object.entries: 1.1.6 object.fromentries: 2.0.6 semver: 6.3.0 - dev: false - - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.49.0): - resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - '@babel/runtime': 7.22.15 - aria-query: 5.1.3 - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - ast-types-flow: 0.0.7 - axe-core: 4.6.3 - axobject-query: 3.1.1 - damerau-levenshtein: 1.0.8 - emoji-regex: 9.2.2 - eslint: 8.49.0 - has: 1.0.3 - jsx-ast-utils: 3.3.3 - language-tags: 1.0.5 - minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - semver: 6.3.0 /eslint-plugin-node@11.1.0(eslint@8.40.0): resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} engines: {node: '>=8.10.0'} peerDependencies: - eslint: '>=5.16.0' - dependencies: - eslint: 8.40.0 - eslint-plugin-es: 3.0.1(eslint@8.40.0) - eslint-utils: 2.1.0 - ignore: 5.2.4 - minimatch: 3.1.2 - resolve: 1.22.2 - semver: 6.3.0 - dev: false - - /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.40.0)(prettier@2.8.8): - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - eslint: '>=7.28.0' - eslint-config-prettier: '*' - prettier: '>=2.0.0' - peerDependenciesMeta: - eslint-config-prettier: - optional: true + eslint: '>=5.16.0' dependencies: eslint: 8.40.0 - eslint-config-prettier: 8.10.0(eslint@8.40.0) - prettier: 2.8.8 - prettier-linter-helpers: 1.0.0 + eslint-plugin-es: 3.0.1(eslint@8.40.0) + eslint-utils: 2.1.0 + ignore: 5.2.4 + minimatch: 3.1.2 + resolve: 1.22.2 + semver: 6.3.0 dev: false - /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.40.0)(prettier@3.0.3): + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.40.0)(prettier@2.8.8): resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -18889,7 +18020,7 @@ packages: dependencies: eslint: 8.40.0 eslint-config-prettier: 8.10.0(eslint@8.40.0) - prettier: 3.0.3 + prettier: 2.8.8 prettier-linter-helpers: 1.0.0 dev: false @@ -18900,15 +18031,6 @@ packages: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: eslint: 8.40.0 - dev: false - - /eslint-plugin-react-hooks@4.6.0(eslint@8.49.0): - resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - dependencies: - eslint: 8.49.0 /eslint-plugin-react@7.33.2(eslint@8.40.0): resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} @@ -18933,31 +18055,6 @@ packages: resolve: 2.0.0-next.4 semver: 6.3.1 string.prototype.matchall: 4.0.8 - dev: false - - /eslint-plugin-react@7.33.2(eslint@8.49.0): - resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 - doctrine: 2.1.0 - es-iterator-helpers: 1.0.14 - eslint: 8.49.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.3.3 - minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 - prop-types: 15.8.1 - resolve: 2.0.0-next.4 - semver: 6.3.1 - string.prototype.matchall: 4.0.8 /eslint-plugin-testing-library@5.11.1(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} @@ -18990,13 +18087,6 @@ packages: esrecurse: 4.3.0 estraverse: 5.3.0 - /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - /eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} @@ -19090,7 +18180,7 @@ packages: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.40.0) '@eslint-community/regexpp': 4.5.0 - '@eslint/eslintrc': 2.0.3 + '@eslint/eslintrc': 2.1.2 '@eslint/js': 8.40.0 '@humanwhocodes/config-array': 0.11.8 '@humanwhocodes/module-importer': 1.0.1 @@ -19131,51 +18221,6 @@ packages: transitivePeerDependencies: - supports-color - /eslint@8.49.0: - resolution: {integrity: sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) - '@eslint-community/regexpp': 4.8.1 - '@eslint/eslintrc': 2.1.2 - '@eslint/js': 8.49.0 - '@humanwhocodes/config-array': 0.11.11 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@8.1.1) - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.5.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - find-up: 5.0.0 - glob-parent: 6.0.2 - globals: 13.21.0 - graphemer: 1.4.0 - ignore: 5.2.4 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color - /espree@7.3.1: resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} engines: {node: ^10.12.0 || >=12.0.0} @@ -19188,8 +18233,8 @@ packages: resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) eslint-visitor-keys: 3.4.3 /espree@9.6.1: @@ -20319,7 +19364,7 @@ packages: '@babel/core': 7.22.17 '@babel/runtime': 7.22.15 '@emotion/babel-preset-css-prop': 11.11.0(@babel/core@7.22.17) - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) gatsby: 5.9.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) dev: false @@ -20814,8 +19859,8 @@ packages: '@parcel/core': 2.8.3 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack-dev-server@4.15.0)(webpack@5.82.1) '@types/http-proxy': 1.17.10 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/parser': 5.62.0(eslint@8.49.0)(typescript@5.2.2) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.40.0)(typescript@5.2.2) + '@typescript-eslint/parser': 5.62.0(eslint@8.40.0)(typescript@5.2.2) '@vercel/webpack-asset-relocator-loader': 1.7.3 acorn-loose: 8.3.0 acorn-walk: 8.2.0 @@ -20854,11 +19899,11 @@ packages: error-stack-parser: 2.1.4 eslint: 7.32.0 eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.28.1)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.32.0)(typescript@5.2.2) - eslint-plugin-flowtype: 5.10.0(eslint@8.49.0) + eslint-plugin-flowtype: 5.10.0(eslint@8.40.0) eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.40.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.49.0) - eslint-plugin-react: 7.33.2(eslint@8.49.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.49.0) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.40.0) + eslint-plugin-react: 7.33.2(eslint@8.40.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.40.0) eslint-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.82.1) event-source-polyfill: 1.0.31 execa: 5.1.1 @@ -23749,7 +22794,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.8.2 + acorn: 8.10.0 acorn-globals: 7.0.1 cssom: 0.5.0 cssstyle: 2.3.0 @@ -25646,18 +24691,7 @@ packages: webpack: 5.82.1(uglify-js@3.17.4) dev: false - /moment-locales-webpack-plugin@1.2.0(moment@2.29.4)(webpack@5.88.2): - resolution: {integrity: sha512-QAi5v0OlPUP7GXviKMtxnpBAo8WmTHrUNN7iciAhNOEAd9evCOvuN0g1N7ThIg3q11GLCkjY1zQ2saRcf/43nQ==} - peerDependencies: - moment: ^2.8.0 - webpack: ^1 || ^2 || ^3 || ^4 || ^5 - dependencies: - lodash.difference: 4.5.0 - moment: 2.29.4 - webpack: 5.88.2 - dev: false - - /moment-timezone-data-webpack-plugin@1.5.1(moment-timezone@0.5.43)(webpack@5.88.2): + /moment-timezone-data-webpack-plugin@1.5.1(moment-timezone@0.5.43)(webpack@5.82.1): resolution: {integrity: sha512-1le6a35GgYdWMVYFzrfpE/F6Pk4bj0M3QKD6Iv6ba9LqWGoVqHQRHyCTLvLis5E1J98Sz40ET6yhZzMVakwpjg==} peerDependencies: moment-timezone: '>= 0.1.0' @@ -25666,7 +24700,7 @@ packages: find-cache-dir: 3.3.2 make-dir: 3.1.0 moment-timezone: 0.5.43 - webpack: 5.88.2 + webpack: 5.82.1(uglify-js@3.17.4) dev: false /moment-timezone@0.5.40: @@ -26375,14 +25409,6 @@ packages: '@wry/context': 0.7.0 '@wry/trie': 0.3.2 - /optimism@0.17.5: - resolution: {integrity: sha512-TEcp8ZwK1RczmvMnvktxHSF2tKgMWjJ71xEFGX5ApLh67VsMSTy1ZUlipJw8W+KaqgOmQ+4pqwkeivY89j+4Vw==} - dependencies: - '@wry/context': 0.7.3 - '@wry/trie': 0.4.3 - tslib: 2.6.2 - dev: false - /optionator@0.8.3: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} engines: {node: '>= 0.8.0'} @@ -26405,17 +25431,6 @@ packages: type-check: 0.4.0 word-wrap: 1.2.3 - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} - dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 - /ora@5.4.1: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} @@ -27456,12 +26471,6 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - /prettier@3.0.3: - resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} - engines: {node: '>=14'} - hasBin: true - dev: false - /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} @@ -27861,17 +26870,6 @@ packages: schema-utils: 3.1.2 webpack: 5.82.1(uglify-js@3.17.4) - /raw-loader@4.0.2(webpack@5.88.2): - resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - dependencies: - loader-utils: 2.0.4 - schema-utils: 3.1.2 - webpack: 5.88.2 - dev: false - /rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true @@ -28291,28 +27289,7 @@ packages: - '@types/react' dev: false - /react-select@5.7.3(@types/react@18.2.21)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-z8i3NCuFFWL3w27xq92rBkVI2onT0jzIIPe480HlBjXJ3b5o6Q+Clp4ydyeKrj9DZZ3lrjawwLC5NGl0FSvUDg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - '@babel/runtime': 7.22.15 - '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@17.0.2) - '@floating-ui/dom': 1.2.6 - '@types/react-transition-group': 4.4.5 - memoize-one: 6.0.0 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-transition-group: 4.4.5(react-dom@17.0.2)(react@17.0.2) - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@17.0.2) - transitivePeerDependencies: - - '@types/react' - dev: false - - /react-select@5.7.3(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): + /react-select@5.7.3(@types/react@17.0.56)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-z8i3NCuFFWL3w27xq92rBkVI2onT0jzIIPe480HlBjXJ3b5o6Q+Clp4ydyeKrj9DZZ3lrjawwLC5NGl0FSvUDg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -28320,7 +27297,7 @@ packages: dependencies: '@babel/runtime': 7.22.15 '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.0(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.0(@types/react@17.0.56)(react@18.2.0) '@floating-ui/dom': 1.2.6 '@types/react-transition-group': 4.4.5 memoize-one: 6.0.0 @@ -28328,7 +27305,7 @@ packages: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@18.2.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.56)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false @@ -28360,21 +27337,7 @@ packages: - '@types/react' dev: false - /react-textarea-autosize@8.4.0(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-YrTFaEHLgJsi8sJVYHBzYn+mkP3prGkmP2DKb/tm0t7CLJY5t1Rxix8070LAKb0wby7bl/lf2EeHkuMihMZMwQ==} - engines: {node: '>=10'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - '@babel/runtime': 7.22.15 - react: 17.0.2 - use-composed-ref: 1.3.0(react@17.0.2) - use-latest: 1.2.1(@types/react@18.2.21)(react@17.0.2) - transitivePeerDependencies: - - '@types/react' - dev: false - - /react-textarea-autosize@8.4.0(@types/react@18.2.21)(react@18.2.0): + /react-textarea-autosize@8.4.0(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-YrTFaEHLgJsi8sJVYHBzYn+mkP3prGkmP2DKb/tm0t7CLJY5t1Rxix8070LAKb0wby7bl/lf2EeHkuMihMZMwQ==} engines: {node: '>=10'} peerDependencies: @@ -28383,7 +27346,7 @@ packages: '@babel/runtime': 7.22.15 react: 18.2.0 use-composed-ref: 1.3.0(react@18.2.0) - use-latest: 1.2.1(@types/react@18.2.21)(react@18.2.0) + use-latest: 1.2.1(@types/react@17.0.56)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false @@ -28701,14 +27664,14 @@ packages: dependencies: jsesc: 0.5.0 - /rehype-react@7.2.0(@types/react@18.2.21): + /rehype-react@7.2.0(@types/react@17.0.56): resolution: {integrity: sha512-MHYyCHka+3TtzBMKtcuvVOBAbI1HrfoYA+XH9m7/rlrQQATCPwtJnPdkxKKcIGF8vc9mxqQja9r9f+FHItQeWg==} peerDependencies: '@types/react': '>=17' dependencies: '@mapbox/hast-util-table-cell-style': 0.2.0 '@types/hast': 2.3.4 - '@types/react': 18.2.21 + '@types/react': 17.0.56 hast-to-hyperscript: 10.0.3 hast-util-whitespace: 2.0.1 unified: 10.1.2 @@ -28778,8 +27741,8 @@ packages: deprecated: Use rehype-mdx-code-props instead dependencies: '@types/mdast': 3.0.11 - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) estree-util-is-identifier-name: 2.1.0 hast-util-to-string: 2.0.0 unified: 10.1.2 @@ -29289,15 +28252,6 @@ packages: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} - dependencies: - '@types/json-schema': 7.0.12 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) - dev: false - /schema-utils@4.0.0: resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} engines: {node: '>= 12.13.0'} @@ -30633,50 +29587,15 @@ packages: uglify-js: 3.17.4 webpack: 5.82.1(uglify-js@3.17.4) - /terser-webpack-plugin@5.3.9(webpack@5.88.2): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - '@jridgewell/trace-mapping': 0.3.19 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.19.4 - webpack: 5.88.2 - dev: false - /terser@5.16.9: resolution: {integrity: sha512-HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg==} engines: {node: '>=10'} hasBin: true dependencies: '@jridgewell/source-map': 0.3.3 - acorn: 8.8.2 - commander: 2.20.3 - source-map-support: 0.5.21 - - /terser@5.19.4: - resolution: {integrity: sha512-6p1DjHeuluwxDXcuT9VR8p64klWJKo1ILiy19s6C9+0Bh2+NWTX6nD9EPppiER4ICkHDVB1RkVpin/YW2nQn/g==} - engines: {node: '>=10'} - hasBin: true - dependencies: - '@jridgewell/source-map': 0.3.5 acorn: 8.10.0 commander: 2.20.3 source-map-support: 0.5.21 - dev: false /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} @@ -31228,12 +30147,6 @@ packages: /type-fest@3.13.1: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} - dev: true - - /type-fest@3.8.0: - resolution: {integrity: sha512-FVNSzGQz9Th+/9R6Lvv7WIAkstylfHN2/JYxkyhhmKFYh9At2DST8t6L6Lref9eYO8PXFTfG9Sg1Agg0K3vq3Q==} - engines: {node: '>=14.16'} - dev: false /type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} @@ -31812,20 +30725,7 @@ packages: react: 17.0.2 dev: false - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 18.2.21 - react: 17.0.2 - dev: false - - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.21)(react@18.2.0): + /use-isomorphic-layout-effect@1.1.2(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -31834,7 +30734,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.21 + '@types/react': 17.0.56 react: 18.2.0 dev: false @@ -31852,21 +30752,7 @@ packages: use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.56)(react@17.0.2) dev: false - /use-latest@1.2.1(@types/react@18.2.21)(react@17.0.2): - resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 18.2.21 - react: 17.0.2 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@17.0.2) - dev: false - - /use-latest@1.2.1(@types/react@18.2.21)(react@18.2.0): + /use-latest@1.2.1(@types/react@17.0.56)(react@18.2.0): resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -31875,9 +30761,9 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.21 + '@types/react': 17.0.56 react: 18.2.0 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@18.2.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.56)(react@18.2.0) dev: false /use-popper@1.1.6(react@17.0.2): @@ -32399,46 +31285,6 @@ packages: - esbuild - uglify-js - /webpack@5.88.2: - resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 1.0.1 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.21.10 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.1 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(webpack@5.88.2) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - dev: false - /webpackbar@5.0.2(webpack@5.82.1): resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==} engines: {node: '>=12'}