@vasf/ragnar-web 1.0.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/components/animated-counter.d.ts +98 -0
- package/dist/components/announcement-bar.d.ts +66 -0
- package/dist/components/app-download.d.ts +41 -0
- package/dist/components/bento-grid.d.ts +32 -0
- package/dist/components/blog-card.d.ts +38 -0
- package/dist/components/comparison-table.d.ts +37 -0
- package/dist/components/contact-form.d.ts +43 -0
- package/dist/components/content-spot.d.ts +17 -0
- package/dist/components/cookie-banner.d.ts +58 -0
- package/dist/components/cta-section.d.ts +21 -0
- package/dist/components/email-form.d.ts +18 -0
- package/dist/components/faq-accordion.d.ts +36 -0
- package/dist/components/feature-spot.d.ts +31 -0
- package/dist/components/footer.d.ts +23 -0
- package/dist/components/gradient-text.d.ts +45 -0
- package/dist/components/header-navigation.d.ts +18 -0
- package/dist/components/hero.d.ts +18 -0
- package/dist/components/logo-cloud.d.ts +19 -0
- package/dist/components/map-embed.d.ts +109 -0
- package/dist/components/marquee.d.ts +51 -0
- package/dist/components/newsletter.d.ts +21 -0
- package/dist/components/pricing-options.d.ts +29 -0
- package/dist/components/pricing-table.d.ts +23 -0
- package/dist/components/quote.d.ts +22 -0
- package/dist/components/shaders/index.d.ts +8 -0
- package/dist/components/shaders/shader-canvas-ogl.d.ts +18 -0
- package/dist/components/shaders/shader-canvas-r3f.d.ts +23 -0
- package/dist/components/shaders/shader-presets.d.ts +79 -0
- package/dist/components/shaders/types.d.ts +46 -0
- package/dist/components/social-proof.d.ts +64 -0
- package/dist/components/stats-section.d.ts +30 -0
- package/dist/components/team-section.d.ts +36 -0
- package/dist/components/testimonial.d.ts +31 -0
- package/dist/components/video-player.d.ts +83 -0
- package/dist/index.cjs +321 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +5659 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/styles.css +76 -0
- package/dist/test/setup.d.ts +1 -0
- package/package.json +80 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const counterVariants: (props?: ({
|
|
4
|
+
size?: "sm" | "default" | "lg" | "xl" | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
+
export interface AnimatedCounterProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof counterVariants> {
|
|
7
|
+
/**
|
|
8
|
+
* Target value to count to
|
|
9
|
+
*/
|
|
10
|
+
value: number;
|
|
11
|
+
/**
|
|
12
|
+
* Starting value
|
|
13
|
+
* @default 0
|
|
14
|
+
*/
|
|
15
|
+
from?: number;
|
|
16
|
+
/**
|
|
17
|
+
* Duration in milliseconds
|
|
18
|
+
* @default 2000
|
|
19
|
+
*/
|
|
20
|
+
duration?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Prefix (e.g., "$")
|
|
23
|
+
*/
|
|
24
|
+
prefix?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Suffix (e.g., "%", "+")
|
|
27
|
+
*/
|
|
28
|
+
suffix?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Number of decimal places
|
|
31
|
+
* @default 0
|
|
32
|
+
*/
|
|
33
|
+
decimals?: number;
|
|
34
|
+
/**
|
|
35
|
+
* Thousand separator
|
|
36
|
+
* @default ","
|
|
37
|
+
*/
|
|
38
|
+
separator?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Decimal separator
|
|
41
|
+
* @default "."
|
|
42
|
+
*/
|
|
43
|
+
decimalSeparator?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Easing function
|
|
46
|
+
* @default "easeOut"
|
|
47
|
+
*/
|
|
48
|
+
easing?: "linear" | "easeOut" | "easeInOut";
|
|
49
|
+
/**
|
|
50
|
+
* Delay before starting in milliseconds
|
|
51
|
+
* @default 0
|
|
52
|
+
*/
|
|
53
|
+
delay?: number;
|
|
54
|
+
/**
|
|
55
|
+
* Whether to trigger animation when in viewport
|
|
56
|
+
* @default true
|
|
57
|
+
*/
|
|
58
|
+
triggerOnView?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Callback when animation completes
|
|
61
|
+
*/
|
|
62
|
+
onComplete?: () => void;
|
|
63
|
+
}
|
|
64
|
+
declare const AnimatedCounter: React.ForwardRefExoticComponent<AnimatedCounterProps & React.RefAttributes<HTMLSpanElement>>;
|
|
65
|
+
export interface CounterWithLabelProps extends AnimatedCounterProps {
|
|
66
|
+
label: string;
|
|
67
|
+
labelClassName?: string;
|
|
68
|
+
}
|
|
69
|
+
declare const CounterWithLabel: React.ForwardRefExoticComponent<CounterWithLabelProps & React.RefAttributes<HTMLDivElement>>;
|
|
70
|
+
export interface CounterGridProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
71
|
+
columns?: 2 | 3 | 4;
|
|
72
|
+
}
|
|
73
|
+
declare const CounterGrid: React.ForwardRefExoticComponent<CounterGridProps & React.RefAttributes<HTMLDivElement>>;
|
|
74
|
+
export interface CountdownTimerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
75
|
+
/**
|
|
76
|
+
* Target date/time
|
|
77
|
+
*/
|
|
78
|
+
targetDate: Date;
|
|
79
|
+
/**
|
|
80
|
+
* Callback when countdown reaches zero
|
|
81
|
+
*/
|
|
82
|
+
onComplete?: () => void;
|
|
83
|
+
/**
|
|
84
|
+
* Labels for time units
|
|
85
|
+
*/
|
|
86
|
+
labels?: {
|
|
87
|
+
days?: string;
|
|
88
|
+
hours?: string;
|
|
89
|
+
minutes?: string;
|
|
90
|
+
seconds?: string;
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* Size variant
|
|
94
|
+
*/
|
|
95
|
+
size?: "sm" | "default" | "lg";
|
|
96
|
+
}
|
|
97
|
+
declare const CountdownTimer: React.ForwardRefExoticComponent<CountdownTimerProps & React.RefAttributes<HTMLDivElement>>;
|
|
98
|
+
export { AnimatedCounter, CounterWithLabel, CounterGrid, CountdownTimer, };
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const announcementBarVariants: (props?: ({
|
|
4
|
+
variant?: "default" | "dark" | "muted" | "gradient" | "success" | "error" | "secondary" | "warning" | null | undefined;
|
|
5
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface AnnouncementBarProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof announcementBarVariants> {
|
|
8
|
+
/**
|
|
9
|
+
* Whether the bar can be dismissed
|
|
10
|
+
* @default true
|
|
11
|
+
*/
|
|
12
|
+
dismissible?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Callback when dismissed
|
|
15
|
+
*/
|
|
16
|
+
onDismiss?: () => void;
|
|
17
|
+
/**
|
|
18
|
+
* Whether the bar is visible
|
|
19
|
+
* @default true
|
|
20
|
+
*/
|
|
21
|
+
isVisible?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Link URL (makes the entire bar clickable)
|
|
24
|
+
*/
|
|
25
|
+
href?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Icon to display before the text
|
|
28
|
+
*/
|
|
29
|
+
icon?: React.ReactNode;
|
|
30
|
+
}
|
|
31
|
+
declare const AnnouncementBar: React.ForwardRefExoticComponent<AnnouncementBarProps & React.RefAttributes<HTMLDivElement>>;
|
|
32
|
+
export interface RotatingAnnouncementBarProps extends Omit<AnnouncementBarProps, "children"> {
|
|
33
|
+
/**
|
|
34
|
+
* Array of announcement messages
|
|
35
|
+
*/
|
|
36
|
+
messages: Array<{
|
|
37
|
+
text: string;
|
|
38
|
+
href?: string;
|
|
39
|
+
}>;
|
|
40
|
+
/**
|
|
41
|
+
* Rotation interval in milliseconds
|
|
42
|
+
* @default 5000
|
|
43
|
+
*/
|
|
44
|
+
interval?: number;
|
|
45
|
+
}
|
|
46
|
+
declare const RotatingAnnouncementBar: React.ForwardRefExoticComponent<RotatingAnnouncementBarProps & React.RefAttributes<HTMLDivElement>>;
|
|
47
|
+
export interface CountdownAnnouncementBarProps extends Omit<AnnouncementBarProps, "children"> {
|
|
48
|
+
/**
|
|
49
|
+
* Target date for countdown
|
|
50
|
+
*/
|
|
51
|
+
targetDate: Date;
|
|
52
|
+
/**
|
|
53
|
+
* Text before countdown
|
|
54
|
+
*/
|
|
55
|
+
prefix?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Text after countdown
|
|
58
|
+
*/
|
|
59
|
+
suffix?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Callback when countdown reaches zero
|
|
62
|
+
*/
|
|
63
|
+
onComplete?: () => void;
|
|
64
|
+
}
|
|
65
|
+
declare const CountdownAnnouncementBar: React.ForwardRefExoticComponent<CountdownAnnouncementBarProps & React.RefAttributes<HTMLDivElement>>;
|
|
66
|
+
export { AnnouncementBar, RotatingAnnouncementBar, CountdownAnnouncementBar, };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const appDownloadSectionVariants: (props?: ({
|
|
4
|
+
variant?: "default" | "dark" | "muted" | "gradient" | null | undefined;
|
|
5
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface AppDownloadSectionProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof appDownloadSectionVariants> {
|
|
8
|
+
}
|
|
9
|
+
declare const AppDownloadSection: React.ForwardRefExoticComponent<AppDownloadSectionProps & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const AppDownloadContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const AppDownloadInfo: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
declare const AppDownloadTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
13
|
+
declare const AppDownloadDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
14
|
+
declare const AppDownloadButtons: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
15
|
+
declare const storeBadgeVariants: (props?: ({
|
|
16
|
+
variant?: "apple" | "google" | "custom" | null | undefined;
|
|
17
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
18
|
+
export interface AppStoreBadgeProps extends React.AnchorHTMLAttributes<HTMLAnchorElement>, VariantProps<typeof storeBadgeVariants> {
|
|
19
|
+
}
|
|
20
|
+
declare const AppStoreBadge: React.ForwardRefExoticComponent<AppStoreBadgeProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
21
|
+
declare const GooglePlayBadge: React.ForwardRefExoticComponent<React.AnchorHTMLAttributes<HTMLAnchorElement> & React.RefAttributes<HTMLAnchorElement>>;
|
|
22
|
+
declare const AppDownloadMockup: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
export interface PhoneMockupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
24
|
+
/**
|
|
25
|
+
* Screenshot image URL
|
|
26
|
+
*/
|
|
27
|
+
screenshot?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Alt text for screenshot
|
|
30
|
+
*/
|
|
31
|
+
alt?: string;
|
|
32
|
+
}
|
|
33
|
+
declare const PhoneMockup: React.ForwardRefExoticComponent<PhoneMockupProps & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
export interface AppQRCodeProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
35
|
+
/**
|
|
36
|
+
* Label text
|
|
37
|
+
*/
|
|
38
|
+
label?: string;
|
|
39
|
+
}
|
|
40
|
+
declare const AppQRCode: React.ForwardRefExoticComponent<AppQRCodeProps & React.RefAttributes<HTMLDivElement>>;
|
|
41
|
+
export { AppDownloadSection, AppDownloadContent, AppDownloadInfo, AppDownloadTitle, AppDownloadDescription, AppDownloadButtons, AppStoreBadge, GooglePlayBadge, AppDownloadMockup, PhoneMockup, AppQRCode, };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const bentoGridVariants: (props?: ({
|
|
4
|
+
columns?: "auto" | 2 | 3 | 4 | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
+
export interface BentoGridProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof bentoGridVariants> {
|
|
7
|
+
}
|
|
8
|
+
declare const BentoGrid: React.ForwardRefExoticComponent<BentoGridProps & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const bentoCardVariants: (props?: ({
|
|
10
|
+
variant?: "default" | "gradient" | "ghost" | null | undefined;
|
|
11
|
+
size?: "default" | "lg" | null | undefined;
|
|
12
|
+
span?: "full" | 1 | 2 | 3 | null | undefined;
|
|
13
|
+
rowSpan?: 1 | 2 | null | undefined;
|
|
14
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
15
|
+
export interface BentoCardProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof bentoCardVariants> {
|
|
16
|
+
href?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const BentoCard: React.ForwardRefExoticComponent<BentoCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
declare const BentoCardIcon: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
declare const BentoCardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
21
|
+
declare const BentoCardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
22
|
+
declare const BentoCardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
declare const BentoCardImage: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
24
|
+
src?: string;
|
|
25
|
+
alt?: string;
|
|
26
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
27
|
+
declare const BentoCardBadge: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
|
|
28
|
+
declare const BentoCardLink: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
29
|
+
declare const BentoGridPreset: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
30
|
+
layout?: "default" | "asymmetric" | "featured";
|
|
31
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
32
|
+
export { BentoGrid, BentoCard, BentoCardIcon, BentoCardTitle, BentoCardDescription, BentoCardContent, BentoCardImage, BentoCardBadge, BentoCardLink, BentoGridPreset, };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const blogGridVariants: (props?: ({
|
|
4
|
+
columns?: 1 | 2 | 3 | 4 | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
+
export interface BlogGridProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof blogGridVariants> {
|
|
7
|
+
}
|
|
8
|
+
declare const BlogGrid: React.ForwardRefExoticComponent<BlogGridProps & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const blogCardVariants: (props?: ({
|
|
10
|
+
variant?: "default" | "bordered" | "minimal" | "elevated" | null | undefined;
|
|
11
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
12
|
+
export interface BlogCardProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof blogCardVariants> {
|
|
13
|
+
href?: string;
|
|
14
|
+
}
|
|
15
|
+
declare const BlogCard: React.ForwardRefExoticComponent<BlogCardProps & React.RefAttributes<HTMLElement>>;
|
|
16
|
+
export interface BlogCardImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
|
|
17
|
+
aspectRatio?: "video" | "square" | "wide";
|
|
18
|
+
}
|
|
19
|
+
declare const BlogCardImage: React.ForwardRefExoticComponent<BlogCardImageProps & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
declare const BlogCardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
21
|
+
declare const BlogCardMeta: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
declare const BlogCardCategory: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
|
|
23
|
+
declare const BlogCardDate: React.ForwardRefExoticComponent<React.TimeHTMLAttributes<HTMLTimeElement> & React.RefAttributes<HTMLTimeElement>>;
|
|
24
|
+
declare const BlogCardReadTime: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
|
|
25
|
+
declare const BlogCardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
26
|
+
declare const BlogCardExcerpt: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
27
|
+
declare const BlogCardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
28
|
+
export interface BlogCardAuthorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
29
|
+
}
|
|
30
|
+
declare const BlogCardAuthor: React.ForwardRefExoticComponent<BlogCardAuthorProps & React.RefAttributes<HTMLDivElement>>;
|
|
31
|
+
export interface BlogCardAuthorAvatarProps extends React.ImgHTMLAttributes<HTMLImageElement> {
|
|
32
|
+
fallback?: string;
|
|
33
|
+
}
|
|
34
|
+
declare const BlogCardAuthorAvatar: React.ForwardRefExoticComponent<BlogCardAuthorAvatarProps & React.RefAttributes<HTMLDivElement>>;
|
|
35
|
+
declare const BlogCardAuthorName: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
|
|
36
|
+
declare const BlogCardLink: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
|
|
37
|
+
declare const BlogCardFeatured: React.ForwardRefExoticComponent<BlogCardProps & React.RefAttributes<HTMLElement>>;
|
|
38
|
+
export { BlogGrid, BlogCard, BlogCardImage, BlogCardContent, BlogCardMeta, BlogCardCategory, BlogCardDate, BlogCardReadTime, BlogCardTitle, BlogCardExcerpt, BlogCardFooter, BlogCardAuthor, BlogCardAuthorAvatar, BlogCardAuthorName, BlogCardLink, BlogCardFeatured, };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const comparisonSectionVariants: (props?: ({
|
|
4
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
+
export interface ComparisonSectionProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof comparisonSectionVariants> {
|
|
7
|
+
}
|
|
8
|
+
declare const ComparisonSection: React.ForwardRefExoticComponent<ComparisonSectionProps & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const ComparisonHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const ComparisonTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
11
|
+
declare const ComparisonDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
12
|
+
declare const ComparisonTable: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
declare const ComparisonTableInner: React.ForwardRefExoticComponent<React.TableHTMLAttributes<HTMLTableElement> & React.RefAttributes<HTMLTableElement>>;
|
|
14
|
+
declare const ComparisonTableHead: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
15
|
+
declare const ComparisonTableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
16
|
+
declare const ComparisonTableRow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableRowElement> & React.RefAttributes<HTMLTableRowElement>>;
|
|
17
|
+
declare const comparisonHeaderCellVariants: (props?: ({
|
|
18
|
+
highlight?: boolean | null | undefined;
|
|
19
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
20
|
+
export interface ComparisonHeaderCellProps extends React.ThHTMLAttributes<HTMLTableCellElement>, VariantProps<typeof comparisonHeaderCellVariants> {
|
|
21
|
+
}
|
|
22
|
+
declare const ComparisonHeaderCell: React.ForwardRefExoticComponent<ComparisonHeaderCellProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
23
|
+
declare const comparisonCellVariants: (props?: ({
|
|
24
|
+
highlight?: boolean | null | undefined;
|
|
25
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
26
|
+
export interface ComparisonCellProps extends React.TdHTMLAttributes<HTMLTableCellElement>, VariantProps<typeof comparisonCellVariants> {
|
|
27
|
+
}
|
|
28
|
+
declare const ComparisonCell: React.ForwardRefExoticComponent<ComparisonCellProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
29
|
+
declare const ComparisonFeatureCell: React.ForwardRefExoticComponent<React.TdHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
30
|
+
declare const ComparisonCheck: React.ForwardRefExoticComponent<React.SVGAttributes<SVGSVGElement> & React.RefAttributes<SVGSVGElement>>;
|
|
31
|
+
declare const ComparisonX: React.ForwardRefExoticComponent<React.SVGAttributes<SVGSVGElement> & React.RefAttributes<SVGSVGElement>>;
|
|
32
|
+
declare const ComparisonMinus: React.ForwardRefExoticComponent<React.SVGAttributes<SVGSVGElement> & React.RefAttributes<SVGSVGElement>>;
|
|
33
|
+
declare const ComparisonPlanHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
declare const ComparisonPlanName: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
35
|
+
declare const ComparisonPlanPrice: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
36
|
+
declare const ComparisonCategory: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableRowElement> & React.RefAttributes<HTMLTableRowElement>>;
|
|
37
|
+
export { ComparisonSection, ComparisonHeader, ComparisonTitle, ComparisonDescription, ComparisonTable, ComparisonTableInner, ComparisonTableHead, ComparisonTableBody, ComparisonTableRow, ComparisonHeaderCell, ComparisonCell, ComparisonFeatureCell, ComparisonCheck, ComparisonX, ComparisonMinus, ComparisonPlanHeader, ComparisonPlanName, ComparisonPlanPrice, ComparisonCategory, };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const contactSectionVariants: (props?: ({
|
|
4
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
+
export interface ContactSectionProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof contactSectionVariants> {
|
|
7
|
+
}
|
|
8
|
+
declare const ContactSection: React.ForwardRefExoticComponent<ContactSectionProps & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const ContactContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const ContactInfo: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const ContactHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
declare const ContactTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
13
|
+
declare const ContactDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
14
|
+
declare const ContactDetails: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
15
|
+
export interface ContactDetailItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
16
|
+
icon?: React.ReactNode;
|
|
17
|
+
label: string;
|
|
18
|
+
value: string;
|
|
19
|
+
href?: string;
|
|
20
|
+
}
|
|
21
|
+
declare const ContactDetailItem: React.ForwardRefExoticComponent<ContactDetailItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
declare const ContactSocials: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
export interface ContactSocialLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
24
|
+
label: string;
|
|
25
|
+
}
|
|
26
|
+
declare const ContactSocialLink: React.ForwardRefExoticComponent<ContactSocialLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
27
|
+
declare const contactFormVariants: (props?: ({
|
|
28
|
+
variant?: "default" | "card" | null | undefined;
|
|
29
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
30
|
+
export interface ContactFormProps extends React.FormHTMLAttributes<HTMLFormElement>, VariantProps<typeof contactFormVariants> {
|
|
31
|
+
}
|
|
32
|
+
declare const ContactForm: React.ForwardRefExoticComponent<ContactFormProps & React.RefAttributes<HTMLFormElement>>;
|
|
33
|
+
declare const ContactFormRow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
declare const ContactFormField: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
35
|
+
declare const ContactFormLabel: React.ForwardRefExoticComponent<React.LabelHTMLAttributes<HTMLLabelElement> & {
|
|
36
|
+
required?: boolean;
|
|
37
|
+
} & React.RefAttributes<HTMLLabelElement>>;
|
|
38
|
+
declare const ContactFormInput: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>;
|
|
39
|
+
declare const ContactFormTextarea: React.ForwardRefExoticComponent<React.TextareaHTMLAttributes<HTMLTextAreaElement> & React.RefAttributes<HTMLTextAreaElement>>;
|
|
40
|
+
declare const ContactFormSelect: React.ForwardRefExoticComponent<React.SelectHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>>;
|
|
41
|
+
declare const ContactFormError: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
42
|
+
declare const ContactFormSuccess: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
43
|
+
export { ContactSection, ContactContent, ContactInfo, ContactHeader, ContactTitle, ContactDescription, ContactDetails, ContactDetailItem, ContactSocials, ContactSocialLink, ContactForm, ContactFormRow, ContactFormField, ContactFormLabel, ContactFormInput, ContactFormTextarea, ContactFormSelect, ContactFormError, ContactFormSuccess, };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const contentSpotVariants: (props?: ({
|
|
4
|
+
layout?: "default" | "left" | "right" | null | undefined;
|
|
5
|
+
size?: "sm" | "default" | "lg" | "full" | "xl" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface ContentSpotProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof contentSpotVariants> {
|
|
8
|
+
container?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const ContentSpot: React.ForwardRefExoticComponent<ContentSpotProps & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const ContentSpotEyebrow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
|
|
12
|
+
declare const ContentSpotTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & {
|
|
13
|
+
as?: "h1" | "h2" | "h3" | "h4";
|
|
14
|
+
} & React.RefAttributes<HTMLHeadingElement>>;
|
|
15
|
+
declare const ContentSpotDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
16
|
+
declare const ContentSpotActions: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
export { ContentSpot, ContentSpotEyebrow, ContentSpotTitle, ContentSpotDescription, ContentSpotActions, };
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const cookieBannerVariants: (props?: ({
|
|
4
|
+
position?: "bottom" | "top" | "bottom-left" | "bottom-right" | null | undefined;
|
|
5
|
+
variant?: "default" | "dark" | "card" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface CookieBannerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cookieBannerVariants> {
|
|
8
|
+
/**
|
|
9
|
+
* Whether the banner is visible
|
|
10
|
+
*/
|
|
11
|
+
isVisible?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Callback when accepted
|
|
14
|
+
*/
|
|
15
|
+
onAccept?: () => void;
|
|
16
|
+
/**
|
|
17
|
+
* Callback when declined
|
|
18
|
+
*/
|
|
19
|
+
onDecline?: () => void;
|
|
20
|
+
/**
|
|
21
|
+
* Callback when preferences are opened
|
|
22
|
+
*/
|
|
23
|
+
onPreferences?: () => void;
|
|
24
|
+
}
|
|
25
|
+
declare const CookieBanner: React.ForwardRefExoticComponent<CookieBannerProps & React.RefAttributes<HTMLDivElement>>;
|
|
26
|
+
declare const CookieBannerContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
27
|
+
declare const CookieBannerText: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
28
|
+
declare const CookieBannerTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
29
|
+
declare const CookieBannerDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
30
|
+
declare const CookieBannerActions: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
31
|
+
declare const CookieBannerLink: React.ForwardRefExoticComponent<React.AnchorHTMLAttributes<HTMLAnchorElement> & React.RefAttributes<HTMLAnchorElement>>;
|
|
32
|
+
export interface CookiePreferencesProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
33
|
+
isOpen: boolean;
|
|
34
|
+
onClose: () => void;
|
|
35
|
+
onSave?: (preferences: CookiePreference[]) => void;
|
|
36
|
+
}
|
|
37
|
+
export interface CookiePreference {
|
|
38
|
+
id: string;
|
|
39
|
+
name: string;
|
|
40
|
+
description: string;
|
|
41
|
+
required?: boolean;
|
|
42
|
+
enabled: boolean;
|
|
43
|
+
}
|
|
44
|
+
declare const CookiePreferences: React.ForwardRefExoticComponent<CookiePreferencesProps & React.RefAttributes<HTMLDivElement>>;
|
|
45
|
+
declare const CookiePreferencesHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
46
|
+
declare const CookiePreferencesTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
47
|
+
declare const CookiePreferencesDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
48
|
+
declare const CookiePreferencesList: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
49
|
+
export interface CookiePreferenceItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
50
|
+
name: string;
|
|
51
|
+
description: string;
|
|
52
|
+
required?: boolean;
|
|
53
|
+
checked?: boolean;
|
|
54
|
+
onChange?: (checked: boolean) => void;
|
|
55
|
+
}
|
|
56
|
+
declare const CookiePreferenceItem: React.ForwardRefExoticComponent<CookiePreferenceItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
57
|
+
declare const CookiePreferencesFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
58
|
+
export { CookieBanner, CookieBannerContent, CookieBannerText, CookieBannerTitle, CookieBannerDescription, CookieBannerActions, CookieBannerLink, CookiePreferences, CookiePreferencesHeader, CookiePreferencesTitle, CookiePreferencesDescription, CookiePreferencesList, CookiePreferenceItem, CookiePreferencesFooter, };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const ctaSectionVariants: (props?: ({
|
|
4
|
+
variant?: "default" | "dark" | "muted" | "primary" | "gradient" | "bordered" | null | undefined;
|
|
5
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface CTASectionProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof ctaSectionVariants> {
|
|
8
|
+
}
|
|
9
|
+
declare const CTASection: React.ForwardRefExoticComponent<CTASectionProps & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const ctaContentVariants: (props?: ({
|
|
11
|
+
align?: "left" | "center" | "split" | null | undefined;
|
|
12
|
+
maxWidth?: "sm" | "lg" | "full" | "md" | null | undefined;
|
|
13
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
14
|
+
export interface CTAContentProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof ctaContentVariants> {
|
|
15
|
+
}
|
|
16
|
+
declare const CTAContent: React.ForwardRefExoticComponent<CTAContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
declare const CTATitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
18
|
+
declare const CTADescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
19
|
+
declare const CTAActions: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
declare const CTACard: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
21
|
+
export { CTASection, CTAContent, CTATitle, CTADescription, CTAActions, CTACard, };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const emailFormVariants: (props?: ({
|
|
4
|
+
layout?: "inline" | "stacked" | null | undefined;
|
|
5
|
+
size?: "sm" | "default" | "lg" | "full" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface EmailFormProps extends Omit<React.FormHTMLAttributes<HTMLFormElement>, "onSubmit">, VariantProps<typeof emailFormVariants> {
|
|
8
|
+
onSubmit?: (email: string) => void | Promise<void>;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
buttonText?: string;
|
|
11
|
+
loading?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
helperText?: string;
|
|
14
|
+
successMessage?: string;
|
|
15
|
+
errorMessage?: string;
|
|
16
|
+
}
|
|
17
|
+
declare const EmailForm: React.ForwardRefExoticComponent<EmailFormProps & React.RefAttributes<HTMLFormElement>>;
|
|
18
|
+
export { EmailForm };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const faqSectionVariants: (props?: ({
|
|
4
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
+
export interface FAQSectionProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof faqSectionVariants> {
|
|
7
|
+
}
|
|
8
|
+
declare const FAQSection: React.ForwardRefExoticComponent<FAQSectionProps & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const FAQHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const FAQTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
11
|
+
declare const FAQDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
12
|
+
declare const faqListVariants: (props?: ({
|
|
13
|
+
variant?: "default" | "separated" | "cards" | null | undefined;
|
|
14
|
+
maxWidth?: "sm" | "lg" | "full" | "md" | null | undefined;
|
|
15
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
16
|
+
export interface FAQListProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof faqListVariants> {
|
|
17
|
+
}
|
|
18
|
+
declare const FAQList: React.ForwardRefExoticComponent<FAQListProps & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
export interface FAQItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
20
|
+
defaultOpen?: boolean;
|
|
21
|
+
}
|
|
22
|
+
declare const FAQItem: React.ForwardRefExoticComponent<FAQItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
export interface FAQItemCardProps extends FAQItemProps {
|
|
24
|
+
}
|
|
25
|
+
declare const FAQItemCard: React.ForwardRefExoticComponent<FAQItemCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
26
|
+
interface FAQQuestionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
27
|
+
isOpen?: boolean;
|
|
28
|
+
onToggle?: () => void;
|
|
29
|
+
}
|
|
30
|
+
declare const FAQQuestion: React.ForwardRefExoticComponent<FAQQuestionProps & React.RefAttributes<HTMLButtonElement>>;
|
|
31
|
+
interface FAQAnswerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
32
|
+
isOpen?: boolean;
|
|
33
|
+
}
|
|
34
|
+
declare const FAQAnswer: React.ForwardRefExoticComponent<FAQAnswerProps & React.RefAttributes<HTMLDivElement>>;
|
|
35
|
+
declare const FAQContact: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
36
|
+
export { FAQSection, FAQHeader, FAQTitle, FAQDescription, FAQList, FAQItem, FAQItemCard, FAQQuestion, FAQAnswer, FAQContact, };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const featureSpotVariants: (props?: ({
|
|
4
|
+
layout?: "grid" | "imageLeft" | "imageRight" | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
+
export interface FeatureSpotProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof featureSpotVariants> {
|
|
7
|
+
container?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const FeatureSpot: React.ForwardRefExoticComponent<FeatureSpotProps & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const FeatureSpotHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const FeatureSpotTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & {
|
|
12
|
+
as?: "h1" | "h2" | "h3";
|
|
13
|
+
} & React.RefAttributes<HTMLHeadingElement>>;
|
|
14
|
+
declare const FeatureSpotDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
15
|
+
export interface FeatureSpotGridProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
16
|
+
columns?: 2 | 3 | 4;
|
|
17
|
+
}
|
|
18
|
+
declare const FeatureSpotGrid: React.ForwardRefExoticComponent<FeatureSpotGridProps & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
export interface FeatureSpotItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
20
|
+
icon?: React.ReactNode;
|
|
21
|
+
}
|
|
22
|
+
declare const FeatureSpotItem: React.ForwardRefExoticComponent<FeatureSpotItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
declare const FeatureSpotItemTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
24
|
+
declare const FeatureSpotItemDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
25
|
+
export interface FeatureSpotSplitProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
26
|
+
reverse?: boolean;
|
|
27
|
+
}
|
|
28
|
+
declare const FeatureSpotSplit: React.ForwardRefExoticComponent<FeatureSpotSplitProps & React.RefAttributes<HTMLDivElement>>;
|
|
29
|
+
declare const FeatureSpotContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
30
|
+
declare const FeatureSpotMedia: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
31
|
+
export { FeatureSpot, FeatureSpotHeader, FeatureSpotTitle, FeatureSpotDescription, FeatureSpotGrid, FeatureSpotItem, FeatureSpotItemTitle, FeatureSpotItemDescription, FeatureSpotSplit, FeatureSpotContent, FeatureSpotMedia, };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const footerVariants: (props?: ({
|
|
4
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
|
+
export interface FooterProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof footerVariants> {
|
|
7
|
+
}
|
|
8
|
+
declare const Footer: React.ForwardRefExoticComponent<FooterProps & React.RefAttributes<HTMLElement>>;
|
|
9
|
+
declare const FooterContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const FooterSection: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const FooterTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
|
12
|
+
declare const FooterLinks: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLUListElement> & React.RefAttributes<HTMLUListElement>>;
|
|
13
|
+
export interface FooterLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
14
|
+
}
|
|
15
|
+
declare const FooterLink: React.ForwardRefExoticComponent<FooterLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
16
|
+
declare const FooterBottom: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
declare const FooterCopyright: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
18
|
+
declare const FooterSocial: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
export interface FooterSocialLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
20
|
+
label: string;
|
|
21
|
+
}
|
|
22
|
+
declare const FooterSocialLink: React.ForwardRefExoticComponent<FooterSocialLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
23
|
+
export { Footer, FooterContent, FooterSection, FooterTitle, FooterLinks, FooterLink, FooterBottom, FooterCopyright, FooterSocial, FooterSocialLink, };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
declare const gradientTextVariants: (props?: ({
|
|
4
|
+
gradient?: "gold" | "silver" | "primary" | "secondary" | "custom" | "rainbow" | "sunset" | "ocean" | "forest" | "fire" | "aurora" | "neon" | null | undefined;
|
|
5
|
+
animate?: "none" | "shimmer" | "pulse" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface GradientTextProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof gradientTextVariants> {
|
|
8
|
+
/**
|
|
9
|
+
* Custom gradient (use with gradient="custom")
|
|
10
|
+
* e.g., "from-blue-500 to-purple-500"
|
|
11
|
+
*/
|
|
12
|
+
customGradient?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Element to render as
|
|
15
|
+
*/
|
|
16
|
+
as?: "span" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p";
|
|
17
|
+
}
|
|
18
|
+
declare function GradientText({ className, gradient, animate, customGradient, as: Component, ...props }: GradientTextProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
declare namespace GradientText {
|
|
20
|
+
var displayName: string;
|
|
21
|
+
}
|
|
22
|
+
export interface GradientHeadingProps extends Omit<GradientTextProps, "as"> {
|
|
23
|
+
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
24
|
+
}
|
|
25
|
+
declare function GradientHeading({ className, level, ...props }: GradientHeadingProps): import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
declare namespace GradientHeading {
|
|
27
|
+
var displayName: string;
|
|
28
|
+
}
|
|
29
|
+
declare const GradientBorder: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
30
|
+
gradient?: string;
|
|
31
|
+
borderWidth?: number;
|
|
32
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
declare const GradientBackground: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
34
|
+
gradient?: string;
|
|
35
|
+
animate?: boolean;
|
|
36
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
37
|
+
declare const GradientDivider: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
38
|
+
gradient?: string;
|
|
39
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
40
|
+
declare const GradientBlob: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
41
|
+
color?: string;
|
|
42
|
+
size?: "sm" | "md" | "lg" | "xl";
|
|
43
|
+
blur?: "sm" | "md" | "lg" | "xl";
|
|
44
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
45
|
+
export { GradientText, GradientHeading, GradientBorder, GradientBackground, GradientDivider, GradientBlob, };
|