@web-my-money/blocks 1.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.
@@ -0,0 +1,29 @@
1
+ import * as React from 'react';
2
+
3
+ interface LightboxImageItem {
4
+ src: string;
5
+ alt?: string;
6
+ caption?: string;
7
+ /** Smaller image for the thumbnail grid — falls back to `src` if omitted. */
8
+ thumbnailSrc?: string;
9
+ }
10
+ interface ThumbnailProps {
11
+ image: LightboxImageItem;
12
+ onClick: () => void;
13
+ className?: string;
14
+ }
15
+ /** A single clickable gallery thumbnail — used directly for a custom grid layout, or via
16
+ * `LightboxGallery` for the batteries-included version. */
17
+ declare function Thumbnail({ image, onClick, className }: ThumbnailProps): React.JSX.Element;
18
+ interface LightboxGalleryProps {
19
+ images: LightboxImageItem[];
20
+ className?: string;
21
+ /** Tailwind grid-cols classes for the thumbnail grid. Default: 2 cols mobile, 4 cols desktop. */
22
+ gridClassName?: string;
23
+ }
24
+ /** Client image gallery — a responsive thumbnail grid that opens a fullscreen lightbox with
25
+ * prev/next navigation on click. Built for med-spa before/after sets, e-commerce product shots,
26
+ * portfolio galleries — the batteries-included version of `Lightbox`/`Thumbnail`. */
27
+ declare function LightboxGallery({ images, className, gridClassName }: LightboxGalleryProps): React.JSX.Element | null;
28
+
29
+ export { LightboxGallery as L, Thumbnail as T, type LightboxGalleryProps as a, type LightboxImageItem as b, type ThumbnailProps as c };
@@ -0,0 +1,29 @@
1
+ import * as React from 'react';
2
+
3
+ interface LightboxImageItem {
4
+ src: string;
5
+ alt?: string;
6
+ caption?: string;
7
+ /** Smaller image for the thumbnail grid — falls back to `src` if omitted. */
8
+ thumbnailSrc?: string;
9
+ }
10
+ interface ThumbnailProps {
11
+ image: LightboxImageItem;
12
+ onClick: () => void;
13
+ className?: string;
14
+ }
15
+ /** A single clickable gallery thumbnail — used directly for a custom grid layout, or via
16
+ * `LightboxGallery` for the batteries-included version. */
17
+ declare function Thumbnail({ image, onClick, className }: ThumbnailProps): React.JSX.Element;
18
+ interface LightboxGalleryProps {
19
+ images: LightboxImageItem[];
20
+ className?: string;
21
+ /** Tailwind grid-cols classes for the thumbnail grid. Default: 2 cols mobile, 4 cols desktop. */
22
+ gridClassName?: string;
23
+ }
24
+ /** Client image gallery — a responsive thumbnail grid that opens a fullscreen lightbox with
25
+ * prev/next navigation on click. Built for med-spa before/after sets, e-commerce product shots,
26
+ * portfolio galleries — the batteries-included version of `Lightbox`/`Thumbnail`. */
27
+ declare function LightboxGallery({ images, className, gridClassName }: LightboxGalleryProps): React.JSX.Element | null;
28
+
29
+ export { LightboxGallery as L, Thumbnail as T, type LightboxGalleryProps as a, type LightboxImageItem as b, type ThumbnailProps as c };
@@ -0,0 +1,4 @@
1
+ export { AvatarGroup, AvatarGroupProps, AvatarItem, BentoCell, BentoGrid, BentoGridProps, CTABanner, CTABannerData, CTABannerProps, CaseStudiesSection, CaseStudiesSectionProps, CaseStudy, CaseStudyResult, ComparisonRow, ComparisonTable, ComparisonTableProps, ContactForm, ContactFormData, ContactFormField, ContactFormProps, DEFAULT_WAVES, FadeUp, Faq, FaqItem, FaqProps, Feature, FeatureGrid, FeatureGridProps, Footer, FooterLink, FooterProps, HeroCanvas, HeroCanvasProps, HeroSection, HeroSectionProps, LayeredButton, LogoCloud, LogoCloudProps, LogoItem, Marquee, MarqueeProps, NavBar, NavBarData, NavBarProps, NavLink, PricingPlan, PricingTable, PricingTableProps, ProcessStep, ProcessSteps, ProcessStepsProps, ScrollReveal, ScrollRevealProps, SectionGlow, SectionGlowProps, SectionIntro, SectionIntroProps, SectionLabel, SectionLabelProps, SectionLabelVariant, SocialProof, SocialProofItem, SocialProofProps, StackBlock, StackRow, StatItem, StatsSection, StatsSectionProps, TechCarousel, TechCarouselProps, TechItem, Testimonial, TestimonialCarousel, TestimonialCarouselProps, Testimonial as TestimonialReview, TestimonialsCarousel, TestimonialsCarouselProps, TestimonialsData, TestimonialsSection, TestimonialsSectionProps, TextRotator, TextRotatorProps, UseCase, UseCasesData, UseCasesSection, UseCasesSectionProps, ValueStackData, ValueStackSection, ValueStackSectionProps, WaveCanvas, WaveCanvasProps, WaveDef } from './site.mjs';
2
+ export { L as LightboxGallery, a as LightboxGalleryProps, b as LightboxImageItem, T as Thumbnail, c as ThumbnailProps } from './index-D5sr_PKq.mjs';
3
+ export { ActionResult, ActivityFeed, ActivityFeedProps, ActivityItem, ActivityType, AppBrand, AppBrandProps, AppLayout, AppNav, AppNavGroup, AppNavItem, AppShell, AppShellProps, AppearanceSettings, AppearanceSettingsProps, BannerVariant, BrandFrame, BrandFrameProps, BreadcrumbItem, DashboardHeader, DashboardHeaderProps, DataSummaryCards, DataSummaryCardsProps, DataTable, DataTableProps, DataTableRow, EmptyState, EmptyStateProps, GlassPanel, GlassPanelProps, KPIItem, KPIRow, KPIRowProps, LayoutToggle, MetricCard, NotificationBanner, NotificationBannerProps, PageHeader, PageHeaderBanner, PageHeaderBannerProps, PageHeaderProps, RunOptions, SidebarMenuItem, SidebarNavigation, SidebarNavigationProps, StatCard, StatCardProps, SubTabItem, SubTabs, SubTabsProps, useActionRunner, useLayoutPreference, useOptimisticAction } from './app.mjs';
4
+ import 'react';
@@ -0,0 +1,4 @@
1
+ export { AvatarGroup, AvatarGroupProps, AvatarItem, BentoCell, BentoGrid, BentoGridProps, CTABanner, CTABannerData, CTABannerProps, CaseStudiesSection, CaseStudiesSectionProps, CaseStudy, CaseStudyResult, ComparisonRow, ComparisonTable, ComparisonTableProps, ContactForm, ContactFormData, ContactFormField, ContactFormProps, DEFAULT_WAVES, FadeUp, Faq, FaqItem, FaqProps, Feature, FeatureGrid, FeatureGridProps, Footer, FooterLink, FooterProps, HeroCanvas, HeroCanvasProps, HeroSection, HeroSectionProps, LayeredButton, LogoCloud, LogoCloudProps, LogoItem, Marquee, MarqueeProps, NavBar, NavBarData, NavBarProps, NavLink, PricingPlan, PricingTable, PricingTableProps, ProcessStep, ProcessSteps, ProcessStepsProps, ScrollReveal, ScrollRevealProps, SectionGlow, SectionGlowProps, SectionIntro, SectionIntroProps, SectionLabel, SectionLabelProps, SectionLabelVariant, SocialProof, SocialProofItem, SocialProofProps, StackBlock, StackRow, StatItem, StatsSection, StatsSectionProps, TechCarousel, TechCarouselProps, TechItem, Testimonial, TestimonialCarousel, TestimonialCarouselProps, Testimonial as TestimonialReview, TestimonialsCarousel, TestimonialsCarouselProps, TestimonialsData, TestimonialsSection, TestimonialsSectionProps, TextRotator, TextRotatorProps, UseCase, UseCasesData, UseCasesSection, UseCasesSectionProps, ValueStackData, ValueStackSection, ValueStackSectionProps, WaveCanvas, WaveCanvasProps, WaveDef } from './site.js';
2
+ export { L as LightboxGallery, a as LightboxGalleryProps, b as LightboxImageItem, T as Thumbnail, c as ThumbnailProps } from './index-D5sr_PKq.js';
3
+ export { ActionResult, ActivityFeed, ActivityFeedProps, ActivityItem, ActivityType, AppBrand, AppBrandProps, AppLayout, AppNav, AppNavGroup, AppNavItem, AppShell, AppShellProps, AppearanceSettings, AppearanceSettingsProps, BannerVariant, BrandFrame, BrandFrameProps, BreadcrumbItem, DashboardHeader, DashboardHeaderProps, DataSummaryCards, DataSummaryCardsProps, DataTable, DataTableProps, DataTableRow, EmptyState, EmptyStateProps, GlassPanel, GlassPanelProps, KPIItem, KPIRow, KPIRowProps, LayoutToggle, MetricCard, NotificationBanner, NotificationBannerProps, PageHeader, PageHeaderBanner, PageHeaderBannerProps, PageHeaderProps, RunOptions, SidebarMenuItem, SidebarNavigation, SidebarNavigationProps, StatCard, StatCardProps, SubTabItem, SubTabs, SubTabsProps, useActionRunner, useLayoutPreference, useOptimisticAction } from './app.js';
4
+ import 'react';