@momo-webplatform/mobase 0.2.4 → 0.2.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.
@@ -413,6 +413,70 @@ interface RadioGroupProps extends VariantProps<typeof radioGroupVariants> {
413
413
  declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & RadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
414
414
  declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
415
415
 
416
+ interface ComponentData {
417
+ title: string;
418
+ icon: string;
419
+ url: string;
420
+ description: string;
421
+ newTab: boolean;
422
+ }
423
+ interface MainNavItemWithDropdown {
424
+ id: number;
425
+ title: string;
426
+ hasDropdown: boolean;
427
+ dropDownCompact: boolean;
428
+ subMenu: ComponentData[];
429
+ }
430
+ interface MainNavItemWithoutDropdown {
431
+ id: number;
432
+ title: string;
433
+ hasDropdown: boolean;
434
+ url: string;
435
+ newTab: boolean;
436
+ }
437
+ type MainNavItem = MainNavItemWithDropdown | MainNavItemWithoutDropdown;
438
+ interface ServiceInfo {
439
+ logo?: string;
440
+ name?: string;
441
+ url: string;
442
+ }
443
+ interface HeaderProps {
444
+ /**
445
+ * CSS class to be appended to the root element.
446
+ */
447
+ className?: string;
448
+ /**
449
+ * Data menu
450
+ */
451
+ dataMenu: MainNavItem[];
452
+ /**
453
+ * Service info
454
+ */
455
+ serviceInfo: ServiceInfo;
456
+ }
457
+ declare const Header: React$1.MemoExoticComponent<({ className, dataMenu, serviceInfo }: HeaderProps) => react_jsx_runtime.JSX.Element>;
458
+
459
+ interface FooterItem {
460
+ title: string;
461
+ url: string;
462
+ newTab: boolean;
463
+ }
464
+ interface FooterData {
465
+ heading: string;
466
+ lists: FooterItem[];
467
+ }
468
+ interface footerProps {
469
+ /**
470
+ * CSS class to be appended to the root element.
471
+ */
472
+ className?: string;
473
+ /**
474
+ * Data menu
475
+ */
476
+ dataMenu?: FooterData;
477
+ }
478
+ declare const Footer: React$1.MemoExoticComponent<({ className, dataMenu }: footerProps) => react_jsx_runtime.JSX.Element>;
479
+
416
480
  declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
417
481
  declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
418
482
  declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
@@ -655,4 +719,4 @@ declare const mobaseTW: () => {
655
719
 
656
720
  declare const SiteMeta: () => react_jsx_runtime.JSX.Element;
657
721
 
658
- export { Accordion, AccordionContent, type AccordionContentInterface, AccordionItem, type AccordionItemInterface, type AccordionRootInterface, AccordionTrigger, type AccordionTriggerInterface, 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, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxIndicator, type CheckboxIndicatorProps, type CheckboxProps, ChoiceboxGroup, ChoiceboxGroupItem, Combobox, ComboboxContent, ComboboxTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogQr, DialogTitle, DialogTrigger, HeroSection, IconButton, type IconButtonProps, Indicator, LightBoxContent, LightboxGallery, LightboxThumbnail, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, Popover, PopoverContent, PopoverTrigger, Progress as Progressbar, RadioGroup, RadioGroupItem, Root, SearchBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SiteMeta, Stepper, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TextArea, type TextAreaProps, TextButton, type TextButtonProps, TextInput, type TextInputProps, ToastAction, Toaster, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, createCheckboxScope, mobaseTW, navigationMenuTriggerStyle, textButtonVariants, toast, useToast };
722
+ export { Accordion, AccordionContent, type AccordionContentInterface, AccordionItem, type AccordionItemInterface, type AccordionRootInterface, AccordionTrigger, type AccordionTriggerInterface, 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, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxIndicator, type CheckboxIndicatorProps, type CheckboxProps, ChoiceboxGroup, ChoiceboxGroupItem, Combobox, ComboboxContent, ComboboxTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogQr, DialogTitle, DialogTrigger, Footer, Header, HeroSection, IconButton, type IconButtonProps, Indicator, LightBoxContent, LightboxGallery, LightboxThumbnail, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, Popover, PopoverContent, PopoverTrigger, Progress as Progressbar, RadioGroup, RadioGroupItem, Root, SearchBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SiteMeta, Stepper, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TextArea, type TextAreaProps, TextButton, type TextButtonProps, TextInput, type TextInputProps, ToastAction, Toaster, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, createCheckboxScope, mobaseTW, navigationMenuTriggerStyle, textButtonVariants, toast, useToast };
@@ -2,7 +2,7 @@ import * as React$1 from 'react';
2
2
  import React__default, { TextareaHTMLAttributes, InputHTMLAttributes, ReactNode } 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
- import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
5
+ import * as class_variance_authority_types from 'class-variance-authority/types';
6
6
  import { VariantProps } from 'class-variance-authority';
7
7
  import * as _radix_ui_react_context from '@radix-ui/react-context';
8
8
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
@@ -59,7 +59,7 @@ declare const BreadcrumbEllipsis: {
59
59
  declare const buttonVariants: (props?: ({
60
60
  variant?: "primary" | "secondary" | "outline" | "tonal" | "danger" | "transparent" | null | undefined;
61
61
  size?: "default" | "sm" | "lg" | null | undefined;
62
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
62
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
63
63
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
64
64
  /**
65
65
  * CSS class to be appended to the root element.
@@ -231,7 +231,7 @@ declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<Omit<AlertDia
231
231
  declare const iconButtonVariants: (props?: ({
232
232
  variant?: "primary" | "secondary" | "outline" | "tonal" | "danger" | "transparent" | null | undefined;
233
233
  size?: "default" | "sm" | "lg" | null | undefined;
234
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
234
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
235
235
  interface IconButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iconButtonVariants> {
236
236
  /**
237
237
  * CSS class to be appended to the root element.
@@ -293,7 +293,7 @@ declare const TextArea: React$1.ForwardRefExoticComponent<TextAreaProps & React$
293
293
 
294
294
  declare const Toast$1: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
295
295
  variant?: "sucess" | "warning" | "error" | null | undefined;
296
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLLIElement>>;
296
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLLIElement>>;
297
297
  declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
298
298
  type ToastProps = React$1.ComponentPropsWithoutRef<typeof Toast$1>;
299
299
  type ToastActionElement = React$1.ReactElement<typeof ToastAction>;
@@ -319,9 +319,9 @@ declare function useToast(): {
319
319
  declare function Toaster(): react_jsx_runtime.JSX.Element;
320
320
 
321
321
  declare const textButtonVariants: (props?: ({
322
- variant?: "default" | "primary" | "secondary" | null | undefined;
322
+ variant?: "primary" | "secondary" | "default" | null | undefined;
323
323
  size?: "default" | "lg" | null | undefined;
324
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
324
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
325
325
  interface TextButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof textButtonVariants> {
326
326
  /**
327
327
  * CSS class to be appended to the root element.
@@ -394,7 +394,7 @@ declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrim
394
394
  declare const NavigationMenu: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
395
395
  declare const NavigationMenuList: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & React$1.RefAttributes<HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
396
396
  declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
397
- declare const navigationMenuTriggerStyle: (props?: class_variance_authority_dist_types.ClassProp | undefined) => string;
397
+ declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
398
398
  declare const NavigationMenuTrigger: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
399
399
  declare const NavigationMenuContent: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
400
400
  declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
@@ -405,7 +405,7 @@ declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.Sw
405
405
 
406
406
  declare const radioGroupVariants: (props?: ({
407
407
  orientation?: "horizontal" | "vertical" | null | undefined;
408
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
408
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
409
409
  interface RadioGroupProps extends VariantProps<typeof radioGroupVariants> {
410
410
  className?: string;
411
411
  disabled?: boolean;
@@ -413,6 +413,70 @@ interface RadioGroupProps extends VariantProps<typeof radioGroupVariants> {
413
413
  declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & RadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
414
414
  declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
415
415
 
416
+ interface ComponentData {
417
+ title: string;
418
+ icon: string;
419
+ url: string;
420
+ description: string;
421
+ newTab: boolean;
422
+ }
423
+ interface MainNavItemWithDropdown {
424
+ id: number;
425
+ title: string;
426
+ hasDropdown: boolean;
427
+ dropDownCompact: boolean;
428
+ subMenu: ComponentData[];
429
+ }
430
+ interface MainNavItemWithoutDropdown {
431
+ id: number;
432
+ title: string;
433
+ hasDropdown: boolean;
434
+ url: string;
435
+ newTab: boolean;
436
+ }
437
+ type MainNavItem = MainNavItemWithDropdown | MainNavItemWithoutDropdown;
438
+ interface ServiceInfo {
439
+ logo?: string;
440
+ name?: string;
441
+ url: string;
442
+ }
443
+ interface HeaderProps {
444
+ /**
445
+ * CSS class to be appended to the root element.
446
+ */
447
+ className?: string;
448
+ /**
449
+ * Data menu
450
+ */
451
+ dataMenu: MainNavItem[];
452
+ /**
453
+ * Service info
454
+ */
455
+ serviceInfo: ServiceInfo;
456
+ }
457
+ declare const Header: React$1.MemoExoticComponent<({ className, dataMenu, serviceInfo }: HeaderProps) => react_jsx_runtime.JSX.Element>;
458
+
459
+ interface FooterItem {
460
+ title: string;
461
+ url: string;
462
+ newTab: boolean;
463
+ }
464
+ interface FooterData {
465
+ heading: string;
466
+ lists: FooterItem[];
467
+ }
468
+ interface footerProps {
469
+ /**
470
+ * CSS class to be appended to the root element.
471
+ */
472
+ className?: string;
473
+ /**
474
+ * Data menu
475
+ */
476
+ dataMenu?: FooterData;
477
+ }
478
+ declare const Footer: React$1.MemoExoticComponent<({ className, dataMenu }: footerProps) => react_jsx_runtime.JSX.Element>;
479
+
416
480
  declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
417
481
  declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
418
482
  declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
@@ -503,10 +567,10 @@ interface CalloutProps {
503
567
  declare const Callout: React$1.ForwardRefExoticComponent<CalloutProps & VariantProps<(props?: ({
504
568
  typeDiv?: "warning" | "error" | "neutral" | "success" | "info" | null | undefined;
505
569
  disabled?: boolean | null | undefined;
506
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & VariantProps<(props?: ({
570
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & VariantProps<(props?: ({
507
571
  typeIcon?: "warning" | "error" | "neutral" | "success" | "info" | null | undefined;
508
572
  disabled?: boolean | null | undefined;
509
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
573
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
510
574
 
511
575
  interface SearchBarProps extends InputHTMLAttributes<HTMLInputElement> {
512
576
  inputClassName?: string;
@@ -577,8 +641,8 @@ declare const ChoiceboxGroup: ({ direction, label, type, value, children, disabl
577
641
  }) => react_jsx_runtime.JSX.Element;
578
642
 
579
643
  declare const badgeVariants: (props?: ({
580
- variant?: "default" | "secondary" | "outline" | "danger" | null | undefined;
581
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
644
+ variant?: "secondary" | "outline" | "danger" | "default" | null | undefined;
645
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
582
646
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
583
647
  }
584
648
  declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
@@ -590,7 +654,7 @@ interface ProgressBarProps {
590
654
  }
591
655
  declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & ProgressBarProps & VariantProps<(props?: ({
592
656
  variant?: "progress" | "disabled" | "success" | "empty" | null | undefined;
593
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
657
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
594
658
 
595
659
  interface HeroContentProps {
596
660
  template?: 1 | 2 | 3 | 4 | 5 | string;
@@ -655,4 +719,4 @@ declare const mobaseTW: () => {
655
719
 
656
720
  declare const SiteMeta: () => react_jsx_runtime.JSX.Element;
657
721
 
658
- export { Accordion, AccordionContent, type AccordionContentInterface, AccordionItem, type AccordionItemInterface, type AccordionRootInterface, AccordionTrigger, type AccordionTriggerInterface, 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, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxIndicator, type CheckboxIndicatorProps, type CheckboxProps, ChoiceboxGroup, ChoiceboxGroupItem, Combobox, ComboboxContent, ComboboxTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogQr, DialogTitle, DialogTrigger, HeroSection, IconButton, type IconButtonProps, Indicator, LightBoxContent, LightboxGallery, LightboxThumbnail, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, Popover, PopoverContent, PopoverTrigger, Progress as Progressbar, RadioGroup, RadioGroupItem, Root, SearchBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SiteMeta, Stepper, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TextArea, type TextAreaProps, TextButton, type TextButtonProps, TextInput, type TextInputProps, ToastAction, Toaster, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, createCheckboxScope, mobaseTW, navigationMenuTriggerStyle, textButtonVariants, toast, useToast };
722
+ export { Accordion, AccordionContent, type AccordionContentInterface, AccordionItem, type AccordionItemInterface, type AccordionRootInterface, AccordionTrigger, type AccordionTriggerInterface, 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, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxIndicator, type CheckboxIndicatorProps, type CheckboxProps, ChoiceboxGroup, ChoiceboxGroupItem, Combobox, ComboboxContent, ComboboxTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogQr, DialogTitle, DialogTrigger, Footer, Header, HeroSection, IconButton, type IconButtonProps, Indicator, LightBoxContent, LightboxGallery, LightboxThumbnail, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, Popover, PopoverContent, PopoverTrigger, Progress as Progressbar, RadioGroup, RadioGroupItem, Root, SearchBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SiteMeta, Stepper, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TextArea, type TextAreaProps, TextButton, type TextButtonProps, TextInput, type TextInputProps, ToastAction, Toaster, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, createCheckboxScope, mobaseTW, navigationMenuTriggerStyle, textButtonVariants, toast, useToast };