@sonny-ui/core 0.1.0-alpha.13 → 0.1.0-alpha.14
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/fesm2022/sonny-ui-core.mjs +1184 -379
- package/fesm2022/sonny-ui-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/data-table/data-table.component.spec.ts +443 -0
- package/src/lib/data-table/data-table.component.ts +603 -0
- package/src/lib/data-table/data-table.directives.ts +35 -0
- package/src/lib/data-table/data-table.types.ts +20 -0
- package/src/lib/data-table/index.ts +13 -0
- package/types/sonny-ui-core.d.ts +109 -3
package/types/sonny-ui-core.d.ts
CHANGED
|
@@ -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 } from '@angular/core';
|
|
4
|
+
import { InjectionToken, EnvironmentProviders, OnDestroy, TemplateRef } 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';
|
|
@@ -719,6 +719,112 @@ declare class SnyTableCaptionDirective {
|
|
|
719
719
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyTableCaptionDirective, "caption[snyTableCaption]", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
720
720
|
}
|
|
721
721
|
|
|
722
|
+
declare class SnyCellDefDirective {
|
|
723
|
+
readonly snyCell: _angular_core.InputSignal<string>;
|
|
724
|
+
readonly template: TemplateRef<any>;
|
|
725
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyCellDefDirective, never>;
|
|
726
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyCellDefDirective, "[snyCell]", never, { "snyCell": { "alias": "snyCell"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
727
|
+
}
|
|
728
|
+
declare class SnyHeaderCellDefDirective {
|
|
729
|
+
readonly snyHeaderCell: _angular_core.InputSignal<string>;
|
|
730
|
+
readonly template: TemplateRef<any>;
|
|
731
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyHeaderCellDefDirective, never>;
|
|
732
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyHeaderCellDefDirective, "[snyHeaderCell]", never, { "snyHeaderCell": { "alias": "snyHeaderCell"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
733
|
+
}
|
|
734
|
+
declare class SnyBulkActionsDefDirective {
|
|
735
|
+
readonly template: TemplateRef<any>;
|
|
736
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyBulkActionsDefDirective, never>;
|
|
737
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyBulkActionsDefDirective, "[snyBulkActions]", never, {}, {}, never, never, true, never>;
|
|
738
|
+
}
|
|
739
|
+
declare class SnyRowExpandDefDirective {
|
|
740
|
+
readonly template: TemplateRef<any>;
|
|
741
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyRowExpandDefDirective, never>;
|
|
742
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SnyRowExpandDefDirective, "[snyRowExpand]", never, {}, {}, never, never, true, never>;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
interface DataTableColumn {
|
|
746
|
+
key: string;
|
|
747
|
+
label: string;
|
|
748
|
+
sortable?: boolean;
|
|
749
|
+
filterable?: boolean;
|
|
750
|
+
width?: string;
|
|
751
|
+
visible?: boolean;
|
|
752
|
+
}
|
|
753
|
+
type SortDirection = 'asc' | 'desc' | null;
|
|
754
|
+
interface SortState {
|
|
755
|
+
key: string;
|
|
756
|
+
direction: SortDirection;
|
|
757
|
+
}
|
|
758
|
+
interface DataTablePaginationConfig {
|
|
759
|
+
pageSize: number;
|
|
760
|
+
pageSizeOptions: number[];
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
declare class SnyDataTableComponent {
|
|
764
|
+
readonly columns: _angular_core.InputSignal<DataTableColumn[]>;
|
|
765
|
+
readonly data: _angular_core.InputSignal<Record<string, unknown>[]>;
|
|
766
|
+
readonly variant: _angular_core.InputSignal<TableVariant>;
|
|
767
|
+
readonly density: _angular_core.InputSignal<TableDensity>;
|
|
768
|
+
readonly hoverable: _angular_core.InputSignal<boolean>;
|
|
769
|
+
readonly stickyHeader: _angular_core.InputSignal<boolean>;
|
|
770
|
+
readonly selectable: _angular_core.InputSignal<boolean>;
|
|
771
|
+
readonly paginated: _angular_core.InputSignal<boolean>;
|
|
772
|
+
readonly filterable: _angular_core.InputSignal<boolean>;
|
|
773
|
+
readonly showExport: _angular_core.InputSignal<boolean>;
|
|
774
|
+
readonly showColumnToggle: _angular_core.InputSignal<boolean>;
|
|
775
|
+
readonly expandable: _angular_core.InputSignal<boolean>;
|
|
776
|
+
readonly loading: _angular_core.InputSignal<boolean>;
|
|
777
|
+
readonly loadingRows: _angular_core.InputSignal<number>;
|
|
778
|
+
readonly paginationConfig: _angular_core.InputSignal<DataTablePaginationConfig>;
|
|
779
|
+
readonly trackBy: _angular_core.InputSignal<string>;
|
|
780
|
+
readonly noDataText: _angular_core.InputSignal<string>;
|
|
781
|
+
readonly selectedRows: _angular_core.ModelSignal<Record<string, unknown>[]>;
|
|
782
|
+
readonly sortChanged: _angular_core.OutputEmitterRef<SortState>;
|
|
783
|
+
readonly rowClicked: _angular_core.OutputEmitterRef<Record<string, unknown>>;
|
|
784
|
+
readonly dataExported: _angular_core.OutputEmitterRef<Record<string, unknown>[]>;
|
|
785
|
+
readonly cellDefs: _angular_core.Signal<readonly SnyCellDefDirective[]>;
|
|
786
|
+
readonly headerCellDefs: _angular_core.Signal<readonly SnyHeaderCellDefDirective[]>;
|
|
787
|
+
readonly bulkActionsDef: _angular_core.Signal<SnyBulkActionsDefDirective | undefined>;
|
|
788
|
+
readonly rowExpandDef: _angular_core.Signal<SnyRowExpandDefDirective | undefined>;
|
|
789
|
+
readonly sortState: _angular_core.WritableSignal<SortState>;
|
|
790
|
+
readonly filterText: _angular_core.WritableSignal<string>;
|
|
791
|
+
readonly currentPage: _angular_core.WritableSignal<number>;
|
|
792
|
+
readonly pageSize: _angular_core.WritableSignal<number>;
|
|
793
|
+
readonly hiddenColumns: _angular_core.WritableSignal<Set<string>>;
|
|
794
|
+
readonly expandedRows: _angular_core.WritableSignal<Set<unknown>>;
|
|
795
|
+
readonly cellDefMap: _angular_core.Signal<Map<string, TemplateRef<unknown>>>;
|
|
796
|
+
readonly headerCellDefMap: _angular_core.Signal<Map<string, TemplateRef<unknown>>>;
|
|
797
|
+
readonly visibleColumns: _angular_core.Signal<DataTableColumn[]>;
|
|
798
|
+
readonly pageSizeOptions: _angular_core.Signal<SelectOption[]>;
|
|
799
|
+
readonly pageSizeValue: _angular_core.Signal<string>;
|
|
800
|
+
readonly skeletonRows: _angular_core.Signal<number[]>;
|
|
801
|
+
readonly showBulkActions: _angular_core.Signal<boolean>;
|
|
802
|
+
readonly filteredData: _angular_core.Signal<Record<string, unknown>[]>;
|
|
803
|
+
readonly sortedData: _angular_core.Signal<Record<string, unknown>[]>;
|
|
804
|
+
readonly totalPages: _angular_core.Signal<number>;
|
|
805
|
+
readonly paginatedData: _angular_core.Signal<Record<string, unknown>[]>;
|
|
806
|
+
readonly totalColSpan: _angular_core.Signal<number>;
|
|
807
|
+
readonly allSelected: _angular_core.Signal<boolean>;
|
|
808
|
+
readonly someSelected: _angular_core.Signal<boolean>;
|
|
809
|
+
constructor();
|
|
810
|
+
toggleSort(key: string): void;
|
|
811
|
+
onFilterInput(event: Event): void;
|
|
812
|
+
onPageSizeChange(value: string): void;
|
|
813
|
+
toggleSelectAll(): void;
|
|
814
|
+
toggleRowSelection(row: Record<string, unknown>): void;
|
|
815
|
+
onRowClick(row: Record<string, unknown>): void;
|
|
816
|
+
onExport(): void;
|
|
817
|
+
toggleColumnVisibility(key: string): void;
|
|
818
|
+
toggleRowExpansion(row: Record<string, unknown>): void;
|
|
819
|
+
isExpanded(row: Record<string, unknown>): boolean;
|
|
820
|
+
isSelected(row: Record<string, unknown>): boolean;
|
|
821
|
+
trackByFn(row: Record<string, unknown>, index: number): unknown;
|
|
822
|
+
private isRowInList;
|
|
823
|
+
private rowsEqual;
|
|
824
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnyDataTableComponent, never>;
|
|
825
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnyDataTableComponent, "sny-data-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "paginated": { "alias": "paginated"; "required": false; "isSignal": true; }; "filterable": { "alias": "filterable"; "required": false; "isSignal": true; }; "showExport": { "alias": "showExport"; "required": false; "isSignal": true; }; "showColumnToggle": { "alias": "showColumnToggle"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "loadingRows": { "alias": "loadingRows"; "required": false; "isSignal": true; }; "paginationConfig": { "alias": "paginationConfig"; "required": false; "isSignal": true; }; "trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; "noDataText": { "alias": "noDataText"; "required": false; "isSignal": true; }; "selectedRows": { "alias": "selectedRows"; "required": false; "isSignal": true; }; }, { "selectedRows": "selectedRowsChange"; "sortChanged": "sortChanged"; "rowClicked": "rowClicked"; "dataExported": "dataExported"; }, ["cellDefs", "headerCellDefs", "bulkActionsDef", "rowExpandDef"], never, true, never>;
|
|
826
|
+
}
|
|
827
|
+
|
|
722
828
|
interface CdkDialogRefLike<R> {
|
|
723
829
|
close(result?: R): void;
|
|
724
830
|
readonly closed: Observable<R | undefined>;
|
|
@@ -1589,5 +1695,5 @@ declare class SnyValidatorHintDirective {
|
|
|
1589
1695
|
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>;
|
|
1590
1696
|
}
|
|
1591
1697
|
|
|
1592
|
-
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, SnyButtonDirective, SnyButtonGroupDirective, SnyCalendarComponent, SnyCardContentDirective, SnyCardDescriptionDirective, SnyCardDirective, SnyCardFooterDirective, SnyCardHeaderDirective, SnyCardTitleDirective, SnyCarouselContentDirective, SnyCarouselDirective, SnyCarouselItemDirective, SnyCarouselNextDirective, SnyCarouselPrevDirective, SnyChatBubbleAvatarDirective, SnyChatBubbleBodyDirective, SnyChatBubbleContentDirective, SnyChatBubbleDirective, SnyChatBubbleFooterDirective, SnyChatBubbleHeaderDirective, SnyCheckboxDirective, SnyComboboxComponent, 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, 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, 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, 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 };
|
|
1593
|
-
export type { AlertVariant, AvatarSize, AvatarVariant, BadgeSize, BadgeVariant, ButtonGroupOrientation, ButtonSize, ButtonVariant, CardPadding, CardVariant, ChatBubbleAlign, ChatBubbleContentVariant, CheckboxSize, ComboboxOption, ComboboxSize, 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, 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 };
|
|
1698
|
+
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, 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, 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 };
|
|
1699
|
+
export type { AlertVariant, AvatarSize, AvatarVariant, BadgeSize, BadgeVariant, ButtonGroupOrientation, ButtonSize, ButtonVariant, CardPadding, CardVariant, ChatBubbleAlign, ChatBubbleContentVariant, CheckboxSize, ComboboxOption, ComboboxSize, DataTableColumn, DataTablePaginationConfig, 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 };
|