@brickslab./ui-web 2.1.1 → 2.1.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 +1699 -1115
- package/dist/index.d.cts +39 -7
- package/dist/index.d.ts +39 -7
- package/dist/index.js +1561 -978
- package/package.json +8 -8
package/dist/index.d.cts
CHANGED
|
@@ -296,11 +296,12 @@ interface PropDef {
|
|
|
296
296
|
}
|
|
297
297
|
interface PropsTableProps {
|
|
298
298
|
props: PropDef[];
|
|
299
|
+
componentName?: string;
|
|
300
|
+
showOverrideGuide?: boolean;
|
|
301
|
+
overridePreviewLimit?: number;
|
|
299
302
|
}
|
|
300
303
|
|
|
301
|
-
declare function PropsTable({ props }:
|
|
302
|
-
props: PropDef[];
|
|
303
|
-
}): react_jsx_runtime.JSX.Element;
|
|
304
|
+
declare function PropsTable({ props, componentName, showOverrideGuide, overridePreviewLimit, }: PropsTableProps): react_jsx_runtime.JSX.Element;
|
|
304
305
|
|
|
305
306
|
interface CodeBlockProps {
|
|
306
307
|
code: string;
|
|
@@ -471,7 +472,7 @@ interface ProjectDescriptionPanelProps {
|
|
|
471
472
|
|
|
472
473
|
declare function ProjectDescriptionPanel({ title, description, tags, links, }: ProjectDescriptionPanelProps): react_jsx_runtime.JSX.Element;
|
|
473
474
|
|
|
474
|
-
type ButtonVariant = "primary" | "secondary" | "ghost" | "danger";
|
|
475
|
+
type ButtonVariant = "primary" | "secondary" | "ghost" | "danger" | "custom";
|
|
475
476
|
type ButtonSize = "sm" | "md" | "lg";
|
|
476
477
|
interface ButtonProps {
|
|
477
478
|
variant?: ButtonVariant;
|
|
@@ -484,9 +485,21 @@ interface ButtonProps {
|
|
|
484
485
|
onClick?: () => void;
|
|
485
486
|
type?: "button" | "submit" | "reset";
|
|
486
487
|
children: React.ReactNode;
|
|
488
|
+
/**
|
|
489
|
+
* complémentaire à `variant="custom"` ; couleur de fond (n'importe quel CSS color string)
|
|
490
|
+
*/
|
|
491
|
+
customBg?: string;
|
|
492
|
+
/**
|
|
493
|
+
* complémentaire à `variant="custom"` ; couleur du texte
|
|
494
|
+
*/
|
|
495
|
+
customColor?: string;
|
|
496
|
+
/**
|
|
497
|
+
* style inline supplémentaire, utile pour overrides plus précis (bordure, ombre, etc.)
|
|
498
|
+
*/
|
|
499
|
+
style?: React.CSSProperties;
|
|
487
500
|
}
|
|
488
501
|
|
|
489
|
-
declare function Button({ variant, size, disabled, isLoading, leftIcon, rightIcon, fullWidth, onClick, type, children, }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
502
|
+
declare function Button({ variant, size, disabled, isLoading, leftIcon, rightIcon, fullWidth, onClick, type, children, customBg, customColor, style: userStyle, }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
490
503
|
|
|
491
504
|
type InputSize = "sm" | "md" | "lg";
|
|
492
505
|
interface InputProps {
|
|
@@ -761,6 +774,20 @@ interface MediaImageProps {
|
|
|
761
774
|
|
|
762
775
|
declare function MediaImage({ src, alt, width, height, objectFit, borderRadius, }: MediaImageProps): react_jsx_runtime.JSX.Element;
|
|
763
776
|
|
|
777
|
+
interface LocationMapProps {
|
|
778
|
+
lat: number;
|
|
779
|
+
lng: number;
|
|
780
|
+
zoom?: number;
|
|
781
|
+
width?: number | string;
|
|
782
|
+
height?: number | string;
|
|
783
|
+
title?: string;
|
|
784
|
+
placeLabel?: string;
|
|
785
|
+
borderRadius?: string;
|
|
786
|
+
showOpenStreetMapLink?: boolean;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
declare function LocationMap({ lat, lng, zoom, width, height, title, placeLabel, borderRadius, showOpenStreetMapLink, }: LocationMapProps): react_jsx_runtime.JSX.Element;
|
|
790
|
+
|
|
764
791
|
interface AvatarCirclesProps {
|
|
765
792
|
avatarUrls: {
|
|
766
793
|
imageUrl: string;
|
|
@@ -894,9 +921,14 @@ interface HeroCtaSectionProps {
|
|
|
894
921
|
secondaryLabel?: string;
|
|
895
922
|
onSecondaryClick?: () => void;
|
|
896
923
|
align?: "left" | "center";
|
|
924
|
+
/**
|
|
925
|
+
* When true the primary/secondary buttons get a simple hover effect
|
|
926
|
+
* (brightness or opacity change). Defaults to false.
|
|
927
|
+
*/
|
|
928
|
+
hoverEffect?: boolean;
|
|
897
929
|
}
|
|
898
930
|
|
|
899
|
-
declare function HeroCtaSection({ title, subtitle, ctaLabel, onCtaClick, secondaryLabel, onSecondaryClick, align, }: HeroCtaSectionProps): react_jsx_runtime.JSX.Element;
|
|
931
|
+
declare function HeroCtaSection({ title, subtitle, ctaLabel, onCtaClick, secondaryLabel, onSecondaryClick, align, hoverEffect, }: HeroCtaSectionProps): react_jsx_runtime.JSX.Element;
|
|
900
932
|
|
|
901
933
|
interface Feature {
|
|
902
934
|
title: string;
|
|
@@ -2137,4 +2169,4 @@ type DashboardHeroProps = {
|
|
|
2137
2169
|
|
|
2138
2170
|
declare function DashboardHero({ totalComponents, subtitle, primaryLabel, primaryHref, secondaryLabel, secondaryHref, }: DashboardHeroProps): react_jsx_runtime.JSX.Element;
|
|
2139
2171
|
|
|
2140
|
-
export { Accordion, AccordionItem, Alert, AnimatedGradientText, AnimatedGridPattern, type AnimatedGridPatternProps, AnimatedList, type AnimatedListProps, AnimatedStack, type AnimatedStackProps, AnomalyBadge, type AnomalyBadgeProps, type AnomalyLevel, type Answer, type AnswerMap, AnswerReview, type AnswerReviewMode, type AnswerReviewProps, AppShell, AuroraText, AvatarCircles, type AvatarCirclesProps, Badge, BentoCard, type BentoCardProps, BentoGrid, BentoGridContext, type BentoGridProps, BrandSlogan, Breadcrumb, BurgerMenu, type BurgerMenuItemType, type BurgerMenuProps, type BurgerMenuSection, Button, Callout, type CalloutProps, type CalloutVariant, CarouselWithTextSection, Checkbox, CodeBlock, type CohortGranularity, CohortTrends, type CohortTrendsProps, type ColumnDef, ComponentCard, type ComponentCardProps, ComponentDetailPanel, ComponentPresentationSection, ComponentsCountCard, type ComponentsCountCardProps, type ComponentsCountCardSection, ConditionalLogic, type ConditionalLogicProps, Confetti, ConfettiButton, type ConfettiButtonProps, type ConfettiProps, CopyButton, type Correction, type CorrectionMap, DashboardGrid, type DashboardGridProps, DashboardHero, type DashboardHeroProps, DistributionChart, type DistributionChartProps, type DistributionChartType, type DistributionDataPoint, DocPageHeader, type DocPageHeaderBadge, type DocPageHeaderBadgeVariant, type DocPageHeaderProps, DotPattern, type DotPatternProps, DrilldownPanel, type DrilldownPanelProps, FeatureListSection, type FilterDef, type FilterField, type FilterFieldOption, type FilterFieldType, type FilterPreset, type FilterState, FlickeringGrid, type FlickeringGridProps, type FontAxes, FooterBar, FooterContact, FooterLegal, FooterLinks, FreeTextQuestion, type FreeTextQuestionProps, type FunnelMode, type FunnelStep, GlassAuroraBackground, type GlassAuroraBackgroundProps, GlowPulseText, GridPattern, type GridPatternProps, HeaderBar, Heading, HeatmapMatrix, type HeatmapMatrixProps, HelloBrickslab, HeroCtaSection, HyperText, Input, type InsightCardItem, InsightCards, type InsightCardsProps, type InsightCardsVariant, InteractiveGridPattern, type InteractiveGridPatternProps, IntroCard, type IntroCardProps, type KPIFormat, KPITrendWidget, type KPITrendWidgetProps, KineticUnderlineText, KpiCard, type KpiCardProps, type KpiColorScheme, type LatestComponentItem, LatestComponentsList, type LatestComponentsListProps, LightRaysBackground, type LightRaysBackgroundProps, LinkList, type LogicAction, type LogicCondition, type LogicOperator, type LogicRule, LogoMark, MagneticText, Marquee, type MarqueeProps, type MatrixCol, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, type MatrixType, MediaCarousel, MediaImage, MenuTree, MultiChoice, type MultiChoiceOption, type MultiChoiceProps, type MultiChoiceVariant, type NPSLabels, NPSQuestion, type NPSQuestionProps, NoiseMeshBackground, type NoiseMeshBackgroundProps, NoiseRevealText, NumberTicker, PageHero, type PageHeroProps, type PageHeroStat, ProgressBar, type ProgressBarColorScheme, type ProgressBarProps, type ProgressBarSize, ProgressiveBlurText, ProjectDescriptionPanel, type PropDef, PropsTable, type PropsTableProps, type Question, QuestionCard, type QuestionCardProps, type QuestionIndex, type QuestionLayout, type QuestionOption, QuestionRenderer, type QuestionRendererProps, type QuestionStatus, type QuestionType, type QuizBadge, QuizBuilder, type QuizBuilderMode, type QuizBuilderProps, type QuizNavSummaryItem, QuizNavigation, type QuizNavigationProps, QuizProgress, type QuizProgressMode, type QuizProgressProps, type QuizRecommendation, type QuizResult, QuizResultSummary, type QuizResultSummaryProps, type QuizResultVariant, type QuizSchema, QuizSection, type QuizSectionProps, type QuizSectionSchema, QuizSubmitBar, type QuizSubmitBarProps, type QuizSubmitBarState, QuizTimer, type QuizTimerExpireAction, type QuizTimerMode, type QuizTimerProps, Radio, RadioGroup, RangeSliderQuestion, type RangeSliderQuestionProps, type RankOption, RankOrderQuestion, type RankOrderQuestionProps, type RatingIcon, RatingStars, type RatingStarsProps, type ReducedMotion, type ResponseRow, ResponseTable, type ResponseTablePagination, type ResponseTableProps, RetroGrid, type RetroGridProps, RippleBackground, type RippleBackgroundProps, ScaleLikert, type ScaleLikertProps, SearchBar, type SearchResult, SearchResults, type SearchResultsProps, SectionExampleCard, SectionGallery, SectionHeader, SegmentEmphasisText, type SegmentEmphasisTextProps, SegmentFilterBar, type SegmentFilterBarProps, type SegmentHighlight, Select, type SelectOption, type SelectProps, type SelectSize, ShimmerBorderText, Sidebar, type SidebarItem, SidebarNav, type SidebarProps, type SidebarSection, SingleChoice, type SingleChoiceOption, type SingleChoiceProps, type SingleChoiceVariant, SocialLinks, SocialPostCard, type SocialPostCardProps, SparklesText, Spinner, StatusLabel, StripedPattern, type StripedPatternProps, SurveyFunnel, type SurveyFunnelProps, TabPanel, Tabs, TagChip, type TestResultItem, TestResultsCard, type TestResultsCardProps, Text, TextAnimate, TextBlock, TextCard, TextHighlighter, TextReveal, Textarea, ThemeToggle, type ThemeToggleProps, ThemeToggleSimple, type ThemeToggleSimpleProps, ThemeToggler, type ThemeTogglerProps, ToggleSwitch, Tooltip, TopNav, Topbar, type TopbarProps, type TrendDirection, type TrendPoint, type TrendSeries, TypingAnimation, type ValidationResult, VariableFontWarpText, type VariableFontWarpTextProps, WarpBackground, type WarpBackgroundProps, type WidgetLayout, WordRotate };
|
|
2172
|
+
export { Accordion, AccordionItem, Alert, AnimatedGradientText, AnimatedGridPattern, type AnimatedGridPatternProps, AnimatedList, type AnimatedListProps, AnimatedStack, type AnimatedStackProps, AnomalyBadge, type AnomalyBadgeProps, type AnomalyLevel, type Answer, type AnswerMap, AnswerReview, type AnswerReviewMode, type AnswerReviewProps, AppShell, AuroraText, AvatarCircles, type AvatarCirclesProps, Badge, BentoCard, type BentoCardProps, BentoGrid, BentoGridContext, type BentoGridProps, BrandSlogan, Breadcrumb, BurgerMenu, type BurgerMenuItemType, type BurgerMenuProps, type BurgerMenuSection, Button, Callout, type CalloutProps, type CalloutVariant, CarouselWithTextSection, Checkbox, CodeBlock, type CohortGranularity, CohortTrends, type CohortTrendsProps, type ColumnDef, ComponentCard, type ComponentCardProps, ComponentDetailPanel, ComponentPresentationSection, ComponentsCountCard, type ComponentsCountCardProps, type ComponentsCountCardSection, ConditionalLogic, type ConditionalLogicProps, Confetti, ConfettiButton, type ConfettiButtonProps, type ConfettiProps, CopyButton, type Correction, type CorrectionMap, DashboardGrid, type DashboardGridProps, DashboardHero, type DashboardHeroProps, DistributionChart, type DistributionChartProps, type DistributionChartType, type DistributionDataPoint, DocPageHeader, type DocPageHeaderBadge, type DocPageHeaderBadgeVariant, type DocPageHeaderProps, DotPattern, type DotPatternProps, DrilldownPanel, type DrilldownPanelProps, FeatureListSection, type FilterDef, type FilterField, type FilterFieldOption, type FilterFieldType, type FilterPreset, type FilterState, FlickeringGrid, type FlickeringGridProps, type FontAxes, FooterBar, FooterContact, FooterLegal, FooterLinks, FreeTextQuestion, type FreeTextQuestionProps, type FunnelMode, type FunnelStep, GlassAuroraBackground, type GlassAuroraBackgroundProps, GlowPulseText, GridPattern, type GridPatternProps, HeaderBar, Heading, HeatmapMatrix, type HeatmapMatrixProps, HelloBrickslab, HeroCtaSection, HyperText, Input, type InsightCardItem, InsightCards, type InsightCardsProps, type InsightCardsVariant, InteractiveGridPattern, type InteractiveGridPatternProps, IntroCard, type IntroCardProps, type KPIFormat, KPITrendWidget, type KPITrendWidgetProps, KineticUnderlineText, KpiCard, type KpiCardProps, type KpiColorScheme, type LatestComponentItem, LatestComponentsList, type LatestComponentsListProps, LightRaysBackground, type LightRaysBackgroundProps, LinkList, LocationMap, type LocationMapProps, type LogicAction, type LogicCondition, type LogicOperator, type LogicRule, LogoMark, MagneticText, Marquee, type MarqueeProps, type MatrixCol, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, type MatrixType, MediaCarousel, MediaImage, MenuTree, MultiChoice, type MultiChoiceOption, type MultiChoiceProps, type MultiChoiceVariant, type NPSLabels, NPSQuestion, type NPSQuestionProps, NoiseMeshBackground, type NoiseMeshBackgroundProps, NoiseRevealText, NumberTicker, PageHero, type PageHeroProps, type PageHeroStat, ProgressBar, type ProgressBarColorScheme, type ProgressBarProps, type ProgressBarSize, ProgressiveBlurText, ProjectDescriptionPanel, type PropDef, PropsTable, type PropsTableProps, type Question, QuestionCard, type QuestionCardProps, type QuestionIndex, type QuestionLayout, type QuestionOption, QuestionRenderer, type QuestionRendererProps, type QuestionStatus, type QuestionType, type QuizBadge, QuizBuilder, type QuizBuilderMode, type QuizBuilderProps, type QuizNavSummaryItem, QuizNavigation, type QuizNavigationProps, QuizProgress, type QuizProgressMode, type QuizProgressProps, type QuizRecommendation, type QuizResult, QuizResultSummary, type QuizResultSummaryProps, type QuizResultVariant, type QuizSchema, QuizSection, type QuizSectionProps, type QuizSectionSchema, QuizSubmitBar, type QuizSubmitBarProps, type QuizSubmitBarState, QuizTimer, type QuizTimerExpireAction, type QuizTimerMode, type QuizTimerProps, Radio, RadioGroup, RangeSliderQuestion, type RangeSliderQuestionProps, type RankOption, RankOrderQuestion, type RankOrderQuestionProps, type RatingIcon, RatingStars, type RatingStarsProps, type ReducedMotion, type ResponseRow, ResponseTable, type ResponseTablePagination, type ResponseTableProps, RetroGrid, type RetroGridProps, RippleBackground, type RippleBackgroundProps, ScaleLikert, type ScaleLikertProps, SearchBar, type SearchResult, SearchResults, type SearchResultsProps, SectionExampleCard, SectionGallery, SectionHeader, SegmentEmphasisText, type SegmentEmphasisTextProps, SegmentFilterBar, type SegmentFilterBarProps, type SegmentHighlight, Select, type SelectOption, type SelectProps, type SelectSize, ShimmerBorderText, Sidebar, type SidebarItem, SidebarNav, type SidebarProps, type SidebarSection, SingleChoice, type SingleChoiceOption, type SingleChoiceProps, type SingleChoiceVariant, SocialLinks, SocialPostCard, type SocialPostCardProps, SparklesText, Spinner, StatusLabel, StripedPattern, type StripedPatternProps, SurveyFunnel, type SurveyFunnelProps, TabPanel, Tabs, TagChip, type TestResultItem, TestResultsCard, type TestResultsCardProps, Text, TextAnimate, TextBlock, TextCard, TextHighlighter, TextReveal, Textarea, ThemeToggle, type ThemeToggleProps, ThemeToggleSimple, type ThemeToggleSimpleProps, ThemeToggler, type ThemeTogglerProps, ToggleSwitch, Tooltip, TopNav, Topbar, type TopbarProps, type TrendDirection, type TrendPoint, type TrendSeries, TypingAnimation, type ValidationResult, VariableFontWarpText, type VariableFontWarpTextProps, WarpBackground, type WarpBackgroundProps, type WidgetLayout, WordRotate };
|
package/dist/index.d.ts
CHANGED
|
@@ -296,11 +296,12 @@ interface PropDef {
|
|
|
296
296
|
}
|
|
297
297
|
interface PropsTableProps {
|
|
298
298
|
props: PropDef[];
|
|
299
|
+
componentName?: string;
|
|
300
|
+
showOverrideGuide?: boolean;
|
|
301
|
+
overridePreviewLimit?: number;
|
|
299
302
|
}
|
|
300
303
|
|
|
301
|
-
declare function PropsTable({ props }:
|
|
302
|
-
props: PropDef[];
|
|
303
|
-
}): react_jsx_runtime.JSX.Element;
|
|
304
|
+
declare function PropsTable({ props, componentName, showOverrideGuide, overridePreviewLimit, }: PropsTableProps): react_jsx_runtime.JSX.Element;
|
|
304
305
|
|
|
305
306
|
interface CodeBlockProps {
|
|
306
307
|
code: string;
|
|
@@ -471,7 +472,7 @@ interface ProjectDescriptionPanelProps {
|
|
|
471
472
|
|
|
472
473
|
declare function ProjectDescriptionPanel({ title, description, tags, links, }: ProjectDescriptionPanelProps): react_jsx_runtime.JSX.Element;
|
|
473
474
|
|
|
474
|
-
type ButtonVariant = "primary" | "secondary" | "ghost" | "danger";
|
|
475
|
+
type ButtonVariant = "primary" | "secondary" | "ghost" | "danger" | "custom";
|
|
475
476
|
type ButtonSize = "sm" | "md" | "lg";
|
|
476
477
|
interface ButtonProps {
|
|
477
478
|
variant?: ButtonVariant;
|
|
@@ -484,9 +485,21 @@ interface ButtonProps {
|
|
|
484
485
|
onClick?: () => void;
|
|
485
486
|
type?: "button" | "submit" | "reset";
|
|
486
487
|
children: React.ReactNode;
|
|
488
|
+
/**
|
|
489
|
+
* complémentaire à `variant="custom"` ; couleur de fond (n'importe quel CSS color string)
|
|
490
|
+
*/
|
|
491
|
+
customBg?: string;
|
|
492
|
+
/**
|
|
493
|
+
* complémentaire à `variant="custom"` ; couleur du texte
|
|
494
|
+
*/
|
|
495
|
+
customColor?: string;
|
|
496
|
+
/**
|
|
497
|
+
* style inline supplémentaire, utile pour overrides plus précis (bordure, ombre, etc.)
|
|
498
|
+
*/
|
|
499
|
+
style?: React.CSSProperties;
|
|
487
500
|
}
|
|
488
501
|
|
|
489
|
-
declare function Button({ variant, size, disabled, isLoading, leftIcon, rightIcon, fullWidth, onClick, type, children, }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
502
|
+
declare function Button({ variant, size, disabled, isLoading, leftIcon, rightIcon, fullWidth, onClick, type, children, customBg, customColor, style: userStyle, }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
490
503
|
|
|
491
504
|
type InputSize = "sm" | "md" | "lg";
|
|
492
505
|
interface InputProps {
|
|
@@ -761,6 +774,20 @@ interface MediaImageProps {
|
|
|
761
774
|
|
|
762
775
|
declare function MediaImage({ src, alt, width, height, objectFit, borderRadius, }: MediaImageProps): react_jsx_runtime.JSX.Element;
|
|
763
776
|
|
|
777
|
+
interface LocationMapProps {
|
|
778
|
+
lat: number;
|
|
779
|
+
lng: number;
|
|
780
|
+
zoom?: number;
|
|
781
|
+
width?: number | string;
|
|
782
|
+
height?: number | string;
|
|
783
|
+
title?: string;
|
|
784
|
+
placeLabel?: string;
|
|
785
|
+
borderRadius?: string;
|
|
786
|
+
showOpenStreetMapLink?: boolean;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
declare function LocationMap({ lat, lng, zoom, width, height, title, placeLabel, borderRadius, showOpenStreetMapLink, }: LocationMapProps): react_jsx_runtime.JSX.Element;
|
|
790
|
+
|
|
764
791
|
interface AvatarCirclesProps {
|
|
765
792
|
avatarUrls: {
|
|
766
793
|
imageUrl: string;
|
|
@@ -894,9 +921,14 @@ interface HeroCtaSectionProps {
|
|
|
894
921
|
secondaryLabel?: string;
|
|
895
922
|
onSecondaryClick?: () => void;
|
|
896
923
|
align?: "left" | "center";
|
|
924
|
+
/**
|
|
925
|
+
* When true the primary/secondary buttons get a simple hover effect
|
|
926
|
+
* (brightness or opacity change). Defaults to false.
|
|
927
|
+
*/
|
|
928
|
+
hoverEffect?: boolean;
|
|
897
929
|
}
|
|
898
930
|
|
|
899
|
-
declare function HeroCtaSection({ title, subtitle, ctaLabel, onCtaClick, secondaryLabel, onSecondaryClick, align, }: HeroCtaSectionProps): react_jsx_runtime.JSX.Element;
|
|
931
|
+
declare function HeroCtaSection({ title, subtitle, ctaLabel, onCtaClick, secondaryLabel, onSecondaryClick, align, hoverEffect, }: HeroCtaSectionProps): react_jsx_runtime.JSX.Element;
|
|
900
932
|
|
|
901
933
|
interface Feature {
|
|
902
934
|
title: string;
|
|
@@ -2137,4 +2169,4 @@ type DashboardHeroProps = {
|
|
|
2137
2169
|
|
|
2138
2170
|
declare function DashboardHero({ totalComponents, subtitle, primaryLabel, primaryHref, secondaryLabel, secondaryHref, }: DashboardHeroProps): react_jsx_runtime.JSX.Element;
|
|
2139
2171
|
|
|
2140
|
-
export { Accordion, AccordionItem, Alert, AnimatedGradientText, AnimatedGridPattern, type AnimatedGridPatternProps, AnimatedList, type AnimatedListProps, AnimatedStack, type AnimatedStackProps, AnomalyBadge, type AnomalyBadgeProps, type AnomalyLevel, type Answer, type AnswerMap, AnswerReview, type AnswerReviewMode, type AnswerReviewProps, AppShell, AuroraText, AvatarCircles, type AvatarCirclesProps, Badge, BentoCard, type BentoCardProps, BentoGrid, BentoGridContext, type BentoGridProps, BrandSlogan, Breadcrumb, BurgerMenu, type BurgerMenuItemType, type BurgerMenuProps, type BurgerMenuSection, Button, Callout, type CalloutProps, type CalloutVariant, CarouselWithTextSection, Checkbox, CodeBlock, type CohortGranularity, CohortTrends, type CohortTrendsProps, type ColumnDef, ComponentCard, type ComponentCardProps, ComponentDetailPanel, ComponentPresentationSection, ComponentsCountCard, type ComponentsCountCardProps, type ComponentsCountCardSection, ConditionalLogic, type ConditionalLogicProps, Confetti, ConfettiButton, type ConfettiButtonProps, type ConfettiProps, CopyButton, type Correction, type CorrectionMap, DashboardGrid, type DashboardGridProps, DashboardHero, type DashboardHeroProps, DistributionChart, type DistributionChartProps, type DistributionChartType, type DistributionDataPoint, DocPageHeader, type DocPageHeaderBadge, type DocPageHeaderBadgeVariant, type DocPageHeaderProps, DotPattern, type DotPatternProps, DrilldownPanel, type DrilldownPanelProps, FeatureListSection, type FilterDef, type FilterField, type FilterFieldOption, type FilterFieldType, type FilterPreset, type FilterState, FlickeringGrid, type FlickeringGridProps, type FontAxes, FooterBar, FooterContact, FooterLegal, FooterLinks, FreeTextQuestion, type FreeTextQuestionProps, type FunnelMode, type FunnelStep, GlassAuroraBackground, type GlassAuroraBackgroundProps, GlowPulseText, GridPattern, type GridPatternProps, HeaderBar, Heading, HeatmapMatrix, type HeatmapMatrixProps, HelloBrickslab, HeroCtaSection, HyperText, Input, type InsightCardItem, InsightCards, type InsightCardsProps, type InsightCardsVariant, InteractiveGridPattern, type InteractiveGridPatternProps, IntroCard, type IntroCardProps, type KPIFormat, KPITrendWidget, type KPITrendWidgetProps, KineticUnderlineText, KpiCard, type KpiCardProps, type KpiColorScheme, type LatestComponentItem, LatestComponentsList, type LatestComponentsListProps, LightRaysBackground, type LightRaysBackgroundProps, LinkList, type LogicAction, type LogicCondition, type LogicOperator, type LogicRule, LogoMark, MagneticText, Marquee, type MarqueeProps, type MatrixCol, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, type MatrixType, MediaCarousel, MediaImage, MenuTree, MultiChoice, type MultiChoiceOption, type MultiChoiceProps, type MultiChoiceVariant, type NPSLabels, NPSQuestion, type NPSQuestionProps, NoiseMeshBackground, type NoiseMeshBackgroundProps, NoiseRevealText, NumberTicker, PageHero, type PageHeroProps, type PageHeroStat, ProgressBar, type ProgressBarColorScheme, type ProgressBarProps, type ProgressBarSize, ProgressiveBlurText, ProjectDescriptionPanel, type PropDef, PropsTable, type PropsTableProps, type Question, QuestionCard, type QuestionCardProps, type QuestionIndex, type QuestionLayout, type QuestionOption, QuestionRenderer, type QuestionRendererProps, type QuestionStatus, type QuestionType, type QuizBadge, QuizBuilder, type QuizBuilderMode, type QuizBuilderProps, type QuizNavSummaryItem, QuizNavigation, type QuizNavigationProps, QuizProgress, type QuizProgressMode, type QuizProgressProps, type QuizRecommendation, type QuizResult, QuizResultSummary, type QuizResultSummaryProps, type QuizResultVariant, type QuizSchema, QuizSection, type QuizSectionProps, type QuizSectionSchema, QuizSubmitBar, type QuizSubmitBarProps, type QuizSubmitBarState, QuizTimer, type QuizTimerExpireAction, type QuizTimerMode, type QuizTimerProps, Radio, RadioGroup, RangeSliderQuestion, type RangeSliderQuestionProps, type RankOption, RankOrderQuestion, type RankOrderQuestionProps, type RatingIcon, RatingStars, type RatingStarsProps, type ReducedMotion, type ResponseRow, ResponseTable, type ResponseTablePagination, type ResponseTableProps, RetroGrid, type RetroGridProps, RippleBackground, type RippleBackgroundProps, ScaleLikert, type ScaleLikertProps, SearchBar, type SearchResult, SearchResults, type SearchResultsProps, SectionExampleCard, SectionGallery, SectionHeader, SegmentEmphasisText, type SegmentEmphasisTextProps, SegmentFilterBar, type SegmentFilterBarProps, type SegmentHighlight, Select, type SelectOption, type SelectProps, type SelectSize, ShimmerBorderText, Sidebar, type SidebarItem, SidebarNav, type SidebarProps, type SidebarSection, SingleChoice, type SingleChoiceOption, type SingleChoiceProps, type SingleChoiceVariant, SocialLinks, SocialPostCard, type SocialPostCardProps, SparklesText, Spinner, StatusLabel, StripedPattern, type StripedPatternProps, SurveyFunnel, type SurveyFunnelProps, TabPanel, Tabs, TagChip, type TestResultItem, TestResultsCard, type TestResultsCardProps, Text, TextAnimate, TextBlock, TextCard, TextHighlighter, TextReveal, Textarea, ThemeToggle, type ThemeToggleProps, ThemeToggleSimple, type ThemeToggleSimpleProps, ThemeToggler, type ThemeTogglerProps, ToggleSwitch, Tooltip, TopNav, Topbar, type TopbarProps, type TrendDirection, type TrendPoint, type TrendSeries, TypingAnimation, type ValidationResult, VariableFontWarpText, type VariableFontWarpTextProps, WarpBackground, type WarpBackgroundProps, type WidgetLayout, WordRotate };
|
|
2172
|
+
export { Accordion, AccordionItem, Alert, AnimatedGradientText, AnimatedGridPattern, type AnimatedGridPatternProps, AnimatedList, type AnimatedListProps, AnimatedStack, type AnimatedStackProps, AnomalyBadge, type AnomalyBadgeProps, type AnomalyLevel, type Answer, type AnswerMap, AnswerReview, type AnswerReviewMode, type AnswerReviewProps, AppShell, AuroraText, AvatarCircles, type AvatarCirclesProps, Badge, BentoCard, type BentoCardProps, BentoGrid, BentoGridContext, type BentoGridProps, BrandSlogan, Breadcrumb, BurgerMenu, type BurgerMenuItemType, type BurgerMenuProps, type BurgerMenuSection, Button, Callout, type CalloutProps, type CalloutVariant, CarouselWithTextSection, Checkbox, CodeBlock, type CohortGranularity, CohortTrends, type CohortTrendsProps, type ColumnDef, ComponentCard, type ComponentCardProps, ComponentDetailPanel, ComponentPresentationSection, ComponentsCountCard, type ComponentsCountCardProps, type ComponentsCountCardSection, ConditionalLogic, type ConditionalLogicProps, Confetti, ConfettiButton, type ConfettiButtonProps, type ConfettiProps, CopyButton, type Correction, type CorrectionMap, DashboardGrid, type DashboardGridProps, DashboardHero, type DashboardHeroProps, DistributionChart, type DistributionChartProps, type DistributionChartType, type DistributionDataPoint, DocPageHeader, type DocPageHeaderBadge, type DocPageHeaderBadgeVariant, type DocPageHeaderProps, DotPattern, type DotPatternProps, DrilldownPanel, type DrilldownPanelProps, FeatureListSection, type FilterDef, type FilterField, type FilterFieldOption, type FilterFieldType, type FilterPreset, type FilterState, FlickeringGrid, type FlickeringGridProps, type FontAxes, FooterBar, FooterContact, FooterLegal, FooterLinks, FreeTextQuestion, type FreeTextQuestionProps, type FunnelMode, type FunnelStep, GlassAuroraBackground, type GlassAuroraBackgroundProps, GlowPulseText, GridPattern, type GridPatternProps, HeaderBar, Heading, HeatmapMatrix, type HeatmapMatrixProps, HelloBrickslab, HeroCtaSection, HyperText, Input, type InsightCardItem, InsightCards, type InsightCardsProps, type InsightCardsVariant, InteractiveGridPattern, type InteractiveGridPatternProps, IntroCard, type IntroCardProps, type KPIFormat, KPITrendWidget, type KPITrendWidgetProps, KineticUnderlineText, KpiCard, type KpiCardProps, type KpiColorScheme, type LatestComponentItem, LatestComponentsList, type LatestComponentsListProps, LightRaysBackground, type LightRaysBackgroundProps, LinkList, LocationMap, type LocationMapProps, type LogicAction, type LogicCondition, type LogicOperator, type LogicRule, LogoMark, MagneticText, Marquee, type MarqueeProps, type MatrixCol, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, type MatrixType, MediaCarousel, MediaImage, MenuTree, MultiChoice, type MultiChoiceOption, type MultiChoiceProps, type MultiChoiceVariant, type NPSLabels, NPSQuestion, type NPSQuestionProps, NoiseMeshBackground, type NoiseMeshBackgroundProps, NoiseRevealText, NumberTicker, PageHero, type PageHeroProps, type PageHeroStat, ProgressBar, type ProgressBarColorScheme, type ProgressBarProps, type ProgressBarSize, ProgressiveBlurText, ProjectDescriptionPanel, type PropDef, PropsTable, type PropsTableProps, type Question, QuestionCard, type QuestionCardProps, type QuestionIndex, type QuestionLayout, type QuestionOption, QuestionRenderer, type QuestionRendererProps, type QuestionStatus, type QuestionType, type QuizBadge, QuizBuilder, type QuizBuilderMode, type QuizBuilderProps, type QuizNavSummaryItem, QuizNavigation, type QuizNavigationProps, QuizProgress, type QuizProgressMode, type QuizProgressProps, type QuizRecommendation, type QuizResult, QuizResultSummary, type QuizResultSummaryProps, type QuizResultVariant, type QuizSchema, QuizSection, type QuizSectionProps, type QuizSectionSchema, QuizSubmitBar, type QuizSubmitBarProps, type QuizSubmitBarState, QuizTimer, type QuizTimerExpireAction, type QuizTimerMode, type QuizTimerProps, Radio, RadioGroup, RangeSliderQuestion, type RangeSliderQuestionProps, type RankOption, RankOrderQuestion, type RankOrderQuestionProps, type RatingIcon, RatingStars, type RatingStarsProps, type ReducedMotion, type ResponseRow, ResponseTable, type ResponseTablePagination, type ResponseTableProps, RetroGrid, type RetroGridProps, RippleBackground, type RippleBackgroundProps, ScaleLikert, type ScaleLikertProps, SearchBar, type SearchResult, SearchResults, type SearchResultsProps, SectionExampleCard, SectionGallery, SectionHeader, SegmentEmphasisText, type SegmentEmphasisTextProps, SegmentFilterBar, type SegmentFilterBarProps, type SegmentHighlight, Select, type SelectOption, type SelectProps, type SelectSize, ShimmerBorderText, Sidebar, type SidebarItem, SidebarNav, type SidebarProps, type SidebarSection, SingleChoice, type SingleChoiceOption, type SingleChoiceProps, type SingleChoiceVariant, SocialLinks, SocialPostCard, type SocialPostCardProps, SparklesText, Spinner, StatusLabel, StripedPattern, type StripedPatternProps, SurveyFunnel, type SurveyFunnelProps, TabPanel, Tabs, TagChip, type TestResultItem, TestResultsCard, type TestResultsCardProps, Text, TextAnimate, TextBlock, TextCard, TextHighlighter, TextReveal, Textarea, ThemeToggle, type ThemeToggleProps, ThemeToggleSimple, type ThemeToggleSimpleProps, ThemeToggler, type ThemeTogglerProps, ToggleSwitch, Tooltip, TopNav, Topbar, type TopbarProps, type TrendDirection, type TrendPoint, type TrendSeries, TypingAnimation, type ValidationResult, VariableFontWarpText, type VariableFontWarpTextProps, WarpBackground, type WarpBackgroundProps, type WidgetLayout, WordRotate };
|