Skip to content

chore(deps): Update all minor dependencies - #124

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-dependencies
Open

chore(deps): Update all minor dependencies#124
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@ark-ui/solid (source) 5.37.15.38.1 age confidence
@fontsource-variable/google-sans-code (source) 5.2.45.3.0 age confidence
@fontsource-variable/google-sans-flex (source) 5.2.35.3.1 age confidence
@fontsource/chakra-petch (source) 5.2.75.3.0 age confidence
@fontsource/rajdhani (source) 5.2.75.3.0 age confidence
@inlang/paraglide-js (source) 2.22.02.23.2 age confidence
oxfmt (source) 0.59.00.62.0 age confidence
oxlint (source) 1.74.01.77.0 age confidence
tailwind-variants 3.2.23.3.1 age confidence
unplugin-auto-import 21.0.021.1.0 age confidence
vite (source) 8.1.58.2.1 age confidence

Release Notes

chakra-ui/ark (@​ark-ui/solid)

v5.38.1

Compare Source

Fixed
  • Fixed DateInput.Segment resolving segments by type, so segments sharing a type all rendered the first match's
    text. Literal separators like : and , rendered as /.

v5.38.0

Compare Source

Added
    • Number Input: Add largeStep and smallStep props for configurable keyboard stepping. Hold Shift for
      largeStep (defaults to 10 * step), Alt for smallStep (defaults to step / 10). The defaults match the
      previous behavior.
      <NumberInput.Root largeStep={20} smallStep={0.5} />
    • Slider: Add largeStep prop, applied on Shift or PageUp/PageDown (defaults to 10 * step). The default
      matches the previous behavior.
    • Autofocus Control: Add data-autofocus and data-no-autofocus to decide what gets focus when an overlay opens.
      Mark chrome like the close button with data-no-autofocus to skip it, or mark the real target with
      data-autofocus.
      <Dialog.Content>
        <Dialog.CloseTrigger data-no-autofocus>Close</Dialog.CloseTrigger>
        <input data-autofocus />
        <button>Save</button>
      </Dialog.Content>
      Focus goes to initialFocusEl, then [data-autofocus], then the first tabbable element without
      [data-no-autofocus], then the content root.

      Supported in Dialog and Drawer.

    • Focus Trap: Add persistentElements to treat portalled content as part of the trap when it isn't reachable via
      aria-controls/aria-expanded. Pass getters so the elements can be resolved lazily.
      <FocusTrap persistentElements={[() => document.getElementById('toast-region')]} />
    • Image Cropper: getCropData() now returns the exact corners and outputSize of the crop in natural-image
      pixels, so you can hand the region straight to a server-side cropper.
    • Image Cropper: Add maxSize to getCroppedImage() to cap the output dimensions. The crop keeps its aspect
      ratio and scales down to fit.
      const blob = await imageCropper.getCroppedImage({ maxSize: { width: 512, height: 512 } })
