@dmitriikapustin/ui 0.4.1 → 0.4.3

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/index.d.cts CHANGED
@@ -201,6 +201,43 @@ interface SkeletonProps {
201
201
  }
202
202
  declare function Skeleton({ variant, width, height, className }: SkeletonProps): react_jsx_runtime.JSX.Element;
203
203
 
204
+ type HeadingTag = 'h1' | 'h2' | 'h3';
205
+ type HeadingAlign = 'left' | 'center';
206
+ type HeadingSize = 'sm' | 'md' | 'lg';
207
+ interface SectionHeadingProps {
208
+ children: ReactNode;
209
+ /**
210
+ * Размер заголовка (responsive clamp).
211
+ * - `'sm'` — `clamp(1.125rem, 2.5vw, 1.375rem)` ≈ 18-22px. Sub-block heading, card group titles.
212
+ * - `'md'` (default) — `clamp(1.5rem, 3vw, 2rem)` ≈ 24-32px. Typical section h2 (industry-standard).
213
+ * - `'lg'` — `clamp(1.75rem, 4vw, 2.75rem)` ≈ 28-44px. Landing promo section (= PromoSplit/PromoTestimonials).
214
+ */
215
+ size?: HeadingSize;
216
+ /** HTML-тег. Default `'h2'`. Не привязан к size — используй для семантики. */
217
+ as?: HeadingTag;
218
+ /** Выравнивание. Default `'left'`. */
219
+ align?: HeadingAlign;
220
+ /** Опциональный subtitle ниже заголовка. */
221
+ subtitle?: ReactNode;
222
+ className?: string;
223
+ }
224
+ /**
225
+ * Единый source типографики для section-headings во всём пакете и потребителях.
226
+ * Три размера:
227
+ * - `sm` (18-22px) — подсекции, group titles.
228
+ * - `md` (24-32px, default) — typical section h2 (industry-standard: shadcn / Tailwind UI / Linear).
229
+ * - `lg` (28-44px) — landing promo headings (идентично PromoSplit/PromoTestimonials).
230
+ *
231
+ * Прop `as` (h1/h2/h3) независим от `size` — используй для семантики:
232
+ *
233
+ * ```tsx
234
+ * <SectionHeading>Section h2 — default md size</SectionHeading>
235
+ * <SectionHeading size="lg" as="h1">Landing hero h1 — large</SectionHeading>
236
+ * <SectionHeading size="sm" as="h3">Subsection</SectionHeading>
237
+ * ```
238
+ */
239
+ declare function SectionHeading({ children, size, as, align, subtitle, className, }: SectionHeadingProps): react_jsx_runtime.JSX.Element;
240
+
204
241
  interface TicketButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
205
242
  children: ReactNode;
206
243
  icon?: ReactNode;
@@ -692,9 +729,17 @@ interface HeroSectionProps {
692
729
  * На mobile (≤ 768px) всегда стекируется снизу.
693
730
  */
694
731
  mediaPosition?: 'left' | 'right';
732
+ /**
733
+ * Управление вертикальным padding'ом `.inner` обёртки.
734
+ * - `'default'` (default, BC) — `5rem` mobile / `8rem` md.
735
+ * - `'none'` — `padding-block: 0`. Использовать когда родитель (consumer)
736
+ * контролирует vertical rhythm через свой wrapper и текущий пакетный
737
+ * padding создаёт двойной gap.
738
+ */
739
+ verticalPadding?: 'default' | 'none';
695
740
  className?: string;
696
741
  }
697
- declare function HeroSection({ eyebrow, title, subtitle, actions, media, align, size, mediaPosition, className, }: HeroSectionProps): react_jsx_runtime.JSX.Element;
742
+ declare function HeroSection({ eyebrow, title, subtitle, actions, media, align, size, mediaPosition, verticalPadding, className, }: HeroSectionProps): react_jsx_runtime.JSX.Element;
698
743
 
