fumadocs-ui 16.5.2 → 16.5.3
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/css/lib/base.css
CHANGED
|
@@ -41,6 +41,6 @@ declare function NavbarLinkItem({
|
|
|
41
41
|
...props
|
|
42
42
|
}: {
|
|
43
43
|
item: LinkItemType;
|
|
44
|
-
} & HTMLAttributes<HTMLElement>): string | number | bigint | boolean |
|
|
44
|
+
} & HTMLAttributes<HTMLElement>): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime0.JSX.Element | null | undefined;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { LayoutBody, LayoutContext, LayoutContextProvider, LayoutHeader, LayoutHeaderTabs, LayoutInfo, NavbarLinkItem };
|
|
@@ -62,7 +62,7 @@ declare function resolveLinkItems({
|
|
|
62
62
|
declare function renderTitleNav({
|
|
63
63
|
title,
|
|
64
64
|
url
|
|
65
|
-
}: Partial<NavOptions>, props: ComponentProps<'a'>): string | number | bigint | boolean |
|
|
65
|
+
}: Partial<NavOptions>, props: ComponentProps<'a'>): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime0.JSX.Element | null | undefined;
|
|
66
66
|
declare function useLinkItems({
|
|
67
67
|
githubUrl,
|
|
68
68
|
links
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fumadocs-ui",
|
|
3
|
-
"version": "16.5.
|
|
3
|
+
"version": "16.5.3",
|
|
4
4
|
"description": "The Radix UI version of Fumadocs UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Docs",
|
|
@@ -131,16 +131,15 @@
|
|
|
131
131
|
"tsdown": "^0.20.3",
|
|
132
132
|
"@fumadocs/cli": "1.2.4",
|
|
133
133
|
"eslint-config-custom": "0.0.0",
|
|
134
|
-
"
|
|
135
|
-
"
|
|
134
|
+
"fumadocs-core": "16.5.3",
|
|
135
|
+
"tsconfig": "0.0.0"
|
|
136
136
|
},
|
|
137
137
|
"peerDependencies": {
|
|
138
138
|
"@types/react": "*",
|
|
139
139
|
"next": "16.x.x",
|
|
140
140
|
"react": "^19.2.0",
|
|
141
141
|
"react-dom": "^19.2.0",
|
|
142
|
-
"
|
|
143
|
-
"fumadocs-core": "16.5.2"
|
|
142
|
+
"fumadocs-core": "16.5.3"
|
|
144
143
|
},
|
|
145
144
|
"peerDependenciesMeta": {
|
|
146
145
|
"next": {
|
|
@@ -148,9 +147,6 @@
|
|
|
148
147
|
},
|
|
149
148
|
"@types/react": {
|
|
150
149
|
"optional": true
|
|
151
|
-
},
|
|
152
|
-
"tailwindcss": {
|
|
153
|
-
"optional": true
|
|
154
150
|
}
|
|
155
151
|
},
|
|
156
152
|
"scripts": {
|
|
@@ -158,7 +154,7 @@
|
|
|
158
154
|
"build:layout": "tsdown --config-loader unrun",
|
|
159
155
|
"build:tailwind": "tailwindcss -i css/style.css -o ./dist/style.css && tailwindcss -i src/components/image-zoom.css -o dist/components/image-zoom.css",
|
|
160
156
|
"clean": "rimraf dist",
|
|
161
|
-
"dev": "concurrently \"tsdown --watch\" \"tailwindcss -i css/style.css -o ./dist/style.css -w\" \"tailwindcss -i src/components/image-zoom.css -o dist/components/image-zoom.css -w\"",
|
|
157
|
+
"dev": "concurrently \"tsdown --watch --clean false\" \"tailwindcss -i css/style.css -o ./dist/style.css -w\" \"tailwindcss -i src/components/image-zoom.css -o dist/components/image-zoom.css -w\"",
|
|
162
158
|
"lint": "eslint .",
|
|
163
159
|
"types:check": "tsc --noEmit"
|
|
164
160
|
}
|