Fixed
  • Exposed the toast content generic on createToaster so CreateToasterReturn<T> can type custom toast data.

  • Fixed FloatingPanel Content and Positioner not reacting to presence changes. The panel never appeared when
    lazyMount was used, and was never removed from the DOM when unmountOnExit was used. Content now also forwards
    the presence ref so exit animations are tracked before unmounting.

    • Scroll Area: Fixed RootProvider throwing useScrollAreaContext returned undefined by evaluating children
      outside the provider, and merge getRootProps() onto the root element.
    • Password Input: Fixed RootProvider spreading the machine value onto the root DOM element.
    • Steps: Fixed RootProvider rendering children twice via both mergedProps and explicit {props.children}.
    • Marquee: Fixed Content merging children into every cloned content element's props.
    • Date Input
      • Type dates using your locale's native numerals (Arabic-Indic ٠-٩, Devanagari ०-९), not just ASCII digits.
      • Fix timezone-naive values (CalendarDate/CalendarDateTime) shifting by your local UTC offset when you pass a
        custom formatter without a timeZone. A wall-clock value now round-trips unchanged.
    • Date Picker
      • Type dates using your locale's native numerals, not just ASCII digits.
      • Reorder dates on blur in range selection, matching the other selection paths.
      • Fix the day view briefly flashing when you close the picker from the month or year view.
      • Fix visibleRangeText returning a stale value when multiple pickers share a visible range. This was also causing
        SSR hydration mismatches.
    • Menu: Fix the context menu flashing at the top-left before positioning. Long-press (touch) context menus no
      longer open stuck at (0,0).
    • Number Input
      • Fix api.setValue throwing when you pass a number and formatOptions is set.
      • Fix Cmd/Ctrl + arrow keys producing values off the step grid.
    • Slider: Fix Cmd/Ctrl + arrow keys producing values off the step grid.
    • Tags Input: Fix native form submit so FormData reflects the current tags. The hidden input used to keep its
      initial value after you added, removed, or cleared tags.
    • Toast: Fix a height flicker when expanding the stack in overlap mode. Heights are now measured without the
      scale transform.
    • Color Picker: Fix the channel input committing a partial value when you press Enter to confirm an IME
      composition.
    • Date Input
      • Fix segment text lagging behind while you type over an already committed date.
      • Fix in-progress edits being dropped while focus catches up after auto-advance. Fast typing and
        ArrowUp/ArrowDown/Home/End now land on the segment you're actually editing.
    • Date Picker
      • Fix disabled and read-only pickers still reacting to cell clicks, the clear trigger, and presets. Read-only
        pickers keep roving-focus navigation; disabled pickers drop out of the tab order.
      • Fix minView, maxView, and defaultView being ignored when resolving the initial view, which was hardcoded to
        day through year.
      • Fix defaultOpen winning over open, so a controlled picker could open against its own prop.
      • Fix maxSelectedDates not being enforced on month and year cells in multiple selection mode.
      • Fix keyboard range selection drifting from pointer behavior. Picking a third date restarts the range, and the
        hover preview updates for Enter, Home, End, and PageUp/PageDown.
      • Fix reopening the calendar with only a start date restarting the range instead of resuming it.
    • Drawer: Fix the backdrop flickering on a controlled close when the open setter is async.
    • Field: Fix Field.Textarea with autoresize dispatching a synthetic input event when you set value
      programmatically, which fed the value back into your framework and broke controlled state.
    • Focus Return: Fix three focus-trap issues you'd hit with overlays.
      • Closing an overlay no longer steals focus back from an element your app focused in the meantime, like a second
        dialog opened right after closing the first.
      • Closing a nested overlay, such as a popover inside a dialog, no longer throws when the outer container has no
        connected focusable element at that moment.
      • The focus ring now shows on the returned-to element after you close with Escape.

      Affects Dialog, Drawer, Popover, and anything else that traps focus.

    • Image Cropper: Fix getCroppedImage() and getCropData() returning a different region from the one you see
      after rotating or flipping the image.
    • Marquee: Fix scroll speed depending on content width. The duration now comes from the content size and the
      actual translation distance, so speed matches real pixel speed even when the content is narrower than the
      viewport.
    • Popover: Fix tabbing out of portalled content looping back into the content when the trigger was the last
      tabbable element on the page. Focus now moves to the next tabbable element after the trigger.
    • Scroll Lock: Fix the scroll lock targeting <body> on layouts where <html> is the real scroll container,
      which meant nothing was locked while an overlay was open.
    • Signature Pad: Fix controlled paths drifting out of sync because the in-progress stroke was appended to
      paths. It now stays in onDraw.currentPath until the stroke ends.
    • Splitter
      • Fix collapsed panels sizing to minSize instead of collapsedSize.
      • Fix keyboard resizing breaking when a resize trigger got focus while hovered.
    • Tour
      • Fix dismissing a tour from a step's effect skipping cleanup, which could miss firing the completed status.
      • Fix a tooltip step's position resetting unexpectedly when the tour closed.
      • Fix a step action with action: "skip" doing nothing when clicked.
    • Solid: Fix a value of null being read as uncontrolled, so controlled components fell back to internal state.
    • Solid, Svelte: Fix machine exit actions running when a component was disposed before the machine started.
    • Vue, Svelte: Fix defaultValue being resolved before value, unlike React and Solid.
fontsource/font-files (@​fontsource-variable/google-sans-code)

v5.3.0

Compare Source

fontsource/font-files (@​fontsource-variable/google-sans-flex)

v5.3.1

Compare Source

v5.3.0

Compare Source

fontsource/font-files (@​fontsource/chakra-petch)

v5.3.0

Compare Source

fontsource/font-files (@​fontsource/rajdhani)

v5.3.0

Compare Source

opral/paraglide-js (@​inlang/paraglide-js)

v2.23.2

Patch Changes
  • b8af4b1: Embed TypeScript sources in published JavaScript sourcemaps and stop emitting declaration sourcemaps that reference unpublished source files.

