Skip to content

Commit 5876db1

Browse files
committed
Update dependencies
1 parent 326cee1 commit 5876db1

File tree

8 files changed

+2043
-2390
lines changed

8 files changed

+2043
-2390
lines changed

package-lock.json

+1,974-2,339
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -12,35 +12,35 @@
1212
},
1313
"browserslist": "defaults, not ie <= 11",
1414
"dependencies": {
15-
"@fortawesome/fontawesome-svg-core": "^6.6.0",
16-
"@fortawesome/free-brands-svg-icons": "^6.6.0",
17-
"@fortawesome/free-solid-svg-icons": "^6.6.0",
15+
"@fortawesome/fontawesome-svg-core": "^6.7.2",
16+
"@fortawesome/free-brands-svg-icons": "^6.7.2",
17+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
1818
"@fortawesome/react-fontawesome": "^0.2.2",
1919
"@headlessui/react": "^2.2.0",
2020
"@mdx-js/loader": "^3.1.0",
2121
"@mdx-js/react": "^3.1.0",
22-
"@next/mdx": "^15.0.3",
23-
"@next/third-parties": "^15.0.3",
24-
"@tailwindcss/forms": "^0.5.9",
25-
"@tailwindcss/typography": "^0.5.15",
22+
"@next/mdx": "^15.1.6",
23+
"@next/third-parties": "^15.1.6",
24+
"@tailwindcss/forms": "^0.5.10",
25+
"@tailwindcss/postcss": "^4.0.6",
26+
"@tailwindcss/typography": "^0.5.16",
2627
"@types/mdx": "^2.0.13",
27-
"autoprefixer": "^10.4.20",
2828
"clsx": "^2.1.1",
2929
"focus-visible": "^5.2.1",
30-
"framer-motion": "^11.11",
31-
"next": "15.0.3",
30+
"framer-motion": "^12.4",
31+
"next": "15.1.6",
3232
"postcss-focus-visible": "^10.0.1",
33-
"react": "18.3.1",
34-
"react-dom": "18.3.1",
33+
"react": "19.0.0",
34+
"react-dom": "19.0.0",
3535
"rehype-slug": "^6.0.0",
36-
"remark-gfm": "^4.0.0",
37-
"tailwindcss": "^3.4.14",
36+
"remark-gfm": "^4.0.1",
37+
"tailwindcss": "^4.0.6",
3838
"use-debounce": "10.0.4"
3939
},
4040
"devDependencies": {
41-
"eslint": "9.14",
42-
"eslint-config-next": "15.0",
43-
"prettier": "^3.3.3",
44-
"prettier-plugin-tailwindcss": "^0.6.8"
41+
"eslint": "9.20",
42+
"eslint-config-next": "15.1",
43+
"prettier": "^3.5.0",
44+
"prettier-plugin-tailwindcss": "^0.6.11"
4545
}
4646
}

postcss.config.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
module.exports = {
22
plugins: {
3-
tailwindcss: {},
3+
'@tailwindcss/postcss': {},
44
'postcss-focus-visible': {
55
replaceWith: '[data-focus-visible-added]',
66
},
7-
autoprefixer: {},
87
},
98
}

src/components/Button.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const baseStyles = {
66
solid:
77
'inline-flex justify-center rounded-lg py-2 px-3 text-sm font-semibold outline-2 outline-offset-2 transition-colors',
88
outline:
9-
'inline-flex justify-center rounded-lg border py-[calc(theme(spacing.2)-1px)] px-[calc(theme(spacing.3)-1px)] text-sm outline-2 outline-offset-2 transition-colors',
9+
'inline-flex justify-center rounded-lg border py-[calc(--spacing(2)-1px)] px-[calc(--spacing(3)-1px)] text-sm outline-2 outline-offset-2 transition-colors',
1010
}
1111

