chore: upgrade dependencies

This commit is contained in:
xfy
2025-05-19 14:41:51 +08:00
parent fe51fa33c8
commit 7e9a7b616d
28 changed files with 1611 additions and 1743 deletions

View File

@ -14,7 +14,7 @@ const RUASandpack = ({ ...rest }: Props) => {
if (!mounted) {
return (
<div className="my-2 rounded-[0.5em] overflow-hidden">
<div className="my-2 rounded-lg-[0.5em] overflow-hidden">
<Sandpack
{...rest}
options={{
@ -29,7 +29,7 @@ const RUASandpack = ({ ...rest }: Props) => {
return (
<>
<div className="my-2 rounded-[0.5em] overflow-hidden">
<div className="my-2 rounded-lg-[0.5em] overflow-hidden">
<Sandpack
{...rest}
theme={

View File

@ -38,7 +38,7 @@ const Tab = ({ defaultValue, children }: Props) => {
key={child.props.label}
onClick={() => handleSwitch(child.props.value)}
className={clsx(
'px-5 py-3 rounded-t-lg',
'px-5 py-3 rounded-lg-t-lg',
child.props.value === currentValue &&
'text-teal-500 border-b-[3px] border-teal-500',
'select-none cursor-pointer',