Skip to content

fix(deps): update npm-packages [skip ci]#45

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-packages
Open

fix(deps): update npm-packages [skip ci]#45
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-packages

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@hookform/resolvers (source) ^3.7.0^3.10.0 age adoption passing confidence
@radix-ui/react-alert-dialog (source) ^1.1.1^1.1.15 age adoption passing confidence
@radix-ui/react-avatar (source) ^1.1.0^1.1.11 age adoption passing confidence
@radix-ui/react-checkbox (source) ^1.1.1^1.3.3 age adoption passing confidence
@radix-ui/react-dialog (source) ^1.1.1^1.1.15 age adoption passing confidence
@radix-ui/react-dropdown-menu (source) ^2.1.1^2.1.16 age adoption passing confidence
@radix-ui/react-hover-card (source) ^1.1.1^1.1.15 age adoption passing confidence
@radix-ui/react-label (source) ^2.1.0^2.1.8 age adoption passing confidence
@radix-ui/react-popover (source) ^1.1.1^1.1.15 age adoption passing confidence
@radix-ui/react-progress (source) ^1.1.0^1.1.8 age adoption passing confidence
@radix-ui/react-radio-group (source) ^1.2.0^1.3.8 age adoption passing confidence
@radix-ui/react-select (source) ^2.1.1^2.2.6 age adoption passing confidence
@radix-ui/react-separator (source) ^1.1.0^1.1.8 age adoption passing confidence
@radix-ui/react-slot (source) ^1.1.0^1.2.4 age adoption passing confidence
@radix-ui/react-switch (source) ^1.1.0^1.2.6 age adoption passing confidence
@radix-ui/react-tabs (source) ^1.1.0^1.1.13 age adoption passing confidence
@radix-ui/react-toast (source) ^1.2.1^1.2.15 age adoption passing confidence
@radix-ui/react-toggle (source) ^1.1.0^1.1.10 age adoption passing confidence
@radix-ui/react-toggle-group (source) ^1.1.0^1.1.11 age adoption passing confidence
@radix-ui/react-tooltip (source) ^1.1.2^1.2.8 age adoption passing confidence
@tanstack/react-table (source) ^8.19.2^8.21.3 age adoption passing confidence
@types/node (source) ^20^20.19.37 age adoption passing confidence
@types/react (source) ^18^18.3.28 age adoption passing confidence
@types/react-dom (source) ^18^18.3.7 age adoption passing confidence
class-variance-authority ^0.7.0^0.7.1 age adoption passing confidence
cmdk (source) ^1.0.0^1.1.1 age adoption passing confidence
eslint-config-next (source) 14.2.414.2.35 age adoption passing confidence
lucide-react (source) ^0.400.0^0.577.0 age adoption passing confidence
next (source) 15.5.1015.5.12 age adoption passing confidence
next-themes ^0.3.0^0.4.6 age adoption passing confidence
postcss (source) ^8^8.5.8 age adoption passing confidence
prettier (source) 3.7.43.8.1 age adoption passing confidence
react (source) ^18^18.3.1 age adoption passing confidence
react-dom (source) ^18^18.3.1 age adoption passing confidence
react-hook-form (source) ^7.52.1^7.71.2 age adoption passing confidence
recharts ^2.12.7^2.15.4 age adoption passing confidence
sonner (source) ^1.5.0^1.7.4 age adoption passing confidence
swr (source) ^2.2.5^2.4.1 age adoption passing confidence
tailwind-merge ^2.3.0^2.6.1 age adoption passing confidence
tailwindcss (source) ^3.4.1^3.4.19 age adoption passing confidence
typescript (source) ^5^5.9.3 age adoption passing confidence
vaul (source) ^0.9.1^0.9.9 age adoption passing confidence
zod (source) ^3.23.8^3.25.76 age adoption passing confidence

Release Notes

react-hook-form/resolvers (@​hookform/resolvers)

v3.10.0

Compare Source

Features

v3.9.1

Compare Source

Bug Fixes

v3.9.0

Compare Source

Features
  • fluentvalidation-ts: add fluentvalidation-ts resolver (#​702) (5fc1e63)
import { useForm } from 'react-hook-form';
import { fluentValidationResolver } from '@​hookform/resolvers/fluentvalidation-ts';
import { Validator } from 'fluentvalidation-ts';

class FormDataValidator extends Validator<FormData> {
  constructor() {
    super();

    this.ruleFor('username')
      .notEmpty()
      .withMessage('username is a required field');
    this.ruleFor('password')
      .notEmpty()
      .withMessage('password is a required field');
  }
}

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: fluentValidationResolver(new FormDataValidator()),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('username')} />
      {errors.username && <span role="alert">{errors.username.message}</span>}
      <input {...register('password')} />
      {errors.password && <span role="alert">{errors.password.message}</span>}
      <button type="submit">submit</button>
    </form>
  );
};

v3.8.0

Compare Source

Features
radix-ui/primitives (@​radix-ui/react-alert-dialog)

v1.1.8

v1.1.7

Compare Source

v1.1.6

Compare Source

v1.1.5

Compare Source

