@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.
Files changed (41) hide show
  1. package/dist/components/animated-counter.d.ts +98 -0
  2. package/dist/components/announcement-bar.d.ts +66 -0
  3. package/dist/components/app-download.d.ts +41 -0
  4. package/dist/components/bento-grid.d.ts +32 -0
  5. package/dist/components/blog-card.d.ts +38 -0
  6. package/dist/components/comparison-table.d.ts +37 -0
  7. package/dist/components/contact-form.d.ts +43 -0
  8. package/dist/components/content-spot.d.ts +17 -0
  9. package/dist/components/cookie-banner.d.ts +58 -0
  10. package/dist/components/cta-section.d.ts +21 -0
  11. package/dist/components/email-form.d.ts +18 -0
  12. package/dist/components/faq-accordion.d.ts +36 -0
  13. package/dist/components/feature-spot.d.ts +31 -0
  14. package/dist/components/footer.d.ts +23 -0
  15. package/dist/components/gradient-text.d.ts +45 -0
  16. package/dist/components/header-navigation.d.ts +18 -0
  17. package/dist/components/hero.d.ts +18 -0
  18. package/dist/components/logo-cloud.d.ts +19 -0
  19. package/dist/components/map-embed.d.ts +109 -0
  20. package/dist/components/marquee.d.ts +51 -0
  21. package/dist/components/newsletter.d.ts +21 -0
  22. package/dist/components/pricing-options.d.ts +29 -0
  23. package/dist/components/pricing-table.d.ts +23 -0
  24. package/dist/components/quote.d.ts +22 -0
  25. package/dist/components/shaders/index.d.ts +8 -0
  26. package/dist/components/shaders/shader-canvas-ogl.d.ts +18 -0
  27. package/dist/components/shaders/shader-canvas-r3f.d.ts +23 -0
  28. package/dist/components/shaders/shader-presets.d.ts +79 -0
  29. package/dist/components/shaders/types.d.ts +46 -0
  30. package/dist/components/social-proof.d.ts +64 -0
  31. package/dist/components/stats-section.d.ts +30 -0
  32. package/dist/components/team-section.d.ts +36 -0
  33. package/dist/components/testimonial.d.ts +31 -0
  34. package/dist/components/video-player.d.ts +83 -0
  35. package/dist/index.cjs +321 -0
  36. package/dist/index.d.ts +31 -0
  37. package/dist/index.js +5659 -0
  38. package/dist/lib/utils.d.ts +2 -0
  39. package/dist/styles.css +76 -0
  40. package/dist/test/setup.d.ts +1 -0
  41. package/package.json +80 -0
