@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.
- package/dist/app.d.mts +454 -0
- package/dist/app.d.ts +454 -0
- package/dist/app.js +1293 -0
- package/dist/app.mjs +53 -0
- package/dist/chunk-L6OIX4DG.mjs +70 -0
- package/dist/chunk-PJO7WJ4G.mjs +10 -0
- package/dist/chunk-UM2RDUPI.mjs +1183 -0
- package/dist/chunk-X6SF4TT2.mjs +2205 -0
- package/dist/funnel.d.mts +80 -0
- package/dist/funnel.d.ts +80 -0
- package/dist/funnel.js +281 -0
- package/dist/funnel.mjs +235 -0
- package/dist/fx.d.mts +314 -0
- package/dist/fx.d.ts +314 -0
- package/dist/fx.js +1142 -0
- package/dist/fx.mjs +1084 -0
- package/dist/index-D5sr_PKq.d.mts +29 -0
- package/dist/index-D5sr_PKq.d.ts +29 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +3525 -0
- package/dist/index.mjs +121 -0
- package/dist/next.d.mts +32 -0
- package/dist/next.d.ts +32 -0
- package/dist/next.js +65 -0
- package/dist/next.mjs +28 -0
- package/dist/site.d.mts +532 -0
- package/dist/site.d.ts +532 -0
- package/dist/site.js +2338 -0
- package/dist/site.mjs +77 -0
- package/package.json +93 -0
|
@@ -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 };
|
package/dist/index.d.mts
ADDED
|
@@ -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';
|
package/dist/index.d.ts
ADDED
|
@@ -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';
|