v2.23.1

Patch Changes
  • 6f9b062: Keep the server middleware's AsyncLocalStorage available when module instrumentation snapshots mutable exports.

v2.23.0

Minor Changes
  • c2b9c17: Replace the experimental per-locale framework-output specialization with a
    Vite 8+ environment architecture. experimentalPerLocaleBuild: true now
    generates locale source modules before bundling, builds independent native
    Rolldown graphs, supports unminified builds and source maps, and emits
    paraglide-vite-locales.json without rewriting completed chunks or framework
    output.

    Remove the private TanStack Start and SvelteKit renderer integrations. Those
    frameworks now require public client-variant build and render-selection APIs
    before they can compose with experimental per-locale builds.

Patch Changes
  • 608385f: Use baseLocale as the exhaustive branch in generated message functions.
oxc-project/oxc (oxfmt)

v0.62.0

Compare Source

🐛 Bug Fixes

v0.61.0

Compare Source

v0.60.0

Compare Source

oxc-project/oxc (oxlint)

v1.77.0

Compare Source

🐛 Bug Fixes
  • 5c0fa61 linter/eslint/no-warning-comments: Unify config structs and remove manual options docs (#​25151) (Mikhail Baev)
📚 Documentation
  • 9dc7756 linter/typescript/no-unnecessary-condition: Clarify options (#​25110) (camc314)

v1.76.0

Compare Source

🚀 Features
  • 8d31dfa linter: Verify eslint/no-restricted-globals config schema (#​24598) (vigneshwar)
  • 7069621 linter: Verify jest/vitest prefer-lowercase-title config schema (#​24724) (Bartok)
  • 016cf2a linter/oxc: Add bad-match-all-arg rule (#​24900) (camc314)
  • cdc941e linter/n: Implement exports-style rule (#​24087) (Mikhail Baev)
  • 1ad6f6c linter/eslint: Implement id-denylist rule (#​24632) (Mikhail Baev)
📚 Documentation

v1.75.0

Compare Source

🚀 Features
  • dd18383 linter/node: Implement no-top-level-await rule (#​24634) (Connor Shea)
  • 16a65f2 linter/react: Implement function-component-definition rule (#​24471) (Cole Ellison)
  • 7f1f585 linter: Reuse jest/padding-around-test-blocks for vitest/padding-around-test-blocks (#​24519) (Mikhail Baev)
  • 99978a8 linter/import/consistent-type-specifier-style: Support prefer-top-level-if-only-type-imports option (#​24502) (camc314)
🐛 Bug Fixes
  • 8694167 linter/eslint/prefer-destructuring: Handle typed declarations (#​24616) (camc314)
heroui-inc/tailwind-variants (tailwind-variants)

v3.3.1

Compare Source

Bug Fixes

v3.3.0

Compare Source

3.2.1 (2025-11-22)

Bug Fixes
  • update cn function type and import cx from tailwind-variants/lite (#​285) (3a3afce)
unplugin/unplugin-auto-import (unplugin-auto-import)

v21.1.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
vitejs/vite (vite)

v8.2.1

Compare Source

Bug Fixes
Performance Improvements
Documentation
Miscellaneous Chores
Code Refactoring
Tests

v8.2.0

Compare Source

Features
Bug Fixes
  • bundledDev: print build errors to the terminal when an HMR update fails (#​23024) (41c4658)
  • deps: update all non-major dependencies (#​23069) (4c07b74)
  • hmr: preserve environment snapshot during server restart (#​22992) (b1186c3)
  • importAnalysis: interop imports injected into optimized dep files by plugins (#​23029) (8c2a87d)
  • module-runner: keep stack trace interception working when Object.prototype is frozen (#​23073) (599c5b0)
  • server: strip base in indexHtml module graph lookup (#​22932) (fa005d1)
  • support resolving top-level input option with plugins (#​23101) (41df81a)
Documentation
Tests

Configuration

📅 Schedule: (in timezone Europe/Oslo)

  • Branch creation
    • "before 09:00 on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/all-minor-dependencies branch 8 times, most recently from cb8fa8d to 1b5876b Compare August 5, 2026 05:40
@renovate
renovate Bot force-pushed the renovate/all-minor-dependencies branch 5 times, most recently from d6a46f2 to 4174ec5 Compare August 10, 2026 00:54
@renovate
renovate Bot force-pushed the renovate/all-minor-dependencies branch from 4174ec5 to 39fc039 Compare August 10, 2026 13:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants