@tedi-design-system/angular 7.1.0-rc.24 → 7.1.0-rc.26

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.24",
3
+ "version": "7.1.0-rc.26",
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";
@@ -6320,6 +6321,12 @@ declare class SearchComponent implements ControlValueAccessor {
6320
6321
  readonly buttonAriaLabel: _angular_core.Signal<string | null>;
6321
6322
  readonly feedbackId: _angular_core.Signal<string | null>;
6322
6323
  readonly searchAriaLabel: _angular_core.Signal<string>;
6324
+ /**
6325
+ * Accessible name for the input itself. A visible `label` already names it
6326
+ * via `for`/`id`, so the attribute is only emitted when there is none —
6327
+ * otherwise `aria-label` would silently override the visible text.
6328
+ */
6329
+ readonly inputAriaLabel: _angular_core.Signal<string | null>;
6323
6330
  onInputValue(value: string): void;
6324
6331
  onClear(): void;
6325
6332
  onBlur(): void;
@@ -6431,6 +6438,13 @@ interface SelectOptionGroup<T = unknown> {
6431
6438
  label: string;
6432
6439
  options: SelectOption<T>[];
6433
6440
  }
6441
+ /** A navigable row in the virtual-scroll listbox: the pinned select-all row or an option. */
6442
+ type VirtualRow<T = unknown> = {
6443
+ kind: "select-all";
6444
+ } | {
6445
+ kind: "option";
6446
+ option: SelectOption<T>;
6447
+ };
6434
6448
  type GroupByFn<T = unknown> = (item: T) => string | undefined;
6435
6449
  type CompareWithFn<T = unknown> = (a: T, b: T) => boolean;
6436
6450
  declare enum SpecialOptionControls {
@@ -6608,6 +6622,28 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6608
6622
  * @default "menu"
6609
6623
  */
6610
6624
  dropdownType: _angular_core.InputSignal<"menu" | "grid">;
6625
+ /**
6626
+ * Renders options with virtual scrolling so only the rows in view exist in the
6627
+ * DOM. Enable for very large option lists (hundreds or more) to keep opening
6628
+ * and scrolling fast. Takes effect only for the default `menu` dropdown type
6629
+ * without `groupBy`; grid and grouped lists fall back to full rendering.
6630
+ * @default false
6631
+ */
6632
+ virtualScroll: _angular_core.InputSignal<boolean>;
6633
+ /**
6634
+ * Fixed row height in pixels for the virtual scroll viewport. Virtual scrolling
6635
+ * assumes every row is the same height and uses this value to compute how many
6636
+ * rows fit, the total scroll height, and where to jump when scrolling. Only
6637
+ * relevant when `virtualScroll` is enabled.
6638
+ *
6639
+ * Leave unset by default: the height is auto-measured from the first rendered
6640
+ * option, which covers the standard option template. Set it only when that
6641
+ * measurement is unreliable — typically a custom `optionTemplate` whose rows
6642
+ * have a known uniform height that the first row doesn't represent (e.g. only
6643
+ * some rows carry a description line). Setting a wrong value makes rows overlap
6644
+ * or leave gaps, so prefer auto-measurement unless you hit one of these cases.
6645
+ */
6646
+ virtualItemSize: _angular_core.InputSignal<number | undefined>;
6611
6647
  /**
6612
6648
  * Whether the select has a search input for filtering options.
6613
6649
  * @default false
@@ -6670,9 +6706,29 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6670
6706
  visibleTagsCount: _angular_core.WritableSignal<number | null>;
6671
6707
  searchTerm: _angular_core.WritableSignal<string>;
6672
6708
  searchFocused: _angular_core.WritableSignal<boolean>;
6709
+ /** Index into `virtualRows()` of the keyboard-active row (-1 when none). */
6710
+ activeIndex: _angular_core.WritableSignal<number>;
6711
+ /** Measured row height for the virtual scroll viewport. */
6712
+ measuredRowHeight: _angular_core.WritableSignal<number | null>;
6713
+ private static readonly DEFAULT_ROW_HEIGHT;
6714
+ private static readonly SMALL_ROW_HEIGHT;
6673
6715
  hiddenTagsCount: _angular_core.Signal<number>;
6716
+ /**
6717
+ * Whether the default identity comparator is in use. When true, selection and
6718
+ * item lookups can use O(1) Set/Map paths instead of O(n) scans with the
6719
+ * user-supplied comparator. See issue #552.
6720
+ */
6721
+ private readonly usesDefaultCompare;
6722
+ /** O(1) membership set of selected values for the identity-comparison path. */
6723
+ private readonly selectedValueSet;
6724
+ /** value → normalized option, for O(1) label lookups. */
6725
+ private readonly optionByValue;
6726
+ /** value → original item, for O(1) custom-template context lookups. */
6727
+ private readonly itemByValue;
6674
6728
  listboxRef: _angular_core.Signal<ElementRef<any> | undefined>;
6675
6729
  cdkListboxRef: _angular_core.Signal<CdkListbox<any> | undefined>;
6730
+ viewport: _angular_core.Signal<CdkVirtualScrollViewport | undefined>;
6731
+ virtualListboxRef: _angular_core.Signal<ElementRef<any> | undefined>;
6676
6732
  connectedOverlay: _angular_core.Signal<CdkConnectedOverlay | undefined>;
6677
6733
  triggerRef: _angular_core.Signal<ElementRef<any> | undefined>;
6678
6734
  searchInputRef: _angular_core.Signal<ElementRef<any> | undefined>;
@@ -6695,6 +6751,19 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6695
6751
  showSingleSelectedValue: _angular_core.Signal<boolean>;
6696
6752
  allOptionsSelected: _angular_core.Signal<boolean>;
6697
6753
  someOptionsSelected: _angular_core.Signal<boolean>;
6754
+ /** Whether virtual scrolling is active: opt-in, flat `menu` lists only. */
6755
+ readonly virtualize: _angular_core.Signal<boolean>;
6756
+ /** Whether the pinned select-all row is shown above the virtual viewport. */
6757
+ readonly showSelectAllRow: _angular_core.Signal<boolean>;
6758
+ /** Ordered navigable rows for the virtual listbox (pinned select-all + options). */
6759
+ readonly virtualRows: _angular_core.Signal<VirtualRow<T>[]>;
6760
+ /** Effective row height for the viewport: explicit input, measured, or size default. */
6761
+ readonly virtualRowHeight: _angular_core.Signal<number>;
6762
+ /** Height of the scrolling viewport: content-sized, capped at available space. */
6763
+ readonly virtualViewportHeight: _angular_core.Signal<number>;
6764
+ trackByOptionValue: (_: number, option: SelectOption<T>) => unknown;
6765
+ /** id of the active row, exposed via aria-activedescendant on the listbox. */
6766
+ readonly activeDescendantId: _angular_core.Signal<string | null>;
6698
6767
  ngAfterContentChecked(): void;
6699
6768
  ngAfterViewChecked(): void;
6700
6769
  onWindowResize(): void;
@@ -6716,8 +6785,42 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6716
6785
  onArrowClick(event: Event): void;
6717
6786
  onTriggerEnter(): void;
6718
6787
  onSearchKeydown(event: KeyboardEvent): void;
6788
+ /** Navigate the open list (virtual or CDK), or open the dropdown when closed. */
6789
+ private navigateOrOpen;
6790
+ /** Activate the active option (virtual or CDK), or open the dropdown when closed. */
6791
+ private confirmActiveOrOpen;
6719
6792
  private static readonly KEY_CODES;
6720
6793
  private forwardToCdkListbox;
6794
+ virtualOptionId(index: number): string;
6795
+ /** Keyboard handler for the non-searchable virtual listbox element. */
6796
+ onVirtualListboxKeydown(event: KeyboardEvent): void;
6797
+ private handleVirtualNavKey;
6798
+ private moveActive;
6799
+ private moveActiveToEdge;
6800
+ private isRowNavigable;
6801
+ private setActiveIndex;
6802
+ private scrollActiveIntoView;
6803
+ /**
6804
+ * Scroll the initially-active option into view once the overlay has attached.
6805
+ * Driven by the overlay's `(attach)` event because the virtual viewport (a
6806
+ * viewChild inside the overlay portal) only resolves after attachment.
6807
+ *
6808
+ * The scroll is deferred one macrotask: at attach time the CDK viewport has not
6809
+ * yet established its scrollable content size, so `scrollToIndex` would clamp to
6810
+ * 0. By the next macrotask the content size is set and the measured row height
6811
+ * (for taller custom templates) has been applied to `itemSize`.
6812
+ */
6813
+ onOverlayAttached(): void;
6814
+ /** Set the active row on open: the first selected option, else the first navigable row. */
6815
+ private initVirtualActive;
6816
+ activateActiveRow(): void;
6817
+ private activateRow;
6818
+ onVirtualOptionClick(option: SelectOption<T>): void;
6819
+ private syncActiveToOptionValue;
6820
+ onVirtualSelectAllClick(): void;
6821
+ private toggleOptionValue;
6822
+ private selectSingleValue;
6823
+ private measureVirtualRowHeight;
6721
6824
  private openDropdown;
6722
6825
  private calculateDropdownMaxHeight;
6723
6826
  private closeDropdown;
@@ -6754,7 +6857,7 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6754
6857
  registerOnTouched(fn: () => void): void;
6755
6858
  setDisabledState(isDisabled: boolean): void;
6756
6859
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
6757
- 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>;
6860
+ 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>;
6758
6861
  }
6759
6862
 
6760
6863
  type SliderHideLabel = boolean | "keep-space";
@@ -9478,5 +9581,5 @@ declare function isValidTime(time: string | null | undefined): boolean;
9478
9581
  declare function normalizeTime(input: string): string | null;
9479
9582
 
9480
9583
  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 };
9481
- 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 };
9584
+ 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 };
9482
9585
  //# sourceMappingURL=index.d.ts.map