@tedi-design-system/angular 7.1.0-rc.23 → 7.1.0-rc.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tedi-design-system/angular",
3
- "version": "7.1.0-rc.23",
3
+ "version": "7.1.0-rc.25",
4
4
  "type": "module",
5
5
  "main": "community.mjs",
6
6
  "module": "fesm2022/tedi-design-system-angular.mjs",
package/tedi/index.d.ts CHANGED
@@ -9,10 +9,11 @@ import { Table, VisibilityState, ColumnOrderState, ColumnSizingState, RowSelecti
9
9
  import * as _angular_cdk_overlay from '@angular/cdk/overlay';
10
10
  import { ConnectedOverlayPositionChange, ConnectedPosition, CdkOverlayOrigin, CdkConnectedOverlay } from '@angular/cdk/overlay';
11
11
  import { CdkListbox } from '@angular/cdk/listbox';
12
+ import * as i1 from '@angular/cdk/scrolling';
13
+ import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
12
14
  import { Observable } from 'rxjs';
13
15
  import { DialogRef } from '@angular/cdk/dialog';
14
16
  import { ComponentType } from '@angular/cdk/portal';
15
- import * as i1 from '@angular/cdk/scrolling';
16
17
 
17
18
  type IconSize = 8 | 12 | 16 | 18 | 22 | 24 | 36 | 48 | "inherit";
18
19
  type IconVariant = "filled" | "outlined";
@@ -6431,6 +6432,13 @@ interface SelectOptionGroup<T = unknown> {
6431
6432
  label: string;
6432
6433
  options: SelectOption<T>[];
6433
6434
  }
6435
+ /** A navigable row in the virtual-scroll listbox: the pinned select-all row or an option. */
6436
+ type VirtualRow<T = unknown> = {
6437
+ kind: "select-all";
6438
+ } | {
6439
+ kind: "option";
6440
+ option: SelectOption<T>;
6441
+ };
6434
6442
  type GroupByFn<T = unknown> = (item: T) => string | undefined;
6435
6443
  type CompareWithFn<T = unknown> = (a: T, b: T) => boolean;
6436
6444
  declare enum SpecialOptionControls {
@@ -6556,8 +6564,13 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6556
6564
  */
6557
6565
  multiRow: _angular_core.InputSignal<boolean>;
6558
6566
  /**
6559
- * Which end a selected tag's label truncates from when it doesn't fit.
6560
- * `false` (default) never truncates; `end` → `label…`; `start` → `…label`.
6567
+ * Which end a selected tag's label truncates from: `end` `label…`, `start` →
6568
+ * `…label`. `false` (default) never truncates.
6569
+ *
6570
+ * Truncation needs the tag to be width-constrained: in a single row the tags
6571
+ * share the row with the `+N` counter, so an over-wide label truncates to fit.
6572
+ * With `multiRow` the tags wrap first, so a label truncates only when it is
6573
+ * wider than the field on its own.
6561
6574
  * @default false
6562
6575
  */
6563
6576
  tagEllipsis: _angular_core.InputSignal<TagEllipsis>;
@@ -6603,6 +6616,28 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6603
6616
  * @default "menu"
6604
6617
  */
6605
6618
  dropdownType: _angular_core.InputSignal<"menu" | "grid">;
6619
+ /**
6620
+ * Renders options with virtual scrolling so only the rows in view exist in the
6621
+ * DOM. Enable for very large option lists (hundreds or more) to keep opening
6622
+ * and scrolling fast. Takes effect only for the default `menu` dropdown type
6623
+ * without `groupBy`; grid and grouped lists fall back to full rendering.
6624
+ * @default false
6625
+ */
6626
+ virtualScroll: _angular_core.InputSignal<boolean>;
6627
+ /**
6628
+ * Fixed row height in pixels for the virtual scroll viewport. Virtual scrolling
6629
+ * assumes every row is the same height and uses this value to compute how many
6630
+ * rows fit, the total scroll height, and where to jump when scrolling. Only
6631
+ * relevant when `virtualScroll` is enabled.
6632
+ *
6633
+ * Leave unset by default: the height is auto-measured from the first rendered
6634
+ * option, which covers the standard option template. Set it only when that
6635
+ * measurement is unreliable — typically a custom `optionTemplate` whose rows
6636
+ * have a known uniform height that the first row doesn't represent (e.g. only
6637
+ * some rows carry a description line). Setting a wrong value makes rows overlap
6638
+ * or leave gaps, so prefer auto-measurement unless you hit one of these cases.
6639
+ */
6640
+ virtualItemSize: _angular_core.InputSignal<number | undefined>;
6606
6641
  /**
6607
6642
  * Whether the select has a search input for filtering options.
6608
6643
  * @default false
@@ -6665,9 +6700,29 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6665
6700
  visibleTagsCount: _angular_core.WritableSignal<number | null>;
6666
6701
  searchTerm: _angular_core.WritableSignal<string>;
6667
6702
  searchFocused: _angular_core.WritableSignal<boolean>;
6703
+ /** Index into `virtualRows()` of the keyboard-active row (-1 when none). */
6704
+ activeIndex: _angular_core.WritableSignal<number>;
6705
+ /** Measured row height for the virtual scroll viewport. */
6706
+ measuredRowHeight: _angular_core.WritableSignal<number | null>;
6707
+ private static readonly DEFAULT_ROW_HEIGHT;
6708
+ private static readonly SMALL_ROW_HEIGHT;
6668
6709
  hiddenTagsCount: _angular_core.Signal<number>;
6710
+ /**
6711
+ * Whether the default identity comparator is in use. When true, selection and
6712
+ * item lookups can use O(1) Set/Map paths instead of O(n) scans with the
6713
+ * user-supplied comparator. See issue #552.
6714
+ */
6715
+ private readonly usesDefaultCompare;
6716
+ /** O(1) membership set of selected values for the identity-comparison path. */
6717
+ private readonly selectedValueSet;
6718
+ /** value → normalized option, for O(1) label lookups. */
6719
+ private readonly optionByValue;
6720
+ /** value → original item, for O(1) custom-template context lookups. */
6721
+ private readonly itemByValue;
6669
6722
  listboxRef: _angular_core.Signal<ElementRef<any> | undefined>;
6670
6723
  cdkListboxRef: _angular_core.Signal<CdkListbox<any> | undefined>;
6724
+ viewport: _angular_core.Signal<CdkVirtualScrollViewport | undefined>;
6725
+ virtualListboxRef: _angular_core.Signal<ElementRef<any> | undefined>;
6671
6726
  connectedOverlay: _angular_core.Signal<CdkConnectedOverlay | undefined>;
6672
6727
  triggerRef: _angular_core.Signal<ElementRef<any> | undefined>;
6673
6728
  searchInputRef: _angular_core.Signal<ElementRef<any> | undefined>;
@@ -6690,6 +6745,19 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6690
6745
  showSingleSelectedValue: _angular_core.Signal<boolean>;
6691
6746
  allOptionsSelected: _angular_core.Signal<boolean>;
6692
6747
  someOptionsSelected: _angular_core.Signal<boolean>;
6748
+ /** Whether virtual scrolling is active: opt-in, flat `menu` lists only. */
6749
+ readonly virtualize: _angular_core.Signal<boolean>;
6750
+ /** Whether the pinned select-all row is shown above the virtual viewport. */
6751
+ readonly showSelectAllRow: _angular_core.Signal<boolean>;
6752
+ /** Ordered navigable rows for the virtual listbox (pinned select-all + options). */
6753
+ readonly virtualRows: _angular_core.Signal<VirtualRow<T>[]>;
6754
+ /** Effective row height for the viewport: explicit input, measured, or size default. */
6755
+ readonly virtualRowHeight: _angular_core.Signal<number>;
6756
+ /** Height of the scrolling viewport: content-sized, capped at available space. */
6757
+ readonly virtualViewportHeight: _angular_core.Signal<number>;
6758
+ trackByOptionValue: (_: number, option: SelectOption<T>) => unknown;
6759
+ /** id of the active row, exposed via aria-activedescendant on the listbox. */
6760
+ readonly activeDescendantId: _angular_core.Signal<string | null>;
6693
6761
  ngAfterContentChecked(): void;
6694
6762
  ngAfterViewChecked(): void;
6695
6763
  onWindowResize(): void;
@@ -6711,8 +6779,42 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6711
6779
  onArrowClick(event: Event): void;
6712
6780
  onTriggerEnter(): void;
6713
6781
  onSearchKeydown(event: KeyboardEvent): void;
6782
+ /** Navigate the open list (virtual or CDK), or open the dropdown when closed. */
6783
+ private navigateOrOpen;
6784
+ /** Activate the active option (virtual or CDK), or open the dropdown when closed. */
6785
+ private confirmActiveOrOpen;
6714
6786
  private static readonly KEY_CODES;
6715
6787
  private forwardToCdkListbox;
6788
+ virtualOptionId(index: number): string;
6789
+ /** Keyboard handler for the non-searchable virtual listbox element. */
6790
+ onVirtualListboxKeydown(event: KeyboardEvent): void;
6791
+ private handleVirtualNavKey;
6792
+ private moveActive;
6793
+ private moveActiveToEdge;
6794
+ private isRowNavigable;
6795
+ private setActiveIndex;
6796
+ private scrollActiveIntoView;
6797
+ /**
6798
+ * Scroll the initially-active option into view once the overlay has attached.
6799
+ * Driven by the overlay's `(attach)` event because the virtual viewport (a
6800
+ * viewChild inside the overlay portal) only resolves after attachment.
6801
+ *
6802
+ * The scroll is deferred one macrotask: at attach time the CDK viewport has not
6803
+ * yet established its scrollable content size, so `scrollToIndex` would clamp to
6804
+ * 0. By the next macrotask the content size is set and the measured row height
6805
+ * (for taller custom templates) has been applied to `itemSize`.
6806
+ */
6807
+ onOverlayAttached(): void;
6808
+ /** Set the active row on open: the first selected option, else the first navigable row. */
6809
+ private initVirtualActive;
6810
+ activateActiveRow(): void;
6811
+ private activateRow;
6812
+ onVirtualOptionClick(option: SelectOption<T>): void;
6813
+ private syncActiveToOptionValue;
6814
+ onVirtualSelectAllClick(): void;
6815
+ private toggleOptionValue;
6816
+ private selectSingleValue;
6817
+ private measureVirtualRowHeight;
6716
6818
  private openDropdown;
6717
6819
  private calculateDropdownMaxHeight;
6718
6820
  private closeDropdown;
@@ -6749,7 +6851,7 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6749
6851
  registerOnTouched(fn: () => void): void;
6750
6852
  setDisabledState(isDisabled: boolean): void;
6751
6853
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
6752
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "dropdownAlign": { "alias": "dropdownAlign"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "ellipsis": { "alias": "ellipsis"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; "cleared": "cleared"; }, ["optionTemplate", "valueTemplate", "tooltipTemplate"], never, true, never>;
6854
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "dropdownAlign": { "alias": "dropdownAlign"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "ellipsis": { "alias": "ellipsis"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; "isSignal": true; }; "virtualItemSize": { "alias": "virtualItemSize"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; "cleared": "cleared"; }, ["optionTemplate", "valueTemplate", "tooltipTemplate"], never, true, never>;
6753
6855
  }
6754
6856
 
6755
6857
  type SliderHideLabel = boolean | "keep-space";
@@ -9473,5 +9575,5 @@ declare function isValidTime(time: string | null | undefined): boolean;
9473
9575
  declare function normalizeTime(input: string): string | null;
9474
9576
 
9475
9577
  export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreadcrumbItemDirective, BreadcrumbSeparatorDirective, BreadcrumbsComponent, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HeaderTopComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, InfoTooltipComponent, InputGroupComponent, InputGroupPrefixDirective, InputGroupSuffixDirective, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LabelRowComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SearchComponent, SelectComponent, SelectOptionTemplateDirective, SelectTooltipTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SliderComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FORM_FIELD_CONTROL, TEDI_INPUT_GROUP, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, cookieSignal, createTablePersistence, endOfMonth, formatDate, formatLocaleDate, formatLocaleDateHint, formatLocaleDateLong, formatMonthYear, generateUUID, getCardBorderPlacementColor, getDaysInMonth, getFirstDayOfWeek, getFocusableElements, getISOWeek, getMonthNames, getPaddingCssVariables, getPlacementFromPositionChange, getWeekdayNames, groupRowSpan, injectTediTableContext, isAfterDay, isBeforeDay, isDateInRange, isSameDay, isSameMonth, isSameYear, isValidTime, matchAny, matchDate, normalizeTime, parseDate, parseLocaleDate, provideTedi, resolveCardBorderRadius, startOfMonth, startOfWeek, toConnectedPositions, toggleDateInArray, usePagination };
9476
- export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, BreadcrumbsInputs, BreadcrumbsVariant, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputGroupContext, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SearchButton, SearchSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SliderHideLabel, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize };
9578
+ export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, BreadcrumbsInputs, BreadcrumbsVariant, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputGroupContext, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SearchButton, SearchSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SliderHideLabel, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize, VirtualRow };
9477
9579
  //# sourceMappingURL=index.d.ts.map