@windrun-huaiin/third-ui 12.0.2 → 12.0.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.
|
@@ -30,7 +30,7 @@ function createFumaPage({ sourceKey, mdxContentSource, getMDXComponents, mdxSour
|
|
|
30
30
|
}, tableOfContentPopover: {
|
|
31
31
|
enabled: showTableOfContentPopover,
|
|
32
32
|
footer: tocFooterElement,
|
|
33
|
-
}, toc: page$1.data.toc, article: { className: 'max-sm:pb-16' }, children: [jsxRuntime.jsx(page.DocsTitle, { children: page$1.title }), jsxRuntime.jsx(page.DocsDescription, { className: "mb-2", children: page$1.description }), jsxRuntime.jsx(page.DocsBody, { className: "text-fd-foreground/80", children: jsxRuntime.jsx(MDX, { components: getMDXComponents() }) })] }));
|
|
33
|
+
}, toc: page$1.data.toc, article: { className: 'max-sm:pb-16' }, children: [jsxRuntime.jsx(page.DocsTitle, { children: page$1.data.title }), jsxRuntime.jsx(page.DocsDescription, { className: "mb-2", children: page$1.data.description }), jsxRuntime.jsx(page.DocsBody, { className: "text-fd-foreground/80", children: jsxRuntime.jsx(MDX, { components: getMDXComponents() }) })] }));
|
|
34
34
|
});
|
|
35
35
|
};
|
|
36
36
|
function generateStaticParams() {
|
|
@@ -60,8 +60,8 @@ function createFumaPage({ sourceKey, mdxContentSource, getMDXComponents, mdxSour
|
|
|
60
60
|
});
|
|
61
61
|
return {
|
|
62
62
|
metadataBase: new URL(baseUrl),
|
|
63
|
-
title: page.title,
|
|
64
|
-
description: page.description,
|
|
63
|
+
title: page.data.title,
|
|
64
|
+
description: page.data.description,
|
|
65
65
|
alternates: {
|
|
66
66
|
canonical: currentUrl,
|
|
67
67
|
languages: seoLanguageMap
|
|
@@ -28,7 +28,7 @@ function createFumaPage({ sourceKey, mdxContentSource, getMDXComponents, mdxSour
|
|
|
28
28
|
}, tableOfContentPopover: {
|
|
29
29
|
enabled: showTableOfContentPopover,
|
|
30
30
|
footer: tocFooterElement,
|
|
31
|
-
}, toc: page.data.toc, article: { className: 'max-sm:pb-16' }, children: [jsx(DocsTitle, { children: page.title }), jsx(DocsDescription, { className: "mb-2", children: page.description }), jsx(DocsBody, { className: "text-fd-foreground/80", children: jsx(MDX, { components: getMDXComponents() }) })] }));
|
|
31
|
+
}, toc: page.data.toc, article: { className: 'max-sm:pb-16' }, children: [jsx(DocsTitle, { children: page.data.title }), jsx(DocsDescription, { className: "mb-2", children: page.data.description }), jsx(DocsBody, { className: "text-fd-foreground/80", children: jsx(MDX, { components: getMDXComponents() }) })] }));
|
|
32
32
|
});
|
|
33
33
|
};
|
|
34
34
|
function generateStaticParams() {
|
|
@@ -58,8 +58,8 @@ function createFumaPage({ sourceKey, mdxContentSource, getMDXComponents, mdxSour
|
|
|
58
58
|
});
|
|
59
59
|
return {
|
|
60
60
|
metadataBase: new URL(baseUrl),
|
|
61
|
-
title: page.title,
|
|
62
|
-
description: page.description,
|
|
61
|
+
title: page.data.title,
|
|
62
|
+
description: page.data.description,
|
|
63
63
|
alternates: {
|
|
64
64
|
canonical: currentUrl,
|
|
65
65
|
languages: seoLanguageMap
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windrun-huaiin/third-ui",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.3",
|
|
4
4
|
"description": "Third-party integrated UI components for windrun-huaiin projects",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"react-medium-image-zoom": "^5.2.14",
|
|
87
87
|
"swiper": "^12.0.3",
|
|
88
88
|
"zod": "^4.1.12",
|
|
89
|
-
"@windrun-huaiin/
|
|
90
|
-
"@windrun-huaiin/
|
|
89
|
+
"@windrun-huaiin/base-ui": "^12.0.0",
|
|
90
|
+
"@windrun-huaiin/lib": "^12.0.1"
|
|
91
91
|
},
|
|
92
92
|
"peerDependencies": {
|
|
93
93
|
"clsx": "^2.1.1",
|
|
@@ -117,8 +117,8 @@ export function createFumaPage({
|
|
|
117
117
|
toc={page.data.toc}
|
|
118
118
|
article={{ className: 'max-sm:pb-16' }}
|
|
119
119
|
>
|
|
120
|
-
<DocsTitle>{page.title}</DocsTitle>
|
|
121
|
-
<DocsDescription className="mb-2">{page.description}</DocsDescription>
|
|
120
|
+
<DocsTitle>{page.data.title}</DocsTitle>
|
|
121
|
+
<DocsDescription className="mb-2">{page.data.description}</DocsDescription>
|
|
122
122
|
<DocsBody className="text-fd-foreground/80">
|
|
123
123
|
<MDX components={getMDXComponents()} />
|
|
124
124
|
</DocsBody>
|
|
@@ -156,8 +156,8 @@ export function createFumaPage({
|
|
|
156
156
|
|
|
157
157
|
return {
|
|
158
158
|
metadataBase: new URL(baseUrl),
|
|
159
|
-
title: page.title,
|
|
160
|
-
description: page.description,
|
|
159
|
+
title: page.data.title,
|
|
160
|
+
description: page.data.description,
|
|
161
161
|
alternates: {
|
|
162
162
|
canonical: currentUrl,
|
|
163
163
|
languages: seoLanguageMap
|