@zentrades-ui/components 0.2.8 → 0.3.0

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.
@@ -1,9 +1,9 @@
1
1
  import * as React$1 from 'react';
2
2
  import React__default, { ElementType, JSX, ComponentPropsWithRef, ReactElement, CSSProperties, ReactNode, InputHTMLAttributes, TextareaHTMLAttributes, ComponentPropsWithoutRef } from 'react';
3
3
  import { SpacingToken, SemanticSpacing } from '@zentrades-ui/tokens';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
4
5
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
5
6
  import * as SwitchPrimitive from '@radix-ui/react-switch';
6
- import * as react_jsx_runtime from 'react/jsx-runtime';
7
7
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
8
8
  import * as SelectPrimitive from '@radix-ui/react-select';
9
9
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
@@ -1095,6 +1095,7 @@ type BadgeVariant = "primary" | "secondary" | "outline" | "info" | "success" | "
1095
1095
  type BadgeProps = {
1096
1096
  children?: ReactNode;
1097
1097
  variant?: BadgeVariant;
1098
+ size?: "default" | "medium";
1098
1099
  icon?: ReactNode;
1099
1100
  iconPosition?: "left" | "right";
1100
1101
  className?: string;
@@ -1103,12 +1104,28 @@ type BadgeProps = {
1103
1104
  declare const Badge: React__default.ForwardRefExoticComponent<{
1104
1105
  children?: ReactNode;
1105
1106
  variant?: BadgeVariant;
1107
+ size?: "default" | "medium";
1106
1108
  icon?: ReactNode;
1107
1109
  iconPosition?: "left" | "right";
1108
1110
  className?: string;
1109
1111
  style?: React__default.CSSProperties;
1110
1112
  } & Omit<React__default.HTMLAttributes<HTMLSpanElement>, "style" | "className"> & React__default.RefAttributes<HTMLSpanElement>>;
1111
1113
 
1114
+ type BadgeNumberVariant = "primary" | "secondary" | "outline";
1115
+ type BadgeNumberRound = "circle" | "curved";
1116
+ type BadgeNumberProps = {
1117
+ value: number | string;
1118
+ variant?: BadgeNumberVariant;
1119
+ round?: BadgeNumberRound;
1120
+ max?: number;
1121
+ showPlus?: boolean;
1122
+ className?: string;
1123
+ };
1124
+ declare const BadgeNumber: {
1125
+ ({ value, variant, round, max, showPlus, className, }: BadgeNumberProps): react_jsx_runtime.JSX.Element;
1126
+ displayName: string;
1127
+ };
1128
+
1112
1129
  type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "prefix"> & {
1113
1130
  /** Label text */
1114
1131
  label?: string;
@@ -1144,6 +1161,8 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "prefix">
1144
1161
  invalid?: boolean;
1145
1162
  /** Remove border outline */
1146
1163
  noOutline?: boolean;
1164
+ /** View-only state (read-only styling) */
1165
+ viewOnly?: boolean;
1147
1166
  };
1148
1167
  declare const Input: React__default.ForwardRefExoticComponent<Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "prefix" | "size"> & {
1149
1168
  /** Label text */
@@ -1180,6 +1199,8 @@ declare const Input: React__default.ForwardRefExoticComponent<Omit<React__defaul
1180
1199
  invalid?: boolean;
1181
1200
  /** Remove border outline */
1182
1201
  noOutline?: boolean;
1202
+ /** View-only state (read-only styling) */
1203
+ viewOnly?: boolean;
1183
1204
  } & React__default.RefAttributes<HTMLInputElement>>;
1184
1205
 
1185
1206
  type CheckboxProps = Omit<React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>, "asChild"> & {
@@ -1361,6 +1382,17 @@ declare const Avatar: React__default.ForwardRefExoticComponent<{
1361
1382
  tooltip?: React__default.ReactNode;
1362
1383
  } & Omit<Omit<AvatarPrimitive.AvatarProps & React__default.RefAttributes<HTMLSpanElement>, "ref">, "children"> & React__default.RefAttributes<HTMLSpanElement>>;
1363
1384
 
1385
+ type AvatarGroupProps = {
1386
+ size?: AvatarSize;
1387
+ avatars: Array<Pick<AvatarProps, "name" | "src" | "icon" | "color">>;
1388
+ max?: number;
1389
+ className?: string;
1390
+ };
1391
+ declare const AvatarGroup: {
1392
+ ({ size, avatars, max, className, }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
1393
+ displayName: string;
1394
+ };
1395
+
1364
1396
  declare const AVATAR_COLORS: AvatarColor[];
1365
1397
  /**
1366
1398
  * Generates a deterministic color based on a string input.
@@ -1387,6 +1419,22 @@ interface SkeletonProps extends React__default.HTMLAttributes<HTMLSpanElement> {
1387
1419
  }
1388
1420
  declare const Skeleton: React__default.ForwardRefExoticComponent<SkeletonProps & React__default.RefAttributes<HTMLSpanElement>>;
1389
1421
 
1422
+ type ProgressBarProps = {
1423
+ /** Determinate value 0-100; omit for indeterminate */
1424
+ value?: number;
1425
+ /** Track class name */
1426
+ className?: string;
1427
+ /** Bar class name (useful for custom animations/gradients) */
1428
+ barClassName?: string;
1429
+ /** Height of the track in px (optional; use CSS class if preferred) */
1430
+ height?: number;
1431
+ /** Accessible text for screen readers */
1432
+ ariaValueText?: string;
1433
+ /** Color variant */
1434
+ variant?: "primary" | "secondary";
1435
+ };
1436
+ declare const ProgressBar: React$1.ForwardRefExoticComponent<ProgressBarProps & React$1.RefAttributes<HTMLDivElement>>;
1437
+
1390
1438
  type TextAreaProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "prefix"> & {
1391
1439
  /** Label text */
1392
1440
  label?: string;
@@ -2069,26 +2117,28 @@ type BreadcrumbRootProps = React$1.ComponentPropsWithoutRef<"nav"> & {
2069
2117
  };
2070
2118
  type BreadcrumbListProps = InlineProps<"ol">;
2071
2119
  type BreadcrumbItemProps = InlineProps<"li">;
2072
- type BreadcrumbLinkProps = React$1.ComponentPropsWithoutRef<"a"> & {
2120
+ type BreadcrumbLinkProps = Omit<React$1.ComponentPropsWithoutRef<"a">, "color"> & {
2073
2121
  asChild?: boolean;
2074
2122
  current?: boolean;
2123
+ dropdown?: boolean;
2075
2124
  };
2076
2125
  type BreadcrumbSeparatorProps = InlineProps<"li"> & {
2077
2126
  children?: React$1.ReactNode;
2078
2127
  };
2079
- type BreadcrumbEllipsisProps = React$1.ComponentPropsWithoutRef<"span">;
2128
+ type BreadcrumbEllipsisProps = Omit<React$1.ComponentPropsWithoutRef<"span">, "color">;
2080
2129
  type BreadcrumbPageProps = React$1.ComponentPropsWithoutRef<"span">;
2081
2130
  declare const BreadcrumbRoot: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
2082
2131
  separator?: React$1.ReactNode;
2083
2132
  } & React$1.RefAttributes<HTMLElement>>;
2084
- declare const BreadcrumbList: React$1.ForwardRefExoticComponent<Omit<BreadcrumbListProps, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
2085
2133
  declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<Omit<BreadcrumbItemProps, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
2086
- declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
2134
+ declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">, "color"> & {
2087
2135
  asChild?: boolean;
2088
2136
  current?: boolean;
2137
+ dropdown?: boolean;
2089
2138
  } & React$1.RefAttributes<HTMLAnchorElement>>;
2090
2139
  declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<Omit<BreadcrumbSeparatorProps, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
2091
- declare const BreadcrumbEllipsis: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
2140
+ declare const BreadcrumbList: React$1.ForwardRefExoticComponent<Omit<BreadcrumbListProps, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
2141
+ declare const BreadcrumbEllipsis: React$1.ForwardRefExoticComponent<BreadcrumbEllipsisProps & React$1.RefAttributes<HTMLSpanElement>>;
2092
2142
  declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
2093
2143
  declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
2094
2144
  separator?: React$1.ReactNode;
@@ -2098,12 +2148,13 @@ declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.Detaile
2098
2148
  } & React$1.RefAttributes<HTMLElement>>;
2099
2149
  List: React$1.ForwardRefExoticComponent<Omit<BreadcrumbListProps, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
2100
2150
  Item: React$1.ForwardRefExoticComponent<Omit<BreadcrumbItemProps, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
2101
- Link: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
2151
+ Link: React$1.ForwardRefExoticComponent<Omit<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">, "color"> & {
2102
2152
  asChild?: boolean;
2103
2153
  current?: boolean;
2154
+ dropdown?: boolean;
2104
2155
  } & React$1.RefAttributes<HTMLAnchorElement>>;
2105
2156
  Separator: React$1.ForwardRefExoticComponent<Omit<BreadcrumbSeparatorProps, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
2106
- Ellipsis: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
2157
+ Ellipsis: React$1.ForwardRefExoticComponent<BreadcrumbEllipsisProps & React$1.RefAttributes<HTMLSpanElement>>;
2107
2158
  Page: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
2108
2159
  };
