Skip to content

build(deps-dev): bump the sumup group across 1 directory with 3 updates - #964

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/sumup-15c218d896
Open

build(deps-dev): bump the sumup group across 1 directory with 3 updates#964
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/sumup-15c218d896

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the sumup group with 3 updates in the / directory: @sumup-oss/circuit-ui, @sumup-oss/design-tokens and @sumup-oss/illustrations.

Updates @sumup-oss/circuit-ui from 11.19.0 to 12.0.0

Release notes

Sourced from @​sumup-oss/circuit-ui's releases.

@​sumup-oss/circuit-ui@​12.0.0

Major Changes

  • #3884 b560f11 Thanks @​sirineJ! - Removed the Flag component. Import the component from @sumup-oss/icons instead.

  • #3624 2775359 Thanks @​nicosommi! - Replaced the PhoneNumberInput component's native <select> for the country code with a searchable AutocompleteInput combobox. Country options show flag icons and can be filtered by name or ISO code.

  • #3624 2775359 Thanks @​nicosommi! - Removed the shouldDisplayCountryNames prop from the AutocompleteInput component. Use the internationalization context or the locale prop to prevent hydration mismatches.

    Use the no-deprecated-icons ESLint rule to automatically apply the replacements.

  • #3679 d1ef773 Thanks @​missating! - Removed the deprecated Italic decoration prop from the Numeral component following the brand refresh.

  • #3680 6f6cd02 Thanks @​sirineJ! - Removed the uniqueId utility from the public API. Use React’s useId hook instead.

  • #3679 d1ef773 Thanks @​missating! - Removed the menu ARIA role from the ActionMenu component. The role="menu" pattern is reserved for complex, desktop-like applications and is not appropriate for the ActionMenu component.

  • #3745 001e42c Thanks @​connor-baer! - Removed the deprecated label prop from the IconButton component. Use the children prop for the label and the icon prop for the icon instead.

  • #3647 1ea4fe8 Thanks @​missating! - Dropped support for Node.js 22. Node.js 24 or higher is now required.

  • #3685 9992a96 Thanks @​sirineJ! - Remove deprecated style mixins in favor of utility classes.

  • #3679 d1ef773 Thanks @​missating! - Removed the default value for the alt prop in the Avatar component. The alt prop is now required.

  • #3821 da7668d Thanks @​sirineJ! - Redesigned the TopNavigation layout to create a lighter visual appearance with fewer borders and more spacious alignment.

    The component API remains unchanged. However, the app-level custom property --top-navigation-height has increased to 68px, which may affect layouts that depend on the navigation height.

  • #3756 17930d4 Thanks @​connor-baer! - Added a development-time error to the Button component when passing children that aren't a string or a number. This will be enforced by the prop types in the next major.

  • #3675 5377af0 Thanks @​missating! - Removed the deprecated checkedLabel and uncheckedLabel props from Toggle.

  • #3670 c30f886 Thanks @​sirineJ! - Removed the legacy Tooltip component. Use the newer Tooltip or Toggletip components instead.

  • #3670 c30f886 Thanks @​sirineJ! - Removed the deprecated InlineElements component. Use CSS Flexbox or CSS Grid instead.

  • #3852 473879b Thanks @​connor-baer! - Made the internationalization context required to configure the display language and formatting locale for all design system components. Wrap your application in the I18nProvider:

    // For example /app/layout.tsx for Next.js
    import { I18nProvider } from "@sumup-oss/circuit-ui";
    export default function App() {
    return (
    <I18nProvider locale="en-US" formattingLocale="de-DE">
    {/* children */}
    </I18nProvider>
    );
    }

... (truncated)

Changelog

Sourced from @​sumup-oss/circuit-ui's changelog.

12.0.0

