@windrun-huaiin/third-ui 5.14.1 → 6.0.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 (70) hide show
  1. package/dist/clerk/index.d.mts +2 -21
  2. package/dist/clerk/index.d.ts +2 -21
  3. package/dist/clerk/index.js +5 -2884
  4. package/dist/clerk/index.js.map +1 -1
  5. package/dist/clerk/index.mjs +3 -2872
  6. package/dist/clerk/index.mjs.map +1 -1
  7. package/dist/clerk/server.d.mts +28 -0
  8. package/dist/clerk/server.d.ts +28 -0
  9. package/dist/clerk/server.js +3025 -0
  10. package/dist/clerk/server.js.map +1 -0
  11. package/dist/clerk/server.mjs +2991 -0
  12. package/dist/clerk/server.mjs.map +1 -0
  13. package/dist/fuma/mdx/index.d.mts +1 -12
  14. package/dist/fuma/mdx/index.d.ts +1 -12
  15. package/dist/fuma/mdx/index.js +49 -263
  16. package/dist/fuma/mdx/index.js.map +1 -1
  17. package/dist/fuma/mdx/index.mjs +50 -262
  18. package/dist/fuma/mdx/index.mjs.map +1 -1
  19. package/dist/fuma/server.d.mts +15 -2
  20. package/dist/fuma/server.d.ts +15 -2
  21. package/dist/fuma/server.js +234 -49
  22. package/dist/fuma/server.js.map +1 -1
  23. package/dist/fuma/server.mjs +231 -48
  24. package/dist/fuma/server.mjs.map +1 -1
  25. package/dist/lib/server.d.mts +509 -465
  26. package/dist/lib/server.d.ts +509 -465
  27. package/dist/main/index.d.mts +5 -56
  28. package/dist/main/index.d.ts +5 -56
  29. package/dist/main/index.js +646 -1322
  30. package/dist/main/index.js.map +1 -1
  31. package/dist/main/index.mjs +675 -1342
  32. package/dist/main/index.mjs.map +1 -1
  33. package/dist/main/server.d.mts +64 -0
  34. package/dist/main/server.d.ts +64 -0
  35. package/dist/main/server.js +4166 -0
  36. package/dist/main/server.js.map +1 -0
  37. package/dist/main/server.mjs +4128 -0
  38. package/dist/main/server.mjs.map +1 -0
  39. package/package.json +12 -2
  40. package/src/clerk/clerk-organization-client.tsx +50 -0
  41. package/src/clerk/clerk-organization.tsx +21 -38
  42. package/src/clerk/clerk-page-generator.tsx +0 -2
  43. package/src/clerk/clerk-provider-client.tsx +1 -1
  44. package/src/clerk/clerk-user-client.tsx +64 -0
  45. package/src/clerk/clerk-user.tsx +29 -58
  46. package/src/clerk/index.ts +1 -4
  47. package/src/clerk/server.ts +3 -0
  48. package/src/fuma/{mdx/fuma-banner-suit.tsx → fuma-banner-suit.tsx} +3 -6
  49. package/src/fuma/mdx/banner.tsx +0 -1
  50. package/src/fuma/mdx/index.ts +0 -2
  51. package/src/fuma/mdx/mermaid.tsx +3 -1
  52. package/src/fuma/mdx/toc-footer-wrapper.tsx +1 -0
  53. package/src/fuma/mdx/zia-file.tsx +0 -1
  54. package/src/fuma/server.ts +3 -1
  55. package/src/fuma/{mdx/site-x.tsx → site-x.tsx} +4 -5
  56. package/src/main/cta.tsx +33 -10
  57. package/src/main/faq-interactive.tsx +68 -0
  58. package/src/main/faq.tsx +62 -38
  59. package/src/main/features.tsx +40 -11
  60. package/src/main/footer.tsx +27 -16
  61. package/src/main/gallery-interactive.tsx +171 -0
  62. package/src/main/gallery.tsx +54 -101
  63. package/src/main/index.ts +1 -10
  64. package/src/main/language-detector.tsx +175 -0
  65. package/src/main/price-plan-interactive.tsx +273 -0
  66. package/src/main/price-plan.tsx +112 -129
  67. package/src/main/seo-content.tsx +46 -13
  68. package/src/main/server.ts +10 -0
  69. package/src/main/tips.tsx +48 -22
  70. package/src/main/usage.tsx +43 -11
