@underverse-ui/underverse 0.1.34 → 0.1.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -56,6 +56,7 @@ interface ButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElem
56
56
  lockMs?: number;
57
57
  asContainer?: boolean;
58
58
  noWrap?: boolean;
59
+ noHoverOverlay?: boolean;
59
60
  }
60
61
  declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
61
62
 
@@ -888,12 +889,61 @@ interface ImageUploadProps {
888
889
  declare function ImageUpload({ onUpload, onRemove, maxSize, // Convert bytes to MB
889
890
  accept, multiple, disabled, className, showPreview, previewSize, dragDropText, browseText, supportedFormatsText }: ImageUploadProps): react_jsx_runtime.JSX.Element;
890
891
 
892
+ type AnimationVariant = "slide" | "fade" | "scale";
893
+ type Orientation = "horizontal" | "vertical";
891
894
  interface CarouselProps {
892
895
  children: React$1.ReactNode[];
893
896
  autoScroll?: boolean;
894
897
  autoScrollInterval?: number;
898
+ animation?: AnimationVariant;
899
+ orientation?: Orientation;
900
+ showArrows?: boolean;
901
+ showDots?: boolean;
902
+ showProgress?: boolean;
903
+ showThumbnails?: boolean;
904
+ loop?: boolean;
905
+ slidesToShow?: number;
906
+ slidesToScroll?: number;
907
+ className?: string;
908
+ containerClassName?: string;
909
+ slideClassName?: string;
910
+ onSlideChange?: (index: number) => void;
911
+ thumbnailRenderer?: (child: React$1.ReactNode, index: number) => React$1.ReactNode;
912
+ ariaLabel?: string;
913
+ }
914
+ declare function Carousel({ children, autoScroll, autoScrollInterval, animation, orientation, showArrows, showDots, showProgress, showThumbnails, loop, slidesToShow, slidesToScroll, className, containerClassName, slideClassName, onSlideChange, thumbnailRenderer, ariaLabel, }: CarouselProps): react_jsx_runtime.JSX.Element;
915
+
916
+ type IconComponent = React__default.ComponentType<{
917
+ className?: string;
918
+ }>;
919
+ interface FallingIconsProps {
920
+ icon?: IconComponent;
921
+ imageUrl?: string;
922
+ count?: number;
923
+ className?: string;
924
+ areaClassName?: string;
925
+ colorClassName?: string;
926
+ zIndex?: number;
927
+ speedRange?: [number, number];
928
+ sizeRange?: [number, number];
929
+ horizontalDrift?: number;
930
+ spin?: boolean;
931
+ fullScreen?: boolean;
932
+ randomizeEachLoop?: boolean;
933
+ glow?: boolean;
934
+ glowColor?: string;
935
+ glowIntensity?: number;
936
+ trail?: boolean;
937
+ trailLength?: number;
938
+ physics?: {
939
+ gravity?: number;
940
+ windDirection?: number;
941
+ windStrength?: number;
942
+ rotation?: boolean;
943
+ };
944
+ easingFunction?: "linear" | "ease" | "ease-in" | "ease-out" | "ease-in-out" | "bounce" | "elastic";
895
945
  }
896
- declare function Carousel({ children, autoScroll, autoScrollInterval }: CarouselProps): react_jsx_runtime.JSX.Element;
946
+ declare function FallingIcons({ icon: Icon, imageUrl, count, className, areaClassName, colorClassName, zIndex, speedRange, sizeRange, horizontalDrift, spin, fullScreen, randomizeEachLoop, glow, glowColor, glowIntensity, trail, trailLength, physics, easingFunction, }: FallingIconsProps): react_jsx_runtime.JSX.Element;
897
947
 
898
948
  interface ClientOnlyProps {
899
949
  children: React.ReactNode;
@@ -1448,4 +1498,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
1448
1498
  };
1449
1499
  };
1450
1500
 
1451
- export { AccessDenied, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Card, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableQuery, DatePicker, type DatePickerProps, DateRangePicker, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FloatingContacts, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Sorter, StatusBadge, StepProgress, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, ToastProvider, Tooltip, type UnderverseLocale, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, cn, getUnderverseMessages, underverseMessages, useFormField, useToast };
1501
+ export { AccessDenied, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Card, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableQuery, DatePicker, type DatePickerProps, DateRangePicker, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FloatingContacts, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Sorter, StatusBadge, StepProgress, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, ToastProvider, Tooltip, type UnderverseLocale, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, cn, getUnderverseMessages, underverseMessages, useFormField, useToast };
package/dist/index.d.ts CHANGED
@@ -56,6 +56,7 @@ interface ButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElem
56
56
  lockMs?: number;