Major Changes

  • #3884 b560f11 Thanks @​sirineJ! - Removed the Flag component. Import the component from @sumup-oss/icons instead.

  • #3624 2775359 Thanks @​nicosommi! - Replaced the PhoneNumberInput component's native <select> for the country code with a searchable AutocompleteInput combobox. Country options show flag icons and can be filtered by name or ISO code.

  • #3624 2775359 Thanks @​nicosommi! - Removed the shouldDisplayCountryNames prop from the AutocompleteInput component. Use the internationalization context or the locale prop to prevent hydration mismatches.

    Use the no-deprecated-icons ESLint rule to automatically apply the replacements.

  • #3679 d1ef773 Thanks @​missating! - Removed the deprecated Italic decoration prop from the Numeral component following the brand refresh.

  • #3680 6f6cd02 Thanks @​sirineJ! - Removed the uniqueId utility from the public API. Use React’s useId hook instead.

  • #3679 d1ef773 Thanks @​missating! - Removed the menu ARIA role from the ActionMenu component. The role="menu" pattern is reserved for complex, desktop-like applications and is not appropriate for the ActionMenu component.

  • #3745 001e42c Thanks @​connor-baer! - Removed the deprecated label prop from the IconButton component. Use the children prop for the label and the icon prop for the icon instead.

  • #3647 1ea4fe8 Thanks @​missating! - Dropped support for Node.js 22. Node.js 24 or higher is now required.

  • #3685 9992a96 Thanks @​sirineJ! - Remove deprecated style mixins in favor of utility classes.

  • #3679 d1ef773 Thanks @​missating! - Removed the default value for the alt prop in the Avatar component. The alt prop is now required.

  • #3821 da7668d Thanks @​sirineJ! - Redesigned the TopNavigation layout to create a lighter visual appearance with fewer borders and more spacious alignment.

    The component API remains unchanged. However, the app-level custom property --top-navigation-height has increased to 68px, which may affect layouts that depend on the navigation height.

  • #3756 17930d4 Thanks @​connor-baer! - Added a development-time error to the Button component when passing children that aren't a string or a number. This will be enforced by the prop types in the next major.

  • #3675 5377af0 Thanks @​missating! - Removed the deprecated checkedLabel and uncheckedLabel props from Toggle.

  • #3670 c30f886 Thanks @​sirineJ! - Removed the legacy Tooltip component. Use the newer Tooltip or Toggletip components instead.

  • #3670 c30f886 Thanks @​sirineJ! - Removed the deprecated InlineElements component. Use CSS Flexbox or CSS Grid instead.

  • #3852 473879b Thanks @​connor-baer! - Made the internationalization context required to configure the display language and formatting locale for all design system components. Wrap your application in the I18nProvider:

    // For example /app/layout.tsx for Next.js
    import { I18nProvider } from "@sumup-oss/circuit-ui";
    export default function App() {
    return (
    <I18nProvider locale="en-US" formattingLocale="de-DE">
    {/* children */}
    </I18nProvider>
    );

... (truncated)

Commits

Updates @sumup-oss/design-tokens from 10.2.0 to 11.0.0

Release notes

Sourced from @​sumup-oss/design-tokens's releases.

@​sumup-oss/design-tokens@​11.0.0

Major Changes

  • #3647 1ea4fe8 Thanks @​missating! - Dropped support for Node.js 22. Node.js 24 or higher is now required.

  • #3750 ee603e3 Thanks @​sirineJ! - Removed the CommonJS entry point from the design tokens package exports. The package now only exposes ES module builds, aligning with modern ESM-based JavaScript tooling.

  • #3749 6bf75c1 Thanks @​sirineJ! - Updated the browser support policy.

    Browser Previous New
    Chrome 73+ 85+
    Firefox 67+ 79+
    Edge 79+ 85+
    Safari iOS 12.2+ 14+
    Safari macOS 12.1+ 14+
    Opera 60+ 71+
    Samsung Internet 11.1+ 14+

Minor Changes

@​sumup-oss/design-tokens@​11.0.0-next.3

Minor Changes

@​sumup-oss/design-tokens@​11.0.0-next.2

Major Changes

  • #3750 ee603e3 Thanks @​sirineJ! - Removed the CommonJS entry point from the design tokens package exports. The package now only exposes ES module builds, aligning with modern ESM-based JavaScript tooling.

@​sumup-oss/design-tokens@​11.0.0-next.1

Major Changes

  • #3749 6bf75c1 Thanks @​sirineJ! - Updated the browser support policy.

    Browser Previous New
    Chrome 73+ 85+
    Firefox 67+ 79+
    Edge 79+ 85+
    Safari iOS 12.2+ 14+
    Safari macOS 12.1+ 14+
    Opera 60+ 71+
    Samsung Internet 11.1+ 14+

@​sumup-oss/design-tokens@​11.0.0-next.0

Major Changes

... (truncated)

Changelog

Sourced from @​sumup-oss/design-tokens's changelog.

11.0.0

Major Changes

  • #3647 1ea4fe8 Thanks @​missating! - Dropped support for Node.js 22. Node.js 24 or higher is now required.

  • #3750 ee603e3 Thanks @​sirineJ! - Removed the CommonJS entry point from the design tokens package exports. The package now only exposes ES module builds, aligning with modern ESM-based JavaScript tooling.

  • #3749 6bf75c1 Thanks @​sirineJ! - Updated the browser support policy.

    Browser Previous New
    Chrome 73+ 85+
    Firefox 67+ 79+
    Edge 79+ 85+
    Safari iOS 12.2+ 14+
    Safari macOS 12.1+ 14+
    Opera 60+ 71+
    Samsung Internet 11.1+ 14+

Minor Changes

11.0.0-next.3

Minor Changes

11.0.0-next.2

Major Changes

  • #3750 ee603e3 Thanks @​sirineJ! - Removed the CommonJS entry point from the design tokens package exports. The package now only exposes ES module builds, aligning with modern ESM-based JavaScript tooling.

11.0.0-next.1

Major Changes

  • #3749 6bf75c1 Thanks @​sirineJ! - Updated the browser support policy.

    Browser Previous New
    Chrome 73+ 85+
    Firefox 67+ 79+
    Edge 79+ 85+
    Safari iOS 12.2+ 14+
    Safari macOS 12.1+ 14+
    Opera 60+ 71+

... (truncated)

Commits

Updates @sumup-oss/illustrations from 1.0.0 to 1.1.0

Release notes

Sourced from @​sumup-oss/illustrations's releases.

@​sumup-oss/illustrations@​1.1.0

Minor Changes

Changelog

Sourced from @​sumup-oss/illustrations's changelog.

1.1.0

Minor Changes

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​sumup-oss/illustrations since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 7, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Sep 7, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Updated (UTC)
❌ Deployment failed
View logs
developer-sumup-com 562ce88 Sep 09 2026, 03:15 AM

Bumps the sumup group with 3 updates in the / directory: [@sumup-oss/circuit-ui](https://github.com/sumup-oss/circuit-ui/tree/HEAD/packages/circuit-ui), [@sumup-oss/design-tokens](https://github.com/sumup-oss/circuit-ui/tree/HEAD/packages/design-tokens) and [@sumup-oss/illustrations](https://github.com/sumup-oss/circuit-ui/tree/HEAD/packages/illustrations).


Updates `@sumup-oss/circuit-ui` from 11.19.0 to 12.0.0
- [Release notes](https://github.com/sumup-oss/circuit-ui/releases)
- [Changelog](https://github.com/sumup-oss/circuit-ui/blob/main/packages/circuit-ui/CHANGELOG.md)
- [Commits](https://github.com/sumup-oss/circuit-ui/commits/@sumup-oss/circuit-ui@12.0.0/packages/circuit-ui)

Updates `@sumup-oss/design-tokens` from 10.2.0 to 11.0.0
- [Release notes](https://github.com/sumup-oss/circuit-ui/releases)
- [Changelog](https://github.com/sumup-oss/circuit-ui/blob/main/packages/design-tokens/CHANGELOG.md)
- [Commits](https://github.com/sumup-oss/circuit-ui/commits/@sumup-oss/design-tokens@11.0.0/packages/design-tokens)

Updates `@sumup-oss/illustrations` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/sumup-oss/circuit-ui/releases)
- [Changelog](https://github.com/sumup-oss/circuit-ui/blob/main/packages/illustrations/CHANGELOG.md)
- [Commits](https://github.com/sumup-oss/circuit-ui/commits/@sumup-oss/illustrations@1.1.0/packages/illustrations)

---
updated-dependencies:
- dependency-name: "@sumup-oss/circuit-ui"
  dependency-version: 12.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: sumup
- dependency-name: "@sumup-oss/design-tokens"
  dependency-version: 11.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: sumup
- dependency-name: "@sumup-oss/illustrations"
  dependency-version: 1.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: sumup
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sumup-15c218d896 branch from a01feef to 562ce88 Compare September 9, 2026 03:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants