@sonny-ui/core 0.1.0-alpha.16 → 0.1.0-alpha.17

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.
@@ -1997,6 +1997,151 @@ declare class SnyCommandPaletteService {
1997
1997
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<SnyCommandPaletteService>;
1998
1998
  }
1999
1999
 
2000
+ declare const numberInputVariants: (props?: ({
2001
+ size?: "sm" | "md" | "lg" | null | undefined;
2002
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2003
+ type NumberInputSize = 'sm' | 'md' | 'lg';
2004
+
2005
+ declare class SnyNumberInputComponent implements ControlValueAccessor {
2006
+ readonly value: _angular_core.ModelSignal<number>;
2007
+ readonly min: _angular_core.InputSignal<number | null>;
2008
+ readonly max: _angular_core.InputSignal<number | null>;
2009
+ readonly step: _angular_core.InputSignal<number>;
2010
+ readonly disabled: _angular_core.InputSignal<boolean>;
2011
+ readonly size: _angular_core.InputSignal<NumberInputSize>;
2012
+ readonly placeholder: _angular_core.InputSignal<string>;
2013
+ readonly class: _angular_core.InputSignal<string>;
2014
+ readonly inputValue: _angular_core.WritableSignal<string>;
2015
+ private readonly _disabledByCva;
2016
+ readonly isDisabled: _angular_core.Signal<boolean>;
2017
+ readonly atMin: _angular_core.Signal<boolean>;
2018
+ readonly atMax: _angular_core.Signal<boolean>;
2019
+ readonly containerClass: _angular_core.Signal<string>;
2020
+ private _onChange;
2021
+ private _onTouched;
2022
+ constructor();
2023
+ writeValue(val: number): void;
2024
+ registerOnChange(fn: (value: number) => void): void;
2025
+ registerOnTouched(fn: () => void): void;
2026
+ setDisabledState(isDisabled: boolean): void;
2027
+ increment(): void;
2028
+ decrement(): void;
2029
+ onInput(event: Event): void;
2030
+ commitValue(): void;
2031
+ onKeydown(event: KeyboardEvent): void;
2032
+ private setValue;
2033
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyNumberInputComponent, never>;
2034
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnyNumberInputComponent, "sny-number-input", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
2035
+ }
2036
+
2037
+ interface AvatarGroupItem {
2038
+ src?: string;
2039
+ alt?: string;
2040
+ fallback?: string;
2041
+ }
2042
+ type AvatarGroupSize = 'sm' | 'md' | 'lg';
2043
+ type AvatarGroupSpacing = 'tight' | 'normal';
2044
+ declare class SnyAvatarGroupComponent {
2045
+ readonly items: _angular_core.InputSignal<AvatarGroupItem[]>;
2046
+ readonly max: _angular_core.InputSignal<number>;
2047
+ readonly size: _angular_core.InputSignal<AvatarGroupSize>;
2048
+ readonly spacing: _angular_core.InputSignal<AvatarGroupSpacing>;
2049
+ readonly visibleItems: _angular_core.Signal<AvatarGroupItem[]>;
2050
+ readonly overflowCount: _angular_core.Signal<number>;
2051
+ readonly containerClass: _angular_core.Signal<string>;
2052
+ readonly avatarClass: _angular_core.Signal<string>;
2053
+ readonly fallbackClass: _angular_core.Signal<string>;
2054
+ readonly counterClass: _angular_core.Signal<string>;
2055
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyAvatarGroupComponent, never>;
2056
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnyAvatarGroupComponent, "sny-avatar-group", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2057
+ }
2058
+
2059
+ declare const tagInputContainerVariants: (props?: ({
2060
+ size?: "sm" | "md" | "lg" | null | undefined;
2061
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2062
+ declare const tagVariants: (props?: ({
2063
+ size?: "sm" | "md" | "lg" | null | undefined;
2064
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2065
+ type TagInputSize = 'sm' | 'md' | 'lg';
2066
+
2067
+ declare class SnyTagInputComponent implements ControlValueAccessor {
2068
+ readonly value: _angular_core.ModelSignal<string[]>;
2069
+ readonly placeholder: _angular_core.InputSignal<string>;
2070
+ readonly maxTags: _angular_core.InputSignal<number | null>;
2071
+ readonly allowDuplicates: _angular_core.InputSignal<boolean>;
2072
+ readonly removable: _angular_core.InputSignal<boolean>;
2073
+ readonly addOnBlur: _angular_core.InputSignal<boolean>;
2074
+ readonly separators: _angular_core.InputSignal<string[]>;
2075
+ readonly validate: _angular_core.InputSignal<((tag: string) => boolean) | null>;
2076
+ readonly disabled: _angular_core.InputSignal<boolean>;
2077
+ readonly size: _angular_core.InputSignal<TagInputSize>;
2078
+ readonly class: _angular_core.InputSignal<string>;
2079
+ readonly tagAdded: _angular_core.OutputEmitterRef<string>;
2080
+ readonly tagRemoved: _angular_core.OutputEmitterRef<string>;
2081
+ readonly inputValue: _angular_core.WritableSignal<string>;
2082
+ private readonly _disabledByCva;
2083
+ readonly isDisabled: _angular_core.Signal<boolean>;
2084
+ readonly atMax: _angular_core.Signal<boolean>;
2085
+ readonly containerClass: _angular_core.Signal<string>;
2086
+ readonly tagClass: _angular_core.Signal<string>;
2087
+ private readonly inputRef;
2088
+ private _onChange;
2089
+ private _onTouched;
2090
+ writeValue(val: string[]): void;
2091
+ registerOnChange(fn: (value: string[]) => void): void;
2092
+ registerOnTouched(fn: () => void): void;
2093
+ setDisabledState(isDisabled: boolean): void;
2094
+ focusInput(): void;
2095
+ onInput(event: Event): void;
2096
+ onKeydown(event: KeyboardEvent): void;
2097
+ onBlur(): void;
2098
+ addTag(raw: string): void;
2099
+ removeTag(index: number): void;
2100
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyTagInputComponent, never>;
2101
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnyTagInputComponent, "sny-tag-input", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "maxTags": { "alias": "maxTags"; "required": false; "isSignal": true; }; "allowDuplicates": { "alias": "allowDuplicates"; "required": false; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "addOnBlur": { "alias": "addOnBlur"; "required": false; "isSignal": true; }; "separators": { "alias": "separators"; "required": false; "isSignal": true; }; "validate": { "alias": "validate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "tagAdded": "tagAdded"; "tagRemoved": "tagRemoved"; }, never, never, true, never>;
2102
+ }
2103
+
2104
+ declare const SNY_POPOVER: InjectionToken<SnyPopoverDirective>;
2105
+ declare class SnyPopoverDirective implements OnDestroy {
2106
+ private readonly elRef;
2107
+ readonly matchWidth: _angular_core.InputSignal<boolean>;
2108
+ readonly offset: _angular_core.InputSignal<number>;
2109
+ readonly closeOnOutside: _angular_core.InputSignal<boolean>;
2110
+ readonly closeOnEscape: _angular_core.InputSignal<boolean>;
2111
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
2112
+ readonly triggerEl: _angular_core.WritableSignal<HTMLElement | null>;
2113
+ readonly panelEl: _angular_core.WritableSignal<HTMLElement | null>;
2114
+ private scrollHandler;
2115
+ private resizeHandler;
2116
+ toggle(): void;
2117
+ open(): void;
2118
+ close(): void;
2119
+ updatePosition(): void;
2120
+ private addListeners;
2121
+ private removeListeners;
2122
+ onDocumentClick(event: MouseEvent): void;
2123
+ onEscape(): void;
2124
+ ngOnDestroy(): void;
2125
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyPopoverDirective, never>;
2126
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyPopoverDirective, "[snyPopover]", ["snyPopover"], { "matchWidth": { "alias": "matchWidth"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; "closeOnOutside": { "alias": "closeOnOutside"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2127
+ }
2128
+ declare class SnyPopoverTriggerDirective {
2129
+ protected readonly popover: SnyPopoverDirective;
2130
+ private readonly elRef;
2131
+ constructor();
2132
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyPopoverTriggerDirective, never>;
2133
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyPopoverTriggerDirective, "[snyPopoverTrigger]", never, {}, {}, never, never, true, never>;
2134
+ }
2135
+ declare class SnyPopoverContentDirective {
2136
+ protected readonly popover: SnyPopoverDirective;
2137
+ private readonly elRef;
2138
+ readonly class: _angular_core.InputSignal<string>;
2139
+ protected readonly computedClass: _angular_core.Signal<string>;
2140
+ constructor();
2141
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyPopoverContentDirective, never>;
2142
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyPopoverContentDirective, "[snyPopoverContent]", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2143
+ }
2144
+
2000
2145
  type ValidatorHintVariant = 'error' | 'success' | 'warning' | 'info';
2001
2146
  declare class SnyValidatorDirective {
2002
2147
  readonly control: _angular_core.InputSignal<AbstractControl<any, any, any> | null>;
@@ -2019,5 +2164,5 @@ declare class SnyValidatorHintDirective {
2019
2164
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyValidatorHintDirective, "[snyValidatorHint]", never, { "when": { "alias": "when"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2020
2165
  }
2021
2166
 
2022
- export { SNY_ACCORDION, SNY_ACCORDION_ITEM, SNY_CAROUSEL, SNY_CHAT_BUBBLE, SNY_CONFIG, SNY_DIALOG_DATA, SNY_DRAWER, SNY_DROPDOWN, SNY_FAB, SNY_SHEET_DATA, SNY_STEPS, SNY_TABLE, SNY_TABS, SNY_TIMELINE, SnyAccordionContentDirective, SnyAccordionDirective, SnyAccordionItemDirective, SnyAccordionTriggerDirective, SnyAlertDescriptionDirective, SnyAlertDirective, SnyAlertTitleDirective, SnyAvatarComponent, SnyBadgeDirective, SnyBreadcrumbDirective, SnyBreadcrumbItemDirective, SnyBreadcrumbLinkDirective, SnyBreadcrumbListDirective, SnyBreadcrumbPageDirective, SnyBreadcrumbSeparatorDirective, SnyBulkActionsDefDirective, SnyButtonDirective, SnyButtonGroupDirective, SnyCalendarComponent, SnyCardContentDirective, SnyCardDescriptionDirective, SnyCardDirective, SnyCardFooterDirective, SnyCardHeaderDirective, SnyCardTitleDirective, SnyCarouselContentDirective, SnyCarouselDirective, SnyCarouselItemDirective, SnyCarouselNextDirective, SnyCarouselPrevDirective, SnyCellDefDirective, SnyChatBubbleAvatarDirective, SnyChatBubbleBodyDirective, SnyChatBubbleContentDirective, SnyChatBubbleDirective, SnyChatBubbleFooterDirective, SnyChatBubbleHeaderDirective, SnyCheckboxDirective, SnyColorPickerComponent, SnyComboboxComponent, SnyCommandPaletteComponent, SnyCommandPaletteService, SnyDataTableComponent, SnyDatePickerComponent, SnyDateRangePickerComponent, SnyDialogCloseDirective, SnyDialogContentDirective, SnyDialogDescriptionDirective, SnyDialogFooterDirective, SnyDialogHeaderDirective, SnyDialogRef, SnyDialogService, SnyDialogTitleDirective, SnyDiffComponent, SnyDividerComponent, SnyDockDirective, SnyDockItemDirective, SnyDrawerContentDirective, SnyDrawerLayoutComponent, SnyDrawerLayoutDirective, SnyDrawerSideDirective, SnyDropdownContentDirective, SnyDropdownDirective, SnyDropdownTriggerDirective, SnyFabActionDirective, SnyFabDirective, SnyFabTriggerDirective, SnyFieldsetContentDirective, SnyFieldsetDirective, SnyFieldsetLegendDirective, SnyFileInputComponent, SnyHeaderCellDefDirective, SnyIndicatorBadgeDirective, SnyIndicatorDirective, SnyInputDirective, SnyKbdDirective, SnyLabelDirective, SnyLinkDirective, SnyListDirective, SnyListItemActionDirective, SnyListItemContentDirective, SnyListItemDirective, SnyListItemIconDirective, SnyLoaderComponent, SnyMenuContentDirective, SnyMenuItemDirective, SnyMenuLabelDirective, SnyMenuSeparatorDirective, SnyNavbarBrandDirective, SnyNavbarContentDirective, SnyNavbarDirective, SnyNavbarEndDirective, SnyOtpInputComponent, SnyPaginationComponent, SnyProgressComponent, SnyRadialProgressComponent, SnyRadioDirective, SnyRatingComponent, SnyRowExpandDefDirective, SnySelectComponent, SnySheetCloseDirective, SnySheetContentDirective, SnySheetDescriptionDirective, SnySheetHeaderDirective, SnySheetRef, SnySheetService, SnySheetTitleDirective, SnySkeletonDirective, SnySliderComponent, SnyStatDescriptionDirective, SnyStatDirective, SnyStatFigureDirective, SnyStatTitleDirective, SnyStatValueDirective, SnyStatusDirective, SnyStepDirective, SnyStepsDirective, SnySwitchComponent, SnyTableBodyDirective, SnyTableCaptionDirective, SnyTableCellDirective, SnyTableDirective, SnyTableFooterDirective, SnyTableHeadDirective, SnyTableHeaderDirective, SnyTableRowDirective, SnyTabsContentDirective, SnyTabsDirective, SnyTabsListDirective, SnyTabsTriggerDirective, SnyTextareaDirective, SnyTimelineDirective, SnyTimelineEndDirective, SnyTimelineItemDirective, SnyTimelineMiddleDirective, SnyTimelineStartDirective, SnyToastService, SnyToasterComponent, SnyToggleDirective, SnyTooltipDirective, SnyValidatorDirective, SnyValidatorHintDirective, ThemeService, alertVariants, avatarVariants, badgeVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxVariants, cn, colorPickerTriggerVariants, comboboxTriggerVariants, datePickerTriggerVariants, dividerVariants, dropdownContentVariants, dropdownItemVariants, fieldsetVariants, fileInputVariants, formatColor, hexToRgb, hslToRgb, hsvToRgb, inputVariants, isValidColor, kbdVariants, labelVariants, linkVariants, loaderVariants, otpCellVariants, paginationItemVariants, parseColor, progressBarVariants, progressTrackVariants, provideSonnyUI, radioVariants, ratingVariants, rgbToHex, rgbToHsl, rgbToHsv, selectTriggerVariants, skeletonVariants, sliderTrackVariants, statusVariants, switchTrackVariants, tableCellVariants, tableVariants, tabsListVariants, tabsTriggerVariants, textareaVariants, toastVariants, toggleVariants, tooltipVariants };
2023
- export type { AlertVariant, AvatarSize, AvatarVariant, BadgeSize, BadgeVariant, ButtonGroupOrientation, ButtonSize, ButtonVariant, CalendarDay, CalendarMode, CardPadding, CardVariant, ChatBubbleAlign, ChatBubbleContentVariant, CheckboxSize, ColorFormat, ColorPickerPreset, ColorPickerSize, ComboboxOption, ComboboxSize, Command, CommandGroup, CommandPaletteConfig, DataTableColumn, DataTablePaginationConfig, DatePickerPreset, DatePickerSize, DateRange, DividerOrientation, DividerVariant, DockPosition, DrawerSide, DropdownItemVariant, FabDirection, FabPosition, FieldsetVariant, FileInputSize, FileInputVariant, HSL, HSV, IndicatorPosition, IndicatorVariant, InputSize, InputVariant, KbdSize, LinkVariant, ListVariant, LoaderSize, LoaderVariant, NavbarVariant, OtpInputSize, OtpInputType, PaginationSize, PaginationVariant, ProgressSize, ProgressVariant, RGB, RadialProgressSize, RadialProgressVariant, RadioSize, RatingSize, RatingVariant, SelectOption, SelectSize, SheetSide, SkeletonSize, SkeletonVariant, SliderSize, SnyDialogConfig, SnySheetConfig, SonnyConfig, SortDirection, SortState, StatDescriptionVariant, StatusSize, StatusVariant, StepStatus, StepsOrientation, StepsSize, SwitchSize, TableDensity, TableVariant, TextareaResize, TextareaSize, TextareaVariant, Theme, TimelineConnect, TimelineMiddleVariant, TimelineOrientation, ToastAction, ToastConfig, ToastData, ToastPosition, ToastVariant, ToggleSize, ToggleVariant, TooltipPosition, ValidatorHintVariant };
2167
+ export { SNY_ACCORDION, SNY_ACCORDION_ITEM, SNY_CAROUSEL, SNY_CHAT_BUBBLE, SNY_CONFIG, SNY_DIALOG_DATA, SNY_DRAWER, SNY_DROPDOWN, SNY_FAB, SNY_POPOVER, SNY_SHEET_DATA, SNY_STEPS, SNY_TABLE, SNY_TABS, SNY_TIMELINE, SnyAccordionContentDirective, SnyAccordionDirective, SnyAccordionItemDirective, SnyAccordionTriggerDirective, SnyAlertDescriptionDirective, SnyAlertDirective, SnyAlertTitleDirective, SnyAvatarComponent, SnyAvatarGroupComponent, SnyBadgeDirective, SnyBreadcrumbDirective, SnyBreadcrumbItemDirective, SnyBreadcrumbLinkDirective, SnyBreadcrumbListDirective, SnyBreadcrumbPageDirective, SnyBreadcrumbSeparatorDirective, SnyBulkActionsDefDirective, SnyButtonDirective, SnyButtonGroupDirective, SnyCalendarComponent, SnyCardContentDirective, SnyCardDescriptionDirective, SnyCardDirective, SnyCardFooterDirective, SnyCardHeaderDirective, SnyCardTitleDirective, SnyCarouselContentDirective, SnyCarouselDirective, SnyCarouselItemDirective, SnyCarouselNextDirective, SnyCarouselPrevDirective, SnyCellDefDirective, SnyChatBubbleAvatarDirective, SnyChatBubbleBodyDirective, SnyChatBubbleContentDirective, SnyChatBubbleDirective, SnyChatBubbleFooterDirective, SnyChatBubbleHeaderDirective, SnyCheckboxDirective, SnyColorPickerComponent, SnyComboboxComponent, SnyCommandPaletteComponent, SnyCommandPaletteService, SnyDataTableComponent, SnyDatePickerComponent, SnyDateRangePickerComponent, SnyDialogCloseDirective, SnyDialogContentDirective, SnyDialogDescriptionDirective, SnyDialogFooterDirective, SnyDialogHeaderDirective, SnyDialogRef, SnyDialogService, SnyDialogTitleDirective, SnyDiffComponent, SnyDividerComponent, SnyDockDirective, SnyDockItemDirective, SnyDrawerContentDirective, SnyDrawerLayoutComponent, SnyDrawerLayoutDirective, SnyDrawerSideDirective, SnyDropdownContentDirective, SnyDropdownDirective, SnyDropdownTriggerDirective, SnyFabActionDirective, SnyFabDirective, SnyFabTriggerDirective, SnyFieldsetContentDirective, SnyFieldsetDirective, SnyFieldsetLegendDirective, SnyFileInputComponent, SnyHeaderCellDefDirective, SnyIndicatorBadgeDirective, SnyIndicatorDirective, SnyInputDirective, SnyKbdDirective, SnyLabelDirective, SnyLinkDirective, SnyListDirective, SnyListItemActionDirective, SnyListItemContentDirective, SnyListItemDirective, SnyListItemIconDirective, SnyLoaderComponent, SnyMenuContentDirective, SnyMenuItemDirective, SnyMenuLabelDirective, SnyMenuSeparatorDirective, SnyNavbarBrandDirective, SnyNavbarContentDirective, SnyNavbarDirective, SnyNavbarEndDirective, SnyNumberInputComponent, SnyOtpInputComponent, SnyPaginationComponent, SnyPopoverContentDirective, SnyPopoverDirective, SnyPopoverTriggerDirective, SnyProgressComponent, SnyRadialProgressComponent, SnyRadioDirective, SnyRatingComponent, SnyRowExpandDefDirective, SnySelectComponent, SnySheetCloseDirective, SnySheetContentDirective, SnySheetDescriptionDirective, SnySheetHeaderDirective, SnySheetRef, SnySheetService, SnySheetTitleDirective, SnySkeletonDirective, SnySliderComponent, SnyStatDescriptionDirective, SnyStatDirective, SnyStatFigureDirective, SnyStatTitleDirective, SnyStatValueDirective, SnyStatusDirective, SnyStepDirective, SnyStepsDirective, SnySwitchComponent, SnyTableBodyDirective, SnyTableCaptionDirective, SnyTableCellDirective, SnyTableDirective, SnyTableFooterDirective, SnyTableHeadDirective, SnyTableHeaderDirective, SnyTableRowDirective, SnyTabsContentDirective, SnyTabsDirective, SnyTabsListDirective, SnyTabsTriggerDirective, SnyTagInputComponent, SnyTextareaDirective, SnyTimelineDirective, SnyTimelineEndDirective, SnyTimelineItemDirective, SnyTimelineMiddleDirective, SnyTimelineStartDirective, SnyToastService, SnyToasterComponent, SnyToggleDirective, SnyTooltipDirective, SnyValidatorDirective, SnyValidatorHintDirective, ThemeService, alertVariants, avatarVariants, badgeVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxVariants, cn, colorPickerTriggerVariants, comboboxTriggerVariants, datePickerTriggerVariants, dividerVariants, dropdownContentVariants, dropdownItemVariants, fieldsetVariants, fileInputVariants, formatColor, hexToRgb, hslToRgb, hsvToRgb, inputVariants, isValidColor, kbdVariants, labelVariants, linkVariants, loaderVariants, numberInputVariants, otpCellVariants, paginationItemVariants, parseColor, progressBarVariants, progressTrackVariants, provideSonnyUI, radioVariants, ratingVariants, rgbToHex, rgbToHsl, rgbToHsv, selectTriggerVariants, skeletonVariants, sliderTrackVariants, statusVariants, switchTrackVariants, tableCellVariants, tableVariants, tabsListVariants, tabsTriggerVariants, tagInputContainerVariants, tagVariants, textareaVariants, toastVariants, toggleVariants, tooltipVariants };
2168
+ export type { AlertVariant, AvatarGroupItem, AvatarGroupSize, AvatarGroupSpacing, AvatarSize, AvatarVariant, BadgeSize, BadgeVariant, ButtonGroupOrientation, ButtonSize, ButtonVariant, CalendarDay, CalendarMode, CardPadding, CardVariant, ChatBubbleAlign, ChatBubbleContentVariant, CheckboxSize, ColorFormat, ColorPickerPreset, ColorPickerSize, ComboboxOption, ComboboxSize, Command, CommandGroup, CommandPaletteConfig, DataTableColumn, DataTablePaginationConfig, DatePickerPreset, DatePickerSize, DateRange, DividerOrientation, DividerVariant, DockPosition, DrawerSide, DropdownItemVariant, FabDirection, FabPosition, FieldsetVariant, FileInputSize, FileInputVariant, HSL, HSV, IndicatorPosition, IndicatorVariant, InputSize, InputVariant, KbdSize, LinkVariant, ListVariant, LoaderSize, LoaderVariant, NavbarVariant, NumberInputSize, OtpInputSize, OtpInputType, PaginationSize, PaginationVariant, ProgressSize, ProgressVariant, RGB, RadialProgressSize, RadialProgressVariant, RadioSize, RatingSize, RatingVariant, SelectOption, SelectSize, SheetSide, SkeletonSize, SkeletonVariant, SliderSize, SnyDialogConfig, SnySheetConfig, SonnyConfig, SortDirection, SortState, StatDescriptionVariant, StatusSize, StatusVariant, StepStatus, StepsOrientation, StepsSize, SwitchSize, TableDensity, TableVariant, TagInputSize, TextareaResize, TextareaSize, TextareaVariant, Theme, TimelineConnect, TimelineMiddleVariant, TimelineOrientation, ToastAction, ToastConfig, ToastData, ToastPosition, ToastVariant, ToggleSize, ToggleVariant, TooltipPosition, ValidatorHintVariant };