@ultraviolet/nextjs 3.0.0-beta.16 → 3.0.0-beta.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ThemeRegistry.d.ts +1 -1
- package/dist/ThemeRegistry.js +2 -5
- package/package.json +5 -5
package/dist/ThemeRegistry.d.ts
CHANGED
|
@@ -8,5 +8,5 @@ type ThemeRegistryProps = {
|
|
|
8
8
|
* ThemeRegistry is a component that provides a theme to its children.
|
|
9
9
|
* This solution is provided to work with Next.js app router.
|
|
10
10
|
*/
|
|
11
|
-
export declare const ThemeRegistry: ({ children, theme }: ThemeRegistryProps) => import("
|
|
11
|
+
export declare const ThemeRegistry: ({ children, theme }: ThemeRegistryProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export {};
|
package/dist/ThemeRegistry.js
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx } from "
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
3
|
import { ThemeProvider } from "@ultraviolet/themes";
|
|
4
|
-
const ThemeRegistry = ({
|
|
5
|
-
children,
|
|
6
|
-
theme
|
|
7
|
-
}) => /* @__PURE__ */ jsx(ThemeProvider, { theme, children });
|
|
4
|
+
const ThemeRegistry = ({ children, theme }) => /* @__PURE__ */ jsx(ThemeProvider, { theme, children });
|
|
8
5
|
export {
|
|
9
6
|
ThemeRegistry
|
|
10
7
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/nextjs",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.18",
|
|
4
4
|
"description": "Ultraviolet NextJS utility package",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -42,18 +42,18 @@
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"next": "15.x",
|
|
45
|
+
"next": "15.x || 16.x",
|
|
46
46
|
"react": "18.x || 19.x",
|
|
47
47
|
"react-dom": "18.x || 19.x",
|
|
48
48
|
"@ultraviolet/themes": "3.0.0-beta.4",
|
|
49
|
-
"@ultraviolet/ui": "3.0.0-beta.
|
|
49
|
+
"@ultraviolet/ui": "3.0.0-beta.29"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"next": "
|
|
52
|
+
"next": "16.0.3",
|
|
53
53
|
"react": "19.2.0",
|
|
54
54
|
"react-dom": "19.2.0",
|
|
55
55
|
"@ultraviolet/themes": "3.0.0-beta.4",
|
|
56
|
-
"@ultraviolet/ui": "3.0.0-beta.
|
|
56
|
+
"@ultraviolet/ui": "3.0.0-beta.29"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"type:generate": "tsc --declaration -p tsconfig.build.json",
|