@dev-dga/react 0.5.0 → 0.6.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.
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as class_variance_authority_types from 'class-variance-authority/types';
3
3
  import { ReactNode } from 'react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
- import { Checkbox as Checkbox$1, RadioGroup as RadioGroup$1, Switch as Switch$1, Select as Select$1, Avatar as Avatar$1, Tooltip as Tooltip$1, Dialog, Tabs as Tabs$1, Accordion as Accordion$1, Progress as Progress$1, DropdownMenu as DropdownMenu$1 } from 'radix-ui';
5
+ import { Checkbox as Checkbox$1, RadioGroup as RadioGroup$1, Switch as Switch$1, Select as Select$1, Avatar as Avatar$1, Tooltip as Tooltip$1, Dialog, Tabs as Tabs$1, Accordion as Accordion$1, Progress as Progress$1, DropdownMenu as DropdownMenu$1, Slider as Slider$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1 } from 'radix-ui';
6
6
  import { Command } from 'cmdk';
7
7
  import { DgaTheme } from '@dev-dga/tokens';
8
8
  export { DgaTheme, PaletteName, ThemeColor } from '@dev-dga/tokens';
@@ -856,6 +856,275 @@ declare function ComboboxItem({ value, keywords, disabled, onSelect, className,
856
856
  declare function ComboboxGroup({ className, heading, ...props }: ComboboxGroupProps): react_jsx_runtime.JSX.Element;
857
857
  declare function ComboboxSeparator({ className, ...props }: ComboboxSeparatorProps): react_jsx_runtime.JSX.Element;
858
858
 
859
+ declare const datePickerTriggerVariants: (props?: ({
860
+ size?: "sm" | "md" | null | undefined;
861
+ error?: boolean | null | undefined;
862
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
863
+ declare const datePickerVariants: (props?: ({
864
+ size?: "sm" | "md" | null | undefined;
865
+ error?: boolean | null | undefined;
866
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
867
+ type CalendarSystem = 'gregorian' | 'hijri';
868
+ interface CalendarLabels {
869
+ gregorian: string;
870
+ hijri: string;
871
+ }
872
+ interface DatePickerProps extends VariantProps<typeof datePickerTriggerVariants> {
873
+ /** Currently selected date (controlled). Local Y/M/D. */
874
+ value?: Date | null;
875
+ /** Initial value when uncontrolled. */
876
+ defaultValue?: Date | null;
877
+ /** Fires whenever the user picks a day. `null` when cleared. */
878
+ onChange?: (value: Date | null) => void;
879
+ /** Earliest pickable date (inclusive). */
880
+ minValue?: Date;
881
+ /** Latest pickable date (inclusive). */
882
+ maxValue?: Date;
883
+ /** Visible label above the trigger. */
884
+ label?: ReactNode;
885
+ /** Hint shown below the trigger. Hidden while an error message is showing. */
886
+ helperText?: ReactNode;
887
+ /** Message shown below the trigger when `error` is true. */
888
+ errorMessage?: ReactNode;
889
+ /** Marks the field invalid — sets `aria-invalid` and error styling. */
890
+ error?: boolean;
891
+ /** Marks the field required — adds the asterisk + `aria-required`. */
892
+ required?: boolean;
893
+ /** Disables the trigger entirely. */
894
+ disabled?: boolean;
895
+ /** Caller-supplied id for the field. */
896
+ id?: string;
897
+ /** Forwarded to the Group (the trigger row), matching Input/Select. */
898
+ className?: string;
899
+ 'aria-label'?: string;
900
+ 'aria-labelledby'?: string;
901
+ /**
902
+ * Calendar system (controlled). Omit to let the user toggle freely with
903
+ * the in-popover switch.
904
+ */
905
+ calendar?: CalendarSystem;
906
+ /** Initial calendar system when uncontrolled. Defaults to `'gregorian'`. */
907
+ defaultCalendar?: CalendarSystem;
908
+ /** Fires whenever the calendar system toggles. */
909
+ onCalendarChange?: (calendar: CalendarSystem) => void;
910
+ /**
911
+ * Show the Gregorian↔Hijri toggle inside the popover. Defaults to `true`,
912
+ * but is forced off when `calendar` is controlled — a toggle that ignores
913
+ * its click is a worse footgun than no toggle.
914
+ */
915
+ showCalendarToggle?: boolean;
916
+ /** Override the toggle labels. Defaults are locale-aware (English / Arabic). */
917
+ calendarLabels?: CalendarLabels;
918
+ /**
919
+ * When `true`, each day cell also shows the *other* calendar's day number
920
+ * as small secondary text (e.g., Hijri active → Gregorian day shown small
921
+ * underneath). Helps users cross-reference dates between calendar systems
922
+ * without round-tripping the toggle. Defaults to `false`.
923
+ */
924
+ showSecondaryCalendar?: boolean;
925
+ }
926
+ declare function DatePicker({ value: controlledValue, defaultValue, onChange, minValue, maxValue, label, helperText, errorMessage, error, required, disabled, size, id, className, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledBy, calendar: controlledCalendar, defaultCalendar, onCalendarChange, showCalendarToggle, calendarLabels, showSecondaryCalendar, }: DatePickerProps): react_jsx_runtime.JSX.Element;
927
+
928
+ type FileStatus = 'pending' | 'uploading' | 'success' | 'error';
929
+ /** Reason codes attached to a rejected file. */
930
+ type RejectionCode = 'file-too-large' | 'file-invalid-type' | 'too-many-files';
931
+ /**
932
+ * A controlled file entry. The consumer owns this array and is responsible for
933
+ * performing the actual upload, updating `status`/`progress`, and assigning a
934
+ * stable `id` (used as the React key and the `onRemove` target).
935
+ */
936
+ interface UploadFile {
937
+ /** Stable, consumer-assigned id. Used as the React key and remove target. */
938
+ id: string;
939
+ /** The native File. */
940
+ file: File;
941
+ /** Defaults to `'pending'`. Drives the per-row affordance. */
942
+ status?: FileStatus;
943
+ /** 0–100. Rendered as a {@link Progress} bar while `status === 'uploading'`. */
944
+ progress?: number;
945
+ /** Shown inline (red) while `status === 'error'`. */
946
+ error?: string;
947
+ }
948
+ interface FileRejection {
949
+ file: File;
950
+ errors: RejectionCode[];
951
+ }
952
+ interface FileUploadProps {
953
+ /** Controlled list of files to render. The consumer is the source of truth. */
954
+ files: UploadFile[];
955
+ /** Called with the files that passed validation. The consumer wraps each in
956
+ * an {@link UploadFile} (assigning an `id`) and starts the upload. */
957
+ onFilesAdded: (accepted: File[]) => void;
958
+ /** Called with files that failed validation. Never enter `files`. */
959
+ onFilesRejected?: (rejections: FileRejection[]) => void;
960
+ /** Per-row remove handler. Omit to hide the remove button. */
961
+ onRemove?: (id: string) => void;
962
+ /** Native `accept` string (e.g. `'image/*,.pdf'`). Also drives validation. */
963
+ accept?: string;
964
+ /** Maximum size per file, in bytes. */
965
+ maxSize?: number;
966
+ /** Maximum total files (existing + incoming). When `multiple` is false this
967
+ * is forced to 1. */
968
+ maxFiles?: number;
969
+ /** Allow selecting/dropping more than one file. Defaults to true. */
970
+ multiple?: boolean;
971
+ /** Disables the drop zone and the picker. */
972
+ disabled?: boolean;
973
+ /** Marks the field required: renders the asterisk and sets the input's
974
+ * `required` attribute. */
975
+ required?: boolean;
976
+ /** Visible field label, auto-associated to the input. */
977
+ label?: ReactNode;
978
+ /** Hint shown below the field. Hidden while an error message is showing. */
979
+ helperText?: ReactNode;
980
+ /** Message shown below the field when `error` is true. */
981
+ errorMessage?: ReactNode;
982
+ /** Marks the field invalid: sets `aria-invalid` and error styling. */
983
+ error?: boolean;
984
+ /** Drop-zone instructional copy. Defaults to a bilingual-friendly EN string. */
985
+ hint?: ReactNode;
986
+ /** Accessible label for the per-row remove button. Defaults to `'Remove'`. */
987
+ removeLabel?: string;
988
+ id?: string;
989
+ className?: string;
990
+ 'aria-label'?: string;
991
+ 'aria-labelledby'?: string;
992
+ }
993
+ declare function FileUpload({ files, onFilesAdded, onFilesRejected, onRemove, accept, maxSize, maxFiles, multiple, disabled, required, label, helperText, errorMessage, error, hint, removeLabel, id: externalId, className, ...props }: FileUploadProps): react_jsx_runtime.JSX.Element;
994
+
995
+ declare const sliderVariants: (props?: ({
996
+ size?: "sm" | "md" | null | undefined;
997
+ error?: boolean | null | undefined;
998
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
999
+ type SliderValue = number | number[];
1000
+ interface SliderProps extends Omit<React.ComponentProps<typeof Slider$1.Root>, 'value' | 'defaultValue' | 'onValueChange' | 'onValueCommit' | 'asChild'>, VariantProps<typeof sliderVariants> {
1001
+ /** Controlled value. `number` → single thumb, `number[]` → one thumb each. */
1002
+ value?: SliderValue;
1003
+ /** Uncontrolled initial value. Defaults to a single thumb at `min`. */
1004
+ defaultValue?: SliderValue;
1005
+ /** Fires continuously while dragging. Shape mirrors `value`/`defaultValue`. */
1006
+ onValueChange?: (value: SliderValue) => void;
1007
+ /** Fires once on release (pointer up / keyboard commit). */
1008
+ onValueCommit?: (value: SliderValue) => void;
1009
+ /** Visible field label, associated to the thumb(s) via `aria-labelledby`. */
1010
+ label?: ReactNode;
1011
+ /** Hint shown below the field. Hidden while an error message is showing. */
1012
+ helperText?: ReactNode;
1013
+ /** Message shown below the field when `error` is true. */
1014
+ errorMessage?: ReactNode;
1015
+ /** Marks the field invalid: sets `aria-invalid` and error styling. */
1016
+ error?: boolean;
1017
+ /** Render the current value(s) as text beside the label. */
1018
+ showValue?: boolean;
1019
+ /** Formats each value for `showValue` and the thumb's `aria-valuetext`
1020
+ * (e.g. percentages or currency). */
1021
+ formatValue?: (value: number) => string;
1022
+ /** Accessible names for the two range thumbs. Ignored for single thumbs.
1023
+ * Defaults to `['Minimum', 'Maximum']`. */
1024
+ thumbLabels?: [string, string];
1025
+ }
1026
+ declare function Slider({ id: externalId, value, defaultValue, onValueChange, onValueCommit, min, max, size, label, helperText, errorMessage, error, showValue, formatValue, thumbLabels, className, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
1027
+
1028
+ declare const numberInputVariants: (props?: ({
1029
+ size?: "sm" | "md" | "lg" | null | undefined;
1030
+ error?: boolean | null | undefined;
1031
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1032
+ interface NumberInputProps extends Omit<React.ComponentProps<'input'>, 'value' | 'defaultValue' | 'onChange' | 'size' | 'type' | 'min' | 'max' | 'step'>, VariantProps<typeof numberInputVariants> {
1033
+ /** Controlled value. `null` represents an empty field. */
1034
+ value?: number | null;
1035
+ /** Uncontrolled initial value. */
1036
+ defaultValue?: number | null;
1037
+ /** Fires with the parsed value, or `null` when the field is cleared. */
1038
+ onValueChange?: (value: number | null) => void;
1039
+ /** Lower bound. Clamped on blur and at the stepper buttons. */
1040
+ min?: number;
1041
+ /** Upper bound. Clamped on blur and at the stepper buttons. */
1042
+ max?: number;
1043
+ /** Stepper / ArrowUp-Down increment. Defaults to 1. */
1044
+ step?: number;
1045
+ /** Hide the − / + buttons (keyboard + typing only). */
1046
+ hideControls?: boolean;
1047
+ /** Accessible label for the decrement button. Defaults to `'Decrease'`. */
1048
+ decrementLabel?: string;
1049
+ /** Accessible label for the increment button. Defaults to `'Increase'`. */
1050
+ incrementLabel?: string;
1051
+ /** Visible field label, auto-associated to the input via `htmlFor`/`id`. */
1052
+ label?: ReactNode;
1053
+ /** Hint shown below the field. Hidden while an error message is showing. */
1054
+ helperText?: ReactNode;
1055
+ /** Message shown below the field when `error` is true. */
1056
+ errorMessage?: ReactNode;
1057
+ /** Marks the field invalid: sets `aria-invalid` and error styling. */
1058
+ error?: boolean;
1059
+ }
1060
+ declare function NumberInput({ id: externalId, value, defaultValue, onValueChange, min, max, step, size, hideControls, decrementLabel, incrementLabel, label, helperText, errorMessage, error, required, disabled, className, onBlur, onKeyDown, ...props }: NumberInputProps): react_jsx_runtime.JSX.Element;
1061
+
1062
+ declare const ratingVariants: (props?: ({
1063
+ size?: "sm" | "md" | "lg" | null | undefined;
1064
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1065
+ interface RatingProps extends VariantProps<typeof ratingVariants> {
1066
+ /** Controlled value (0…max). `.5` increments are allowed when `allowHalf`. */
1067
+ value?: number;
1068
+ /** Uncontrolled initial value. Defaults to 0. */
1069
+ defaultValue?: number;
1070
+ /** Fires with the chosen rating. */
1071
+ onValueChange?: (value: number) => void;
1072
+ /** Number of stars. Defaults to 5. */
1073
+ max?: number;
1074
+ /** Allow half-star (`.5`) precision. */
1075
+ allowHalf?: boolean;
1076
+ /** Display only — no interaction, exposed as `role="img"`. */
1077
+ readOnly?: boolean;
1078
+ /** Non-interactive and dimmed. */
1079
+ disabled?: boolean;
1080
+ /** Visible field label. */
1081
+ label?: ReactNode;
1082
+ /** Hint shown below the field. Hidden while an error message is showing. */
1083
+ helperText?: ReactNode;
1084
+ /** Message shown below the field when `error` is true. */
1085
+ errorMessage?: ReactNode;
1086
+ /** Marks the field invalid: sets `aria-invalid` and error styling. */
1087
+ error?: boolean;
1088
+ /** Builds the accessible value text / read-only label. Defaults to
1089
+ * `"{value} out of {max} stars"`. Override for localization. */
1090
+ formatValueText?: (value: number, max: number) => string;
1091
+ id?: string;
1092
+ className?: string;
1093
+ 'aria-label'?: string;
1094
+ 'aria-labelledby'?: string;
1095
+ }
1096
+ declare function Rating({ id: externalId, value, defaultValue, onValueChange, max, allowHalf, readOnly, disabled, size, label, helperText, errorMessage, error, formatValueText, className, ...props }: RatingProps): react_jsx_runtime.JSX.Element;
1097
+
1098
+ declare const toggleVariants: (props?: ({
1099
+ variant?: "outline" | "default" | null | undefined;
1100
+ size?: "sm" | "md" | "lg" | null | undefined;
1101
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1102
+ declare const toggleGroupVariants: (props?: ({
1103
+ variant?: "outline" | "default" | null | undefined;
1104
+ size?: "sm" | "md" | "lg" | null | undefined;
1105
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1106
+ type ToggleProps = React.ComponentProps<typeof Toggle$1.Root> & VariantProps<typeof toggleVariants>;
1107
+ type ToggleGroupRootProps = React.ComponentProps<typeof ToggleGroup$1.Root>;
1108
+ type ToggleGroupProps = ToggleGroupRootProps & VariantProps<typeof toggleGroupVariants>;
1109
+ type ToggleGroupItemProps = React.ComponentProps<typeof ToggleGroup$1.Item>;
1110
+ declare function Toggle({ variant, size, className, ...props }: ToggleProps): react_jsx_runtime.JSX.Element;
1111
+ declare function ToggleGroup({ variant, size, className, ...props }: ToggleGroupProps): react_jsx_runtime.JSX.Element;
1112
+ declare function ToggleGroupItem({ className, ...props }: ToggleGroupItemProps): react_jsx_runtime.JSX.Element;
1113
+
1114
+ declare const descriptionListVariants: (props?: ({
1115
+ orientation?: "horizontal" | "vertical" | null | undefined;
1116
+ divided?: boolean | null | undefined;
1117
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1118
+ interface DescriptionListProps extends React.ComponentProps<'dl'>, VariantProps<typeof descriptionListVariants> {
1119
+ }
1120
+ type DescriptionItemProps = React.ComponentProps<'div'>;
1121
+ type DescriptionTermProps = React.ComponentProps<'dt'>;
1122
+ type DescriptionDetailsProps = React.ComponentProps<'dd'>;
1123
+ declare function DescriptionList({ orientation, divided, className, ...props }: DescriptionListProps): react_jsx_runtime.JSX.Element;
1124
+ declare function DescriptionItem({ className, ...props }: DescriptionItemProps): react_jsx_runtime.JSX.Element;
1125
+ declare function DescriptionTerm({ className, ...props }: DescriptionTermProps): react_jsx_runtime.JSX.Element;
1126
+ declare function DescriptionDetails({ className, ...props }: DescriptionDetailsProps): react_jsx_runtime.JSX.Element;
1127
+
859
1128
  type DgaRootElement = 'div' | 'main' | 'nav' | 'section' | 'article' | 'aside' | 'header' | 'footer';
860
1129
  interface DgaProviderProps {
861
1130
  dir?: 'ltr' | 'rtl';
@@ -881,18 +1150,40 @@ interface DgaContextValue {
881
1150
  locale: string;
882
1151
  mode: 'light' | 'dark';
883
1152
  /**
884
- * The DgaProvider root element. Portal-rendering components (Select, and
885
- * future Tooltip / Modal / Toast / Popover / DropdownMenu) MUST pass this
886
- * as their Radix `Portal container={…}` so that `data-theme`, custom
887
- * theme vars, and `.ddga-theme-*` classes set on the root inherit into
888
- * the portaled content. Without it, portals mount under <body> and
889
- * silently miss dark mode + custom themes.
1153
+ * The DgaProvider's rendered root element. Exposed for non-portaled
1154
+ * descendants that need to read theme attributes (e.g., layout decorators).
1155
+ *
1156
+ * **For overlay portals, prefer `portalEl`** `rootEl` lives inside the
1157
+ * consumer's normal DOM tree and inherits any `overflow: hidden` /
1158
+ * `transform` ancestors. Inside Storybook's autodocs preview block (or any
1159
+ * scoped wrapper a consumer might wrap us in), portaling into `rootEl`
1160
+ * makes the overlay get clipped by the wrapper and breaks `position: fixed`
1161
+ * positioning (a `transform` ancestor establishes a new containing block).
890
1162
  *
891
- * Exposed as state (not a ref) so consumers re-render once the element
892
- * mounts , a useRef wouldn't fire that update and the portal would
893
- * race to <body> on the first commit.
1163
+ * State (not ref) so subscribers re-render when the element mounts; a
1164
+ * useRef update wouldn't fire a render and `defaultOpen` portals would
1165
+ * race to the wrong target on first commit.
894
1166
  */
895
1167
  rootEl: HTMLElement | null;
1168
+ /**
1169
+ * Body-mounted portal container that mirrors this provider's theme
1170
+ * attributes (`data-theme`, `dir`) and CSS custom properties. Overlay
1171
+ * components (Modal / Drawer / DropdownMenu / Combobox / Select / Tooltip
1172
+ * / DatePicker) should portal into this so:
1173
+ *
1174
+ * 1. They escape any clipping (`overflow: hidden`) or transform ancestor
1175
+ * the consumer wraps the provider in.
1176
+ * 2. `position: fixed` semantics survive (no `transform` ancestor breaks
1177
+ * the viewport containing block).
1178
+ * 3. Theme inheritance still works — the container carries `data-theme`,
1179
+ * `dir`, and the same CSS variables as the provider's root, so
1180
+ * `var(--ddga-color-*)` lookups inside the portal resolve correctly.
1181
+ *
1182
+ * `null` until the DOM mount effect runs (e.g., during SSR or the very
1183
+ * first commit on the client). Components should fall back to `rootEl`
1184
+ * (and finally `document.body`) when this is null.
1185
+ */
1186
+ portalEl: HTMLElement | null;
896
1187
  }
897
1188
  declare function useDga(): DgaContextValue;
898
1189
 
@@ -945,4 +1236,4 @@ declare function FieldMessage({ id, variant, children }: FieldMessageProps): rea
945
1236
 
946
1237
  declare function cn(...inputs: ClassValue[]): string;
947
1238
 
948
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, type AlertProps, type AlertSectionProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Card, CardContent, CardDescription, type CardDescriptionProps, CardFooter, CardHeader, CardImage, type CardImageProps, type CardProps, type CardSectionProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, Combobox, ComboboxGroup, type ComboboxGroupProps, ComboboxItem, type ComboboxItemProps, type ComboboxProps, ComboboxSeparator, type ComboboxSeparatorProps, DgaProvider, type DgaProviderProps, Divider, type DividerProps, Drawer, DrawerBody, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, DrawerHeader, type DrawerProps, type DrawerSectionProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, type FieldA11y, FieldMessage, type FieldMessageProps, Input, type InputProps, Modal, ModalClose, type ModalCloseProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalFooter, ModalHeader, type ModalProps, type ModalSectionProps, ModalTitle, type ModalTitleProps, ModalTrigger, type ModalTriggerProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Progress, type ProgressProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Select, SelectItem, type SelectItemProps, type SelectProps, Skeleton, type SkeletonProps, Spinner, type SpinnerProps, Step, StepDescription, type StepDescriptionProps, StepIndicator, type StepIndicatorProps, type StepProps, type StepState, StepTitle, type StepTitleProps, Steps, type StepsProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, type ToastAction, type ToastData, type ToastOptions, type ToastPosition, type ToastStore, type ToastVariant, Toaster, type ToasterProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, type UseFieldA11yOptions, accordionVariants, alertVariants, avatarVariants, badgeVariants, breadcrumbVariants, buttonVariants, cardVariants, checkboxVariants, circularProgressVariants, cn, comboboxTriggerVariants, comboboxVariants, createToast, createToastStore, dividerVariants, drawerVariants, dropdownMenuVariants, inputVariants, modalContentVariants, paginationLinkVariants, paginationVariants, progressVariants, radioGroupVariants, radioVariants, selectTriggerVariants, skeletonVariants, spinnerVariants, stepVariants, stepsVariants, switchVariants, tabsListVariants, tabsVariants, textareaVariants, toast, toastStore, toastVariants, toastViewportVariants, tooltipContentVariants, useDga, useDir, useFieldA11y };
1239
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, type AlertProps, type AlertSectionProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Card, CardContent, CardDescription, type CardDescriptionProps, CardFooter, CardHeader, CardImage, type CardImageProps, type CardProps, type CardSectionProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, Combobox, ComboboxGroup, type ComboboxGroupProps, ComboboxItem, type ComboboxItemProps, type ComboboxProps, ComboboxSeparator, type ComboboxSeparatorProps, DatePicker, type DatePickerProps, DescriptionDetails, type DescriptionDetailsProps, DescriptionItem, type DescriptionItemProps, DescriptionList, type DescriptionListProps, DescriptionTerm, type DescriptionTermProps, DgaProvider, type DgaProviderProps, Divider, type DividerProps, Drawer, DrawerBody, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, DrawerHeader, type DrawerProps, type DrawerSectionProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, type FieldA11y, FieldMessage, type FieldMessageProps, type FileRejection, type FileStatus, FileUpload, type FileUploadProps, Input, type InputProps, Modal, ModalClose, type ModalCloseProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalFooter, ModalHeader, type ModalProps, type ModalSectionProps, ModalTitle, type ModalTitleProps, ModalTrigger, type ModalTriggerProps, NumberInput, type NumberInputProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Progress, type ProgressProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, type RejectionCode, Select, SelectItem, type SelectItemProps, type SelectProps, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderValue, Spinner, type SpinnerProps, Step, StepDescription, type StepDescriptionProps, StepIndicator, type StepIndicatorProps, type StepProps, type StepState, StepTitle, type StepTitleProps, Steps, type StepsProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, type ToastAction, type ToastData, type ToastOptions, type ToastPosition, type ToastStore, type ToastVariant, Toaster, type ToasterProps, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, type UploadFile, type UseFieldA11yOptions, accordionVariants, alertVariants, avatarVariants, badgeVariants, breadcrumbVariants, buttonVariants, cardVariants, checkboxVariants, circularProgressVariants, cn, comboboxTriggerVariants, comboboxVariants, createToast, createToastStore, datePickerVariants, descriptionListVariants, dividerVariants, drawerVariants, dropdownMenuVariants, inputVariants, modalContentVariants, numberInputVariants, paginationLinkVariants, paginationVariants, progressVariants, radioGroupVariants, radioVariants, ratingVariants, selectTriggerVariants, skeletonVariants, sliderVariants, spinnerVariants, stepVariants, stepsVariants, switchVariants, tabsListVariants, tabsVariants, textareaVariants, toast, toastStore, toastVariants, toastViewportVariants, toggleGroupVariants, toggleVariants, tooltipContentVariants, useDga, useDir, useFieldA11y };