v1.1.4

Compare Source

v1.1.3

Compare Source

v1.1.2

Compare Source

TanStack/table (@​tanstack/react-table)

v8.21.3

Compare Source

Version 8.21.3 - 4/14/25, 8:19 PM

Changes

Fix
Docs

Packages

v8.21.2

Compare Source

Version 8.21.2 - 2/11/25, 8:59 PM

Changes

Fix
Docs
  • row accessor bug in example code block (#​5893) (b1506a7) by Valerii Petryniak
  • virtualizer tbody from onchange (827b098) by Kevin Van Cott
  • exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott
  • angular: add expanding and sub components examples (#​5898) (099e1a4) by @​riccardoperra
  • example name (57703a4) by Kevin Van Cott

Packages

v8.20.6

Compare Source

Version 8.20.6 - 12/13/24, 2:34 PM

Changes

Fix
Chore
Docs

Packages

v8.20.5

Compare Source

Version 8.20.5 - 8/24/24, 11:37 PM

Changes

Fix
  • table-core: allow searching of numbers (#​5718) (237b1c4) by GaganSingh7
Docs
  • vue: add information about shallowRef for reactive data (#​5706) (58913b6) by Ola Alsaker

Packages

v8.20.1

Compare Source

Version 8.20.1 - 8/3/24, 10:29 PM

Changes

Fix
  • id building was not consistent when using deep accessorKey (4754) (#​5430) (84cf73a) by Roman Kozodoi
Docs

Packages

v8.19.4

Compare Source

Version 8.19.4 - 8/3/24, 8:50 PM

Changes

Fix
  • getFacetedMinMaxValues default implementation sometimes returning array of arrays (#​5676) (9d54b2e) by Vincent Rubinetti
Chore
Ci
Docs

Packages

v8.19.3

Compare Source

Version 8.19.3 - 7/14/24, 8:44 AM

Changes

Fix
  • table-core: assign unassign parentId in grouped row model (#​5657) (a71ce10) by PiR
Ci
Docs

Packages

joe-bell/cva (class-variance-authority)

v0.7.1

Compare Source

What's Changed

New Contributors

Full Changelog: joe-bell/cva@v0.7.0...v0.7.1

pacocoursey/cmdk (cmdk)

v1.1.1

Compare Source

What's Changed

  • Fix unintended double triggering of key bindings during IME composition by @​JaeSeoKim in #​339

New Contributors

Full Changelog: dip/cmdk@v1.1.0...v1.1.1

v1.1.0

Compare Source

What's Changed

  • fix useCmdk return type by @​lsmurray in #​329
  • fix: update the type of the defaultFilter by @​muZk in #​338
  • [Accessibility] Use id instead of children by @​UltimateGG in #​254
  • Use @radix-ui/react-compose-refs to merge refs, save on bundle size
  • Use React built-in useSyncExternalStore and remove shim. Note that React 18 has always been a required peerDependency of cmdk

New Contributors

Full Changelog: dip/cmdk@v1.0.4...v1.1.0

v1.0.4

Compare Source

What's Changed

New Contributors

Full Changelog: dip/cmdk@v1.0.3...v1.0.4

v1.0.3

Compare Source

  • Fix use-sync-external-store shim for compatibility with Next.js 15 and React 19 RC

v1.0.2

Compare Source

v1.0.1

Compare Source

What's Changed

New Contributors


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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.

@changeset-bot
Copy link

changeset-bot bot commented Jan 8, 2026

⚠️ No Changeset found

Latest commit: 47fad81

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@coderabbitai
Copy link

coderabbitai bot commented Jan 8, 2026

Important

Review skipped

Ignore keyword(s) in the title.

⛔ Ignored keywords (1)
  • [skip ci]

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions github-actions bot added the 📦 package Updates in package structure or package.json label Jan 8, 2026
@renovate renovate bot force-pushed the renovate/npm-packages branch 5 times, most recently from 7430db3 to 8ab9caf Compare January 15, 2026 01:00
@renovate renovate bot force-pushed the renovate/npm-packages branch 4 times, most recently from 1e8785f to a344302 Compare January 23, 2026 13:31
@renovate renovate bot force-pushed the renovate/npm-packages branch 8 times, most recently from f4f3d7f to 53b79ab Compare February 5, 2026 22:44
@renovate renovate bot force-pushed the renovate/npm-packages branch 3 times, most recently from 1814400 to fce3e3a Compare February 13, 2026 23:41
@renovate renovate bot force-pushed the renovate/npm-packages branch 5 times, most recently from 1338409 to 5efd054 Compare February 21, 2026 01:07
@renovate renovate bot force-pushed the renovate/npm-packages branch 2 times, most recently from 62bf03d to d6f3b00 Compare March 1, 2026 13:01
@renovate renovate bot force-pushed the renovate/npm-packages branch 5 times, most recently from 0c9a54b to d0375c3 Compare March 6, 2026 02:35
@renovate renovate bot force-pushed the renovate/npm-packages branch from d0375c3 to 47fad81 Compare March 13, 2026 12:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

📦 package Updates in package structure or package.json

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants