Skip to content

chore: bump the npm-production group with 5 updates#512

Closed
dependabot[bot] wants to merge 5 commits into
mainfrom
dependabot/npm_and_yarn/npm-production-6a0a59467d
Closed

chore: bump the npm-production group with 5 updates#512
dependabot[bot] wants to merge 5 commits into
mainfrom
dependabot/npm_and_yarn/npm-production-6a0a59467d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 31, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-production group with 5 updates:

Package From To
@ark-ui/react 5.36.1 5.37.0
@tanstack/react-virtual 3.13.24 3.13.26
@zag-js/react 1.40.0 1.41.1
@zag-js/steps 1.40.0 1.41.1
valibot 1.2.0 1.4.1

Updates @ark-ui/react from 5.36.1 to 5.37.0

Release notes

Sourced from @​ark-ui/react's releases.

@​ark-ui/react@​5.37.0

@​ark-ui/react

[5.37.0] - 2026-05-26

Added

  • Added

    • Floating Components: Add data-side to placement-aware parts so you can style them based on the current placement (top, bottom, left, right).

      Affects Color Picker, Combobox, Date Picker, Hover Card, Menu, Popover, Select, Tooltip, and Tour.

    • Date Input: Add hideTimeZone prop. When the value is a ZonedDateTime, the timeZoneName segment now renders automatically — set hideTimeZone to hide it. Arrow navigation and auto-advance after typing now reach read-only focusable segments too.
    • Splitter
      • Accept CSS units (px, em, rem, vh, vw) for defaultSize, minSize, and maxSize in addition to percentages.
        <Splitter.Root
          panels={[
            { id: 'nav', minSize: '240px', maxSize: '480px' },
            { id: 'main', minSize: 30 },
          ]}
          defaultSize={['240px', '60vw']}
        />
      • Add resizeBehavior per panel. Set to "preserve-pixel-size" to keep a panel's pixel size constant when the parent splitter group resizes.
      • Allow non-panel children (toolbars, rails, status bars) inside the splitter root. Use partial trigger ids ("left:", ":right") to bind handles around the fixed element.

    Fixed

    • Accordion: Remove redundant aria-disabled from item triggers.
    • Color Picker: Fire onValueChangeEnd when you pick a color with the EyeDropper API — matches the behavior when ending a drag on the area or channel sliders.
    • Combobox: Stop Enter from submitting the form when an item is highlighted, or when the typed value will be rejected by allowCustomValue: false.
    • Date Input
      • Preserve entered segments when applying min/max. Values clamp segment-by-segment on blur, so 06/15/1999 with min 2000-01-01 becomes 06/15/2000 instead of snapping to 01/01/2000.
      • Fix range mode keyboard navigation so ArrowRight moves from the last segment of the start date to the first segment of the end date.
      • Fix time-only formatters (no year segment) never firing onValueChange.
      • Fix setSegmentValue reading stale display values.
      • Fix dayPeriod (AM/PM) arrow up/down not updating the visible segment when hourCycle changes at runtime.
      • Fix typing "A" / "P" on the dayPeriod segment not updating the visible AM/PM.
    • Date Picker
      • Fix clearing the value not resetting activeIndex and hoveredValue in range mode when input parts are not rendered.
      • Fix date input not being writable in locales with multi-character separators (e.g. cs-CZ, sk-SK, hu-HU, ko-KR).

... (truncated)

Changelog

Sourced from @​ark-ui/react's changelog.

[5.37.0] - 2026-05-26

Added

  • Floating Components: Add data-side to placement-aware parts so you can style them based on the current placement (top, bottom, left, right).

    Affects Color Picker, Combobox, Date Picker, Hover Card, Menu, Popover, Select, Tooltip, and Tour.

  • Date Input: Add hideTimeZone prop. When the value is a ZonedDateTime, the timeZoneName segment now renders automatically — set hideTimeZone to hide it. Arrow navigation and auto-advance after typing now reach read-only focusable segments too.

  • Splitter

    • Accept CSS units (px, em, rem, vh, vw) for defaultSize, minSize, and maxSize in addition to percentages.

      <Splitter.Root
        panels={[
          { id: 'nav', minSize: '240px', maxSize: '480px' },
          { id: 'main', minSize: 30 },
        ]}
        defaultSize={['240px', '60vw']}
      />
    • Add resizeBehavior per panel. Set to "preserve-pixel-size" to keep a panel's pixel size constant when the parent splitter group resizes.

    • Allow non-panel children (toolbars, rails, status bars) inside the splitter root. Use partial trigger ids ("left:", ":right") to bind handles around the fixed element.

