@windrun-huaiin/third-ui 3.2.2 → 3.3.0

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.
Files changed (42) hide show
  1. package/dist/clerk/index.js +1 -1
  2. package/dist/clerk/index.js.map +1 -1
  3. package/dist/clerk/index.mjs.map +1 -1
  4. package/dist/fuma/index.d.mts +1 -23
  5. package/dist/fuma/index.d.ts +1 -23
  6. package/dist/fuma/index.js +157 -319
  7. package/dist/fuma/index.js.map +1 -1
  8. package/dist/fuma/index.mjs +136 -296
  9. package/dist/fuma/index.mjs.map +1 -1
  10. package/dist/fuma/mdx/index.d.mts +23 -1
  11. package/dist/fuma/mdx/index.d.ts +23 -1
  12. package/dist/fuma/mdx/index.js +162 -1
  13. package/dist/fuma/mdx/index.js.map +1 -1
  14. package/dist/fuma/mdx/index.mjs +159 -0
  15. package/dist/fuma/mdx/index.mjs.map +1 -1
  16. package/dist/index.d.mts +1 -1
  17. package/dist/index.d.ts +1 -1
  18. package/dist/index.js +49 -210
  19. package/dist/index.js.map +1 -1
  20. package/dist/index.mjs +35 -194
  21. package/dist/index.mjs.map +1 -1
  22. package/dist/lib/index.js +0 -1
  23. package/dist/lib/index.js.map +1 -1
  24. package/dist/lib/index.mjs +0 -1
  25. package/dist/lib/index.mjs.map +1 -1
  26. package/dist/main/index.js +3 -2
  27. package/dist/main/index.js.map +1 -1
  28. package/dist/main/index.mjs +2 -1
  29. package/dist/main/index.mjs.map +1 -1
  30. package/package.json +2 -2
  31. package/src/clerk/clerk-organization.tsx +2 -0
  32. package/src/clerk/index.ts +1 -0
  33. package/src/fuma/index.ts +2 -4
  34. package/src/fuma/mdx/index.ts +5 -1
  35. package/src/fuma/mdx/toc-base.tsx +1 -0
  36. package/src/lib/index.ts +2 -0
  37. package/src/main/ads-alert-dialog.tsx +2 -0
  38. package/src/main/faq.tsx +2 -1
  39. package/src/main/index.ts +2 -0
  40. package/src/main/nprogress-bar.tsx +2 -1
  41. /package/src/fuma/{fuma-banner-suit.tsx → mdx/fuma-banner-suit.tsx} +0 -0
  42. /package/src/fuma/{fuma-github-info.tsx → mdx/fuma-github-info.tsx} +0 -0
@@ -1,9 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
 
3
- declare function FumaBannerSuit({ showText }: {
4
- showText: boolean;
5
- }): react_jsx_runtime.JSX.Element;
6
-
7
3
  interface FumaPageParams {
8
4
  mdxContentSource: any;
9
5
  getMDXComponents: () => any;
@@ -30,22 +26,4 @@ declare function createFumaPage({ mdxContentSource, getMDXComponents, mdxSourceD
30
26
  }>;
31
27
  };
32
28
 
33
- interface FumaGithubInfoProps {
34
- owner: string;
35
- repo: string;
36
- token?: string;
37
- className?: string;
38
- }
39
- /**
40
- * GitHub repository information component with graceful fallback
41
- *
42
- * Features:
43
- * - 🛡️ Client-side rendering, avoiding server-side network issues
44
- * - ⏱️ 5 second timeout control
45
- * - 🎯 Graceful fallback: display basic link when network fails
46
- * - 🎨 Three states: loading, success, error
47
- * - 💯 Not affected by network issues causing page crashes
48
- */
49
- declare function FumaGithubInfo({ owner, repo, token, className }: FumaGithubInfoProps): react_jsx_runtime.JSX.Element;
50
-
51
- export { FumaBannerSuit, FumaGithubInfo, createFumaPage };
29
+ export { createFumaPage };
@@ -1,9 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
 
3
- declare function FumaBannerSuit({ showText }: {
4
- showText: boolean;
5
- }): react_jsx_runtime.JSX.Element;
6
-
7
3
  interface FumaPageParams {
8
4
  mdxContentSource: any;
9
5
  getMDXComponents: () => any;
@@ -30,22 +26,4 @@ declare function createFumaPage({ mdxContentSource, getMDXComponents, mdxSourceD
30
26
  }>;
31
27
  };
32
28
 
33
- interface FumaGithubInfoProps {
34
- owner: string;
35
- repo: string;
36
- token?: string;
37
- className?: string;
38
- }
39
- /**
40
- * GitHub repository information component with graceful fallback
41
- *
42
- * Features:
43
- * - 🛡️ Client-side rendering, avoiding server-side network issues
44
- * - ⏱️ 5 second timeout control
45
- * - 🎯 Graceful fallback: display basic link when network fails
46
- * - 🎨 Three states: loading, success, error
47
- * - 💯 Not affected by network issues causing page crashes
48
- */
49
- declare function FumaGithubInfo({ owner, repo, token, className }: FumaGithubInfoProps): react_jsx_runtime.JSX.Element;
50
-
51
- export { FumaBannerSuit, FumaGithubInfo, createFumaPage };
29
+ export { createFumaPage };