Skip to content

fix(deps): update all non-major dependencies - #14

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Closed

fix(deps): update all non-major dependencies#14
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Mar 1, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@dnd-kit/abstract 0.2.40.5.0 age confidence dependencies minor
@dnd-kit/collision 0.2.40.5.0 age confidence dependencies minor
@dnd-kit/dom ^0.2.4^0.5.0 age confidence dependencies minor
@dnd-kit/helpers 0.2.40.5.0 age confidence dependencies minor
@dnd-kit/react 0.2.40.5.0 age confidence dependencies minor
@radix-ui/react-checkbox (source) 1.3.31.3.4 age confidence dependencies patch
@radix-ui/react-dialog (source) 1.1.151.1.16 age confidence dependencies patch
@radix-ui/react-popover (source) 1.1.151.1.16 age confidence dependencies patch
@radix-ui/react-slot (source) 1.2.41.2.5 age confidence dependencies patch
@radix-ui/react-switch (source) 1.2.61.3.0 age confidence dependencies minor
@radix-ui/react-tooltip (source) 1.2.81.2.9 age confidence dependencies patch
@tailwindcss/typography 0.5.190.5.20 age confidence devDependencies patch
@tailwindcss/vite (source) 4.2.24.3.0 age confidence devDependencies minor 4.3.1
@types/react (source) 19.2.1419.2.17 age confidence dependencies patch
goober 2.1.182.1.19 age confidence dependencies patch
happy-dom 20.9.020.10.2 age confidence devDependencies minor 20.10.3
katex (source) ^0.16.45^0.17.0 age confidence dependencies minor
motion 12.38.012.40.0 age confidence dependencies minor
node 24.13.024.16.0 age confidence uses-with minor
prettier (source) 3.8.33.8.4 age confidence devDependencies patch
react (source) 19.2.519.2.7 age confidence dependencies patch
react-dom (source) 19.2.519.2.7 age confidence dependencies patch
tailwind-merge 3.5.03.6.0 age confidence dependencies minor
tailwindcss (source) 4.2.24.3.0 age confidence devDependencies minor 4.3.1
vite (source) 7.3.27.3.5 age confidence devDependencies patch
vitest (source) 4.1.44.1.8 age confidence devDependencies patch 4.1.9
zod (source) 4.3.64.4.3 age confidence dependencies minor

Release Notes

clauderic/dnd-kit (@​dnd-kit/abstract)

v0.5.0

Compare Source

Patch Changes

v0.4.0

Compare Source

Minor Changes
  • #​1915 9b24dff Thanks @​clauderic! - Redesign event type system to follow the DOM EventMap pattern. Introduces DragDropEventMap for event object types and DragDropEventHandlers for event handler signatures, replacing the ambiguously named DragDropEvents. Event type aliases (CollisionEvent, DragStartEvent, etc.) now derive directly from DragDropEventMap rather than using Parameters<> extraction.
Migration guide
-   **`DragDropEvents`** has been split into two types:
    -   `DragDropEventMap` — maps event names to event object types (like `WindowEventMap`)
    -   `DragDropEventHandlers` — maps event names to `(event, manager) => void` handler signatures
-   If you were importing `DragDropEvents` to type **event objects**, use `DragDropEventMap` instead:
    ```ts
    // Before
    type MyEvent = Parameters<DragDropEvents<D, P, M>['dragend']>[0];
    // After
    type MyEvent = DragDropEventMap<D, P, M>['dragend'];
    ```
-   If you were importing `DragDropEvents` to type **event handlers**, use `DragDropEventHandlers` instead:
    ```ts
    // Before
    const handler: DragDropEvents<D, P, M>['dragend'] = (event, manager) => {};
    // After
    const handler: DragDropEventHandlers<D, P, M>['dragend'] = (
      event,
      manager
    ) => {};
    ```
-   The `DragDropEvents` re-export from `@dnd-kit/react` and `@dnd-kit/solid` has been removed. Import `DragDropEventMap` or `DragDropEventHandlers` from `@dnd-kit/abstract` directly if needed.
-   Convenience aliases (`CollisionEvent`, `DragStartEvent`, `DragEndEvent`, etc.) are unchanged and continue to work as before.
  • #​1938 e69387d Thanks @​clauderic! - Added per-entity plugin configuration and moved feedback from the Draggable entity to the Feedback plugin.

    Draggable entities now accept a plugins property for per-entity plugin configuration, using the existing Plugin.configure() pattern. Plugins can read per-entity options via source.pluginConfig(PluginClass).

    The feedback property ('default' | 'move' | 'clone' | 'none') has been moved from the Draggable entity to FeedbackOptions. Drop animation can also now be configured per-draggable.

    Plugins listed in an entity's plugins array are auto-registered on the manager if not already present. The Sortable class now uses this generic mechanism instead of its own custom registration logic.

