Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/renovate-6ec49e6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@ultraviolet/nextjs': patch
---

Updated dependency `next` to `16.0.1`.
Updated dependency `eslint-config-next` to `16.0.1`.
8 changes: 1 addition & 7 deletions examples/next-app-router/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
import type { NextConfig } from 'next'

const nextConfig: NextConfig = {
/* config options here */
experimental: {
// still usefull for @nivo/* issue package
esmExternals: 'loose',
},
}
const nextConfig: NextConfig = {}

export default nextConfig
4 changes: 2 additions & 2 deletions examples/next-app-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@ultraviolet/nextjs": "workspace:*",
"@ultraviolet/themes": "workspace:*",
"@ultraviolet/ui": "workspace:*",
"next": "15.5.6",
"next": "16.0.1",
"react": "19.2.0",
"react-dom": "19.2.0"
},
Expand All @@ -26,7 +26,7 @@
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"eslint": "9.39.1",
"eslint-config-next": "15.5.6",
"eslint-config-next": "16.0.1",
"typescript": "5.9.3"
}
}
37 changes: 14 additions & 23 deletions examples/next/next.config.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,16 @@
const nextConfig = () => {
/** @type {import('next/dist/server/config').NextConfig} */
const config = {
compress: true,
images: {
formats: ['image/avif', 'image/webp'],
loader: 'imgix',
path: 'https://ultraviolet.scaleway.com',
},
poweredByHeader: false,
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
},
transpilePackages: ['react-syntax-highlighter'],
experimental: {
// still usefull for @nivo/* issue package
esmExternals: 'loose',
},
}

return config
const nextConfig = {
compress: true,
images: {
formats: ['image/avif', 'image/webp'],
loader: 'imgix',
path: 'https://ultraviolet.scaleway.com',
},
poweredByHeader: false,
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
},
transpilePackages: ['react-syntax-highlighter'],
}

export default nextConfig()
export default nextConfig
6 changes: 3 additions & 3 deletions examples/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"dev": "next dev --webpack",
"build": "next build --webpack",
"export": "next export",
"start": "next start"
},
Expand All @@ -21,7 +21,7 @@
"@ultraviolet/icons": "workspace:*",
"@ultraviolet/themes": "workspace:*",
"@ultraviolet/ui": "workspace:*",
"next": "15.5.6",
"next": "16.0.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-schemaorg": "2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@
"peerDependencies": {
"@ultraviolet/themes": "workspace:*",
"@ultraviolet/ui": "workspace:*",
"next": "15.x",
"next": "15.x || 16.x",
"react": "18.x || 19.x",
"react-dom": "18.x || 19.x"
},
"devDependencies": {
"@ultraviolet/themes": "workspace:*",
"@ultraviolet/ui": "workspace:*",
"next": "15.5.6",
"next": "16.0.1",
"react": "19.2.0",
"react-dom": "19.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/TimeInput/styles.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const timeinput = recipe({
'&[data-size="large"]': {
fontSize: theme.typography.body.fontSize,
},
'&::moz-selection, &::selection': {
'&::selection': {
background: 'none',
},
},
Expand Down
Loading
Loading