@momo-webplatform/mobase 0.2.107-link → 0.2.109
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 +21 -21
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +89 -17
- package/dist/esm/index.d.ts +89 -17
- package/dist/esm/index.js +23 -23
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ReactNode, TextareaHTMLAttributes, InputHTMLAttributes, ReactElement
|
|
2
|
+
import React__default, { ReactNode, TextareaHTMLAttributes, InputHTMLAttributes, ReactElement } from 'react';
|
|
3
3
|
import { AccordionSingleProps, AccordionMultipleProps, AccordionItemProps, AccordionTriggerProps, AccordionContentProps } from '@radix-ui/react-accordion';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
@@ -69,6 +69,14 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
69
69
|
* Disabled interaction and applies disabled styles
|
|
70
70
|
*/
|
|
71
71
|
isDisabled?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Umami tracking button event
|
|
74
|
+
*/
|
|
75
|
+
dataUmamiEvent?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Umami tracking button event text (button label)
|
|
78
|
+
*/
|
|
79
|
+
dataUmamiEventText?: string;
|
|
72
80
|
}
|
|
73
81
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
74
82
|
|
|
@@ -129,9 +137,10 @@ interface ActionButtonProps extends ButtonProps {
|
|
|
129
137
|
* The content for button.
|
|
130
138
|
*/
|
|
131
139
|
children?: ReactNode;
|
|
140
|
+
onPushTrackingEvent?: () => void;
|
|
132
141
|
}
|
|
133
142
|
|
|
134
|
-
declare const ActionButton: ({ action, newTab, offset, dialogQrProps, className, children, ...props }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
143
|
+
declare const ActionButton: ({ action, newTab, offset, dialogQrProps, className, children, onPushTrackingEvent, ...props }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
135
144
|
|
|
136
145
|
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
137
146
|
separator?: React$1.ReactNode;
|
|
@@ -346,6 +355,10 @@ interface DataBlogProps {
|
|
|
346
355
|
* The flag to show the loading state. default is false.
|
|
347
356
|
*/
|
|
348
357
|
isLoading?: boolean;
|
|
358
|
+
/**
|
|
359
|
+
* Umami tracking event name for the load more button.
|
|
360
|
+
*/
|
|
361
|
+
dataUmamiEvent?: string;
|
|
349
362
|
}
|
|
350
363
|
interface BlogSectionProps extends SectionBlockProps {
|
|
351
364
|
/**
|
|
@@ -682,6 +695,75 @@ interface GuideSectionProps extends SectionBlockProps {
|
|
|
682
695
|
|
|
683
696
|
declare const GuideSection: ({ idSection, dataHeading, dataGuide, dataHorizontalScroll, dataButtons, className, background, template, mockup, isStep, }: GuideSectionProps) => react_jsx_runtime.JSX.Element;
|
|
684
697
|
|
|
698
|
+
interface GiftListItemData {
|
|
699
|
+
/**
|
|
700
|
+
* Service name of gift card.
|
|
701
|
+
*/
|
|
702
|
+
serviceName?: string;
|
|
703
|
+
/**
|
|
704
|
+
* Gift card title.
|
|
705
|
+
*/
|
|
706
|
+
title: string;
|
|
707
|
+
/**
|
|
708
|
+
* Short description of gift card.
|
|
709
|
+
*/
|
|
710
|
+
description?: string;
|
|
711
|
+
/**
|
|
712
|
+
* Gift thumbnail url (square image).
|
|
713
|
+
*/
|
|
714
|
+
thumbnail?: string;
|
|
715
|
+
/**
|
|
716
|
+
* Gift tag content.
|
|
717
|
+
*/
|
|
718
|
+
tag?: string;
|
|
719
|
+
/**
|
|
720
|
+
* Mark card as featured item.
|
|
721
|
+
*/
|
|
722
|
+
isFeatured?: boolean;
|
|
723
|
+
/**
|
|
724
|
+
* Gift action button text.
|
|
725
|
+
*/
|
|
726
|
+
btnName?: string;
|
|
727
|
+
/**
|
|
728
|
+
* Gift action button url. When set (non-empty), the CTA uses ActionButton with this target.
|
|
729
|
+
* When empty or omitted but `btnName` is set, the CTA opens the detail modal instead.
|
|
730
|
+
*/
|
|
731
|
+
btnLink?: string;
|
|
732
|
+
/**
|
|
733
|
+
* Open action button in new tab.
|
|
734
|
+
*/
|
|
735
|
+
newTab?: boolean;
|
|
736
|
+
/**
|
|
737
|
+
* When true, clicking the card (outside the CTA) opens the detail modal. Does not affect CTA:
|
|
738
|
+
* CTA follows `btnLink` (navigate) vs no `btnLink` (open modal).
|
|
739
|
+
*/
|
|
740
|
+
useModal?: boolean;
|
|
741
|
+
/**
|
|
742
|
+
* Short description displayed in modal.
|
|
743
|
+
*/
|
|
744
|
+
content?: string;
|
|
745
|
+
}
|
|
746
|
+
interface GiftListSectionProps extends SectionBlockProps {
|
|
747
|
+
/**
|
|
748
|
+
* The template of the section.
|
|
749
|
+
*/
|
|
750
|
+
template?: 1;
|
|
751
|
+
/**
|
|
752
|
+
* The data heading of the section.
|
|
753
|
+
*/
|
|
754
|
+
dataHeading?: HeadingBlockProps;
|
|
755
|
+
/**
|
|
756
|
+
* The data buttons of the section.
|
|
757
|
+
*/
|
|
758
|
+
dataButtons?: ButtonsBlockProps;
|
|
759
|
+
/**
|
|
760
|
+
* The array data gift list of the section.
|
|
761
|
+
*/
|
|
762
|
+
dataGiftList?: GiftListItemData[];
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
declare const GiftListSection: ({ template, className, idSection, background, dataHeading, dataButtons, dataGiftList, }: GiftListSectionProps) => react_jsx_runtime.JSX.Element;
|
|
766
|
+
|
|
685
767
|
interface HeadingGroupProps {
|
|
686
768
|
/**
|
|
687
769
|
* CSS class to be appended to the root element.
|
|
@@ -1725,6 +1807,10 @@ interface DataNewsProps {
|
|
|
1725
1807
|
* The flag to show the loading state. default is false.
|
|
1726
1808
|
*/
|
|
1727
1809
|
isLoading?: boolean;
|
|
1810
|
+
/**
|
|
1811
|
+
* Umami tracking event name for the load more button.
|
|
1812
|
+
*/
|
|
1813
|
+
dataUmamiEvent?: string;
|
|
1728
1814
|
}
|
|
1729
1815
|
interface NewsSectionProps extends SectionBlockProps {
|
|
1730
1816
|
/**
|
|
@@ -2065,20 +2151,6 @@ interface FormLeadSupportProps extends SectionBlockProps {
|
|
|
2065
2151
|
|
|
2066
2152
|
declare const FormLeadSupport: ({ idSection, background, className, ...contentProps }: FormLeadSupportProps) => react_jsx_runtime.JSX.Element;
|
|
2067
2153
|
|
|
2068
|
-
interface CustomLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
2069
|
-
}
|
|
2070
|
-
declare const CustomLink: React.FC<CustomLinkProps>;
|
|
2071
|
-
|
|
2072
|
-
interface LocaleParams {
|
|
2073
|
-
href: string;
|
|
2074
|
-
locale?: string;
|
|
2075
|
-
defaultLocale?: string;
|
|
2076
|
-
basePath: string;
|
|
2077
|
-
}
|
|
2078
|
-
declare const getFinalHref: ({ href, locale, defaultLocale, basePath, }: Partial<LocaleParams> & {
|
|
2079
|
-
basePath: string;
|
|
2080
|
-
}) => string | undefined;
|
|
2081
|
-
|
|
2082
2154
|
/**
|
|
2083
2155
|
* This Tailwind plugin is based and inspired on "tw-colors" and "NextUI".
|
|
2084
2156
|
*
|
|
@@ -2092,4 +2164,4 @@ declare const mobaseTW: () => {
|
|
|
2092
2164
|
|
|
2093
2165
|
declare const SiteMeta: react_jsx_runtime.JSX.Element;
|
|
2094
2166
|
|
|
2095
|
-
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,
|
|
2167
|
+
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, 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, useFormField, useToast };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ReactNode, TextareaHTMLAttributes, InputHTMLAttributes, ReactElement
|
|
2
|
+
import React__default, { ReactNode, TextareaHTMLAttributes, InputHTMLAttributes, ReactElement } from 'react';
|
|
3
3
|
import { AccordionSingleProps, AccordionMultipleProps, AccordionItemProps, AccordionTriggerProps, AccordionContentProps } from '@radix-ui/react-accordion';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
@@ -69,6 +69,14 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
69
69
|
* Disabled interaction and applies disabled styles
|
|
70
70
|
*/
|
|
71
71
|
isDisabled?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Umami tracking button event
|
|
74
|
+
*/
|
|
75
|
+
dataUmamiEvent?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Umami tracking button event text (button label)
|
|
78
|
+
*/
|
|
79
|
+
dataUmamiEventText?: string;
|
|
72
80
|
}
|
|
73
81
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
74
82
|
|
|
@@ -129,9 +137,10 @@ interface ActionButtonProps extends ButtonProps {
|
|
|
129
137
|
* The content for button.
|
|
130
138
|
*/
|
|
131
139
|
children?: ReactNode;
|
|
140
|
+
onPushTrackingEvent?: () => void;
|
|
132
141
|
}
|
|
133
142
|
|
|
134
|
-
declare const ActionButton: ({ action, newTab, offset, dialogQrProps, className, children, ...props }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
143
|
+
declare const ActionButton: ({ action, newTab, offset, dialogQrProps, className, children, onPushTrackingEvent, ...props }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
135
144
|
|
|
136
145
|
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
137
146
|
separator?: React$1.ReactNode;
|
|
@@ -346,6 +355,10 @@ interface DataBlogProps {
|
|
|
346
355
|
* The flag to show the loading state. default is false.
|
|
347
356
|
*/
|
|
348
357
|
isLoading?: boolean;
|
|
358
|
+
/**
|
|
359
|
+
* Umami tracking event name for the load more button.
|
|
360
|
+
*/
|
|
361
|
+
dataUmamiEvent?: string;
|
|
349
362
|
}
|
|
350
363
|
interface BlogSectionProps extends SectionBlockProps {
|
|
351
364
|
/**
|
|
@@ -682,6 +695,75 @@ interface GuideSectionProps extends SectionBlockProps {
|
|
|
682
695
|
|
|
683
696
|
declare const GuideSection: ({ idSection, dataHeading, dataGuide, dataHorizontalScroll, dataButtons, className, background, template, mockup, isStep, }: GuideSectionProps) => react_jsx_runtime.JSX.Element;
|
|
684
697
|
|
|
698
|
+
interface GiftListItemData {
|
|
699
|
+
/**
|
|
700
|
+
* Service name of gift card.
|
|
701
|
+
*/
|
|
702
|
+
serviceName?: string;
|
|
703
|
+
/**
|
|
704
|
+
* Gift card title.
|
|
705
|
+
*/
|
|
706
|
+
title: string;
|
|
707
|
+
/**
|
|
708
|
+
* Short description of gift card.
|
|
709
|
+
*/
|
|
710
|
+
description?: string;
|
|
711
|
+
/**
|
|
712
|
+
* Gift thumbnail url (square image).
|
|
713
|
+
*/
|
|
714
|
+
thumbnail?: string;
|
|
715
|
+
/**
|
|
716
|
+
* Gift tag content.
|
|
717
|
+
*/
|
|
718
|
+
tag?: string;
|
|
719
|
+
/**
|
|
720
|
+
* Mark card as featured item.
|
|
721
|
+
*/
|
|
722
|
+
isFeatured?: boolean;
|
|
723
|
+
/**
|
|
724
|
+
* Gift action button text.
|
|
725
|
+
*/
|
|
726
|
+
btnName?: string;
|
|
727
|
+
/**
|
|
728
|
+
* Gift action button url. When set (non-empty), the CTA uses ActionButton with this target.
|
|
729
|
+
* When empty or omitted but `btnName` is set, the CTA opens the detail modal instead.
|
|
730
|
+
*/
|
|
731
|
+
btnLink?: string;
|
|
732
|
+
/**
|
|
733
|
+
* Open action button in new tab.
|
|
734
|
+
*/
|
|
735
|
+
newTab?: boolean;
|
|
736
|
+
/**
|
|
737
|
+
* When true, clicking the card (outside the CTA) opens the detail modal. Does not affect CTA:
|
|
738
|
+
* CTA follows `btnLink` (navigate) vs no `btnLink` (open modal).
|
|
739
|
+
*/
|
|
740
|
+
useModal?: boolean;
|
|
741
|
+
/**
|
|
742
|
+
* Short description displayed in modal.
|
|
743
|
+
*/
|
|
744
|
+
content?: string;
|
|
745
|
+
}
|
|
746
|
+
interface GiftListSectionProps extends SectionBlockProps {
|
|
747
|
+
/**
|
|
748
|
+
* The template of the section.
|
|
749
|
+
*/
|
|
750
|
+
template?: 1;
|
|
751
|
+
/**
|
|
752
|
+
* The data heading of the section.
|
|
753
|
+
*/
|
|
754
|
+
dataHeading?: HeadingBlockProps;
|
|
755
|
+
/**
|
|
756
|
+
* The data buttons of the section.
|
|
757
|
+
*/
|
|
758
|
+
dataButtons?: ButtonsBlockProps;
|
|
759
|
+
/**
|
|
760
|
+
* The array data gift list of the section.
|
|
761
|
+
*/
|
|
762
|
+
dataGiftList?: GiftListItemData[];
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
declare const GiftListSection: ({ template, className, idSection, background, dataHeading, dataButtons, dataGiftList, }: GiftListSectionProps) => react_jsx_runtime.JSX.Element;
|
|
766
|
+
|
|
685
767
|
interface HeadingGroupProps {
|
|
686
768
|
/**
|
|
687
769
|
* CSS class to be appended to the root element.
|
|
@@ -1725,6 +1807,10 @@ interface DataNewsProps {
|
|
|
1725
1807
|
* The flag to show the loading state. default is false.
|
|
1726
1808
|
*/
|
|
1727
1809
|
isLoading?: boolean;
|
|
1810
|
+
/**
|
|
1811
|
+
* Umami tracking event name for the load more button.
|
|
1812
|
+
*/
|
|
1813
|
+
dataUmamiEvent?: string;
|
|
1728
1814
|
}
|
|
1729
1815
|
interface NewsSectionProps extends SectionBlockProps {
|
|
1730
1816
|
/**
|
|
@@ -2065,20 +2151,6 @@ interface FormLeadSupportProps extends SectionBlockProps {
|
|
|
2065
2151
|
|
|
2066
2152
|
declare const FormLeadSupport: ({ idSection, background, className, ...contentProps }: FormLeadSupportProps) => react_jsx_runtime.JSX.Element;
|
|
2067
2153
|
|
|
2068
|
-
interface CustomLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
2069
|
-
}
|
|
2070
|
-
declare const CustomLink: React.FC<CustomLinkProps>;
|
|
2071
|
-
|
|
2072
|
-
interface LocaleParams {
|
|
2073
|
-
href: string;
|
|
2074
|
-
locale?: string;
|
|
2075
|
-
defaultLocale?: string;
|
|
2076
|
-
basePath: string;
|
|
2077
|
-
}
|
|
2078
|
-
declare const getFinalHref: ({ href, locale, defaultLocale, basePath, }: Partial<LocaleParams> & {
|
|
2079
|
-
basePath: string;
|
|
2080
|
-
}) => string | undefined;
|
|
2081
|
-
|
|
2082
2154
|
/**
|
|
2083
2155
|
* This Tailwind plugin is based and inspired on "tw-colors" and "NextUI".
|
|
2084
2156
|
*
|
|
@@ -2092,4 +2164,4 @@ declare const mobaseTW: () => {
|
|
|
2092
2164
|
|
|
2093
2165
|
declare const SiteMeta: react_jsx_runtime.JSX.Element;
|
|
2094
2166
|
|
|
2095
|
-
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,
|
|
2167
|
+
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, 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, useFormField, useToast };
|