Skip to content

Commit a23f49d

Browse files
authored
Merge pull request #449 from LGLabGreg/chore/deps
Chore/deps
2 parents b99a053 + 5727842 commit a23f49d

5 files changed

Lines changed: 889 additions & 787 deletions

File tree

apps/docs/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,28 @@
2626
"@radix-ui/react-toast": "^1.2.15",
2727
"@radix-ui/react-toggle": "^1.1.10",
2828
"@radix-ui/react-tooltip": "^1.2.8",
29-
"@uiw/react-color": "^2.9.3",
29+
"@uiw/react-color": "^2.9.5",
3030
"@vercel/analytics": "^1.6.1",
3131
"class-variance-authority": "^0.7.1",
3232
"clsx": "^2.1.1",
3333
"date-fns": "^4.1.0",
3434
"eslint-config-next": "16.1.6",
35-
"lucide-react": "^0.563.0",
35+
"lucide-react": "^0.564.0",
3636
"next": "16.1.6",
3737
"next-themes": "^0.4.6",
3838
"prism-react-renderer": "^2.4.1",
3939
"react": "^19.2.4",
4040
"react-dom": "^19.2.4",
4141
"react-hook-form": "^7.71.1",
4242
"react-icons": "^5.5.0",
43-
"tailwind-merge": "^3.4.0",
43+
"tailwind-merge": "^3.4.1",
4444
"tailwindcss-animate": "^1.0.7"
4545
},
4646
"devDependencies": {
4747
"@tailwindcss/postcss": "^4.1.18",
4848
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
49-
"@types/node": "^25.1.0",
50-
"@types/react": "^19.2.10",
49+
"@types/node": "^25.2.3",
50+
"@types/react": "^19.2.14",
5151
"@types/react-dom": "^19.2.3",
5252
"postcss": "^8.5.6",
5353
"tailwindcss": "^4.1.18",

apps/docs/src/app/page.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,38 +17,38 @@ export default function Page() {
1717
title: 'Highly Customizable',
1818
description:
1919
'Style finder patterns, modules, and colors exactly how you want with advanced configuration.',
20-
icon: <Sparkles className='h-5 w-5 text-primary' />,
20+
icon: <Sparkles className='h-4 w-4 text-primary' />,
2121
},
2222
{
2323
title: 'Performance Optimized',
2424
description:
2525
'Generates QR codes efficiently without sacrificing quality or bundle size.',
26-
icon: <Zap className='h-5 w-5 text-primary' />,
26+
icon: <Zap className='h-4 w-4 text-primary' />,
2727
},
2828
{
2929
title: 'SVG-Based Rendering',
3030
description: 'Crisp and scalable output for web and print, powered by SVG.',
31-
icon: <Layers className='h-5 w-5 text-primary' />,
31+
icon: <Layers className='h-4 w-4 text-primary' />,
3232
},
3333
{
3434
title: 'Developer-Friendly',
3535
description:
3636
'Built with TypeScript, easy to use, and focused on a great developer experience.',
37-
icon: <Code className='h-5 w-5 text-primary' />,
37+
icon: <Code className='h-4 w-4 text-primary' />,
3838
},
3939
]
4040

4141
return (
4242
<>
4343
<Hero />
44-
<div className='mb-12 grid grid-cols-1 gap-4 md:grid-cols-2'>
44+
<div className='mb-4 grid grid-cols-1 gap-4 lg:grid-cols-2 max-w-full md:max-w-4xl mx-auto'>
4545
{features.map((feature) => (
46-
<Card key={feature.title}>
46+
<Card key={feature.title} className='shadow-xs'>
4747
<CardHeader className='flex-row items-start gap-4 space-y-0'>
48-
<div className='mb-2 inline-flex h-9 w-9 items-center justify-center rounded-lg bg-background shadow-sm'>
48+
<div className='mb-2 inline-flex h-9 w-9 shrink-0 items-center justify-center rounded-lg bg-background shadow-sm'>
4949
{feature.icon}
5050
</div>
51-
<div>
51+
<div className='space-y-1'>
5252
<CardTitle className='text-lg'>{feature.title}</CardTitle>
5353
<CardDescription className='text-sm leading-relaxed'>
5454
{feature.description}
@@ -59,10 +59,10 @@ export default function Page() {
5959
))}
6060
</div>
6161

62-
<Card>
62+
<Card className='max-w-full md:max-w-4xl mx-auto shadow-xs'>
6363
<CardHeader className='flex-row items-start gap-4 space-y-0'>
6464
<div className='mt-1 shrink-0 rounded-lg bg-background p-2 shadow-sm'>
65-
<Sparkles className='h-6 w-6 text-primary' />
65+
<Sparkles className='h-4 w-4 text-primary' />
6666
</div>
6767
<div>
6868
<CardTitle className='mb-1 text-xl'>Optimized for AI</CardTitle>

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "git",
66
"url": "https://github.com/LGLabGreg/react-qr-code.git"
77
},
8-
"packageManager": "pnpm@10.26.1",
8+
"packageManager": "pnpm@10.29.3",
99
"type": "module",
1010
"scripts": {
1111
"dev": "pnpm concurrently --names packages,apps \"pnpm watch:packages\" \"pnpm watch:docs\"",
@@ -38,23 +38,23 @@
3838
"@testing-library/react": "^16.3.2",
3939
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
4040
"@types/jsdom": "^27.0.0",
41-
"@types/node": "^25.1.0",
42-
"@vitejs/plugin-react": "^5.1.2",
41+
"@types/node": "^25.2.3",
42+
"@vitejs/plugin-react": "^5.1.4",
4343
"@vitest/coverage-v8": "4.0.18",
4444
"concurrently": "^9.2.1",
4545
"eslint": "^9.39.2",
4646
"eslint-plugin-react": "^7.37.5",
4747
"eslint-plugin-react-hooks": "^7.0.1",
48-
"eslint-plugin-react-refresh": "^0.4.26",
49-
"globals": "^17.2.0",
48+
"eslint-plugin-react-refresh": "^0.5.0",
49+
"globals": "^17.3.0",
5050
"husky": "^9.1.7",
51-
"jsdom": "^27.4.0",
51+
"jsdom": "^28.1.0",
5252
"lint-staged": "^16.2.7",
5353
"prettier": "^3.8.1",
5454
"react": "^19.2.4",
5555
"react-dom": "^19.2.4",
5656
"typescript": "~5.9.3",
57-
"typescript-eslint": "^8.54.0",
57+
"typescript-eslint": "^8.56.0",
5858
"vite": "^7.3.1",
5959
"vitest": "^4.0.18"
6060
},

packages/react-qr-code/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@
4949
"react": "^18 || ^19"
5050
},
5151
"devDependencies": {
52-
"@types/node": "^25.1.0",
53-
"@types/react": "^19.2.10",
52+
"@types/node": "^25.2.3",
53+
"@types/react": "^19.2.14",
5454
"@types/react-dom": "^19.2.3",
55-
"@vitejs/plugin-react": "^5.1.2",
56-
"globals": "^17.2.0",
55+
"@vitejs/plugin-react": "^5.1.4",
56+
"globals": "^17.3.0",
5757
"react": "^19.2.4",
5858
"react-dom": "^19.2.4",
5959
"typescript": "~5.9.3",
60-
"typescript-eslint": "^8.54.0",
60+
"typescript-eslint": "^8.56.0",
6161
"vite": "^7.3.1",
6262
"vite-plugin-dts": "^4.5.4"
6363
}

0 commit comments

Comments
 (0)