Migration guide
The `feedback` property has been moved from the draggable/sortable hook input to per-entity Feedback plugin configuration.

**Before:**

```tsx
import {FeedbackType} from '@&#8203;dnd-kit/dom';

useDraggable({id: 'item', feedback: 'clone'});
useSortable({id: 'item', index: 0, feedback: 'clone'});
```

**After:**

```tsx
import {Feedback} from '@&#8203;dnd-kit/dom';

useDraggable({
  id: 'item',
  plugins: [Feedback.configure({feedback: 'clone'})],
});
useSortable({
  id: 'item',
  index: 0,
  plugins: (defaults) => [
    ...defaults,
    Feedback.configure({feedback: 'clone'}),
  ],
});
```

Drop animation can now be configured per-draggable:

```tsx
useDraggable({
  id: 'item',
  plugins: [Feedback.configure({feedback: 'clone', dropAnimation: null})],
});
```
Patch Changes

v0.3.2

Compare Source

Patch Changes

v0.3.1

Compare Source

Patch Changes

v0.3.0

Compare Source

Minor Changes
  • 6a59647 Thanks @​clauderic! - Allow plugins, sensors, and modifiers to accept a function that receives the defaults, making it easy to extend or configure them without replacing the entire array.

    // Add a plugin alongside the defaults
    const manager = new DragDropManager({
      plugins: (defaults) => [...defaults, MyPlugin],
    });
    // Configure a default plugin in React
    <DragDropProvider
      plugins={(defaults) => [
        ...defaults,
        Feedback.configure({dropAnimation: null}),
      ]}
    />

    Previously, passing plugins, sensors, or modifiers would replace the defaults entirely, requiring consumers to import and spread defaultPreset. The function form receives the default values as an argument, so consumers can add, remove, or configure individual entries without needing to know or maintain the full default list.

  • 68e44de Thanks @​clauderic! - Add isSortableOperation type guard and export SortableDraggable/SortableDroppable types.

    isSortableOperation(operation) narrows a DragOperationSnapshot so that source is typed as SortableDraggable and target as SortableDroppable, providing typed access to sortable-specific properties like index, initialIndex, group, and initialGroup.

    Re-exported from all framework packages (@dnd-kit/react/sortable, @dnd-kit/vue/sortable, @dnd-kit/svelte/sortable, @dnd-kit/solid/sortable).

Patch Changes
radix-ui/primitives (@​radix-ui/react-checkbox)

v1.3.4

  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-controllable-state@1.2.3, @radix-ui/react-use-previous@1.1.2, @radix-ui/react-use-size@1.1.2
radix-ui/primitives (@​radix-ui/react-dialog)

v1.1.16

  • Fixed disabled pointer events in closed dialogs
  • Fixed a bug where iOS text selection and editing on HTML inputs within react-dialog were broken
  • Fixed triggers referencing a non-existent element via aria-controls when their content is removed from the DOM (credit to @​dodomorandi for the original PR)
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/react-slot@1.2.5, @radix-ui/react-focus-guards@1.1.4, @radix-ui/react-dismissable-layer@1.1.12, @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-focus-scope@1.1.9, @radix-ui/react-id@1.1.2, @radix-ui/react-portal@1.1.11, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-controllable-state@1.2.3
radix-ui/primitives (@​radix-ui/react-popover)

v1.1.16

  • Fixed a bug where iOS text selection and editing on HTML inputs within react-dialog were broken
  • Fixed triggers referencing a non-existent element via aria-controls when their content is removed from the DOM (credit to @​dodomorandi for the original PR)
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/react-popper@1.3.0, @radix-ui/react-slot@1.2.5, @radix-ui/react-focus-guards@1.1.4, @radix-ui/react-dismissable-layer@1.1.12, @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-focus-scope@1.1.9, @radix-ui/react-id@1.1.2, @radix-ui/react-portal@1.1.11, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-controllable-state@1.2.3
radix-ui/primitives (@​radix-ui/react-slot)

v1.2.5

  • Fixed infinite re-render loop in React 19 caused by Slot creating a new ref callback on every render
  • Added support for nested Slottable via a render prop, so a slotted element can be wrapped while still merging Slot props and refs onto it
  • Added repository.directory to all package.json files
  • Improved error messages for invalid slot children
  • Updated dependencies: @radix-ui/react-compose-refs@1.1.3
