@dmitriikapustin/ui 0.4.1 → 0.4.2
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.cjs +664 -527
- package/dist/index.d.cts +68 -6
- package/dist/index.d.ts +68 -6
- package/dist/index.js +665 -529
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -201,6 +201,34 @@ 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
|
+
interface SectionHeadingProps {
|
|
207
|
+
children: ReactNode;
|
|
208
|
+
/** HTML-тег. Default `'h2'` (стандартный section heading). */
|
|
209
|
+
as?: HeadingTag;
|
|
210
|
+
/** Выравнивание. Default `'left'`. */
|
|
211
|
+
align?: HeadingAlign;
|
|
212
|
+
/** Опциональный subtitle ниже заголовка. */
|
|
213
|
+
subtitle?: ReactNode;
|
|
214
|
+
className?: string;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Единый source для section-h2 типографики во всём пакете и потребителях.
|
|
218
|
+
* Берёт ту же типографику что у `PromoSplit.heading` / `PromoTestimonials.heading`:
|
|
219
|
+
* `font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.1; letter-spacing: -0.03em`.
|
|
220
|
+
*
|
|
221
|
+
* Закрывает кейс когда потребитель кладёт `FeatureGrid` / `BentoGrid` / `Gallery`
|
|
222
|
+
* без встроенного title и вынужден захардкоживать ту же типографику в своём `.heading`
|
|
223
|
+
* — теперь импортирует `<SectionHeading>` и получает единый стиль автоматически.
|
|
224
|
+
*
|
|
225
|
+
* ```tsx
|
|
226
|
+
* <SectionHeading>Почему гости выбирают этот отель</SectionHeading>
|
|
227
|
+
* <FeatureGrid features={...} verticalPadding="none" />
|
|
228
|
+
* ```
|
|
229
|
+
*/
|
|
230
|
+
declare function SectionHeading({ children, as, align, subtitle, className, }: SectionHeadingProps): react_jsx_runtime.JSX.Element;
|
|
231
|
+
|
|
204
232
|
interface TicketButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
205
233
|
children: ReactNode;
|
|
206
234
|
icon?: ReactNode;
|
|
@@ -692,9 +720,17 @@ interface HeroSectionProps {
|
|
|
692
720
|
* На mobile (≤ 768px) всегда стекируется снизу.
|
|
693
721
|
*/
|
|
694
722
|
mediaPosition?: 'left' | 'right';
|
|
723
|
+
/**
|
|
724
|
+
* Управление вертикальным padding'ом `.inner` обёртки.
|
|
725
|
+
* - `'default'` (default, BC) — `5rem` mobile / `8rem` md.
|
|
726
|
+
* - `'none'` — `padding-block: 0`. Использовать когда родитель (consumer)
|
|
727
|
+
* контролирует vertical rhythm через свой wrapper и текущий пакетный
|
|
728
|
+
* padding создаёт двойной gap.
|
|
729
|
+
*/
|
|
730
|
+
verticalPadding?: 'default' | 'none';
|
|
695
731
|
className?: string;
|
|
696
732
|
}
|
|
697
|
-
declare function HeroSection({ eyebrow, title, subtitle, actions, media, align, size, mediaPosition, className, }: HeroSectionProps): react_jsx_runtime.JSX.Element;
|
|
733
|
+
declare function HeroSection({ eyebrow, title, subtitle, actions, media, align, size, mediaPosition, verticalPadding, className, }: HeroSectionProps): react_jsx_runtime.JSX.Element;
|
|
698
734
|
|
|
699
735
|
interface LogoCloudProps {
|
|
700
736
|
label?: string;
|
|
@@ -724,9 +760,16 @@ interface CTASectionProps {
|
|
|
724
760
|
description?: string;
|
|
725
761
|
actions?: ReactNode;
|
|
726
762
|
variant?: 'default' | 'filled' | 'bordered';
|
|
763
|
+
/**
|
|
764
|
+
* Управление вертикальным padding'ом для variant=`'default'` (без bg).
|
|
765
|
+
* - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
|
|
766
|
+
* - `'none'` — `padding-block: 0`.
|
|
767
|
+
* **Игнорируется** для `filled` / `bordered` variants — там padding внутренний (отступ от bg-границы до текста).
|
|
768
|
+
*/
|
|
769
|
+
verticalPadding?: 'default' | 'none';
|
|
727
770
|
className?: string;
|
|
728
771
|
}
|
|
729
|
-
declare function CTASection({ title, description, actions, variant, className, }: CTASectionProps): react_jsx_runtime.JSX.Element;
|
|
772
|
+
declare function CTASection({ title, description, actions, variant, verticalPadding, className, }: CTASectionProps): react_jsx_runtime.JSX.Element;
|
|
730
773
|
|
|
731
774
|
interface BentoItem {
|
|
732
775
|
title: string;
|
|
@@ -739,9 +782,15 @@ interface BentoItem {
|
|
|
739
782
|
}
|
|
740
783
|
interface BentoGridProps {
|
|
741
784
|
items: BentoItem[];
|
|
785
|
+
/**
|
|
786
|
+
* Управление вертикальным padding'ом `.root`.
|
|
787
|
+
* - `'default'` (default, BC) — `2.5rem` mobile / `3.5rem` md.
|
|
788
|
+
* - `'none'` — `padding-block: 0` (родитель контролирует rhythm).
|
|
789
|
+
*/
|
|
790
|
+
verticalPadding?: 'default' | 'none';
|
|
742
791
|
className?: string;
|
|
743
792
|
}
|
|
744
|
-
declare function BentoGrid({ items, className }: BentoGridProps): react_jsx_runtime.JSX.Element;
|
|
793
|
+
declare function BentoGrid({ items, verticalPadding, className }: BentoGridProps): react_jsx_runtime.JSX.Element;
|
|
745
794
|
|
|
746
795
|
interface FAQItem {
|
|
747
796
|
question: string;
|
|
@@ -843,9 +892,16 @@ interface PromoSplitProps {
|
|
|
843
892
|
}[];
|
|
844
893
|
media?: ReactNode;
|
|
845
894
|
mediaPosition?: 'left' | 'right';
|
|
895
|
+
/**
|
|
896
|
+
* Управление вертикальным padding'ом `.root`.
|
|
897
|
+
* - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
|
|
898
|
+
* - `'none'` — `padding-block: 0`. Использовать когда родитель
|
|
899
|
+
* контролирует vertical rhythm.
|
|
900
|
+
*/
|
|
901
|
+
verticalPadding?: 'default' | 'none';
|
|
846
902
|
className?: string;
|
|
847
903
|
}
|
|
848
|
-
declare function PromoSplit({ heading, description, features, media, mediaPosition, className, }: PromoSplitProps): react_jsx_runtime.JSX.Element;
|
|
904
|
+
declare function PromoSplit({ heading, description, features, media, mediaPosition, verticalPadding, className, }: PromoSplitProps): react_jsx_runtime.JSX.Element;
|
|
849
905
|
|
|
850
906
|
interface TrustFeature {
|
|
851
907
|
icon?: ReactNode;
|
|
@@ -883,9 +939,15 @@ interface PromoTestimonialsProps {
|
|
|
883
939
|
subtitle?: string;
|
|
884
940
|
testimonials: Testimonial[];
|
|
885
941
|
media?: ReactNode;
|
|
942
|
+
/**
|
|
943
|
+
* Управление вертикальным padding'ом `.root`.
|
|
944
|
+
* - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
|
|
945
|
+
* - `'none'` — `padding-block: 0`.
|
|
946
|
+
*/
|
|
947
|
+
verticalPadding?: 'default' | 'none';
|
|
886
948
|
className?: string;
|
|
887
949
|
}
|
|
888
|
-
declare function PromoTestimonials({ heading, subtitle, testimonials, media, className, }: PromoTestimonialsProps): react_jsx_runtime.JSX.Element;
|
|
950
|
+
declare function PromoTestimonials({ heading, subtitle, testimonials, media, verticalPadding, className, }: PromoTestimonialsProps): react_jsx_runtime.JSX.Element;
|
|
889
951
|
|
|
890
952
|
interface PromoHeroProps {
|
|
891
953
|
title: ReactNode;
|
|
@@ -1164,4 +1226,4 @@ interface LandingLayoutProps {
|
|
|
1164
1226
|
}
|
|
1165
1227
|
declare function LandingLayout({ mode, nav, footer, children, className, }: LandingLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1166
1228
|
|
|
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 };
|
|
1229
|
+
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,34 @@ 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
|
+
interface SectionHeadingProps {
|
|
207
|
+
children: ReactNode;
|
|
208
|
+
/** HTML-тег. Default `'h2'` (стандартный section heading). */
|
|
209
|
+
as?: HeadingTag;
|
|
210
|
+
/** Выравнивание. Default `'left'`. */
|
|
211
|
+
align?: HeadingAlign;
|
|
212
|
+
/** Опциональный subtitle ниже заголовка. */
|
|
213
|
+
subtitle?: ReactNode;
|
|
214
|
+
className?: string;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Единый source для section-h2 типографики во всём пакете и потребителях.
|
|
218
|
+
* Берёт ту же типографику что у `PromoSplit.heading` / `PromoTestimonials.heading`:
|
|
219
|
+
* `font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.1; letter-spacing: -0.03em`.
|
|
220
|
+
*
|
|
221
|
+
* Закрывает кейс когда потребитель кладёт `FeatureGrid` / `BentoGrid` / `Gallery`
|
|
222
|
+
* без встроенного title и вынужден захардкоживать ту же типографику в своём `.heading`
|
|
223
|
+
* — теперь импортирует `<SectionHeading>` и получает единый стиль автоматически.
|
|
224
|
+
*
|
|
225
|
+
* ```tsx
|
|
226
|
+
* <SectionHeading>Почему гости выбирают этот отель</SectionHeading>
|
|
227
|
+
* <FeatureGrid features={...} verticalPadding="none" />
|
|
228
|
+
* ```
|
|
229
|
+
*/
|
|
230
|
+
declare function SectionHeading({ children, as, align, subtitle, className, }: SectionHeadingProps): react_jsx_runtime.JSX.Element;
|
|
231
|
+
|
|
204
232
|
interface TicketButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
205
233
|
children: ReactNode;
|
|
206
234
|
icon?: ReactNode;
|
|
@@ -692,9 +720,17 @@ interface HeroSectionProps {
|
|
|
692
720
|
* На mobile (≤ 768px) всегда стекируется снизу.
|
|
693
721
|
*/
|
|
694
722
|
mediaPosition?: 'left' | 'right';
|
|
723
|
+
/**
|
|
724
|
+
* Управление вертикальным padding'ом `.inner` обёртки.
|
|
725
|
+
* - `'default'` (default, BC) — `5rem` mobile / `8rem` md.
|
|
726
|
+
* - `'none'` — `padding-block: 0`. Использовать когда родитель (consumer)
|
|
727
|
+
* контролирует vertical rhythm через свой wrapper и текущий пакетный
|
|
728
|
+
* padding создаёт двойной gap.
|
|
729
|
+
*/
|
|
730
|
+
verticalPadding?: 'default' | 'none';
|
|
695
731
|
className?: string;
|
|
696
732
|
}
|
|
697
|
-
declare function HeroSection({ eyebrow, title, subtitle, actions, media, align, size, mediaPosition, className, }: HeroSectionProps): react_jsx_runtime.JSX.Element;
|
|
733
|
+
declare function HeroSection({ eyebrow, title, subtitle, actions, media, align, size, mediaPosition, verticalPadding, className, }: HeroSectionProps): react_jsx_runtime.JSX.Element;
|
|
698
734
|
|
|
699
735
|
interface LogoCloudProps {
|
|
700
736
|
label?: string;
|
|
@@ -724,9 +760,16 @@ interface CTASectionProps {
|
|
|
724
760
|
description?: string;
|
|
725
761
|
actions?: ReactNode;
|
|
726
762
|
variant?: 'default' | 'filled' | 'bordered';
|
|
763
|
+
/**
|
|
764
|
+
* Управление вертикальным padding'ом для variant=`'default'` (без bg).
|
|
765
|
+
* - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
|
|
766
|
+
* - `'none'` — `padding-block: 0`.
|
|
767
|
+
* **Игнорируется** для `filled` / `bordered` variants — там padding внутренний (отступ от bg-границы до текста).
|
|
768
|
+
*/
|
|
769
|
+
verticalPadding?: 'default' | 'none';
|
|
727
770
|
className?: string;
|
|
728
771
|
}
|
|
729
|
-
declare function CTASection({ title, description, actions, variant, className, }: CTASectionProps): react_jsx_runtime.JSX.Element;
|
|
772
|
+
declare function CTASection({ title, description, actions, variant, verticalPadding, className, }: CTASectionProps): react_jsx_runtime.JSX.Element;
|
|
730
773
|
|
|
731
774
|
interface BentoItem {
|
|
732
775
|
title: string;
|
|
@@ -739,9 +782,15 @@ interface BentoItem {
|
|
|
739
782
|
}
|
|
740
783
|
interface BentoGridProps {
|
|
741
784
|
items: BentoItem[];
|
|
785
|
+
/**
|
|
786
|
+
* Управление вертикальным padding'ом `.root`.
|
|
787
|
+
* - `'default'` (default, BC) — `2.5rem` mobile / `3.5rem` md.
|
|
788
|
+
* - `'none'` — `padding-block: 0` (родитель контролирует rhythm).
|
|
789
|
+
*/
|
|
790
|
+
verticalPadding?: 'default' | 'none';
|
|
742
791
|
className?: string;
|
|
743
792
|
}
|
|
744
|
-
declare function BentoGrid({ items, className }: BentoGridProps): react_jsx_runtime.JSX.Element;
|
|
793
|
+
declare function BentoGrid({ items, verticalPadding, className }: BentoGridProps): react_jsx_runtime.JSX.Element;
|
|
745
794
|
|
|
746
795
|
interface FAQItem {
|
|
747
796
|
question: string;
|
|
@@ -843,9 +892,16 @@ interface PromoSplitProps {
|
|
|
843
892
|
}[];
|
|
844
893
|
media?: ReactNode;
|
|
845
894
|
mediaPosition?: 'left' | 'right';
|
|
895
|
+
/**
|
|
896
|
+
* Управление вертикальным padding'ом `.root`.
|
|
897
|
+
* - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
|
|
898
|
+
* - `'none'` — `padding-block: 0`. Использовать когда родитель
|
|
899
|
+
* контролирует vertical rhythm.
|
|
900
|
+
*/
|
|
901
|
+
verticalPadding?: 'default' | 'none';
|
|
846
902
|
className?: string;
|
|
847
903
|
}
|
|
848
|
-
declare function PromoSplit({ heading, description, features, media, mediaPosition, className, }: PromoSplitProps): react_jsx_runtime.JSX.Element;
|
|
904
|
+
declare function PromoSplit({ heading, description, features, media, mediaPosition, verticalPadding, className, }: PromoSplitProps): react_jsx_runtime.JSX.Element;
|
|
849
905
|
|
|
850
906
|
interface TrustFeature {
|
|
851
907
|
icon?: ReactNode;
|
|
@@ -883,9 +939,15 @@ interface PromoTestimonialsProps {
|
|
|
883
939
|
subtitle?: string;
|
|
884
940
|
testimonials: Testimonial[];
|
|
885
941
|
media?: ReactNode;
|
|
942
|
+
/**
|
|
943
|
+
* Управление вертикальным padding'ом `.root`.
|
|
944
|
+
* - `'default'` (default, BC) — `4rem` mobile / `6rem` md.
|
|
945
|
+
* - `'none'` — `padding-block: 0`.
|
|
946
|
+
*/
|
|
947
|
+
verticalPadding?: 'default' | 'none';
|
|
886
948
|
className?: string;
|
|
887
949
|
}
|
|
888
|
-
declare function PromoTestimonials({ heading, subtitle, testimonials, media, className, }: PromoTestimonialsProps): react_jsx_runtime.JSX.Element;
|
|
950
|
+
declare function PromoTestimonials({ heading, subtitle, testimonials, media, verticalPadding, className, }: PromoTestimonialsProps): react_jsx_runtime.JSX.Element;
|
|
889
951
|
|
|
890
952
|
interface PromoHeroProps {
|
|
891
953
|
title: ReactNode;
|
|
@@ -1164,4 +1226,4 @@ interface LandingLayoutProps {
|
|
|
1164
1226
|
}
|
|
1165
1227
|
declare function LandingLayout({ mode, nav, footer, children, className, }: LandingLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1166
1228
|
|
|
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 };
|
|
1229
|
+
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 };
|