@windrun-huaiin/third-ui 5.5.0 → 5.6.1
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/clerk/index.js +217 -183
- package/dist/clerk/index.js.map +1 -1
- package/dist/clerk/index.mjs +217 -183
- package/dist/clerk/index.mjs.map +1 -1
- package/dist/fuma/mdx/index.d.mts +9 -22
- package/dist/fuma/mdx/index.d.ts +9 -22
- package/dist/fuma/mdx/index.js +271 -237
- package/dist/fuma/mdx/index.js.map +1 -1
- package/dist/fuma/mdx/index.mjs +270 -236
- package/dist/fuma/mdx/index.mjs.map +1 -1
- package/dist/fuma/server.js +310 -231
- package/dist/fuma/server.js.map +1 -1
- package/dist/fuma/server.mjs +314 -231
- package/dist/fuma/server.mjs.map +1 -1
- package/dist/main/index.js +250 -209
- package/dist/main/index.js.map +1 -1
- package/dist/main/index.mjs +250 -209
- package/dist/main/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/clerk/clerk-user.tsx +2 -1
- package/src/fuma/fuma-page-genarator.tsx +3 -3
- package/src/fuma/mdx/index.ts +2 -2
- package/src/fuma/mdx/toc-footer-wrapper.tsx +20 -0
- package/src/main/cta.tsx +1 -1
- package/src/main/features.tsx +24 -14
- package/src/main/gallery.tsx +1 -1
- package/src/main/seo-content.tsx +23 -14
- package/src/main/tips.tsx +2 -2
- package/src/fuma/mdx/toc.tsx +0 -35
|
@@ -60,27 +60,6 @@ declare function GradientButton({ title, icon, href, align, }: {
|
|
|
60
60
|
align?: 'left' | 'center' | 'right';
|
|
61
61
|
}): react_jsx_runtime.JSX.Element;
|
|
62
62
|
|
|
63
|
-
interface TocFooterProps {
|
|
64
|
-
/**
|
|
65
|
-
* The last modified date of the page.
|
|
66
|
-
*/
|
|
67
|
-
lastModified: string | undefined;
|
|
68
|
-
/**
|
|
69
|
-
* The path to the file for the \"Edit on GitHub\" link.
|
|
70
|
-
* This should be the relative path from the repository root, e.g., 'src/mdx/docs/your-page.mdx'.
|
|
71
|
-
*/
|
|
72
|
-
editPath?: string | undefined;
|
|
73
|
-
/**
|
|
74
|
-
* Whether to show the copy button.
|
|
75
|
-
*/
|
|
76
|
-
showCopy?: boolean | undefined;
|
|
77
|
-
/**
|
|
78
|
-
* GitHub base URL for edit links
|
|
79
|
-
*/
|
|
80
|
-
githubBaseUrl?: string;
|
|
81
|
-
}
|
|
82
|
-
declare function TocFooter({ lastModified, showCopy, editPath, githubBaseUrl }: TocFooterProps): react_jsx_runtime.JSX.Element;
|
|
83
|
-
|
|
84
63
|
declare function LLMCopyButton({ llmApiUrl }?: {
|
|
85
64
|
llmApiUrl?: string;
|
|
86
65
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -135,4 +114,12 @@ interface ZiaFolderProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
135
114
|
declare function ZiaFile({ name, icon, className, anotion, href, ...rest }: ZiaFileProps): React.ReactElement;
|
|
136
115
|
declare function ZiaFolder({ name, anotion, defaultOpen, className, children, ...props }: ZiaFolderProps): React.ReactElement;
|
|
137
116
|
|
|
138
|
-
|
|
117
|
+
interface TocFooterProps {
|
|
118
|
+
lastModified: string | undefined;
|
|
119
|
+
editPath?: string;
|
|
120
|
+
githubBaseUrl?: string;
|
|
121
|
+
showCopy?: boolean;
|
|
122
|
+
}
|
|
123
|
+
declare function TocFooterWrapper({ lastModified, editPath, githubBaseUrl, showCopy }: TocFooterProps): react_jsx_runtime.JSX.Element;
|
|
124
|
+
|
|
125
|
+
export { EditOnGitHub, FumaBannerSuit, FumaGithubInfo, GradientButton, ImageGrid, ImageZoom, type ImageZoomProps, LLMCopyButton, LastUpdatedDate, Mermaid, SiteX, type SiteXProps, TocFooterWrapper, TrophyCard, ZiaCard, type ZiaCardProps, ZiaFile, type ZiaFileProps, ZiaFolder, type ZiaFolderProps };
|
package/dist/fuma/mdx/index.d.ts
CHANGED
|
@@ -60,27 +60,6 @@ declare function GradientButton({ title, icon, href, align, }: {
|
|
|
60
60
|
align?: 'left' | 'center' | 'right';
|
|
61
61
|
}): react_jsx_runtime.JSX.Element;
|
|
62
62
|
|
|
63
|
-
interface TocFooterProps {
|
|
64
|
-
/**
|
|
65
|
-
* The last modified date of the page.
|
|
66
|
-
*/
|
|
67
|
-
lastModified: string | undefined;
|
|
68
|
-
/**
|
|
69
|
-
* The path to the file for the \"Edit on GitHub\" link.
|
|
70
|
-
* This should be the relative path from the repository root, e.g., 'src/mdx/docs/your-page.mdx'.
|
|
71
|
-
*/
|
|
72
|
-
editPath?: string | undefined;
|
|
73
|
-
/**
|
|
74
|
-
* Whether to show the copy button.
|
|
75
|
-
*/
|
|
76
|
-
showCopy?: boolean | undefined;
|
|
77
|
-
/**
|
|
78
|
-
* GitHub base URL for edit links
|
|
79
|
-
*/
|
|
80
|
-
githubBaseUrl?: string;
|
|
81
|
-
}
|
|
82
|
-
declare function TocFooter({ lastModified, showCopy, editPath, githubBaseUrl }: TocFooterProps): react_jsx_runtime.JSX.Element;
|
|
83
|
-
|
|
84
63
|
declare function LLMCopyButton({ llmApiUrl }?: {
|
|
85
64
|
llmApiUrl?: string;
|
|
86
65
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -135,4 +114,12 @@ interface ZiaFolderProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
135
114
|
declare function ZiaFile({ name, icon, className, anotion, href, ...rest }: ZiaFileProps): React.ReactElement;
|
|
136
115
|
declare function ZiaFolder({ name, anotion, defaultOpen, className, children, ...props }: ZiaFolderProps): React.ReactElement;
|
|
137
116
|
|
|
138
|
-
|
|
117
|
+
interface TocFooterProps {
|
|
118
|
+
lastModified: string | undefined;
|
|
119
|
+
editPath?: string;
|
|
120
|
+
githubBaseUrl?: string;
|
|
121
|
+
showCopy?: boolean;
|
|
122
|
+
}
|
|
123
|
+
declare function TocFooterWrapper({ lastModified, editPath, githubBaseUrl, showCopy }: TocFooterProps): react_jsx_runtime.JSX.Element;
|
|
124
|
+
|
|
125
|
+
export { EditOnGitHub, FumaBannerSuit, FumaGithubInfo, GradientButton, ImageGrid, ImageZoom, type ImageZoomProps, LLMCopyButton, LastUpdatedDate, Mermaid, SiteX, type SiteXProps, TocFooterWrapper, TrophyCard, ZiaCard, type ZiaCardProps, ZiaFile, type ZiaFileProps, ZiaFolder, type ZiaFolderProps };
|