@@ -0,0 +1,64 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ interface GalleryProps {
4
+ locale: string;
5
+ sectionClassName?: string;
6
+ button?: React.ReactNode;
7
+ }
8
+ declare function Gallery({ locale, sectionClassName, button }: GalleryProps): Promise<react_jsx_runtime.JSX.Element>;
9
+
10
+ declare function Usage({ locale, sectionClassName }: {
11
+ locale: string;
12
+ sectionClassName?: string;
13
+ }): Promise<react_jsx_runtime.JSX.Element>;
14
+
15
+ declare function Features({ locale, sectionClassName }: {
16
+ locale: string;
17
+ sectionClassName?: string;
18
+ }): Promise<react_jsx_runtime.JSX.Element>;
19
+
20
+ declare function Tips({ locale, sectionClassName }: {
21
+ locale: string;
22
+ sectionClassName?: string;
23
+ }): Promise<react_jsx_runtime.JSX.Element>;
24
+
25
+ declare function FAQ({ locale, sectionClassName }: {
26
+ locale: string;
27
+ sectionClassName?: string;
28
+ }): Promise<react_jsx_runtime.JSX.Element>;
29
+
30
+ declare function SeoContent({ locale, sectionClassName }: {
31
+ locale: string;
32
+ sectionClassName?: string;
33
+ }): Promise<react_jsx_runtime.JSX.Element>;
34
+
35
+ declare function CTA({ locale, sectionClassName }: {
36
+ locale: string;
37
+ sectionClassName?: string;
38
+ }): Promise<react_jsx_runtime.JSX.Element>;
39
+
40
+ declare function Footer({ locale }: {
41
+ locale: string;
42
+ }): Promise<react_jsx_runtime.JSX.Element>;
43
+
44
+ interface PricePlanProps {
45
+ locale: string;
46
+ currency?: string;
47
+ pricePlanConfig: PricePlanAppConfig;
48
+ sectionClassName?: string;
49
+ }
50
+ interface BillingOption {
51
+ key: string;
52
+ discount: number;
53
+ }
54
+ interface Prices {
55
+ [key: string]: number | string;
56
+ }
57
+ interface PricePlanAppConfig {
58
+ billingOptions: BillingOption[];
59
+ prices: Prices;
60
+ minPlanFeaturesCount: number;
61
+ }
62
+ declare function PricePlan({ locale, currency, pricePlanConfig, sectionClassName }: PricePlanProps): Promise<react_jsx_runtime.JSX.Element>;
63
+
64
+ export { type BillingOption, CTA, FAQ, Features, Footer, Gallery, PricePlan, type PricePlanAppConfig, type PricePlanProps, type Prices, SeoContent, Tips, Usage };
@@ -0,0 +1,64 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ interface GalleryProps {
4
+ locale: string;
5
+ sectionClassName?: string;
6
+ button?: React.ReactNode;
7
+ }
8
+ declare function Gallery({ locale, sectionClassName, button }: GalleryProps): Promise<react_jsx_runtime.JSX.Element>;
9
+
10
+ declare function Usage({ locale, sectionClassName }: {
11
+ locale: string;
12
+ sectionClassName?: string;
13
+ }): Promise<react_jsx_runtime.JSX.Element>;
14
+
15
+ declare function Features({ locale, sectionClassName }: {
16
+ locale: string;
17
+ sectionClassName?: string;
18
+ }): Promise<react_jsx_runtime.JSX.Element>;
19
+
20
+ declare function Tips({ locale, sectionClassName }: {
21
+ locale: string;
22
+ sectionClassName?: string;
23
+ }): Promise<react_jsx_runtime.JSX.Element>;
24
+
25
+ declare function FAQ({ locale, sectionClassName }: {
26
+ locale: string;
27
+ sectionClassName?: string;
28
+ }): Promise<react_jsx_runtime.JSX.Element>;
29
+
30
+ declare function SeoContent({ locale, sectionClassName }: {
31
+ locale: string;
32
+ sectionClassName?: string;
33
+ }): Promise<react_jsx_runtime.JSX.Element>;
34
+
35
+ declare function CTA({ locale, sectionClassName }: {
36
+ locale: string;
37
+ sectionClassName?: string;
38
+ }): Promise<react_jsx_runtime.JSX.Element>;
39
+
40
+ declare function Footer({ locale }: {
41
+ locale: string;
42
+ }): Promise<react_jsx_runtime.JSX.Element>;
43
+
44
+ interface PricePlanProps {
45
+ locale: string;
46
+ currency?: string;
47
+ pricePlanConfig: PricePlanAppConfig;
48
+ sectionClassName?: string;
49
+ }
50
+ interface BillingOption {
51
+ key: string;
52
+ discount: number;
53
+ }
54
+ interface Prices {
55
+ [key: string]: number | string;
56
+ }
57
+ interface PricePlanAppConfig {
58
+ billingOptions: BillingOption[];
59
+ prices: Prices;
60
+ minPlanFeaturesCount: number;
61
+ }
62
+ declare function PricePlan({ locale, currency, pricePlanConfig, sectionClassName }: PricePlanProps): Promise<react_jsx_runtime.JSX.Element>;
63
+
64
+ export { type BillingOption, CTA, FAQ, Features, Footer, Gallery, PricePlan, type PricePlanAppConfig, type PricePlanProps, type Prices, SeoContent, Tips, Usage };