Fixed

  • Accordion: Remove redundant aria-disabled from item triggers.

  • Color Picker: Fire onValueChangeEnd when you pick a color with the EyeDropper API — matches the behavior when ending a drag on the area or channel sliders.

  • Combobox: Stop Enter from submitting the form when an item is highlighted, or when the typed value will be rejected by allowCustomValue: false.

  • Date Input

    • Preserve entered segments when applying min/max. Values clamp segment-by-segment on blur, so 06/15/1999 with min 2000-01-01 becomes 06/15/2000 instead of snapping to 01/01/2000.

    • Fix range mode keyboard navigation so ArrowRight moves from the last segment of the start date to the first segment of the end date.

... (truncated)

Commits
  • bf5b105 chore: release packages (#3879)
  • 15b0a25 chore: bump zag-js
  • 215bebb chore: update drawer examples
  • 686ace7 chore(*): use file extension (#3887)
  • bcee358 docs(date-input): add time-only example and show in sidebar as preview
  • 3d04940 docs(dialog): remove backdrop from non-modal example
  • 9a7e838 chore: sync zag 1.41.0 and wire date-input hideTimeZone prop
  • 48948bf chore: update floating panel
  • 3e61862 fix(password-input): prevent fallback property from leaking to DOM as invalid...
  • 1b446df chore: cleanup changelogs
  • Additional commits viewable in compare view

Updates @tanstack/react-virtual from 3.13.24 to 3.13.26

Release notes

Sourced from @​tanstack/react-virtual's releases.

@​tanstack/react-virtual@​3.13.26

Patch Changes

  • Updated dependencies [fc992ab]:
    • @​tanstack/virtual-core@​3.16.0

@​tanstack/react-virtual@​3.13.25

Patch Changes

  • Replace the useReducer(() => ({}), {}) force-rerender pattern with an (#1168) incrementing number counter. Same semantics (every dispatch changes the reducer state, forcing a render); zero per-dispatch object allocation. Trivial individual cost, but eliminates one steady-state GC source on scroll-heavy apps.
  • Updated dependencies [99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad]:
    • @​tanstack/virtual-core@​3.15.0
Changelog

Sourced from @​tanstack/react-virtual's changelog.

3.13.26

Patch Changes

  • Updated dependencies [fc992ab]:
    • @​tanstack/virtual-core@​3.16.0

3.13.25

Patch Changes

  • Replace the useReducer(() => ({}), {}) force-rerender pattern with an (#1168) incrementing number counter. Same semantics (every dispatch changes the reducer state, forcing a render); zero per-dispatch object allocation. Trivial individual cost, but eliminates one steady-state GC source on scroll-heavy apps.
  • Updated dependencies [99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad]:
    • @​tanstack/virtual-core@​3.15.0
Commits

Updates @zag-js/react from 1.40.0 to 1.41.1

Release notes

Sourced from @​zag-js/react's releases.

@​zag-js/react@​1.41.1

Patch Changes

  • Updated dependencies []:
    • @​zag-js/core@​1.41.1
    • @​zag-js/store@​1.41.1
    • @​zag-js/types@​1.41.1
    • @​zag-js/utils@​1.41.1
Changelog

Sourced from @​zag-js/react's changelog.

1.41.1 - 2026-05-26

Fixed

  • Dismissable: Fix layer pointer-events being wiped by frameworks (Svelte, Vue) whose spread updates rewrite the entire style attribute.

  • Drawer

    • Fix controlled drawers snapping back to open before the close animation when dismissed via swipe.
    • Fix indent and indent-background snapping back into place after the close animation instead of transitioning in sync.
    • Fix --drawer-swipe-progress jumping to 1 at the start of a dismiss swipe; it now goes smoothly from 0 (at rest) to 1 (fully dismissed).
    • Fix drawer freezing mid-drag on release when its content mounts lazily which left snap points unmeasured.

1.41.0 - 2026-05-22

Added

  • Floating Components: Add data-side to placement-aware parts based on the current placement.

    Affected Components: Cascade Select, Color Picker, Combobox, Date Picker, Hover Card, Menu, Popover, Select, Tooltip, Tour.

  • Date Input

    • Add hideTimeZone prop. The timeZoneName segment now renders automatically when the value is a ZonedDateTime, and can be hidden via hideTimeZone: true.
    • Arrow navigation and auto-advance after typing now reach read-only focusable segments (e.g. timeZoneName). Typing the final editable segment (e.g. "P" on dayPeriod) advances focus to the trailing read-only segment instead of staying put.
  • Splitter

    • Add CSS unit support for defaultSize, minSize, and maxSize. The splitter now accepts px, em, rem, vh, and vw in addition to percentages, and resolves them to percentages after hydration.
    const service = useMachine(splitter.machine, {
      panels: [
        { id: "nav", minSize: "240px", maxSize: "480px" },
        { id: "main", minSize: 30 },
      ],
      defaultSize: ["240px", "60vw"],
    })
    • Add resizeBehavior per panel. Set to "preserve-pixel-size" to keep a panel's pixel size constant when the parent splitter group resizes. Leave at least one panel as "preserve-relative-size" (the default) so the layout can absorb the change.

... (truncated)

Commits
  • 1109315 Version Packages (#3146)
  • 2e3867d fix(drawer): measure content that mounts lazily behind a Presence wrapper (#3...
  • f61de29 fix: drawer transitions
  • b39524c refactor: pointer outside handling
  • 9056a6a chore(deps): update all non-major dependencies (#3140)
  • ea4cbb0 chore: remove unused dependencies
  • 05a7779 chore: update dialog examples
  • f531192 ci: add fallback tag push to release workflow
  • c6cdf7b Version Packages (#3077)
  • 56090ce chore: update dependencies and migrate to pnpm v11
  • Additional commits viewable in compare view

Updates @zag-js/steps from 1.40.0 to 1.41.1

Release notes

Sourced from @​zag-js/steps's releases.

@​zag-js/steps@​1.41.1

Patch Changes

  • Updated dependencies []:
    • @​zag-js/anatomy@​1.41.1
    • @​zag-js/core@​1.41.1
    • @​zag-js/types@​1.41.1
    • @​zag-js/utils@​1.41.1
    • @​zag-js/dom-query@​1.41.1

@​zag-js/steps@​1.41.0

Patch Changes

Changelog

Sourced from @​zag-js/steps's changelog.

1.41.1 - 2026-05-26

Fixed

  • Dismissable: Fix layer pointer-events being wiped by frameworks (Svelte, Vue) whose spread updates rewrite the entire style attribute.

  • Drawer

    • Fix controlled drawers snapping back to open before the close animation when dismissed via swipe.
    • Fix indent and indent-background snapping back into place after the close animation instead of transitioning in sync.
    • Fix --drawer-swipe-progress jumping to 1 at the start of a dismiss swipe; it now goes smoothly from 0 (at rest) to 1 (fully dismissed).
    • Fix drawer freezing mid-drag on release when its content mounts lazily which left snap points unmeasured.

1.41.0 - 2026-05-22

Added

  • Floating Components: Add data-side to placement-aware parts based on the current placement.

    Affected Components: Cascade Select, Color Picker, Combobox, Date Picker, Hover Card, Menu, Popover, Select, Tooltip, Tour.

  • Date Input

    • Add hideTimeZone prop. The timeZoneName segment now renders automatically when the value is a ZonedDateTime, and can be hidden via hideTimeZone: true.
    • Arrow navigation and auto-advance after typing now reach read-only focusable segments (e.g. timeZoneName). Typing the final editable segment (e.g. "P" on dayPeriod) advances focus to the trailing read-only segment instead of staying put.
  • Splitter

    • Add CSS unit support for defaultSize, minSize, and maxSize. The splitter now accepts px, em, rem, vh, and vw in addition to percentages, and resolves them to percentages after hydration.
    const service = useMachine(splitter.machine, {
      panels: [
        { id: "nav", minSize: "240px", maxSize: "480px" },
        { id: "main", minSize: 30 },
      ],
      defaultSize: ["240px", "60vw"],
    })
    • Add resizeBehavior per panel. Set to "preserve-pixel-size" to keep a panel's pixel size constant when the parent splitter group resizes. Leave at least one panel as "preserve-relative-size" (the default) so the layout can absorb the change.

... (truncated)

Commits
  • 1109315 Version Packages (#3146)
  • 2e3867d fix(drawer): measure content that mounts lazily behind a Presence wrapper (#3...
  • f61de29 fix: drawer transitions
  • b39524c refactor: pointer outside handling
  • 9056a6a chore(deps): update all non-major dependencies (#3140)
  • ea4cbb0 chore: remove unused dependencies
  • 05a7779 chore: update dialog examples
  • f531192 ci: add fallback tag push to release workflow
  • c6cdf7b Version Packages (#3077)
  • 56090ce chore: update dependencies and migrate to pnpm v11
  • Additional commits viewable in compare view

Updates valibot from 1.2.0 to 1.4.1

Release notes

Sourced from valibot's releases.

v1.4.1

  • Fix intersect schema to infer correct input and output types for non-tuple array options instead of never (pull request #1478)

v1.4.0

Many thanks to @​ksaurav24, @​heiwen, @​compulim, @​ysknsid25, @​alaycock-stripe, @​IlyaSemenov, @​wszgrcy, @​LMGO, @​yslpn, @​EltonLobo07 and @​Eronmmer for contributing to this release.

Read the release notes on our website for a quick overview of the most exciting new features in this release.

  • Add isoDateTimeSecond validation action to validate ISO date times with seconds (pull request #1418)
  • Add toCamelCase, toKebabCase, toPascalCase and toSnakeCase transformation actions to convert strings between common naming conventions (pull request #1457)
  • Change internal ReadonlyOutputKeys and OutputWithReadonly types of object schemas and WithReadonly type of record schemas to improve TypeScript type performance (pull request #1442)
  • Change hot paths to reduce object allocations and improve runtime performance (pull request #1437)
  • Change build target to ES2020 so distributed output stays compatible with environments that lack support for newer syntax (pull request #1455)
  • Change internal _LruCache to use a TypeScript private method instead of a #private class field to avoid runtime helpers in the transpiled output (pull request #1455)
  • Change internal _isValidObjectKey to use Object.prototype.hasOwnProperty.call instead of Object.hasOwn so the distributed output stays compatible with runtimes that lack the ES2022 Object.hasOwn builtin (pull request #1421)
  • Change flatten method to accept readonly issue arrays (pull request #1269)
  • Fix potential RangeError caused by spreading large issue arrays (pull request #1437)
  • Fix creditCard validation action to reject Mastercard numbers with invalid lengths (pull request #1462)
  • Fix intersect schema to no longer mutate input values, allowing frozen objects and arrays to be merged (pull request #1463)

v1.4.0 (to-json-schema)

Many thanks to @​stefanprobst, @​sruenwg and @​cruzdanilo for contributing to this release.

  • Add support for examples action
  • Add support for integer when used with minValue and maxValue actions (pull request #1367)
  • Change Valibot peer dependency to v1.2.0
  • Fix conversion of exactOptional object properties (pull request #1220)
  • Fix conversion of variant to use oneOf instead of anyOf (pull request #1193)

v1.3.1

  • Change MAC48_REGEX, MAC64_REGEX and MAC_REGEX to drop the i flag for better JSON Schema compatibility (pull request #1430)
  • Change hash action to use case-expanded character classes instead of the i flag (pull request #1430)

v1.3.0

Many thanks to @​EskiMojo14, @​yslpn, @​alexilyaev, @​idleberg, @​BerkliumBirb and @​frenzzy for contributing to this release.

Read the release notes on our website for a quick overview of the most exciting new features in this release.

  • Add guard transformation action to narrow types using type predicates (pull request #1204)
  • Add parseBoolean transformation action to parse boolean values from strings and other types (pull request #1251)
  • Add isrc validation action to validate ISRC codes (pull request #1373)
  • Add cache method for caching schema output by input (pull request #1170)
  • Add domain validation action to validate domain names (pull request #1284)
  • Add jwsCompact validation action to validate JWS compact strings (pull request #1348)
  • Fix creditCard validation action to allow 13-digit Visa card numbers (pull request #1347)
  • Fix isoTimestamp validation action to allow optional space before UTC offset for PostgreSQL timestamptz compatibility (pull request #1195)
  • Fix types for deeply readonly default and fallback values

v1.3.0 (to-json-schema)

Many thanks to @​Xiot for contributing to this release.

... (truncated)

Commits
  • 6991ea7 Bump version to 1.4.1 and update changelog for release (#1479)
  • c3a8f07 Fix intersect schema to infer correct types (#1478)
  • 106893c Change syntax highlighting form Prism to Shiki (#1468)
  • 5949d9e Bump to-json-schema version to 1.7.0 and update changelog for release
  • 9f90a74 Bump i18n version to 1.2.0 and update changelog for release
  • d00a646 Add release notes for Valibot v1.4 to blog
  • 52280c5 Bump version to 1.4.0 and update changelog for release
  • 482ad9e Update description on rfcEmail (#1073)
  • 7b5db7b Adds example for optional (#1321)
  • d66a0fe Rewrite introduction guide from first-person to third-person perspective (#1388)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for valibot since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-production group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@ark-ui/react](https://github.com/chakra-ui/ark/tree/HEAD/packages/react) | `5.36.1` | `5.37.0` |
| [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.13.24` | `3.13.26` |
| [@zag-js/react](https://github.com/chakra-ui/zag) | `1.40.0` | `1.41.1` |
| [@zag-js/steps](https://github.com/chakra-ui/zag) | `1.40.0` | `1.41.1` |
| [valibot](https://github.com/open-circle/valibot) | `1.2.0` | `1.4.1` |


Updates `@ark-ui/react` from 5.36.1 to 5.37.0
- [Release notes](https://github.com/chakra-ui/ark/releases)
- [Changelog](https://github.com/chakra-ui/ark/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/ark/commits/@ark-ui/react@5.37.0/packages/react)

Updates `@tanstack/react-virtual` from 3.13.24 to 3.13.26
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Changelog](https://github.com/TanStack/virtual/blob/main/packages/react-virtual/CHANGELOG.md)
- [Commits](https://github.com/TanStack/virtual/commits/@tanstack/react-virtual@3.13.26/packages/react-virtual)

Updates `@zag-js/react` from 1.40.0 to 1.41.1
- [Release notes](https://github.com/chakra-ui/zag/releases)
- [Changelog](https://github.com/chakra-ui/zag/blob/main/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/zag/compare/@zag-js/react@1.40.0...@zag-js/react@1.41.1)

Updates `@zag-js/steps` from 1.40.0 to 1.41.1
- [Release notes](https://github.com/chakra-ui/zag/releases)
- [Changelog](https://github.com/chakra-ui/zag/blob/main/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/zag/compare/@zag-js/steps@1.40.0...@zag-js/steps@1.41.1)

Updates `valibot` from 1.2.0 to 1.4.1
- [Release notes](https://github.com/open-circle/valibot/releases)
- [Commits](open-circle/valibot@v1.2.0...v1.4.1)

---
updated-dependencies:
- dependency-name: "@ark-ui/react"
  dependency-version: 5.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
- dependency-name: "@tanstack/react-virtual"
  dependency-version: 3.13.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: "@zag-js/react"
  dependency-version: 1.41.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
- dependency-name: "@zag-js/steps"
  dependency-version: 1.41.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
- dependency-name: valibot
  dependency-version: 1.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies javascript Pull requests that update javascript code labels May 31, 2026
@netlify

netlify Bot commented May 31, 2026

Copy link
Copy Markdown

Deploy Preview for drivenets-design-system ready!

Name Link
🔨 Latest commit f22c3fe
🔍 Latest deploy log https://app.netlify.com/projects/drivenets-design-system/deploys/6a26799e44f1f00008c3b654
😎 Deploy Preview https://deploy-preview-512--drivenets-design-system.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
🤖 Make changes Run an agent on this branch

To edit notification comments on pull requests, go to your Netlify project configuration.

@StyleShit

Copy link
Copy Markdown
Member

Waiting for chakra-ui/ark#3914 to resolve

@StyleShit StyleShit closed this Jun 8, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-production-6a0a59467d branch June 8, 2026 08:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies design-system javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant