@momo-webplatform/mobase 1.0.5 → 1.0.6
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/cjs/index.cjs +22 -26
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +72 -1
- package/dist/esm/index.d.ts +72 -1
- package/dist/esm/index.js +20 -24
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.d.cts
CHANGED
|
@@ -678,6 +678,75 @@ interface GuideSectionProps extends SectionBlockProps {
|
|
|
678
678
|
|
|
679
679
|
declare const GuideSection: ({ idSection, dataHeading, dataGuide, dataHorizontalScroll, dataButtons, className, background, template, mockup, isStep, }: GuideSectionProps) => react_jsx_runtime.JSX.Element;
|
|
680
680
|
|
|
681
|
+
interface GiftListItemData {
|
|
682
|
+
/**
|
|
683
|
+
* Service name of gift card.
|
|
684
|
+
*/
|
|
685
|
+
serviceName?: string;
|
|
686
|
+
/**
|
|
687
|
+
* Gift card title.
|
|
688
|
+
*/
|
|
689
|
+
title: string;
|
|
690
|
+
/**
|
|
691
|
+
* Short description of gift card.
|
|
692
|
+
*/
|
|
693
|
+
description?: string;
|
|
694
|
+
/**
|
|
695
|
+
* Gift thumbnail url (square image).
|
|
696
|
+
*/
|
|
697
|
+
thumbnail?: string;
|
|
698
|
+
/**
|
|
699
|
+
* Gift tag content.
|
|
700
|
+
*/
|
|
701
|
+
tag?: string;
|
|
702
|
+
/**
|
|
703
|
+
* Mark card as featured item.
|
|
704
|
+
*/
|
|
705
|
+
isFeatured?: boolean;
|
|
706
|
+
/**
|
|
707
|
+
* Gift action button text.
|
|
708
|
+
*/
|
|
709
|
+
btnName?: string;
|
|
710
|
+
/**
|
|
711
|
+
* Gift action button url. When set (non-empty), the CTA uses ActionButton with this target.
|
|
712
|
+
* When empty or omitted but `btnName` is set, the CTA opens the detail modal instead.
|
|
713
|
+
*/
|
|
714
|
+
btnLink?: string;
|
|
715
|
+
/**
|
|
716
|
+
* Open action button in new tab.
|
|
717
|
+
*/
|
|
718
|
+
newTab?: boolean;
|
|
719
|
+
/**
|
|
720
|
+
* When true, clicking the card (outside the CTA) opens the detail modal. Does not affect CTA:
|
|
721
|
+
* CTA follows `btnLink` (navigate) vs no `btnLink` (open modal).
|
|
722
|
+
*/
|
|
723
|
+
useModal?: boolean;
|
|
724
|
+
/**
|
|
725
|
+
* Short description displayed in modal.
|
|
726
|
+
*/
|
|
727
|
+
content?: string;
|
|
728
|
+
}
|
|
729
|
+
interface GiftListSectionProps extends SectionBlockProps {
|
|
730
|
+
/**
|
|
731
|
+
* The template of the section.
|
|
732
|
+
*/
|
|
733
|
+
template?: 1;
|
|
734
|
+
/**
|
|
735
|
+
* The data heading of the section.
|
|
736
|
+
*/
|
|
737
|
+
dataHeading?: HeadingBlockProps;
|
|
738
|
+
/**
|
|
739
|
+
* The data buttons of the section.
|
|
740
|
+
*/
|
|
741
|
+
dataButtons?: ButtonsBlockProps;
|
|
742
|
+
/**
|
|
743
|
+
* The array data gift list of the section.
|
|
744
|
+
*/
|
|
745
|
+
dataGiftList?: GiftListItemData[];
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
declare const GiftListSection: ({ template, className, idSection, background, dataHeading, dataButtons, dataGiftList, }: GiftListSectionProps) => react_jsx_runtime.JSX.Element;
|
|
749
|
+
|
|
681
750
|
interface HeadingGroupProps {
|
|
682
751
|
/**
|
|
683
752
|
* CSS class to be appended to the root element.
|
|
@@ -1943,6 +2012,8 @@ interface QRPaymentProps {
|
|
|
1943
2012
|
dateExpired?: Date | string | number;
|
|
1944
2013
|
priceOrder?: number | string;
|
|
1945
2014
|
className?: string;
|
|
2015
|
+
isAIOQR?: boolean;
|
|
2016
|
+
isHideGuidePayment?: boolean;
|
|
1946
2017
|
}
|
|
1947
2018
|
|
|
1948
2019
|
declare const QRPayment: React__default.FC<QRPaymentProps>;
|
|
@@ -2004,4 +2075,4 @@ declare const mobaseTW: () => {
|
|
|
2004
2075
|
|
|
2005
2076
|
declare const SiteMeta: react_jsx_runtime.JSX.Element;
|
|
2006
2077
|
|
|
2007
|
-
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, 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, useToast };
|
|
2078
|
+
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, type GiftListItemData, GiftListSection, type GiftListSectionProps, 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, useToast };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -678,6 +678,75 @@ interface GuideSectionProps extends SectionBlockProps {
|
|
|
678
678
|
|
|
679
679
|
declare const GuideSection: ({ idSection, dataHeading, dataGuide, dataHorizontalScroll, dataButtons, className, background, template, mockup, isStep, }: GuideSectionProps) => react_jsx_runtime.JSX.Element;
|
|
680
680
|
|
|
681
|
+
interface GiftListItemData {
|
|
682
|
+
/**
|
|
683
|
+
* Service name of gift card.
|
|
684
|
+
*/
|
|
685
|
+
serviceName?: string;
|
|
686
|
+
/**
|
|
687
|
+
* Gift card title.
|
|
688
|
+
*/
|
|
689
|
+
title: string;
|
|
690
|
+
/**
|
|
691
|
+
* Short description of gift card.
|
|
692
|
+
*/
|
|
693
|
+
description?: string;
|
|
694
|
+
/**
|
|
695
|
+
* Gift thumbnail url (square image).
|
|
696
|
+
*/
|
|
697
|
+
thumbnail?: string;
|
|
698
|
+
/**
|
|
699
|
+
* Gift tag content.
|
|
700
|
+
*/
|
|
701
|
+
tag?: string;
|
|
702
|
+
/**
|
|
703
|
+
* Mark card as featured item.
|
|
704
|
+
*/
|
|
705
|
+
isFeatured?: boolean;
|
|
706
|
+
/**
|
|
707
|
+
* Gift action button text.
|
|
708
|
+
*/
|
|
709
|
+
btnName?: string;
|
|
710
|
+
/**
|
|
711
|
+
* Gift action button url. When set (non-empty), the CTA uses ActionButton with this target.
|
|
712
|
+
* When empty or omitted but `btnName` is set, the CTA opens the detail modal instead.
|
|
713
|
+
*/
|
|
714
|
+
btnLink?: string;
|
|
715
|
+
/**
|
|
716
|
+
* Open action button in new tab.
|
|
717
|
+
*/
|
|
718
|
+
newTab?: boolean;
|
|
719
|
+
/**
|
|
720
|
+
* When true, clicking the card (outside the CTA) opens the detail modal. Does not affect CTA:
|
|
721
|
+
* CTA follows `btnLink` (navigate) vs no `btnLink` (open modal).
|
|
722
|
+
*/
|
|
723
|
+
useModal?: boolean;
|
|
724
|
+
/**
|
|
725
|
+
* Short description displayed in modal.
|
|
726
|
+
*/
|
|
727
|
+
content?: string;
|
|
728
|
+
}
|
|
729
|
+
interface GiftListSectionProps extends SectionBlockProps {
|
|
730
|
+
/**
|
|
731
|
+
* The template of the section.
|
|
732
|
+
*/
|
|
733
|
+
template?: 1;
|
|
734
|
+
/**
|
|
735
|
+
* The data heading of the section.
|
|
736
|
+
*/
|
|
737
|
+
dataHeading?: HeadingBlockProps;
|
|
738
|
+
/**
|
|
739
|
+
* The data buttons of the section.
|
|
740
|
+
*/
|
|
741
|
+
dataButtons?: ButtonsBlockProps;
|
|
742
|
+
/**
|
|
743
|
+
* The array data gift list of the section.
|
|
744
|
+
*/
|
|
745
|
+
dataGiftList?: GiftListItemData[];
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
declare const GiftListSection: ({ template, className, idSection, background, dataHeading, dataButtons, dataGiftList, }: GiftListSectionProps) => react_jsx_runtime.JSX.Element;
|
|
749
|
+
|
|
681
750
|
interface HeadingGroupProps {
|
|
682
751
|
/**
|
|
683
752
|
* CSS class to be appended to the root element.
|
|
@@ -1943,6 +2012,8 @@ interface QRPaymentProps {
|
|
|
1943
2012
|
dateExpired?: Date | string | number;
|
|
1944
2013
|
priceOrder?: number | string;
|
|
1945
2014
|
className?: string;
|
|
2015
|
+
isAIOQR?: boolean;
|
|
2016
|
+
isHideGuidePayment?: boolean;
|
|
1946
2017
|
}
|
|
1947
2018
|
|
|
1948
2019
|
declare const QRPayment: React__default.FC<QRPaymentProps>;
|
|
@@ -2004,4 +2075,4 @@ declare const mobaseTW: () => {
|
|
|
2004
2075
|
|
|
2005
2076
|
declare const SiteMeta: react_jsx_runtime.JSX.Element;
|
|
2006
2077
|
|
|
2007
|
-
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, 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, useToast };
|
|
2078
|
+
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, type GiftListItemData, GiftListSection, type GiftListSectionProps, 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, useToast };
|