57
57
  asContainer?: boolean;
58
58
  noWrap?: boolean;
59
+ noHoverOverlay?: boolean;
59
60
  }
60
61
  declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
61
62
 
@@ -888,12 +889,61 @@ interface ImageUploadProps {
888
889
  declare function ImageUpload({ onUpload, onRemove, maxSize, // Convert bytes to MB
889
890
  accept, multiple, disabled, className, showPreview, previewSize, dragDropText, browseText, supportedFormatsText }: ImageUploadProps): react_jsx_runtime.JSX.Element;
890
891
 
892
+ type AnimationVariant = "slide" | "fade" | "scale";
893
+ type Orientation = "horizontal" | "vertical";
891
894
  interface CarouselProps {
892
895
  children: React$1.ReactNode[];
893
896
  autoScroll?: boolean;
894
897
  autoScrollInterval?: number;
898
+ animation?: AnimationVariant;
899
+ orientation?: Orientation;
900
+ showArrows?: boolean;
901
+ showDots?: boolean;
902
+ showProgress?: boolean;
903
+ showThumbnails?: boolean;
904
+ loop?: boolean;
905
+ slidesToShow?: number;
906
+ slidesToScroll?: number;
907
+ className?: string;
908
+ containerClassName?: string;
909
+ slideClassName?: string;
910
+ onSlideChange?: (index: number) => void;
911
+ thumbnailRenderer?: (child: React$1.ReactNode, index: number) => React$1.ReactNode;
912
+ ariaLabel?: string;
913
+ }
914
+ declare function Carousel({ children, autoScroll, autoScrollInterval, animation, orientation, showArrows, showDots, showProgress, showThumbnails, loop, slidesToShow, slidesToScroll, className, containerClassName, slideClassName, onSlideChange, thumbnailRenderer, ariaLabel, }: CarouselProps): react_jsx_runtime.JSX.Element;
915
+
916
+ type IconComponent = React__default.ComponentType<{
917
+ className?: string;
918
+ }>;
919
+ interface FallingIconsProps {
920
+ icon?: IconComponent;
921
+ imageUrl?: string;
922
+ count?: number;
923
+ className?: string;
924
+ areaClassName?: string;
925
+ colorClassName?: string;
926
+ zIndex?: number;
927
+ speedRange?: [number, number];
928
+ sizeRange?: [number, number];
929
+ horizontalDrift?: number;
930
+ spin?: boolean;
931
+ fullScreen?: boolean;
932
+ randomizeEachLoop?: boolean;
933
+ glow?: boolean;
934
+ glowColor?: string;
935
+ glowIntensity?: number;
936
+ trail?: boolean;
937
+ trailLength?: number;
938
+ physics?: {
939
+ gravity?: number;
940
+ windDirection?: number;
941
+ windStrength?: number;
942
+ rotation?: boolean;
943
+ };
944
+ easingFunction?: "linear" | "ease" | "ease-in" | "ease-out" | "ease-in-out" | "bounce" | "elastic";
895
945
  }
896
- declare function Carousel({ children, autoScroll, autoScrollInterval }: CarouselProps): react_jsx_runtime.JSX.Element;
946
+ declare function FallingIcons({ icon: Icon, imageUrl, count, className, areaClassName, colorClassName, zIndex, speedRange, sizeRange, horizontalDrift, spin, fullScreen, randomizeEachLoop, glow, glowColor, glowIntensity, trail, trailLength, physics, easingFunction, }: FallingIconsProps): react_jsx_runtime.JSX.Element;
897
947
 
898
948
  interface ClientOnlyProps {
899
949
  children: React.ReactNode;
@@ -1448,4 +1498,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
1448
1498
  };
1449
1499
  };
1450
1500
 
1451
- export { AccessDenied, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Card, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableQuery, DatePicker, type DatePickerProps, DateRangePicker, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FloatingContacts, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Sorter, StatusBadge, StepProgress, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, ToastProvider, Tooltip, type UnderverseLocale, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, cn, getUnderverseMessages, underverseMessages, useFormField, useToast };
1501
+ export { AccessDenied, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Card, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableQuery, DatePicker, type DatePickerProps, DateRangePicker, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FloatingContacts, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Sorter, StatusBadge, StepProgress, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, ToastProvider, Tooltip, type UnderverseLocale, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, cn, getUnderverseMessages, underverseMessages, useFormField, useToast };