2109
2160
 
@@ -2431,4 +2482,4 @@ interface DateTimeInputProps {
2431
2482
  }
2432
2483
  declare const DateTimeInput: React__default.ForwardRefExoticComponent<DateTimeInputProps & React__default.RefAttributes<HTMLDivElement>>;
2433
2484
 
2434
- export { AVATAR_COLORS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, AccordionRoot, type AccordionRootProps, AccordionTrigger, type AccordionTriggerProps, type AccordionVariant, AlertDialog, type AlertDialogLayout, type AlertDialogProps, Avatar, type AvatarColor, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeVariant, Body, Box, type BoxOwnProps, type BoxProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbRoot, type BreadcrumbRootProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, CalendarArrowButton, type CalendarArrowButtonProps, CalendarDateButton, type CalendarDateButtonProps, CalendarGrid, type CalendarGridProps, type CalendarProps, Caption, Checkbox, type CheckboxProps, Chip, type ChipOutline, type ChipOwnProps, type ChipProps, type ChipVariant, Code, ContentSplitter, type ContentSplitterProps, type DateRange, DateTimeInput, type DateTimeInputMode, type DateTimeInputProps, type DateTimeValue, type DayInfo, Dialog, DialogBody, type DialogBodyProps, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogRoot, type DialogSize, DialogTitle, type DialogTitleProps, DialogTrigger, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, DrawerCompound, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerProps, DrawerRoot, DrawerSection, type DrawerSectionProps, type DrawerSide, type DrawerSize, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type ExtendableProps, FileUpload, type FileUploadProps, Grid, GridItem, type GridItemProps, type GridProps, Heading, type HeadingOwnProps, type HeadingVariant, IconButton, type IconButtonProps, type IconPosition, Image, type ImageFit, type ImageLoading, type ImageProps, type InheritableElementProps, Inline, type InlineOwnProps, type InlineProps, Input, type InputProps, Label, type LabelVariant, MONTH_NAMES, MONTH_NAMES_SHORT, Menu, MenuContent, type MenuContentProps, MenuItem, type MenuItemProps, MenuLabel, type MenuLabelProps, type MenuProps, MenuRoot, type MenuRootProps, MenuSeparator, type MenuSeparatorProps, MenuSub, type MenuSubProps, MenuTrigger, type MenuTriggerProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationInfo, PaginationInfoComplete, type PaginationInfoCompleteProps, PaginationInfoLabel, type PaginationInfoLabelProps, PaginationInfoRange, type PaginationInfoRangeProps, PaginationInfoRoot, type PaginationInfoRootProps, PaginationNext, type PaginationNextProps, PaginationPage, type PaginationPageProps, PaginationPrevious, type PaginationPreviousProps, PaginationRoot, type PaginationRootProps, type PolymorphicForwardRefExoticComponent, type PolymorphicProps, type PolymorphicPropsWithRef, type PolymorphicPropsWithoutRef, type PolymorphicRef, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverClose, PopoverCompound, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverRoot, type PopoverSize, PopoverTrigger, type PopoverTriggerProps, type PropsOf, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectOption, type SelectProps, SelectRoot, type SelectRootProps, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, type SimplePopoverProps, Skeleton, type SkeletonProps, Spinner, type SpinnerProps, type SpinnerSize, Stack, type StackOwnProps, type StackProps, Switch, type SwitchProps, type SwitchSize, type TBorderPropertyTypes, type TBoxStyles, type TColorPropertyTypes, type TMarginPaddingPropertyTypes, type TShadowStyles, type TSizeStyles, type TTextStyles, type TTransformStyles, type T_SVGColorPropertyTypes, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, TabsRoot, type TabsRootProps, TabsTrigger, type TabsTriggerProps, type TabsVariant, Text, TextArea, type TextAreaProps, type TextOwnProps, type TextVariant, type TimeFormat$1 as TimeFormat, type TimePeriod, TimePicker, type TimePickerProps, type TimeValue, Toast, type ToastData, type ToastProps, ToastProvider, type ToastVariant, ToastViewport, type ToastViewportPosition, type ToastViewportProps, Tooltip, type TooltipProps, TooltipProvider, type UploadFileItem, WEEKDAYS, applyHeadingVariantStyles, applyTextVariantStyles, borderStyles, boxStyles, cn, colorStyles, formatDate, formatInputDate, getColorFromString, getDefaultMaxDate, getDefaultMinDate, getInitials, isDateBetween, isSameDay, isWithinBounds, marginPaddingStyles, parseInputDate, shadowStyles, sizeStyles, svgColorStyles, textStyles, transformStyles, useCalendarDays, useToast };
2485
+ export { AVATAR_COLORS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, AccordionRoot, type AccordionRootProps, AccordionTrigger, type AccordionTriggerProps, type AccordionVariant, AlertDialog, type AlertDialogLayout, type AlertDialogProps, Avatar, type AvatarColor, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Badge, BadgeNumber, type BadgeNumberProps, type BadgeNumberRound, type BadgeNumberVariant, type BadgeProps, type BadgeVariant, Body, Box, type BoxOwnProps, type BoxProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbRoot, type BreadcrumbRootProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, CalendarArrowButton, type CalendarArrowButtonProps, CalendarDateButton, type CalendarDateButtonProps, CalendarGrid, type CalendarGridProps, type CalendarProps, Caption, Checkbox, type CheckboxProps, Chip, type ChipOutline, type ChipOwnProps, type ChipProps, type ChipVariant, Code, ContentSplitter, type ContentSplitterProps, type DateRange, DateTimeInput, type DateTimeInputMode, type DateTimeInputProps, type DateTimeValue, type DayInfo, Dialog, DialogBody, type DialogBodyProps, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogRoot, type DialogSize, DialogTitle, type DialogTitleProps, DialogTrigger, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, DrawerCompound, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerProps, DrawerRoot, DrawerSection, type DrawerSectionProps, type DrawerSide, type DrawerSize, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type ExtendableProps, FileUpload, type FileUploadProps, Grid, GridItem, type GridItemProps, type GridProps, Heading, type HeadingOwnProps, type HeadingVariant, IconButton, type IconButtonProps, type IconPosition, Image, type ImageFit, type ImageLoading, type ImageProps, type InheritableElementProps, Inline, type InlineOwnProps, type InlineProps, Input, type InputProps, Label, type LabelVariant, MONTH_NAMES, MONTH_NAMES_SHORT, Menu, MenuContent, type MenuContentProps, MenuItem, type MenuItemProps, MenuLabel, type MenuLabelProps, type MenuProps, MenuRoot, type MenuRootProps, MenuSeparator, type MenuSeparatorProps, MenuSub, type MenuSubProps, MenuTrigger, type MenuTriggerProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationInfo, PaginationInfoComplete, type PaginationInfoCompleteProps, PaginationInfoLabel, type PaginationInfoLabelProps, PaginationInfoRange, type PaginationInfoRangeProps, PaginationInfoRoot, type PaginationInfoRootProps, PaginationNext, type PaginationNextProps, PaginationPage, type PaginationPageProps, PaginationPrevious, type PaginationPreviousProps, PaginationRoot, type PaginationRootProps, type PolymorphicForwardRefExoticComponent, type PolymorphicProps, type PolymorphicPropsWithRef, type PolymorphicPropsWithoutRef, type PolymorphicRef, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverClose, PopoverCompound, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverRoot, type PopoverSize, PopoverTrigger, type PopoverTriggerProps, ProgressBar, type ProgressBarProps, type PropsOf, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectOption, type SelectProps, SelectRoot, type SelectRootProps, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, type SimplePopoverProps, Skeleton, type SkeletonProps, Spinner, type SpinnerProps, type SpinnerSize, Stack, type StackOwnProps, type StackProps, Switch, type SwitchProps, type SwitchSize, type TBorderPropertyTypes, type TBoxStyles, type TColorPropertyTypes, type TMarginPaddingPropertyTypes, type TShadowStyles, type TSizeStyles, type TTextStyles, type TTransformStyles, type T_SVGColorPropertyTypes, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, TabsRoot, type TabsRootProps, TabsTrigger, type TabsTriggerProps, type TabsVariant, Text, TextArea, type TextAreaProps, type TextOwnProps, type TextVariant, type TimeFormat$1 as TimeFormat, type TimePeriod, TimePicker, type TimePickerProps, type TimeValue, Toast, type ToastData, type ToastProps, ToastProvider, type ToastVariant, ToastViewport, type ToastViewportPosition, type ToastViewportProps, Tooltip, type TooltipProps, TooltipProvider, type UploadFileItem, WEEKDAYS, applyHeadingVariantStyles, applyTextVariantStyles, borderStyles, boxStyles, cn, colorStyles, formatDate, formatInputDate, getColorFromString, getDefaultMaxDate, getDefaultMinDate, getInitials, isDateBetween, isSameDay, isWithinBounds, marginPaddingStyles, parseInputDate, shadowStyles, sizeStyles, svgColorStyles, textStyles, transformStyles, useCalendarDays, useToast };