chore: bump dependencies (#11225)

This commit is contained in:
Almeida
2025-10-31 11:15:45 +00:00
committed by GitHub
parent 178c9cb348
commit fb5c629638
48 changed files with 3157 additions and 3252 deletions

View File

@@ -22,7 +22,6 @@ export async function Badges({ node }: { readonly node: any }) {
const isExternal = node.isExternal;
const isAny =
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
isDeprecated || isUnstable || isProtected || isStatic || isAbstract || isReadonly || isOptional || isExternal;
return isAny ? (

View File

@@ -37,7 +37,6 @@ export function Navigation() {
}
const groupedNodes = node?.reduce((acc: any, node: any) => {
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
(acc[node.kind.toLowerCase()] ||= []).push(node);
return acc;
}, {});

View File

@@ -8,7 +8,6 @@ import { Fragment } from 'react';
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from './ui/Collapsible';
export async function Outline({ node }: { readonly node: any }) {
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
const hasAny = node.members?.properties?.length || node.members?.events?.length || node.members?.methods?.length;
return hasAny ? (

View File

@@ -421,7 +421,6 @@ export function SidebarTrigger({ onPress, children, ...props }: ButtonProps) {
setOpen((open) => !open);
}}
>
{/* eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing */}
{children || (
<>
<SidebarIcon aria-hidden className="hidden md:inline" data-slot="icon" size={18} />