@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.
- package/dist/clerk/index.d.mts +2 -21
- package/dist/clerk/index.d.ts +2 -21
- package/dist/clerk/index.js +5 -2884
- package/dist/clerk/index.js.map +1 -1
- package/dist/clerk/index.mjs +3 -2872
- package/dist/clerk/index.mjs.map +1 -1
- package/dist/clerk/server.d.mts +28 -0
- package/dist/clerk/server.d.ts +28 -0
- package/dist/clerk/server.js +3025 -0
- package/dist/clerk/server.js.map +1 -0
- package/dist/clerk/server.mjs +2991 -0
- package/dist/clerk/server.mjs.map +1 -0
- package/dist/fuma/mdx/index.d.mts +1 -12
- package/dist/fuma/mdx/index.d.ts +1 -12
- package/dist/fuma/mdx/index.js +49 -263
- package/dist/fuma/mdx/index.js.map +1 -1
- package/dist/fuma/mdx/index.mjs +50 -262
- package/dist/fuma/mdx/index.mjs.map +1 -1
- package/dist/fuma/server.d.mts +15 -2
- package/dist/fuma/server.d.ts +15 -2
- package/dist/fuma/server.js +234 -49
- package/dist/fuma/server.js.map +1 -1
- package/dist/fuma/server.mjs +231 -48
- package/dist/fuma/server.mjs.map +1 -1
- package/dist/lib/server.d.mts +509 -465
- package/dist/lib/server.d.ts +509 -465
- package/dist/main/index.d.mts +5 -56
- package/dist/main/index.d.ts +5 -56
- package/dist/main/index.js +646 -1322
- package/dist/main/index.js.map +1 -1
- package/dist/main/index.mjs +675 -1342
- package/dist/main/index.mjs.map +1 -1
- package/dist/main/server.d.mts +64 -0
- package/dist/main/server.d.ts +64 -0
- package/dist/main/server.js +4166 -0
- package/dist/main/server.js.map +1 -0
- package/dist/main/server.mjs +4128 -0
- package/dist/main/server.mjs.map +1 -0
- package/package.json +12 -2
- package/src/clerk/clerk-organization-client.tsx +50 -0
- package/src/clerk/clerk-organization.tsx +21 -38
- package/src/clerk/clerk-page-generator.tsx +0 -2
- package/src/clerk/clerk-provider-client.tsx +1 -1
- package/src/clerk/clerk-user-client.tsx +64 -0
- package/src/clerk/clerk-user.tsx +29 -58
- package/src/clerk/index.ts +1 -4
- package/src/clerk/server.ts +3 -0
- package/src/fuma/{mdx/fuma-banner-suit.tsx → fuma-banner-suit.tsx} +3 -6
- package/src/fuma/mdx/banner.tsx +0 -1
- package/src/fuma/mdx/index.ts +0 -2
- package/src/fuma/mdx/mermaid.tsx +3 -1
- package/src/fuma/mdx/toc-footer-wrapper.tsx +1 -0
- package/src/fuma/mdx/zia-file.tsx +0 -1
- package/src/fuma/server.ts +3 -1
- package/src/fuma/{mdx/site-x.tsx → site-x.tsx} +4 -5
- package/src/main/cta.tsx +33 -10
- package/src/main/faq-interactive.tsx +68 -0
- package/src/main/faq.tsx +62 -38
- package/src/main/features.tsx +40 -11
- package/src/main/footer.tsx +27 -16
- package/src/main/gallery-interactive.tsx +171 -0
- package/src/main/gallery.tsx +54 -101
- package/src/main/index.ts +1 -10
- package/src/main/language-detector.tsx +175 -0
- package/src/main/price-plan-interactive.tsx +273 -0
- package/src/main/price-plan.tsx +112 -129
- package/src/main/seo-content.tsx +46 -13
- package/src/main/server.ts +10 -0
- package/src/main/tips.tsx +48 -22
- 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 };
|