@momo-webplatform/mobase 0.2.88 → 0.2.90

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.
@@ -680,7 +680,7 @@ interface GuideSectionProps extends SectionBlockProps {
680
680
  isStep?: boolean;
681
681
  }
682
682
 
683
- declare const GuideSection: ({ dataHeading, dataGuide, dataHorizontalScroll, dataButtons, className, background, template, mockup, isStep, }: GuideSectionProps) => react_jsx_runtime.JSX.Element;
683
+ declare const GuideSection: ({ idSection, dataHeading, dataGuide, dataHorizontalScroll, dataButtons, className, background, template, mockup, isStep, }: GuideSectionProps) => react_jsx_runtime.JSX.Element;
684
684
 
685
685
  interface HeadingGroupProps {
686
686
  /**
@@ -1442,6 +1442,10 @@ interface HeroContentMediaProps {
1442
1442
 
1443
1443
  declare const HeroSection: ({ template, idSection, dataHeading, dataButtons, dataFeatures, dataStats, dataMedia, className, background, advancedComponent, }: HeroContentProps) => react_jsx_runtime.JSX.Element;
1444
1444
 
1445
+ declare const SectionBlock: ({ idSection, className, background, children }: SectionBlockProps) => react_jsx_runtime.JSX.Element;
1446
+ declare const HeadingBlock: ({ align, tagline, title, description, tagHeading, colorScheme, sizeHeading, className, }: HeadingBlockProps) => react_jsx_runtime.JSX.Element | null;
1447
+ declare const ButtonsBlock: ({ align, isFullInMobile, buttons, className }: ButtonsBlockProps) => react_jsx_runtime.JSX.Element | null;
1448
+
1445
1449
  interface BrandData {
1446
1450
  /**
1447
1451
  * Brand name.
@@ -1464,7 +1468,7 @@ interface SocialProofSectionProps extends SectionBlockProps {
1464
1468
  /**
1465
1469
  * The template of the section.
1466
1470
  */
1467
- template?: 1 | 2;
1471
+ template?: 1 | 2 | 3 | 4;
1468
1472
  /**
1469
1473
  * The data heading of the section.
1470
1474
  */
@@ -1480,12 +1484,13 @@ interface SocialProofSectionProps extends SectionBlockProps {
1480
1484
  /**
1481
1485
  * The space between brands in Desktop. Default value "20px". In mobile, it will be value "20px". SpaceX use only for template 1.
1482
1486
  */
1483
- spaceX?: "20px" | "28px" | "36px";
1487
+ spaceX?: "20px" | "28px" | "36px" | "40px" | "48px" | "56px" | "64px" | "80px";
1484
1488
  /**
1485
- * Enable scroll snap on mobile.
1489
+ * Enables scroll snap on mobile. This prop is supported only in Template 1 and Template 2.
1486
1490
  */
1487
1491
  isScrollSnap?: boolean;
1488
1492
  }
1493
+
1489
1494
  declare const SocialProofSection: ({ template, background, className, idSection, dataHeading, dataBrands, dataButtons, spaceX, isScrollSnap, }: SocialProofSectionProps) => react_jsx_runtime.JSX.Element;
1490
1495
 
1491
1496
  interface BannerData {
@@ -1748,7 +1753,7 @@ interface NewsSectionProps extends SectionBlockProps {
1748
1753
  onClickLoadMore?: (tabIndex: number) => void;
1749
1754
  }
1750
1755
 
1751
- declare const NewsSection: ({ dataHeading, dataHorizontalScroll, dataNews, className, background, template, onClickModal, onClickLoadMore, }: NewsSectionProps) => react_jsx_runtime.JSX.Element;
1756
+ declare const NewsSection: ({ idSection, dataHeading, dataHorizontalScroll, dataNews, className, background, template, onClickModal, onClickLoadMore, }: NewsSectionProps) => react_jsx_runtime.JSX.Element;
1752
1757
 
1753
1758
  interface CTAMedia {
1754
1759
  /**
@@ -1818,11 +1823,7 @@ interface MetricsSectionProps extends SectionBlockProps {
1818
1823
  dataButtons?: ButtonsBlockProps;
1819
1824
  }
1820
1825
 
1821
- declare const MetricsSection: ({ dataHeading, dataMetrics, dataButtons, background, className, template, }: MetricsSectionProps) => react_jsx_runtime.JSX.Element;
1822
-
1823
- declare const SectionBlock: ({ idSection, className, background, children }: SectionBlockProps) => react_jsx_runtime.JSX.Element;
1824
- declare const HeadingBlock: ({ align, tagline, title, description, tagHeading, colorScheme, sizeHeading, className, }: HeadingBlockProps) => react_jsx_runtime.JSX.Element | null;
1825
- declare const ButtonsBlock: ({ align, isFullInMobile, buttons, className }: ButtonsBlockProps) => react_jsx_runtime.JSX.Element | null;
1826
+ declare const MetricsSection: ({ idSection, dataHeading, dataMetrics, dataButtons, background, className, template, }: MetricsSectionProps) => react_jsx_runtime.JSX.Element;
1826
1827
 
1827
1828
  interface PaymentInvoiceProps {
1828
1829
  title?: string;
@@ -2014,6 +2015,50 @@ interface PaymentGuideDialogProps {
2014
2015
  }
2015
2016
  declare const PaymentGuideDialog: React__default.FC<PaymentGuideDialogProps>;
2016
2017
 
2018
+ interface FormFieldProps {
2019
+ name: string;
2020
+ value?: any;
2021
+ type: "text" | "email" | "phone" | "number" | "boolean" | "textarea" | "password";
2022
+ placeholder?: string;
2023
+ required?: boolean;
2024
+ maxLength?: number;
2025
+ minLength?: number;
2026
+ label?: string;
2027
+ disabled?: boolean;
2028
+ className?: string;
2029
+ description?: string;
2030
+ switchLabel?: string;
2031
+ defaultChecked?: boolean;
2032
+ pattern?: RegExp;
2033
+ customValidation?: (value: any) => string | boolean;
2034
+ }
2035
+ interface FormData {
2036
+ [fieldName: string]: any;
2037
+ }
2038
+ interface FormErrors {
2039
+ [fieldName: string]: {
2040
+ message?: string;
2041
+ };
2042
+ }
2043
+ interface MediaConfig {
2044
+ src: string;
2045
+ alt?: string;
2046
+ ratio?: string | number;
2047
+ }
2048
+ interface FormLeadSupportProps extends SectionBlockProps {
2049
+ dataHeading: HeadingBlockProps;
2050
+ dataMedia?: MediaConfig;
2051
+ captchaComponent?: React__default.ReactNode;
2052
+ onSubmit?: (data: FormData, captchaToken?: string) => void | Promise<void>;
2053
+ fieldsSchema: FormFieldProps[];
2054
+ loading?: boolean;
2055
+ onFieldChange?: (fieldName: string, value: any) => void;
2056
+ onValidationError?: (errors: FormErrors) => void;
2057
+ dataButtons: ButtonsBlockProps;
2058
+ }
2059
+
2060
+ declare const FormLeadSupport: ({ idSection, background, className, ...contentProps }: FormLeadSupportProps) => react_jsx_runtime.JSX.Element;
2061
+
2017
2062
  /**
2018
2063
  * This Tailwind plugin is based and inspired on "tw-colors" and "NextUI".
2019
2064
  *
@@ -2027,4 +2072,4 @@ declare const mobaseTW: () => {
2027
2072
 
2028
2073
  declare const SiteMeta: react_jsx_runtime.JSX.Element;
2029
2074
 
2030
- export { Accordion, AccordionContent, type AccordionContentInterface, AccordionItem, type AccordionItemInterface, type AccordionRootInterface, AccordionTrigger, type AccordionTriggerInterface, ActionButton, type ActionButtonProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AspectRatio, Badge, BlogSection, type BlogSectionProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, ButtonsBlock, type ButtonsBlockProps, CTASection, type CTASectionProps, Calendar, type CalendarProps, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, ChoiceboxGroup, ChoiceboxGroupItem, ChoiceboxMultiItem, Combobox, ComboboxContent, ComboboxTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Comment, type ContentsProps, type DataFAQProps, DatePicker, type DatePickerProps, DateSelect, type DateSelectProps, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogQr, type DialogQrProps, DialogTitle, DialogTrigger, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FAQSection, type FAQSectionProps, FeatureSection, type FeatureSectionProps, Footer, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GuideSection, type GuideSectionProps, HeaderNavigation, Heading, HeadingBlock, type HeadingBlockProps, HeadingGroup, HeadingSub, HeadingTagline, type HeroContentProps, HeroSection, HorizontalContent, HorizontalNext, HorizontalPrevious, HorizontalScroll, type HorizontalScrollProps, HowItWorksSection, type HowItWorksSectionProps, type IComment, type ICommentContent, type ICommentFooter, type ICommentHeader, type IPayment, type ITopbar, IconButton, type IconButtonProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, LightBoxGalleryContent, LightboxGallery, LightboxThumbnail, MetricsSection, type MetricsSectionProps, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NewsSection, type NewsSectionProps, Pagination, Payment, PaymentGuide, PaymentGuideDialog, PaymentInvoice, PaymentMethods, PaymentResult, PaymentResultContent, PaymentResultFooter, type PaymentResultProps, Popover, PopoverContent, PopoverTrigger, ProgressSteps, ProgressStepsItem, ProgressStepsItemTrigger, Progress as Progressbar, QRPayment, RadioGroup, RadioGroupItem, ReadMoreLite, SearchBar, SectionBlock, type SectionBlockProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SiteMeta, Skeleton, Slider, SocialProofSection, type SocialProofSectionProps, Spinner, Stepper, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TestimonialSection, type TestimonialSectionProps, TextArea, type TextAreaProps, TextButton, type TextButtonProps, TextInput, type TextInputProps, ToastAction, Toaster, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Topbar, badgeVariants, buttonVariants, mobaseTW, navigationMenuTriggerStyle, textButtonVariants, toast, useFormField, useToast };
2075
+ export { Accordion, AccordionContent, type AccordionContentInterface, AccordionItem, type AccordionItemInterface, type AccordionRootInterface, AccordionTrigger, type AccordionTriggerInterface, ActionButton, type ActionButtonProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AspectRatio, Badge, BlogSection, type BlogSectionProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, ButtonsBlock, type ButtonsBlockProps, CTASection, type CTASectionProps, Calendar, type CalendarProps, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, ChoiceboxGroup, ChoiceboxGroupItem, ChoiceboxMultiItem, Combobox, ComboboxContent, ComboboxTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Comment, type ContentsProps, type DataFAQProps, DatePicker, type DatePickerProps, DateSelect, type DateSelectProps, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogQr, type DialogQrProps, DialogTitle, DialogTrigger, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FAQSection, type FAQSectionProps, FeatureSection, type FeatureSectionProps, Footer, Form, FormControl, type FormData, FormDescription, type FormErrors, FormField, type FormFieldProps, FormItem, FormLabel, FormLeadSupport, type FormLeadSupportProps, FormMessage, GuideSection, type GuideSectionProps, HeaderNavigation, Heading, HeadingBlock, type HeadingBlockProps, HeadingGroup, HeadingSub, HeadingTagline, type HeroContentProps, HeroSection, HorizontalContent, HorizontalNext, HorizontalPrevious, HorizontalScroll, type HorizontalScrollProps, HowItWorksSection, type HowItWorksSectionProps, type IComment, type ICommentContent, type ICommentFooter, type ICommentHeader, type IPayment, type ITopbar, IconButton, type IconButtonProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, LightBoxGalleryContent, LightboxGallery, LightboxThumbnail, MetricsSection, type MetricsSectionProps, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NewsSection, type NewsSectionProps, Pagination, Payment, PaymentGuide, PaymentGuideDialog, PaymentInvoice, PaymentMethods, PaymentResult, PaymentResultContent, PaymentResultFooter, type PaymentResultProps, Popover, PopoverContent, PopoverTrigger, ProgressSteps, ProgressStepsItem, ProgressStepsItemTrigger, Progress as Progressbar, QRPayment, RadioGroup, RadioGroupItem, ReadMoreLite, SearchBar, SectionBlock, type SectionBlockProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SiteMeta, Skeleton, Slider, SocialProofSection, type SocialProofSectionProps, Spinner, Stepper, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TestimonialSection, type TestimonialSectionProps, TextArea, type TextAreaProps, TextButton, type TextButtonProps, TextInput, type TextInputProps, ToastAction, Toaster, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Topbar, badgeVariants, buttonVariants, mobaseTW, navigationMenuTriggerStyle, textButtonVariants, toast, useFormField, useToast };
@@ -680,7 +680,7 @@ interface GuideSectionProps extends SectionBlockProps {
680
680
  isStep?: boolean;
681
681
  }
682
682
 
683
- declare const GuideSection: ({ dataHeading, dataGuide, dataHorizontalScroll, dataButtons, className, background, template, mockup, isStep, }: GuideSectionProps) => react_jsx_runtime.JSX.Element;
683
+ declare const GuideSection: ({ idSection, dataHeading, dataGuide, dataHorizontalScroll, dataButtons, className, background, template, mockup, isStep, }: GuideSectionProps) => react_jsx_runtime.JSX.Element;
684
684
 
685
685
  interface HeadingGroupProps {
686
686
  /**
@@ -1442,6 +1442,10 @@ interface HeroContentMediaProps {
1442
1442
 
1443
1443
  declare const HeroSection: ({ template, idSection, dataHeading, dataButtons, dataFeatures, dataStats, dataMedia, className, background, advancedComponent, }: HeroContentProps) => react_jsx_runtime.JSX.Element;
1444
1444
 
1445
+ declare const SectionBlock: ({ idSection, className, background, children }: SectionBlockProps) => react_jsx_runtime.JSX.Element;
1446
+ declare const HeadingBlock: ({ align, tagline, title, description, tagHeading, colorScheme, sizeHeading, className, }: HeadingBlockProps) => react_jsx_runtime.JSX.Element | null;
1447
+ declare const ButtonsBlock: ({ align, isFullInMobile, buttons, className }: ButtonsBlockProps) => react_jsx_runtime.JSX.Element | null;
1448
+
1445
1449
  interface BrandData {
1446
1450
  /**
1447
1451
  * Brand name.
@@ -1464,7 +1468,7 @@ interface SocialProofSectionProps extends SectionBlockProps {
1464
1468
  /**
1465
1469
  * The template of the section.
1466
1470
  */
1467
- template?: 1 | 2;
1471
+ template?: 1 | 2 | 3 | 4;
1468
1472
  /**
1469
1473
  * The data heading of the section.
1470
1474
  */
@@ -1480,12 +1484,13 @@ interface SocialProofSectionProps extends SectionBlockProps {
1480
1484
  /**
1481
1485
  * The space between brands in Desktop. Default value "20px". In mobile, it will be value "20px". SpaceX use only for template 1.
1482
1486
  */
1483
- spaceX?: "20px" | "28px" | "36px";
1487
+ spaceX?: "20px" | "28px" | "36px" | "40px" | "48px" | "56px" | "64px" | "80px";
1484
1488
  /**
1485
- * Enable scroll snap on mobile.
1489
+ * Enables scroll snap on mobile. This prop is supported only in Template 1 and Template 2.
1486
1490
  */
1487
1491
  isScrollSnap?: boolean;
1488
1492
  }
1493
+
1489
1494
  declare const SocialProofSection: ({ template, background, className, idSection, dataHeading, dataBrands, dataButtons, spaceX, isScrollSnap, }: SocialProofSectionProps) => react_jsx_runtime.JSX.Element;
1490
1495
 
1491
1496
  interface BannerData {
@@ -1748,7 +1753,7 @@ interface NewsSectionProps extends SectionBlockProps {
1748
1753
  onClickLoadMore?: (tabIndex: number) => void;
1749
1754
  }
1750
1755
 
1751
- declare const NewsSection: ({ dataHeading, dataHorizontalScroll, dataNews, className, background, template, onClickModal, onClickLoadMore, }: NewsSectionProps) => react_jsx_runtime.JSX.Element;
1756
+ declare const NewsSection: ({ idSection, dataHeading, dataHorizontalScroll, dataNews, className, background, template, onClickModal, onClickLoadMore, }: NewsSectionProps) => react_jsx_runtime.JSX.Element;
1752
1757
 
1753
1758
  interface CTAMedia {
1754
1759
  /**
@@ -1818,11 +1823,7 @@ interface MetricsSectionProps extends SectionBlockProps {
1818
1823
  dataButtons?: ButtonsBlockProps;
1819
1824
  }
1820
1825
 
1821
- declare const MetricsSection: ({ dataHeading, dataMetrics, dataButtons, background, className, template, }: MetricsSectionProps) => react_jsx_runtime.JSX.Element;
1822
-
1823
- declare const SectionBlock: ({ idSection, className, background, children }: SectionBlockProps) => react_jsx_runtime.JSX.Element;
1824
- declare const HeadingBlock: ({ align, tagline, title, description, tagHeading, colorScheme, sizeHeading, className, }: HeadingBlockProps) => react_jsx_runtime.JSX.Element | null;
1825
- declare const ButtonsBlock: ({ align, isFullInMobile, buttons, className }: ButtonsBlockProps) => react_jsx_runtime.JSX.Element | null;
1826
+ declare const MetricsSection: ({ idSection, dataHeading, dataMetrics, dataButtons, background, className, template, }: MetricsSectionProps) => react_jsx_runtime.JSX.Element;
1826
1827
 
1827
1828
  interface PaymentInvoiceProps {
1828
1829
  title?: string;
@@ -2014,6 +2015,50 @@ interface PaymentGuideDialogProps {
2014
2015
  }
2015
2016
  declare const PaymentGuideDialog: React__default.FC<PaymentGuideDialogProps>;
2016
2017
 
2018
+ interface FormFieldProps {
2019
+ name: string;
2020
+ value?: any;
2021
+ type: "text" | "email" | "phone" | "number" | "boolean" | "textarea" | "password";
2022
+ placeholder?: string;
2023
+ required?: boolean;
2024
+ maxLength?: number;
2025
+ minLength?: number;
2026
+ label?: string;
2027
+ disabled?: boolean;
2028
+ className?: string;
2029
+ description?: string;
2030
+ switchLabel?: string;
2031
+ defaultChecked?: boolean;
2032
+ pattern?: RegExp;
2033
+ customValidation?: (value: any) => string | boolean;
2034
+ }
2035
+ interface FormData {
2036
+ [fieldName: string]: any;
2037
+ }
2038
+ interface FormErrors {
2039
+ [fieldName: string]: {
2040
+ message?: string;
2041
+ };
2042
+ }
2043
+ interface MediaConfig {
2044
+ src: string;
2045
+ alt?: string;
2046
+ ratio?: string | number;
2047
+ }
2048
+ interface FormLeadSupportProps extends SectionBlockProps {
2049
+ dataHeading: HeadingBlockProps;
2050
+ dataMedia?: MediaConfig;
2051
+ captchaComponent?: React__default.ReactNode;
2052
+ onSubmit?: (data: FormData, captchaToken?: string) => void | Promise<void>;
2053
+ fieldsSchema: FormFieldProps[];
2054
+ loading?: boolean;
2055
+ onFieldChange?: (fieldName: string, value: any) => void;
2056
+ onValidationError?: (errors: FormErrors) => void;
2057
+ dataButtons: ButtonsBlockProps;
2058
+ }
2059
+
2060
+ declare const FormLeadSupport: ({ idSection, background, className, ...contentProps }: FormLeadSupportProps) => react_jsx_runtime.JSX.Element;
2061
+
2017
2062
  /**
2018
2063
  * This Tailwind plugin is based and inspired on "tw-colors" and "NextUI".
2019
2064
  *
@@ -2027,4 +2072,4 @@ declare const mobaseTW: () => {
2027
2072
 
2028
2073
  declare const SiteMeta: react_jsx_runtime.JSX.Element;
2029
2074
 
2030
- export { Accordion, AccordionContent, type AccordionContentInterface, AccordionItem, type AccordionItemInterface, type AccordionRootInterface, AccordionTrigger, type AccordionTriggerInterface, ActionButton, type ActionButtonProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AspectRatio, Badge, BlogSection, type BlogSectionProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, ButtonsBlock, type ButtonsBlockProps, CTASection, type CTASectionProps, Calendar, type CalendarProps, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, ChoiceboxGroup, ChoiceboxGroupItem, ChoiceboxMultiItem, Combobox, ComboboxContent, ComboboxTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Comment, type ContentsProps, type DataFAQProps, DatePicker, type DatePickerProps, DateSelect, type DateSelectProps, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogQr, type DialogQrProps, DialogTitle, DialogTrigger, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FAQSection, type FAQSectionProps, FeatureSection, type FeatureSectionProps, Footer, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GuideSection, type GuideSectionProps, HeaderNavigation, Heading, HeadingBlock, type HeadingBlockProps, HeadingGroup, HeadingSub, HeadingTagline, type HeroContentProps, HeroSection, HorizontalContent, HorizontalNext, HorizontalPrevious, HorizontalScroll, type HorizontalScrollProps, HowItWorksSection, type HowItWorksSectionProps, type IComment, type ICommentContent, type ICommentFooter, type ICommentHeader, type IPayment, type ITopbar, IconButton, type IconButtonProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, LightBoxGalleryContent, LightboxGallery, LightboxThumbnail, MetricsSection, type MetricsSectionProps, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NewsSection, type NewsSectionProps, Pagination, Payment, PaymentGuide, PaymentGuideDialog, PaymentInvoice, PaymentMethods, PaymentResult, PaymentResultContent, PaymentResultFooter, type PaymentResultProps, Popover, PopoverContent, PopoverTrigger, ProgressSteps, ProgressStepsItem, ProgressStepsItemTrigger, Progress as Progressbar, QRPayment, RadioGroup, RadioGroupItem, ReadMoreLite, SearchBar, SectionBlock, type SectionBlockProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SiteMeta, Skeleton, Slider, SocialProofSection, type SocialProofSectionProps, Spinner, Stepper, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TestimonialSection, type TestimonialSectionProps, TextArea, type TextAreaProps, TextButton, type TextButtonProps, TextInput, type TextInputProps, ToastAction, Toaster, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Topbar, badgeVariants, buttonVariants, mobaseTW, navigationMenuTriggerStyle, textButtonVariants, toast, useFormField, useToast };
2075
+ export { Accordion, AccordionContent, type AccordionContentInterface, AccordionItem, type AccordionItemInterface, type AccordionRootInterface, AccordionTrigger, type AccordionTriggerInterface, ActionButton, type ActionButtonProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AspectRatio, Badge, BlogSection, type BlogSectionProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, ButtonsBlock, type ButtonsBlockProps, CTASection, type CTASectionProps, Calendar, type CalendarProps, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, ChoiceboxGroup, ChoiceboxGroupItem, ChoiceboxMultiItem, Combobox, ComboboxContent, ComboboxTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Comment, type ContentsProps, type DataFAQProps, DatePicker, type DatePickerProps, DateSelect, type DateSelectProps, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogQr, type DialogQrProps, DialogTitle, DialogTrigger, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FAQSection, type FAQSectionProps, FeatureSection, type FeatureSectionProps, Footer, Form, FormControl, type FormData, FormDescription, type FormErrors, FormField, type FormFieldProps, FormItem, FormLabel, FormLeadSupport, type FormLeadSupportProps, FormMessage, GuideSection, type GuideSectionProps, HeaderNavigation, Heading, HeadingBlock, type HeadingBlockProps, HeadingGroup, HeadingSub, HeadingTagline, type HeroContentProps, HeroSection, HorizontalContent, HorizontalNext, HorizontalPrevious, HorizontalScroll, type HorizontalScrollProps, HowItWorksSection, type HowItWorksSectionProps, type IComment, type ICommentContent, type ICommentFooter, type ICommentHeader, type IPayment, type ITopbar, IconButton, type IconButtonProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, LightBoxGalleryContent, LightboxGallery, LightboxThumbnail, MetricsSection, type MetricsSectionProps, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NewsSection, type NewsSectionProps, Pagination, Payment, PaymentGuide, PaymentGuideDialog, PaymentInvoice, PaymentMethods, PaymentResult, PaymentResultContent, PaymentResultFooter, type PaymentResultProps, Popover, PopoverContent, PopoverTrigger, ProgressSteps, ProgressStepsItem, ProgressStepsItemTrigger, Progress as Progressbar, QRPayment, RadioGroup, RadioGroupItem, ReadMoreLite, SearchBar, SectionBlock, type SectionBlockProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SiteMeta, Skeleton, Slider, SocialProofSection, type SocialProofSectionProps, Spinner, Stepper, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TestimonialSection, type TestimonialSectionProps, TextArea, type TextAreaProps, TextButton, type TextButtonProps, TextInput, type TextInputProps, ToastAction, Toaster, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Topbar, badgeVariants, buttonVariants, mobaseTW, navigationMenuTriggerStyle, textButtonVariants, toast, useFormField, useToast };