Skip to content

Commit 2180557

Browse files
committed
build: fix package versions for build to run again
1 parent 621743f commit 2180557

File tree

6 files changed

+164
-61
lines changed

6 files changed

+164
-61
lines changed

docs/components/pages/landing/shared/FadeIn.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function FadeIn({
1515
viewTriggerOffset?: boolean;
1616
}) {
1717
const ref = useRef(null);
18-
const inView = useInView(ref, {
18+
const inView = useInView(ref as any, {
1919
once: true,
2020
margin: viewTriggerOffset ? "-128px" : "0px",
2121
});
@@ -34,6 +34,7 @@ export function FadeIn({
3434
return (
3535
<motion.div
3636
animate={inView ? "animate" : "initial"}
37+
// @ts-ignore ignore type error
3738
className={className}
3839
initial={false}
3940
ref={ref}

docs/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@blocknote/xl-multi-column": "workspace:^",
2222
"@blocknote/xl-odt-exporter": "workspace:^",
2323
"@blocknote/xl-pdf-exporter": "workspace:^",
24-
"@headlessui/react": "^1.7.18",
24+
"@headlessui/react": "^2.2.4",
2525
"@heroicons/react": "^2.1.4",
2626
"@mantine/core": "^7.17.3",
2727
"@next/bundle-analyzer": "^14.1.0",
@@ -67,5 +67,8 @@
6767
"react-email": "^4.0.7",
6868
"tailwindcss": "^3.3.0",
6969
"typescript": "^5"
70+
},
71+
"overrides": {
72+
"@headlessui/react": "^2.2.4"
7073
}
7174
}

packages/shadcn/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"autoprefixer": "^10.4.19",
7272
"class-variance-authority": "^0.7.0",
7373
"clsx": "^2.1.1",
74-
"lucide-react": "^0",
74+
"lucide-react": "^0.525.0",
7575
"postcss": "^8.4.38",
7676
"react-hook-form": "^7.52.0",
7777
"tailwind-merge": "^2.3.0",

packages/xl-pdf-exporter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"eslint": "^8.10.0",
7373
"jest-image-snapshot": "^6.4.0",
7474
"pdf-to-img": "^4.2.0",
75-
"react-element-to-jsx-string": "^15.0.0",
75+
"react-element-to-jsx-string": "^17.0.0",
7676
"rollup-plugin-webpack-stats": "^0.2.2",
7777
"typescript": "^5.0.4",
7878
"vite": "^5.3.4",

0 commit comments

Comments
 (0)