699
744
  interface LogoCloudProps {
700
745
  label?: string;
@@ -724,9 +769,16 @@ interface CTASectionProps {
724
769
  description?: string;
725
770
  actions?: ReactNode;
726
771
  variant?: 'default' | 'filled' | 'bordered';
772
+ /**
773
+ * Управление вертикальным padding'ом для variant=`'default'` (без bg).
774
+ * - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
775
+ * - `'none'` — `padding-block: 0`.
776
+ * **Игнорируется** для `filled` / `bordered` variants — там padding внутренний (отступ от bg-границы до текста).
777
+ */
778
+ verticalPadding?: 'default' | 'none';
727
779
  className?: string;
728
780
  }
729
- declare function CTASection({ title, description, actions, variant, className, }: CTASectionProps): react_jsx_runtime.JSX.Element;
781
+ declare function CTASection({ title, description, actions, variant, verticalPadding, className, }: CTASectionProps): react_jsx_runtime.JSX.Element;
730
782
 
731
783
  interface BentoItem {
732
784
  title: string;
@@ -739,9 +791,15 @@ interface BentoItem {
739
791
  }
740
792
  interface BentoGridProps {
741
793
  items: BentoItem[];
794
+ /**
795
+ * Управление вертикальным padding'ом `.root`.
796
+ * - `'default'` (default, BC) — `2.5rem` mobile / `3.5rem` md.
797
+ * - `'none'` — `padding-block: 0` (родитель контролирует rhythm).
798
+ */
799
+ verticalPadding?: 'default' | 'none';
742
800
  className?: string;
743
801
  }
744
- declare function BentoGrid({ items, className }: BentoGridProps): react_jsx_runtime.JSX.Element;
802
+ declare function BentoGrid({ items, verticalPadding, className }: BentoGridProps): react_jsx_runtime.JSX.Element;
745
803
 
746
804
  interface FAQItem {
747
805
  question: string;
@@ -843,9 +901,16 @@ interface PromoSplitProps {
843
901
  }[];
844
902
  media?: ReactNode;
845
903
  mediaPosition?: 'left' | 'right';
904
+ /**
905
+ * Управление вертикальным padding'ом `.root`.
906
+ * - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
907
+ * - `'none'` — `padding-block: 0`. Использовать когда родитель
908
+ * контролирует vertical rhythm.
909
+ */
910
+ verticalPadding?: 'default' | 'none';
846
911
  className?: string;
847
912
  }
848
- declare function PromoSplit({ heading, description, features, media, mediaPosition, className, }: PromoSplitProps): react_jsx_runtime.JSX.Element;
913
+ declare function PromoSplit({ heading, description, features, media, mediaPosition, verticalPadding, className, }: PromoSplitProps): react_jsx_runtime.JSX.Element;
849
914
 
850
915
  interface TrustFeature {
851
916
  icon?: ReactNode;
@@ -883,9 +948,15 @@ interface PromoTestimonialsProps {
883
948
  subtitle?: string;
884
949
  testimonials: Testimonial[];
885
950
  media?: ReactNode;
951
+ /**
952
+ * Управление вертикальным padding'ом `.root`.
953
+ * - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
954
+ * - `'none'` — `padding-block: 0`.
955
+ */
956
+ verticalPadding?: 'default' | 'none';
886
957
  className?: string;
887
958
  }
888
- declare function PromoTestimonials({ heading, subtitle, testimonials, media, className, }: PromoTestimonialsProps): react_jsx_runtime.JSX.Element;
959
+ declare function PromoTestimonials({ heading, subtitle, testimonials, media, verticalPadding, className, }: PromoTestimonialsProps): react_jsx_runtime.JSX.Element;
889
960
 
890
961
  interface PromoHeroProps {
891
962
  title: ReactNode;
@@ -1164,4 +1235,4 @@ interface LandingLayoutProps {
1164
1235
  }
1165
1236
  declare function LandingLayout({ mode, nav, footer, children, className, }: LandingLayoutProps): react_jsx_runtime.JSX.Element;
1166
1237
 
1167
- export { Alert, AppCard, AppTopLine, ArticleBarChart, type ArticleBarChartProps, ArticleBody, type ArticleBodyProps, ArticleChatBlock, type ArticleChatBlockProps, ArticleFigure, type ArticleFigureProps, ArticleFooter, type ArticleFooterProps, ArticleHeading, type ArticleHeadingProps, ArticleHero, type ArticleHeroProps, ArticleLayout, type ArticleLayoutProps, ArticleLineChart, type ArticleLineChartProps, ArticleLinkButton, type ArticleLinkButtonProps, ArticleList, type ArticleListProps, ArticleNarrow, ArticleNote, type ArticleNoteProps, ArticleScatterChart, type ArticleScatterChartProps, ArticleTable, type ArticleTableColumn, type ArticleTableProps, type ArticleTableRow, ArticleWide, Avatar, Badge, BentoGrid, BottomSheet, Breadcrumbs, Button, CTASection, Card, type ChartSeries, ChatInput, ChatMessage, Checkbox, CodeInput, ComparisonTable, Divider, DropdownMenu, EmptyState, FAQSection, FeatureGrid, Footer, FormField, Gallery, Header, HeroSection, IconBadge, IconButton, IconWithText, IconlyActivity, IconlyAttach, IconlyBook, IconlyCategory, IconlyCheck, IconlyChevronDown, IconlyChevronLeft, IconlyChevronRight, IconlyClock, IconlyClose, IconlyError, IconlyEye, IconlyEyeOff, IconlyFolder, IconlyHeart, IconlyInfo, IconlyInfoCircle, IconlyLink, IconlyLock, IconlyMail, IconlyMenu, IconlyMoon, IconlyQuote, IconlyRoadmap, IconlySandbox, IconlySearch, IconlySend, IconlySetting, IconlyShield, IconlySmile, IconlyStar, IconlySuccess, IconlySun, IconlyWarning, Input, LandingLayout, Logo, LogoCloud, MenuItem, Modal, Pagination, PasswordInput, PricingCard, type PricingFeature, ProfileNav, PromoActionCards, PromoBento, PromoDevicesCTA, PromoHero, PromoHeroForm, PromoPricing, PromoShowcase, PromoSplit, PromoTestimonials, PromoTrustGrid, Radio, type ScatterPoint, SearchBar, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, Sidebar, type SidebarItem, Skeleton, Spinner, StampCard, Stat, StatBadge, StatsBar, Link as StyledLink, Tabs, Tag, TestimonialCard, Textarea, TicketButton, Toast, Toggle, Tooltip, TopPromo };
1238
+ export { Alert, AppCard, AppTopLine, ArticleBarChart, type ArticleBarChartProps, ArticleBody, type ArticleBodyProps, ArticleChatBlock, type ArticleChatBlockProps, ArticleFigure, type ArticleFigureProps, ArticleFooter, type ArticleFooterProps, ArticleHeading, type ArticleHeadingProps, ArticleHero, type ArticleHeroProps, ArticleLayout, type ArticleLayoutProps, ArticleLineChart, type ArticleLineChartProps, ArticleLinkButton, type ArticleLinkButtonProps, ArticleList, type ArticleListProps, ArticleNarrow, ArticleNote, type ArticleNoteProps, ArticleScatterChart, type ArticleScatterChartProps, ArticleTable, type ArticleTableColumn, type ArticleTableProps, type ArticleTableRow, ArticleWide, Avatar, Badge, BentoGrid, BottomSheet, Breadcrumbs, Button, CTASection, Card, type ChartSeries, ChatInput, ChatMessage, Checkbox, CodeInput, ComparisonTable, Divider, DropdownMenu, EmptyState, FAQSection, FeatureGrid, Footer, FormField, Gallery, Header, HeroSection, IconBadge, IconButton, IconWithText, IconlyActivity, IconlyAttach, IconlyBook, IconlyCategory, IconlyCheck, IconlyChevronDown, IconlyChevronLeft, IconlyChevronRight, IconlyClock, IconlyClose, IconlyError, IconlyEye, IconlyEyeOff, IconlyFolder, IconlyHeart, IconlyInfo, IconlyInfoCircle, IconlyLink, IconlyLock, IconlyMail, IconlyMenu, IconlyMoon, IconlyQuote, IconlyRoadmap, IconlySandbox, IconlySearch, IconlySend, IconlySetting, IconlyShield, IconlySmile, IconlyStar, IconlySuccess, IconlySun, IconlyWarning, Input, LandingLayout, Logo, LogoCloud, MenuItem, Modal, Pagination, PasswordInput, PricingCard, type PricingFeature, ProfileNav, PromoActionCards, PromoBento, PromoDevicesCTA, PromoHero, PromoHeroForm, PromoPricing, PromoShowcase, PromoSplit, PromoTestimonials, PromoTrustGrid, Radio, type ScatterPoint, SearchBar, SectionHeading, type SectionHeadingProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, Sidebar, type SidebarItem, Skeleton, Spinner, StampCard, Stat, StatBadge, StatsBar, Link as StyledLink, Tabs, Tag, TestimonialCard, Textarea, TicketButton, Toast, Toggle, Tooltip, TopPromo };
package/dist/index.d.ts CHANGED
@@ -201,6 +201,43 @@ interface SkeletonProps {
201
201
  }
202
202
  declare function Skeleton({ variant, width, height, className }: SkeletonProps): react_jsx_runtime.JSX.Element;
203
203
 
204
+ type HeadingTag = 'h1' | 'h2' | 'h3';
205
+ type HeadingAlign = 'left' | 'center';
206
+ type HeadingSize = 'sm' | 'md' | 'lg';
207
+ interface SectionHeadingProps {
208
+ children: ReactNode;
209
+ /**
210
+ * Размер заголовка (responsive clamp).
211
+ * - `'sm'` — `clamp(1.125rem, 2.5vw, 1.375rem)` ≈ 18-22px. Sub-block heading, card group titles.
212
+ * - `'md'` (default) — `clamp(1.5rem, 3vw, 2rem)` ≈ 24-32px. Typical section h2 (industry-standard).
213
+ * - `'lg'` — `clamp(1.75rem, 4vw, 2.75rem)` ≈ 28-44px. Landing promo section (= PromoSplit/PromoTestimonials).
214
+ */
215
+ size?: HeadingSize;
216
+ /** HTML-тег. Default `'h2'`. Не привязан к size — используй для семантики. */
217
+ as?: HeadingTag;
218
+ /** Выравнивание. Default `'left'`. */
219
+ align?: HeadingAlign;
220
+ /** Опциональный subtitle ниже заголовка. */
221
+ subtitle?: ReactNode;
222
+ className?: string;
223
+ }
224
+ /**
225
+ * Единый source типографики для section-headings во всём пакете и потребителях.
226
+ * Три размера:
227
+ * - `sm` (18-22px) — подсекции, group titles.
228
+ * - `md` (24-32px, default) — typical section h2 (industry-standard: shadcn / Tailwind UI / Linear).
229
+ * - `lg` (28-44px) — landing promo headings (идентично PromoSplit/PromoTestimonials).
230
+ *
231
+ * Прop `as` (h1/h2/h3) независим от `size` — используй для семантики:
232
+ *
233
+ * ```tsx
234
+ * <SectionHeading>Section h2 — default md size</SectionHeading>
235
+ * <SectionHeading size="lg" as="h1">Landing hero h1 — large</SectionHeading>
236
+ * <SectionHeading size="sm" as="h3">Subsection</SectionHeading>
237
+ * ```
238
+ */
239
+ declare function SectionHeading({ children, size, as, align, subtitle, className, }: SectionHeadingProps): react_jsx_runtime.JSX.Element;
240
+
204
241
  interface TicketButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
205
242
  children: ReactNode;
206
243
  icon?: ReactNode;
@@ -692,9 +729,17 @@ interface HeroSectionProps {
692
729
  * На mobile (≤ 768px) всегда стекируется снизу.
693
730
  */
694
731
  mediaPosition?: 'left' | 'right';
732
+ /**
733
+ * Управление вертикальным padding'ом `.inner` обёртки.
734
+ * - `'default'` (default, BC) — `5rem` mobile / `8rem` md.
735
+ * - `'none'` — `padding-block: 0`. Использовать когда родитель (consumer)
736
+ * контролирует vertical rhythm через свой wrapper и текущий пакетный
737
+ * padding создаёт двойной gap.
738
+ */
739
+ verticalPadding?: 'default' | 'none';
695
740
  className?: string;
696
741
  }
697
- declare function HeroSection({ eyebrow, title, subtitle, actions, media, align, size, mediaPosition, className, }: HeroSectionProps): react_jsx_runtime.JSX.Element;
742
+ declare function HeroSection({ eyebrow, title, subtitle, actions, media, align, size, mediaPosition, verticalPadding, className, }: HeroSectionProps): react_jsx_runtime.JSX.Element;
698
743
 
699
744
  interface LogoCloudProps {
700
745
  label?: string;
@@ -724,9 +769,16 @@ interface CTASectionProps {
724
769
  description?: string;
725
770
  actions?: ReactNode;
726
771
  variant?: 'default' | 'filled' | 'bordered';
772
+ /**
773
+ * Управление вертикальным padding'ом для variant=`'default'` (без bg).
774
+ * - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
775
+ * - `'none'` — `padding-block: 0`.
776
+ * **Игнорируется** для `filled` / `bordered` variants — там padding внутренний (отступ от bg-границы до текста).
777
+ */
778
+ verticalPadding?: 'default' | 'none';
727
779
  className?: string;
728
780
  }
729
- declare function CTASection({ title, description, actions, variant, className, }: CTASectionProps): react_jsx_runtime.JSX.Element;
781
+ declare function CTASection({ title, description, actions, variant, verticalPadding, className, }: CTASectionProps): react_jsx_runtime.JSX.Element;
730
782
 
731
783
  interface BentoItem {
732
784
  title: string;
@@ -739,9 +791,15 @@ interface BentoItem {
739
791
  }
740
792
  interface BentoGridProps {
741
793
  items: BentoItem[];
794
+ /**
795
+ * Управление вертикальным padding'ом `.root`.
796
+ * - `'default'` (default, BC) — `2.5rem` mobile / `3.5rem` md.
797
+ * - `'none'` — `padding-block: 0` (родитель контролирует rhythm).
798
+ */
799
+ verticalPadding?: 'default' | 'none';
742
800
  className?: string;
743
801
  }
744
- declare function BentoGrid({ items, className }: BentoGridProps): react_jsx_runtime.JSX.Element;
802
+ declare function BentoGrid({ items, verticalPadding, className }: BentoGridProps): react_jsx_runtime.JSX.Element;
745
803
 
746
804
  interface FAQItem {
747
805
  question: string;
@@ -843,9 +901,16 @@ interface PromoSplitProps {
843
901
  }[];
844
902
  media?: ReactNode;
845
903
  mediaPosition?: 'left' | 'right';
904
+ /**
905
+ * Управление вертикальным padding'ом `.root`.
906
+ * - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
907
+ * - `'none'` — `padding-block: 0`. Использовать когда родитель
908
+ * контролирует vertical rhythm.
909
+ */
910
+ verticalPadding?: 'default' | 'none';
846
911
  className?: string;
847
912
  }
848
- declare function PromoSplit({ heading, description, features, media, mediaPosition, className, }: PromoSplitProps): react_jsx_runtime.JSX.Element;
913
+ declare function PromoSplit({ heading, description, features, media, mediaPosition, verticalPadding, className, }: PromoSplitProps): react_jsx_runtime.JSX.Element;
849
914
 
850
915
  interface TrustFeature {
851
916
  icon?: ReactNode;
@@ -883,9 +948,15 @@ interface PromoTestimonialsProps {
883
948
  subtitle?: string;
884
949
  testimonials: Testimonial[];
885
950
  media?: ReactNode;
951
+ /**
952
+ * Управление вертикальным padding'ом `.root`.
953
+ * - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
954
+ * - `'none'` — `padding-block: 0`.
955
+ */
956
+ verticalPadding?: 'default' | 'none';
886
957
  className?: string;
887
958
  }
888
- declare function PromoTestimonials({ heading, subtitle, testimonials, media, className, }: PromoTestimonialsProps): react_jsx_runtime.JSX.Element;
959
+ declare function PromoTestimonials({ heading, subtitle, testimonials, media, verticalPadding, className, }: PromoTestimonialsProps): react_jsx_runtime.JSX.Element;
889
960
 
890
961
  interface PromoHeroProps {
891
962
  title: ReactNode;
@@ -1164,4 +1235,4 @@ interface LandingLayoutProps {
1164
1235
  }
1165
1236
  declare function LandingLayout({ mode, nav, footer, children, className, }: LandingLayoutProps): react_jsx_runtime.JSX.Element;
1166
1237
 
1167
- export { Alert, AppCard, AppTopLine, ArticleBarChart, type ArticleBarChartProps, ArticleBody, type ArticleBodyProps, ArticleChatBlock, type ArticleChatBlockProps, ArticleFigure, type ArticleFigureProps, ArticleFooter, type ArticleFooterProps, ArticleHeading, type ArticleHeadingProps, ArticleHero, type ArticleHeroProps, ArticleLayout, type ArticleLayoutProps, ArticleLineChart, type ArticleLineChartProps, ArticleLinkButton, type ArticleLinkButtonProps, ArticleList, type ArticleListProps, ArticleNarrow, ArticleNote, type ArticleNoteProps, ArticleScatterChart, type ArticleScatterChartProps, ArticleTable, type ArticleTableColumn, type ArticleTableProps, type ArticleTableRow, ArticleWide, Avatar, Badge, BentoGrid, BottomSheet, Breadcrumbs, Button, CTASection, Card, type ChartSeries, ChatInput, ChatMessage, Checkbox, CodeInput, ComparisonTable, Divider, DropdownMenu, EmptyState, FAQSection, FeatureGrid, Footer, FormField, Gallery, Header, HeroSection, IconBadge, IconButton, IconWithText, IconlyActivity, IconlyAttach, IconlyBook, IconlyCategory, IconlyCheck, IconlyChevronDown, IconlyChevronLeft, IconlyChevronRight, IconlyClock, IconlyClose, IconlyError, IconlyEye, IconlyEyeOff, IconlyFolder, IconlyHeart, IconlyInfo, IconlyInfoCircle, IconlyLink, IconlyLock, IconlyMail, IconlyMenu, IconlyMoon, IconlyQuote, IconlyRoadmap, IconlySandbox, IconlySearch, IconlySend, IconlySetting, IconlyShield, IconlySmile, IconlyStar, IconlySuccess, IconlySun, IconlyWarning, Input, LandingLayout, Logo, LogoCloud, MenuItem, Modal, Pagination, PasswordInput, PricingCard, type PricingFeature, ProfileNav, PromoActionCards, PromoBento, PromoDevicesCTA, PromoHero, PromoHeroForm, PromoPricing, PromoShowcase, PromoSplit, PromoTestimonials, PromoTrustGrid, Radio, type ScatterPoint, SearchBar, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, Sidebar, type SidebarItem, Skeleton, Spinner, StampCard, Stat, StatBadge, StatsBar, Link as StyledLink, Tabs, Tag, TestimonialCard, Textarea, TicketButton, Toast, Toggle, Tooltip, TopPromo };
1238
+ export { Alert, AppCard, AppTopLine, ArticleBarChart, type ArticleBarChartProps, ArticleBody, type ArticleBodyProps, ArticleChatBlock, type ArticleChatBlockProps, ArticleFigure, type ArticleFigureProps, ArticleFooter, type ArticleFooterProps, ArticleHeading, type ArticleHeadingProps, ArticleHero, type ArticleHeroProps, ArticleLayout, type ArticleLayoutProps, ArticleLineChart, type ArticleLineChartProps, ArticleLinkButton, type ArticleLinkButtonProps, ArticleList, type ArticleListProps, ArticleNarrow, ArticleNote, type ArticleNoteProps, ArticleScatterChart, type ArticleScatterChartProps, ArticleTable, type ArticleTableColumn, type ArticleTableProps, type ArticleTableRow, ArticleWide, Avatar, Badge, BentoGrid, BottomSheet, Breadcrumbs, Button, CTASection, Card, type ChartSeries, ChatInput, ChatMessage, Checkbox, CodeInput, ComparisonTable, Divider, DropdownMenu, EmptyState, FAQSection, FeatureGrid, Footer, FormField, Gallery, Header, HeroSection, IconBadge, IconButton, IconWithText, IconlyActivity, IconlyAttach, IconlyBook, IconlyCategory, IconlyCheck, IconlyChevronDown, IconlyChevronLeft, IconlyChevronRight, IconlyClock, IconlyClose, IconlyError, IconlyEye, IconlyEyeOff, IconlyFolder, IconlyHeart, IconlyInfo, IconlyInfoCircle, IconlyLink, IconlyLock, IconlyMail, IconlyMenu, IconlyMoon, IconlyQuote, IconlyRoadmap, IconlySandbox, IconlySearch, IconlySend, IconlySetting, IconlyShield, IconlySmile, IconlyStar, IconlySuccess, IconlySun, IconlyWarning, Input, LandingLayout, Logo, LogoCloud, MenuItem, Modal, Pagination, PasswordInput, PricingCard, type PricingFeature, ProfileNav, PromoActionCards, PromoBento, PromoDevicesCTA, PromoHero, PromoHeroForm, PromoPricing, PromoShowcase, PromoSplit, PromoTestimonials, PromoTrustGrid, Radio, type ScatterPoint, SearchBar, SectionHeading, type SectionHeadingProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, Sidebar, type SidebarItem, Skeleton, Spinner, StampCard, Stat, StatBadge, StatsBar, Link as StyledLink, Tabs, Tag, TestimonialCard, Textarea, TicketButton, Toast, Toggle, Tooltip, TopPromo };