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

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,7 +1,7 @@
1
1
  import { ClassValue } from 'clsx';
2
2
  export { VariantProps, cva } from 'class-variance-authority';
3
3
  import * as _angular_core from '@angular/core';
4
- import { InjectionToken, EnvironmentProviders, OnDestroy, TemplateRef } from '@angular/core';
4
+ import { InjectionToken, EnvironmentProviders, OnDestroy, TemplateRef, ElementRef } from '@angular/core';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
6
6
  import * as _sonny_ui_core from '@sonny-ui/core';
7
7
  import { ComponentType } from '@angular/cdk/overlay';
@@ -1794,6 +1794,209 @@ declare class SnyDateRangePickerComponent implements ControlValueAccessor, OnDes
1794
1794
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnyDateRangePickerComponent, "sny-date-range-picker", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "dualCalendar": { "alias": "dualCalendar"; "required": false; "isSignal": true; }; "presets": { "alias": "presets"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
1795
1795
  }
1796
1796
 
1797
+ type ColorFormat = 'hex' | 'rgb' | 'hsl';
1798
+ interface RGB {
1799
+ r: number;
1800
+ g: number;
1801
+ b: number;
1802
+ }
1803
+ interface HSL {
1804
+ h: number;
1805
+ s: number;
1806
+ l: number;
1807
+ }
1808
+ interface HSV {
1809
+ h: number;
1810
+ s: number;
1811
+ v: number;
1812
+ }
1813
+ interface ColorPickerPreset {
1814
+ label?: string;
1815
+ colors: string[];
1816
+ }
1817
+
1818
+ declare const colorPickerTriggerVariants: (props?: ({
1819
+ size?: "sm" | "md" | "lg" | null | undefined;
1820
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1821
+ type ColorPickerSize = 'sm' | 'md' | 'lg';
1822
+
1823
+ declare class SnyColorPickerComponent implements ControlValueAccessor, OnDestroy {
1824
+ readonly value: _angular_core.ModelSignal<string>;
1825
+ readonly format: _angular_core.InputSignal<ColorFormat>;
1826
+ readonly presets: _angular_core.InputSignal<ColorPickerPreset[]>;
1827
+ readonly showInput: _angular_core.InputSignal<boolean>;
1828
+ readonly showEyeDropper: _angular_core.InputSignal<boolean>;
1829
+ readonly showFavorites: _angular_core.InputSignal<boolean>;
1830
+ readonly inline: _angular_core.InputSignal<boolean>;
1831
+ readonly disabled: _angular_core.InputSignal<boolean>;
1832
+ readonly placeholder: _angular_core.InputSignal<string>;
1833
+ readonly size: _angular_core.InputSignal<ColorPickerSize>;
1834
+ readonly class: _angular_core.InputSignal<string>;
1835
+ readonly colorChange: _angular_core.OutputEmitterRef<string>;
1836
+ readonly formatChange: _angular_core.OutputEmitterRef<ColorFormat>;
1837
+ readonly hsv: _angular_core.WritableSignal<HSV>;
1838
+ readonly currentFormat: _angular_core.WritableSignal<ColorFormat>;
1839
+ readonly inputValue: _angular_core.WritableSignal<string>;
1840
+ readonly open: _angular_core.WritableSignal<boolean>;
1841
+ readonly favorites: _angular_core.WritableSignal<string[]>;
1842
+ readonly copied: _angular_core.WritableSignal<boolean>;
1843
+ private readonly _disabledByCva;
1844
+ protected readonly isDisabled: _angular_core.Signal<boolean>;
1845
+ private readonly triggerRef;
1846
+ private readonly panelRef;
1847
+ private readonly satPanelRef;
1848
+ private readonly hueTrackRef;
1849
+ private readonly elRef;
1850
+ private moveHandler;
1851
+ private upHandler;
1852
+ private scrollHandler;
1853
+ private resizeHandler;
1854
+ private _onChange;
1855
+ protected onTouched: () => void;
1856
+ readonly hasEyeDropper: boolean;
1857
+ readonly rgb: _angular_core.Signal<RGB>;
1858
+ readonly displayValue: _angular_core.Signal<string>;
1859
+ readonly saturationBg: _angular_core.Signal<string>;
1860
+ protected readonly triggerClass: _angular_core.Signal<string>;
1861
+ protected readonly panelClass: _angular_core.Signal<"inline-block p-3 rounded-md border border-border bg-popover text-popover-foreground w-60" | "fixed z-50 p-3 rounded-md border border-border bg-popover text-popover-foreground shadow-lg animate-in fade-in-0 zoom-in-95 w-60">;
1862
+ constructor();
1863
+ writeValue(val: string): void;
1864
+ registerOnChange(fn: (value: string) => void): void;
1865
+ registerOnTouched(fn: () => void): void;
1866
+ setDisabledState(isDisabled: boolean): void;
1867
+ private emitColor;
1868
+ onSatPanelDown(event: MouseEvent): void;
1869
+ onSatPanelTouch(event: TouchEvent): void;
1870
+ private updateSatFromPosition;
1871
+ onHueDown(event: MouseEvent): void;
1872
+ onHueTouch(event: TouchEvent): void;
1873
+ private updateHueFromPosition;
1874
+ private startDrag;
1875
+ private removeDragListeners;
1876
+ onInputChange(event: Event): void;
1877
+ commitInput(): void;
1878
+ cycleFormat(): void;
1879
+ copyColor(): void;
1880
+ selectColor(color: string): void;
1881
+ addFavorite(): void;
1882
+ removeFavorite(color: string): void;
1883
+ pickFromScreen(): Promise<void>;
1884
+ toggle(): void;
1885
+ close(): void;
1886
+ private updatePanelPosition;
1887
+ private addPositionListeners;
1888
+ private removePositionListeners;
1889
+ onDocumentClick(event: MouseEvent): void;
1890
+ onEscape(): void;
1891
+ ngOnDestroy(): void;
1892
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyColorPickerComponent, never>;
1893
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnyColorPickerComponent, "sny-color-picker", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "presets": { "alias": "presets"; "required": false; "isSignal": true; }; "showInput": { "alias": "showInput"; "required": false; "isSignal": true; }; "showEyeDropper": { "alias": "showEyeDropper"; "required": false; "isSignal": true; }; "showFavorites": { "alias": "showFavorites"; "required": false; "isSignal": true; }; "inline": { "alias": "inline"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "colorChange": "colorChange"; "formatChange": "formatChange"; }, never, never, true, never>;
1894
+ }
1895
+
1896
+ declare function hexToRgb(hex: string): RGB | null;
1897
+ declare function rgbToHex(rgb: RGB): string;
1898
+ declare function rgbToHsl(rgb: RGB): HSL;
1899
+ declare function hslToRgb(hsl: HSL): RGB;
1900
+ declare function rgbToHsv(rgb: RGB): HSV;
1901
+ declare function hsvToRgb(hsv: HSV): RGB;
1902
+ declare function parseColor(input: string): RGB | null;
1903
+ declare function formatColor(rgb: RGB, format: ColorFormat, alpha?: number): string;
1904
+ declare function isValidColor(input: string): boolean;
1905
+
1906
+ declare const otpCellVariants: (props?: ({
1907
+ size?: "sm" | "md" | "lg" | null | undefined;
1908
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1909
+ type OtpInputSize = 'sm' | 'md' | 'lg';
1910
+ type OtpInputType = 'number' | 'alphanumeric';
1911
+
1912
+ declare class SnyOtpInputComponent implements ControlValueAccessor {
1913
+ readonly length: _angular_core.InputSignal<number>;
1914
+ readonly type: _angular_core.InputSignal<OtpInputType>;
1915
+ readonly size: _angular_core.InputSignal<OtpInputSize>;
1916
+ readonly disabled: _angular_core.InputSignal<boolean>;
1917
+ readonly mask: _angular_core.InputSignal<boolean>;
1918
+ readonly autoFocus: _angular_core.InputSignal<boolean>;
1919
+ readonly placeholder: _angular_core.InputSignal<string>;
1920
+ readonly separator: _angular_core.InputSignal<number | null>;
1921
+ readonly status: _angular_core.InputSignal<"error" | "success" | "idle" | "loading">;
1922
+ readonly value: _angular_core.ModelSignal<string>;
1923
+ readonly completed: _angular_core.OutputEmitterRef<string>;
1924
+ readonly digits: _angular_core.WritableSignal<string[]>;
1925
+ readonly focusedIndex: _angular_core.WritableSignal<number>;
1926
+ readonly inputRefs: _angular_core.Signal<readonly ElementRef<HTMLInputElement>[]>;
1927
+ private readonly _disabledByCva;
1928
+ readonly isDisabled: _angular_core.Signal<boolean>;
1929
+ private _onChange;
1930
+ private _onTouched;
1931
+ readonly fullValue: _angular_core.Signal<string>;
1932
+ readonly isComplete: _angular_core.Signal<boolean>;
1933
+ constructor();
1934
+ writeValue(val: string): void;
1935
+ registerOnChange(fn: (value: string) => void): void;
1936
+ registerOnTouched(fn: () => void): void;
1937
+ setDisabledState(isDisabled: boolean): void;
1938
+ cellClass(index: number): string;
1939
+ onInput(event: Event, index: number): void;
1940
+ onKeydown(event: KeyboardEvent, index: number): void;
1941
+ onPaste(event: ClipboardEvent, index: number): void;
1942
+ onBlur(): void;
1943
+ private setDigit;
1944
+ private emitValue;
1945
+ private focusInput;
1946
+ private isValidChar;
1947
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyOtpInputComponent, never>;
1948
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnyOtpInputComponent, "sny-otp-input", never, { "length": { "alias": "length"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "mask": { "alias": "mask"; "required": false; "isSignal": true; }; "autoFocus": { "alias": "autoFocus"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "completed": "completed"; }, never, never, true, never>;
1949
+ }
1950
+
1951
+ interface Command {
1952
+ id: string;
1953
+ label: string;
1954
+ description?: string;
1955
+ icon?: string;
1956
+ group?: string;
1957
+ keywords?: string[];
1958
+ shortcut?: string;
1959
+ disabled?: boolean;
1960
+ action: () => void;
1961
+ }
1962
+ interface CommandGroup {
1963
+ name: string;
1964
+ commands: Command[];
1965
+ }
1966
+ interface CommandPaletteConfig {
1967
+ commands: Command[];
1968
+ placeholder?: string;
1969
+ emptyText?: string;
1970
+ width?: string;
1971
+ }
1972
+
1973
+ declare class SnyCommandPaletteComponent {
1974
+ readonly config: CommandPaletteConfig;
1975
+ private readonly dialogRef;
1976
+ private readonly searchInput;
1977
+ readonly query: _angular_core.WritableSignal<string>;
1978
+ readonly activeIndex: _angular_core.WritableSignal<number>;
1979
+ readonly filteredGroups: _angular_core.Signal<CommandGroup[]>;
1980
+ readonly flatResults: _angular_core.Signal<Command[]>;
1981
+ constructor();
1982
+ onQueryChange(value: string): void;
1983
+ flatIndex(cmd: Command): number;
1984
+ execute(cmd: Command): void;
1985
+ onKeydown(event: KeyboardEvent): void;
1986
+ private scrollActiveIntoView;
1987
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyCommandPaletteComponent, never>;
1988
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnyCommandPaletteComponent, "sny-command-palette", never, {}, {}, never, never, true, never>;
1989
+ }
1990
+
1991
+ declare class SnyCommandPaletteService {
1992
+ private readonly dialogService;
1993
+ private isOpen;
1994
+ open(config: CommandPaletteConfig): SnyDialogRef<void> | null;
1995
+ close(): void;
1996
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyCommandPaletteService, never>;
1997
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<SnyCommandPaletteService>;
1998
+ }
1999
+
1797
2000
  type ValidatorHintVariant = 'error' | 'success' | 'warning' | 'info';
1798
2001
  declare class SnyValidatorDirective {
1799
2002
  readonly control: _angular_core.InputSignal<AbstractControl<any, any, any> | null>;
@@ -1816,5 +2019,5 @@ declare class SnyValidatorHintDirective {
1816
2019
  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>;
1817
2020
  }
1818
2021
 
1819
- 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, SnyComboboxComponent, 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, 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, comboboxTriggerVariants, datePickerTriggerVariants, dividerVariants, dropdownContentVariants, dropdownItemVariants, fieldsetVariants, fileInputVariants, inputVariants, kbdVariants, labelVariants, linkVariants, loaderVariants, paginationItemVariants, progressBarVariants, progressTrackVariants, provideSonnyUI, radioVariants, ratingVariants, selectTriggerVariants, skeletonVariants, sliderTrackVariants, statusVariants, switchTrackVariants, tableCellVariants, tableVariants, tabsListVariants, tabsTriggerVariants, textareaVariants, toastVariants, toggleVariants, tooltipVariants };
1820
- export type { AlertVariant, AvatarSize, AvatarVariant, BadgeSize, BadgeVariant, ButtonGroupOrientation, ButtonSize, ButtonVariant, CalendarDay, CalendarMode, CardPadding, CardVariant, ChatBubbleAlign, ChatBubbleContentVariant, CheckboxSize, ComboboxOption, ComboboxSize, DataTableColumn, DataTablePaginationConfig, DatePickerPreset, DatePickerSize, DateRange, DividerOrientation, DividerVariant, DockPosition, DrawerSide, DropdownItemVariant, FabDirection, FabPosition, FieldsetVariant, FileInputSize, FileInputVariant, IndicatorPosition, IndicatorVariant, InputSize, InputVariant, KbdSize, LinkVariant, ListVariant, LoaderSize, LoaderVariant, NavbarVariant, PaginationSize, PaginationVariant, ProgressSize, ProgressVariant, 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 };
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 };