@wow-two-beta/ui 0.0.58 → 0.0.60
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/{chunk-Y5GS4CLT.js → chunk-2N3N3IE2.js} +82 -3
- package/dist/chunk-2N3N3IE2.js.map +1 -0
- package/dist/{chunk-FYG23O4O.js → chunk-MTE5E6OQ.js} +49 -3
- package/dist/chunk-MTE5E6OQ.js.map +1 -0
- package/dist/display/featureCard/FeatureCard.d.ts +16 -0
- package/dist/display/featureCard/index.d.ts +1 -0
- package/dist/display/index.d.ts +3 -0
- package/dist/display/index.js +1 -1
- package/dist/display/pricingCard/PricingCard.d.ts +25 -0
- package/dist/display/pricingCard/index.d.ts +1 -0
- package/dist/display/stepCard/StepCard.d.ts +18 -0
- package/dist/display/stepCard/index.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/layout/divider/Divider.d.ts +19 -0
- package/dist/layout/divider/Divider.variants.d.ts +45 -0
- package/dist/layout/divider/index.d.ts +2 -0
- package/dist/layout/index.d.ts +1 -0
- package/dist/layout/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-FYG23O4O.js.map +0 -1
- package/dist/chunk-Y5GS4CLT.js.map +0 -1
|
@@ -5769,7 +5769,86 @@ var ActivityItem = forwardRef(
|
|
|
5769
5769
|
ActivityItem.displayName = "ActivityFeed.Item";
|
|
5770
5770
|
var ActivityFeed = ActivityFeedInner;
|
|
5771
5771
|
ActivityFeed.Item = ActivityItem;
|
|
5772
|
+
var FeatureCard = forwardRef(
|
|
5773
|
+
({ icon, title, description, children, className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5774
|
+
Card,
|
|
5775
|
+
{
|
|
5776
|
+
ref,
|
|
5777
|
+
variant: "outline",
|
|
5778
|
+
radius: "xl",
|
|
5779
|
+
elevation: 0,
|
|
5780
|
+
className: cn("bg-card p-6", className),
|
|
5781
|
+
...props,
|
|
5782
|
+
children: [
|
|
5783
|
+
icon && /* @__PURE__ */ jsx("span", { className: "grid size-11 place-items-center rounded-lg bg-primary-soft text-primary", children: icon }),
|
|
5784
|
+
/* @__PURE__ */ jsx(Heading, { level: 3, size: "md", className: cn("tracking-normal", icon && "mt-4"), children: title }),
|
|
5785
|
+
(description ?? children) && /* @__PURE__ */ jsx(Text, { size: "sm", color: "muted", className: "mt-2 leading-relaxed", children: description ?? children })
|
|
5786
|
+
]
|
|
5787
|
+
}
|
|
5788
|
+
)
|
|
5789
|
+
);
|
|
5790
|
+
FeatureCard.displayName = "FeatureCard";
|
|
5791
|
+
var StepCard = forwardRef(
|
|
5792
|
+
({ step, icon, title, description, children, className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5793
|
+
Card,
|
|
5794
|
+
{
|
|
5795
|
+
ref,
|
|
5796
|
+
variant: "outline",
|
|
5797
|
+
radius: "xl",
|
|
5798
|
+
elevation: 0,
|
|
5799
|
+
className: cn("relative overflow-hidden bg-card p-6", className),
|
|
5800
|
+
...props,
|
|
5801
|
+
children: [
|
|
5802
|
+
/* @__PURE__ */ jsx("span", { className: "absolute right-4 top-3 text-5xl font-bold text-foreground/5", children: step }),
|
|
5803
|
+
icon && /* @__PURE__ */ jsx("span", { className: "grid size-11 place-items-center rounded-lg bg-primary-soft text-primary", children: icon }),
|
|
5804
|
+
/* @__PURE__ */ jsx(Heading, { level: 3, size: "md", className: cn("tracking-normal", icon && "mt-4"), children: title }),
|
|
5805
|
+
(description ?? children) && /* @__PURE__ */ jsx(Text, { size: "sm", color: "muted", className: "mt-2", children: description ?? children })
|
|
5806
|
+
]
|
|
5807
|
+
}
|
|
5808
|
+
)
|
|
5809
|
+
);
|
|
5810
|
+
StepCard.displayName = "StepCard";
|
|
5811
|
+
var PricingCard = forwardRef(
|
|
5812
|
+
({ name, price, cadence, tagline, features, featured = false, badgeLabel = "Most popular", children, className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5813
|
+
Card,
|
|
5814
|
+
{
|
|
5815
|
+
ref,
|
|
5816
|
+
variant: "outline",
|
|
5817
|
+
radius: "2xl",
|
|
5818
|
+
elevation: 0,
|
|
5819
|
+
className: cn(
|
|
5820
|
+
"relative flex flex-col bg-card p-6",
|
|
5821
|
+
featured ? "border-primary shadow-lg shadow-primary/10" : "border-border",
|
|
5822
|
+
className
|
|
5823
|
+
),
|
|
5824
|
+
...props,
|
|
5825
|
+
children: [
|
|
5826
|
+
featured && /* @__PURE__ */ jsx(
|
|
5827
|
+
Badge,
|
|
5828
|
+
{
|
|
5829
|
+
variant: "brand",
|
|
5830
|
+
size: "md",
|
|
5831
|
+
className: "absolute -top-3 left-6 bg-primary px-3 py-1 text-xs font-medium text-primary-foreground",
|
|
5832
|
+
children: badgeLabel
|
|
5833
|
+
}
|
|
5834
|
+
),
|
|
5835
|
+
/* @__PURE__ */ jsx(Heading, { level: 3, size: "md", className: "tracking-normal", children: name }),
|
|
5836
|
+
/* @__PURE__ */ jsxs("div", { className: "mt-2 flex items-baseline gap-1", children: [
|
|
5837
|
+
/* @__PURE__ */ jsx("span", { className: "text-3xl font-bold tracking-tight", children: price }),
|
|
5838
|
+
cadence && /* @__PURE__ */ jsx(Text, { as: "span", size: "sm", color: "muted", children: cadence })
|
|
5839
|
+
] }),
|
|
5840
|
+
tagline && /* @__PURE__ */ jsx(Text, { size: "sm", color: "muted", className: "mt-2", children: tagline }),
|
|
5841
|
+
/* @__PURE__ */ jsx("ul", { className: "mt-5 flex flex-1 flex-col gap-2.5", children: features.map((feature, index) => /* @__PURE__ */ jsxs("li", { className: "flex items-start gap-2 text-sm", children: [
|
|
5842
|
+
/* @__PURE__ */ jsx(Icon, { icon: Check, size: 16, className: "mt-0.5 text-primary" }),
|
|
5843
|
+
/* @__PURE__ */ jsx("span", { children: feature })
|
|
5844
|
+
] }, index)) }),
|
|
5845
|
+
children && /* @__PURE__ */ jsx("div", { className: "mt-6", children })
|
|
5846
|
+
]
|
|
5847
|
+
}
|
|
5848
|
+
)
|
|
5849
|
+
);
|
|
5850
|
+
PricingCard.displayName = "PricingCard";
|
|
5772
5851
|
|
|
5773
|
-
export { Accordion2 as Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityFeed, ActivityItem, AnimatedNumber, AnnotationMarker, AudioPlayer, AudioWaveform, Avatar, AvatarGroup, Badge, BadgeOverlay, Card, Carousel, CarouselDot, CarouselDots, CarouselNext, CarouselPrev, CarouselSlide, CarouselSlides, CarouselViewport, ChatBubble, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, Comment, CommentThread, Confetti, CountBadge, CountUp, DataGrid, DataTable, DaySeparator, DescriptionList, DiffViewer, EmptyState, EventCalendar, Eyebrow, Gantt, GradientText, Heading, HeatmapCalendar, Highlight, Image, InfoRow, KeyboardShortcut, List, ListItem, Mark, Marquee, MessageList, MetaInline, MetricChip, NodeEditor, NotificationDot, PDFViewer, Quote, ReactionBar, ScheduleView, ScrollReveal, SectionHeader, Separator, Snippet, Sparkline, Stat, Status, SwipeActions, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeaderCell, TableRow, Tabs, TabsList, TabsPanel, TabsTab, Text, ThreadView, Tilt, Timeline, TimelineDescription, TimelineItem, TimelineTitle, Tooltip, Tree, TreeGroup, TreeItem, Typewriter, VideoPlayer, avatarVariants, badgeVariants, codeVariants, headingVariants, textVariants };
|
|
5774
|
-
//# sourceMappingURL=chunk-
|
|
5775
|
-
//# sourceMappingURL=chunk-
|
|
5852
|
+
export { Accordion2 as Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityFeed, ActivityItem, AnimatedNumber, AnnotationMarker, AudioPlayer, AudioWaveform, Avatar, AvatarGroup, Badge, BadgeOverlay, Card, Carousel, CarouselDot, CarouselDots, CarouselNext, CarouselPrev, CarouselSlide, CarouselSlides, CarouselViewport, ChatBubble, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, Comment, CommentThread, Confetti, CountBadge, CountUp, DataGrid, DataTable, DaySeparator, DescriptionList, DiffViewer, EmptyState, EventCalendar, Eyebrow, FeatureCard, Gantt, GradientText, Heading, HeatmapCalendar, Highlight, Image, InfoRow, KeyboardShortcut, List, ListItem, Mark, Marquee, MessageList, MetaInline, MetricChip, NodeEditor, NotificationDot, PDFViewer, PricingCard, Quote, ReactionBar, ScheduleView, ScrollReveal, SectionHeader, Separator, Snippet, Sparkline, Stat, Status, StepCard, SwipeActions, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeaderCell, TableRow, Tabs, TabsList, TabsPanel, TabsTab, Text, ThreadView, Tilt, Timeline, TimelineDescription, TimelineItem, TimelineTitle, Tooltip, Tree, TreeGroup, TreeItem, Typewriter, VideoPlayer, avatarVariants, badgeVariants, codeVariants, headingVariants, textVariants };
|
|
5853
|
+
//# sourceMappingURL=chunk-2N3N3IE2.js.map
|
|
5854
|
+
//# sourceMappingURL=chunk-2N3N3IE2.js.map
|