1212
const variantStyles = {

src/components/Fields.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import clsx from 'clsx'
22

33
const formClasses =
4-
'block w-full appearance-none rounded-lg border border-gray-200 bg-white py-[calc(theme(spacing.2)-1px)] px-[calc(theme(spacing.3)-1px)] text-gray-900 placeholder:text-gray-400 focus:border-cyan-500 focus:outline-none focus:ring-cyan-500 sm:text-sm'
4+
'block w-full appearance-none rounded-lg border border-gray-200 bg-white py-[calc(--spacing(2)-1px)] px-[calc(--spacing(3)-1px)] text-gray-900 placeholder:text-gray-400 focus:border-cyan-500 focus:outline-hidden focus:ring-cyan-500 sm:text-sm'
55

66
function Label({ id, children }) {
77
return (

src/components/Header.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function Header() {
6565
{({ open }) => (
6666
<>
6767
<Popover.Button
68-
className="relative z-10 -m-2 inline-flex items-center rounded-lg stroke-gray-900 p-2 hover:bg-gray-200/50 hover:stroke-gray-600 active:stroke-gray-900 [&:not(:focus-visible)]:focus:outline-none"
68+
className="relative z-10 -m-2 inline-flex items-center rounded-lg stroke-gray-900 p-2 hover:bg-gray-200/50 hover:stroke-gray-600 active:stroke-gray-900 not-focus-visible:focus:outline-hidden"
6969
aria-label="Toggle site navigation"
7070
>
7171
{({ open }) =>
@@ -85,7 +85,7 @@ export function Header() {
8585
initial={{ opacity: 0 }}
8686
animate={{ opacity: 1 }}
8787
exit={{ opacity: 0 }}
88-
className="fixed inset-0 z-0 bg-gray-300/60 backdrop-blur"
88+
className="fixed inset-0 z-0 bg-gray-300/60 backdrop-blur-sm"
8989
/>
9090
<Popover.Panel
9191
static

src/components/showreel/Rostering.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export function Rostering() {
121121
<td key={i}>
122122
<div
123123
className={clsx(
124-
'rounded text-center transition-colors duration-300',
124+
'rounded-sm text-center transition-colors duration-300',
125125
bgColors[s] || '',
126126
)}
127127
>

src/styles/tailwind.css

+45-26
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,54 @@
1-
@font-face {
2-
font-family: 'Inter';
3-
font-weight: 100 900;
4-
font-display: block;
5-
font-style: normal;
6-
font-named-instance: 'Regular';
7-
src: url('/fonts/Inter-roman.var.woff2') format('woff2');
8-
}
9-
@font-face {
10-
font-family: 'Inter';
11-
font-weight: 100 900;
12-
font-display: block;
13-
font-style: italic;
14-
font-named-instance: 'Italic';
15-
src: url('/fonts/Inter-italic.var.woff2') format('woff2');
16-
}
1+
@import 'tailwindcss';
2+
3+
@config '../../tailwind.config.js';
174

18-
@tailwind base;
19-
@tailwind components;
20-
@tailwind utilities;
5+
/*
6+
The default border color has changed to `currentColor` in Tailwind CSS v4,
7+
so we've added these compatibility styles to make sure everything still
8+
looks the same as it did with Tailwind CSS v3.
219
22-
#__next {
23-
min-height: 100%;
10+
If we ever want to remove these styles, we need to add an explicit border
11+
color utility to any element that depends on these defaults.
12+
*/
13+
@layer base {
14+
*,
15+
::after,
16+
::before,
17+
::backdrop,
18+
::file-selector-button {
19+
border-color: var(--color-gray-200, currentColor);
20+
}
2421
}
2522

26-
@layer utilities {
27-
.hide-scrollbar::-webkit-scrollbar {
23+
@utility hide-scrollbar {
24+
&::-webkit-scrollbar {
2825
display: none;
2926
}
27+
-ms-overflow-style: none;
28+
scrollbar-width: none;
29+
}
3030

31-
.hide-scrollbar {
32-
-ms-overflow-style: none;
33-
scrollbar-width: none;
31+
@layer base {
32+
@font-face {
33+
font-family: 'Inter';
34+
font-weight: 100 900;
35+
font-display: block;
36+
font-style: normal;
37+
font-named-instance: 'Regular';
38+
src: url('/fonts/Inter-roman.var.woff2') format('woff2');
39+
}
40+
@font-face {
41+
font-family: 'Inter';
42+
font-weight: 100 900;
43+
font-display: block;
44+
font-style: italic;
45+
font-named-instance: 'Italic';
46+
src: url('/fonts/Inter-italic.var.woff2') format('woff2');
47+
}
48+
}
49+
50+
@layer utilities {
51+
#__next {
52+
min-height: 100%;
3453
}
3554
}

0 commit comments

Comments
 (0)