@@ -0,0 +1,36 @@
1
+ import * as React from "react";
2
+ import { type VariantProps } from "class-variance-authority";
3
+ declare const teamSectionVariants: (props?: ({
4
+ size?: "sm" | "default" | "lg" | null | undefined;
5
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
6
+ export interface TeamSectionProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof teamSectionVariants> {
7
+ }
8
+ declare const TeamSection: React.ForwardRefExoticComponent<TeamSectionProps & React.RefAttributes<HTMLDivElement>>;
9
+ declare const TeamHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
10
+ declare const TeamTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
11
+ declare const TeamDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
12
+ declare const teamGridVariants: (props?: ({
13
+ columns?: 2 | 3 | 4 | null | undefined;
14
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
15
+ export interface TeamGridProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof teamGridVariants> {
16
+ }
17
+ declare const TeamGrid: React.ForwardRefExoticComponent<TeamGridProps & React.RefAttributes<HTMLDivElement>>;
18
+ declare const teamMemberVariants: (props?: ({
19
+ variant?: "default" | "card" | null | undefined;
20
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
21
+ export interface TeamMemberProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof teamMemberVariants> {
22
+ }
23
+ declare const TeamMember: React.ForwardRefExoticComponent<TeamMemberProps & React.RefAttributes<HTMLDivElement>>;
24
+ export interface TeamMemberImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
25
+ fallback?: string;
26
+ }
27
+ declare const TeamMemberImage: React.ForwardRefExoticComponent<TeamMemberImageProps & React.RefAttributes<HTMLImageElement>>;
28
+ declare const TeamMemberName: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
29
+ declare const TeamMemberRole: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
30
+ declare const TeamMemberBio: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
31
+ declare const TeamMemberLinks: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
32
+ export interface TeamMemberLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
33
+ label: string;
34
+ }
35
+ declare const TeamMemberLink: React.ForwardRefExoticComponent<TeamMemberLinkProps & React.RefAttributes<HTMLAnchorElement>>;
36
+ export { TeamSection, TeamHeader, TeamTitle, TeamDescription, TeamGrid, TeamMember, TeamMemberImage, TeamMemberName, TeamMemberRole, TeamMemberBio, TeamMemberLinks, TeamMemberLink, };
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+ import { type VariantProps } from "class-variance-authority";
3
+ declare const testimonialVariants: (props?: ({
4
+ variant?: "default" | "card" | "minimal" | "featured" | null | undefined;
5
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
6
+ export interface TestimonialProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof testimonialVariants> {
7
+ author: {
8
+ name: string;
9
+ title?: string;
10
+ company?: string;
11
+ avatar?: string;
12
+ };
13
+ rating?: number;
14
+ showQuoteIcon?: boolean;
15
+ }
16
+ declare const Testimonial: React.ForwardRefExoticComponent<TestimonialProps & React.RefAttributes<HTMLDivElement>>;
17
+ export interface TestimonialGridProps extends React.HTMLAttributes<HTMLDivElement> {
18
+ columns?: 1 | 2 | 3;
19
+ }
20
+ declare const TestimonialGrid: React.ForwardRefExoticComponent<TestimonialGridProps & React.RefAttributes<HTMLDivElement>>;
21
+ export interface TestimonialCarouselProps extends React.HTMLAttributes<HTMLDivElement> {
22
+ testimonials: Array<{
23
+ content: React.ReactNode;
24
+ author: TestimonialProps["author"];
25
+ rating?: number;
26
+ }>;
27
+ autoPlay?: boolean;
28
+ interval?: number;
29
+ }
30
+ declare const TestimonialCarousel: React.ForwardRefExoticComponent<TestimonialCarouselProps & React.RefAttributes<HTMLDivElement>>;
31
+ export { Testimonial, TestimonialGrid, TestimonialCarousel };
@@ -0,0 +1,83 @@
1
+ import * as React from "react";
2
+ import { type VariantProps } from "class-variance-authority";
3
+ declare const videoContainerVariants: (props?: ({
4
+ rounded?: "sm" | "lg" | "none" | "xl" | "md" | "2xl" | null | undefined;
5
+ aspectRatio?: "auto" | "square" | "video" | "4/3" | "21/9" | null | undefined;
6
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
7
+ export interface VideoPlayerProps extends React.VideoHTMLAttributes<HTMLVideoElement>, VariantProps<typeof videoContainerVariants> {
8
+ /**
9
+ * Video source URL
10
+ */
11
+ src: string;
12
+ /**
13
+ * Poster image URL
14
+ */
15
+ poster?: string;
16
+ /**
17
+ * Whether to show custom controls
18
+ * @default true
19
+ */
20
+ showControls?: boolean;
21
+ /**
22
+ * Whether to show a play button overlay
23
+ * @default true
24
+ */
25
+ showPlayButton?: boolean;
26
+ /**
27
+ * Container className
28
+ */
29
+ containerClassName?: string;
30
+ }
31
+ declare const VideoPlayer: React.ForwardRefExoticComponent<VideoPlayerProps & React.RefAttributes<HTMLVideoElement>>;
32
+ export interface YouTubeEmbedProps extends React.IframeHTMLAttributes<HTMLIFrameElement>, VariantProps<typeof videoContainerVariants> {
33
+ /**
34
+ * YouTube video ID
35
+ */
36
+ videoId: string;
37
+ /**
38
+ * Whether to autoplay
39
+ * @default false
40
+ */
41
+ autoPlay?: boolean;
42
+ /**
43
+ * Container className
44
+ */
45
+ containerClassName?: string;
46
+ }
47
+ declare const YouTubeEmbed: React.ForwardRefExoticComponent<YouTubeEmbedProps & React.RefAttributes<HTMLIFrameElement>>;
48
+ export interface VimeoEmbedProps extends React.IframeHTMLAttributes<HTMLIFrameElement>, VariantProps<typeof videoContainerVariants> {
49
+ /**
50
+ * Vimeo video ID
51
+ */
52
+ videoId: string;
53
+ /**
54
+ * Whether to autoplay
55
+ * @default false
56
+ */
57
+ autoPlay?: boolean;
58
+ /**
59
+ * Container className
60
+ */
61
+ containerClassName?: string;
62
+ }
63
+ declare const VimeoEmbed: React.ForwardRefExoticComponent<VimeoEmbedProps & React.RefAttributes<HTMLIFrameElement>>;
64
+ export interface VideoModalProps {
65
+ /**
66
+ * Video source URL
67
+ */
68
+ src: string;
69
+ /**
70
+ * Whether the modal is open
71
+ */
72
+ isOpen: boolean;
73
+ /**
74
+ * Callback when modal closes
75
+ */
76
+ onClose: () => void;
77
+ /**
78
+ * Video title
79
+ */
80
+ title?: string;
81
+ }
82
+ declare const VideoModal: React.ForwardRefExoticComponent<VideoModalProps & React.RefAttributes<HTMLDivElement>>;
83
+ export { VideoPlayer, YouTubeEmbed, VimeoEmbed, VideoModal, };