radix-ui/primitives (@​radix-ui/react-switch)

v1.3.0

  • Added unstable Provider, Trigger and BubbleInput parts to Switch. These expose the previously internal composition (context provider, the interactive control, and the hidden form input) so consumers can directly access and recompose them. The Switch component continues to render them by default.
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-controllable-state@1.2.3, @radix-ui/react-use-previous@1.1.2, @radix-ui/react-use-size@1.1.2
radix-ui/primitives (@​radix-ui/react-tooltip)

v1.2.9

  • Fixed runtime error when event target is non-Node
  • Fixed a Tooltip bug so that skipDelayDuration={0} works as expected. Previously, the open delay could still be skipped when moving between triggers.
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/react-popper@1.3.0, @radix-ui/react-slot@1.2.5, @radix-ui/react-dismissable-layer@1.1.12, @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-id@1.1.2, @radix-ui/react-portal@1.1.11, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-controllable-state@1.2.3, @radix-ui/react-visually-hidden@1.2.5
tailwindlabs/tailwindcss-typography (@​tailwindcss/typography)

v0.5.20

Compare Source

Fixed
  • Support installing with stable versions of Tailwind CSS v4 (#​424)
tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.3.0

Compare Source

Added
  • Add @container-size utility (#​18901)
  • Add scrollbar-{auto,thin,none} utilities for scrollbar-width, and scrollbar-thumb-* / scrollbar-track-* color utilities for scrollbar-color (#​19981, #​20019)
  • Add scrollbar-gutter-* utilities (#​20018)
  • Add zoom-* utilities (#​20020)
  • Add tab-* utilities (#​20022)
  • Allow using @variant with stacked variants (e.g. @variant hover:focus { … }) (#​19996)
  • Allow using @variant with compound variants (e.g. @variant hover, focus { … }) (#​19996)
  • Support --default(…) in --value(…) and --modifier(…) for functional @utility definitions (#​19989)
Fixed
  • Ensure @plugin resolves package JavaScript entries instead of browser CSS entries when using @tailwindcss/vite (#​19949)
  • Fix relative @import and @plugin paths resolving from the wrong directory when using @tailwindcss/vite (#​19965)
  • Ensure CSS files containing @variant are processed by @tailwindcss/vite (#​19966)
  • Resolve imports relative to base when result.opts.from is not provided when using @tailwindcss/postcss (#​19980)
  • Canonicalization: preserve significant _ whitespace in arbitrary values (#​19986)
  • Canonicalization: add parentheses when removing whitespace from arbitrary values would hurt readability (e.g. w-[calc(100%---spacing(60))]w-[calc(100%-(--spacing(60)))]) (#​19986)
  • Canonicalization: preserve the original unit in arbitrary values instead of normalizing to base units (e.g. -mt-[20in]mt-[-20in], not mt-[-1920px]) (#​19988)
  • Canonicalization: migrate arbitrary :has() variants from [&:has(…)] to has-[…] (#​19991)
  • Upgrade: don’t migrate inline style attributes (e.g. style="flex-grow: 1"style="flex-grow: 1", not style="grow: 1") (#​19918)
  • Allow multiple @utility definitions with the same name but different value types (#​19777)
  • Export missing PluginWithConfig type from tailwindcss/plugin to fix errors when inferring plugin config types (#​19707)
  • Ensure start and end legacy utilities without values do not generate CSS (#​20003)
  • Ensure --value(…) is required in functional @utility definitions (#​20005)
  • Canonicalization: preserve required whitespace around operators in negated arbitrary values (e.g. -left-[(var(--a)+var(--b))]) (#​20011)

v4.2.4

Compare Source

Fixed
  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#​19947)

v4.2.3

Compare Source

Fixed
  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#​19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#​19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#​19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#​19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#​19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#​19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#​19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#​19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#​19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#​19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#​19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#​19846)
  • Upgrade: never migrate files that are ignored by git (#​19846)
  • Add .env and .env.* to default ignored content files (#​19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#​19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#​19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#​19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#​19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#​19858)
  • Improve performance when scanning JSONL / NDJSON files (#​19862)
  • Support NODE_PATH environment variable in standalone CLI (#​19617)
cristianbote/goober (goober)

v2.1.19

Compare Source

What's Changed

New Contributors

Full Changelog: cristianbote/goober@v2.1.18...v2.1.19

capricorn86/happy-dom (happy-dom)

v20.10.2

Compare Source

👷‍♂️ Patch fixes

v20.10.1

Compare Source

v20.10.0

Compare Source

KaTeX/KaTeX (katex)

v0.17.0

Compare Source

Performance Improvements
  • simplify defineFunction to avoid destructuring, improve typing (#​4222) (fb604e6)
BREAKING CHANGES
  • The internal API for __defineFunction changed: you should no longer wrap properties in props.

0.16.47 (2026-05-16)

Bug Fixes

0.16.46 (2026-05-13)

Bug Fixes

0.16.45 (2026-04-05)

Bug Fixes

0.16.44 (2026-03-27)

Bug Fixes
  • remove extra \jot space at bottom of align/gather/etc. (#​4184) (3870ee9)

0.16.43 (2026-03-26)

Bug Fixes
  • use makeEm() consistently to truncate long CSS decimals (#​4181) (0967dcc)

0.16.42 (2026-03-24)

Features

0.16.41 (2026-03-24)

Bug Fixes

0.16.40 (2026-03-20)

Bug Fixes

0.16.39 (2026-03-19)

Bug Fixes

0.16.38 (2026-03-08)

Bug Fixes

0.16.37 (2026-03-06)

Bug Fixes

0.16.36 (2026-03-06)

Bug Fixes

0.16.35 (2026-03-05)

Bug Fixes

0.16.34 (2026-03-05)

Bug Fixes

0.16.33 (2026-02-23)

Bug Fixes

0.16.32 (2026-02-22)

Bug Fixes

0.16.31 (2026-02-22)

Bug Fixes

0.16.30 (2026-02-22)

Bug Fixes

0.16.29 (2026-02-22)

Bug Fixes

0.16.28 (2026-01-25)

Bug Fixes
  • type: add missing types definition path to package.json (#​4125) (0ef8921)

0.16.27 (2025-12-07)

Features
  • support equals sign and surrounding whitespace in \htmlData attribute values (#​4112) (c77aaec)

0.16.26 (2025-12-07)

Bug Fixes
  • \mathop followed by integral symbol (6fbad18)

0.16.25 (2025-10-13)

Features

0.16.24 (2025-10-12)

Features

0.16.23 (2025-10-03)

Bug Fixes

0.16.22 (2025-04-09)

Bug Fixes

0.16.21 (2025-01-17)

Bug Fixes
  • escape \htmlData attribute name (57914ad)

0.16.20 (2025-01-12)

Bug Fixes

0.16.19 (2024-12-29)

Bug Fixes

0.16.18 (2024-12-18)

Bug Fixes

0.16.17 (2024-12-17)

Bug Fixes
  • MathML combines multidigit numbers with sup/subscript, comma separators, and multicharacter text when outputting to DOM (#​3999) (7d79e22), closes #​3995

0.16.16 (2024-12-17)

Features

0.16.15 (2024-12-09)

Features
  • italic sans-serif in math mode via \mathsfit command (#​3998) (2218901)

0.16.14 (2024-12-08)

Features

0.16.13 (2024-12-08)

Bug Fixes

0.16.12 (2024-12-08)

Features

0.16.11 (2024-07-02)

Features

0.16.10 (2024-03-24)

Bug Fixes
  • \edef bypassing maxExpand via exponential blowup (e88b4c3)
  • escape \includegraphics src and alt (c5897fc)
  • force protocol to be lowercase for better protocol filtering (fc5af64), closes [/datatracker.ietf.org/doc/html/rfc3986#section-3

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, on day 1 of the month (* 0-3 1 * *)
  • 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-patch branch 7 times, most recently from 5774188 to 314102d Compare March 7, 2026 17:00
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c09b9c8 to 670d162 Compare March 15, 2026 16:59
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from ac06c61 to fe5c9a5 Compare March 22, 2026 14:01
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 9e01cc9 to 8579eff Compare March 30, 2026 00:37
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d3ce45a to 860da86 Compare April 10, 2026 13:13
@renovate renovate Bot changed the title fix(deps): update all non-major dependencies to v0.4.0 fix(deps): update all non-major dependencies Apr 18, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 981af0b to 0cda8dd Compare April 24, 2026 15:13
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7d51403 to 8fe29ce Compare May 9, 2026 16:37
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 230a850 to 12fbea6 Compare May 16, 2026 09:47
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from ab3aaaf to 16bcf8a Compare May 25, 2026 10:41
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 03c9b74 to 51d3c68 Compare June 7, 2026 01:16
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 0db4b0e to 7eef17b Compare June 12, 2026 18:02
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 7eef17b to befce8c Compare June 14, 2026 13:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant