@energycap/components 0.46.12 → 0.46.14-highlighting-normalized-pattern.20260701-1417

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": "@energycap/components",
3
- "version": "0.46.12",
3
+ "version": "0.46.14-highlighting-normalized-pattern.20260701-1417",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "dependencies": {
6
6
  "tslib": "^2.0.0"
@@ -68,6 +68,7 @@
68
68
  "AddCustomItem_TC": "Add {{customItem}}",
69
69
  "ClearAllSelections_SC": "Clear all selections",
70
70
  "Multiselect_LiveRegion_Status_SC": "{{count}} items selected",
71
+ "Popover_ShowDetails_AC": "Show details",
71
72
  "ItemPicker_RemoveItem_SC": "Remove item",
72
73
  "Tooltip_DismissButton_SC": "Dismiss",
73
74
  "PageView_CloseDialog_SC": "Close dialog",
@@ -68,6 +68,18 @@ declare class ButtonComponent implements OnInit, OnChanges, AfterViewInit, OnDes
68
68
  * Accepts standard ARIA token values: 'menu', 'listbox', 'tree', 'grid', or 'dialog'.
69
69
  */
70
70
  ariaHaspopup?: string;
71
+ /**
72
+ * The id of a descendant element (typically inside an associated popup) that is currently active.
73
+ * When provided, sets the aria-activedescendant attribute on the native button element.
74
+ * Use when the button manages keyboard focus over an external popup (menu, listbox) using the
75
+ * activedescendant pattern rather than moving DOM focus.
76
+ */
77
+ ariaActivedescendant?: string | null;
78
+ /**
79
+ * The id of an element that this button controls (typically an associated popup).
80
+ * When provided, sets the aria-controls attribute on the native button element.
81
+ */
82
+ ariaControls?: string;
71
83
  /**
72
84
  * Text to place in a badge to the right of the button
73
85
  */
@@ -128,7 +140,7 @@ declare class ButtonComponent implements OnInit, OnChanges, AfterViewInit, OnDes
128
140
  private scheduleMissingAccessibleNameCheck;
129
141
  private logMissingAccessibleNameErrorIfNeeded;
130
142
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
131
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ec-button", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "lockButton": { "alias": "lockButton"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; }; "ariaHaspopup": { "alias": "ariaHaspopup"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "type": { "alias": "type"; "required": false; }; "pending": { "alias": "pending"; "required": false; }; "pendingIcon": { "alias": "pendingIcon"; "required": false; }; "customTemplate": { "alias": "customTemplate"; "required": false; }; "isSubmit": { "alias": "isSubmit"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], false, never>;
143
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ec-button", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "lockButton": { "alias": "lockButton"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; }; "ariaHaspopup": { "alias": "ariaHaspopup"; "required": false; }; "ariaActivedescendant": { "alias": "ariaActivedescendant"; "required": false; }; "ariaControls": { "alias": "ariaControls"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "type": { "alias": "type"; "required": false; }; "pending": { "alias": "pending"; "required": false; }; "pendingIcon": { "alias": "pendingIcon"; "required": false; }; "customTemplate": { "alias": "customTemplate"; "required": false; }; "isSubmit": { "alias": "isSubmit"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], false, never>;
132
144
  }
133
145
 
134
146
  interface LinkItem {
@@ -432,11 +444,12 @@ declare class TooltipService {
432
444
  }
433
445
 
434
446
  type PopoverContentPosition = 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left';
435
- declare class PopoverComponent implements OnDestroy {
447
+ declare class PopoverComponent implements OnDestroy, OnInit {
436
448
  private overlay;
437
449
  private viewContainerRef;
438
450
  private elementRef;
439
451
  private tooltipService;
452
+ private translateService;
440
453
  /** An optional icon that, if provided, enables the popover to use it as the anchor element */
441
454
  icon?: string;
442
455
  /** An optional tag that, if provided, enables the popover to use it as the anchor element */
@@ -445,6 +458,8 @@ declare class PopoverComponent implements OnDestroy {
445
458
  tagHoverType?: TagType;
446
459
  contentPosition: PopoverContentPosition;
447
460
  iconHoverClass: string;
461
+ /** Accessible label for the popover trigger. If not provided, a default translated label is used. */
462
+ ariaLabel?: string;
448
463
  content: TemplateRef<any>;
449
464
  /** In the template, we use an ec-tags element for the pre-hover state and an entirely
450
465
  * separate ec-tags element for our hover state, resulting in two components. To achieve a change
@@ -452,13 +467,18 @@ declare class PopoverComponent implements OnDestroy {
452
467
  * second ec-tag element
453
468
  */
454
469
  hoverTag?: Tag;
470
+ /** The resolved aria-label for the trigger element. Only set for icon-only triggers or when ariaLabel is explicitly provided. */
471
+ resolvedAriaLabel: string | null;
472
+ /** Whether the popover content is currently visible */
473
+ isVisible: boolean;
474
+ /** Unique id for the tooltip content, referenced by the trigger's aria-describedby while the popover is visible. */
475
+ readonly contentId: string;
455
476
  private overlayRef?;
456
477
  private contentViewRef?;
457
478
  private contentRect;
458
- private isVisible;
459
479
  private mouseOver;
460
480
  private interrupt;
461
- constructor(overlay: Overlay$1, viewContainerRef: ViewContainerRef, elementRef: ElementRef, tooltipService: TooltipService);
481
+ constructor(overlay: Overlay$1, viewContainerRef: ViewContainerRef, elementRef: ElementRef, tooltipService: TooltipService, translateService: TranslateService);
462
482
  /** When the popover initializes, if a new tagType is provided for the hover state of the popover,
463
483
  * we use it to update the type of our "hoverTag" (which controls background-color of tag)
464
484
  */
@@ -467,6 +487,9 @@ declare class PopoverComponent implements OnDestroy {
467
487
  private show;
468
488
  onMouseOver(): void;
469
489
  onLeave(): void;
490
+ onFocusIn(): void;
491
+ onFocusOut(event: FocusEvent): void;
492
+ onTriggerKeydown(event: KeyboardEvent): void;
470
493
  /**
471
494
  * Hides the popover if the mouse moves outside of the popover content
472
495
  */
@@ -475,7 +498,7 @@ declare class PopoverComponent implements OnDestroy {
475
498
  private getOverlayConfig;
476
499
  private getPosition;
477
500
  static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
478
- static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "ec-popover", never, { "icon": { "alias": "icon"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "tagHoverType": { "alias": "tagHoverType"; "required": false; }; "contentPosition": { "alias": "contentPosition"; "required": false; }; "iconHoverClass": { "alias": "iconHoverClass"; "required": false; }; }, {}, never, ["*"], false, never>;
501
+ static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "ec-popover", never, { "icon": { "alias": "icon"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "tagHoverType": { "alias": "tagHoverType"; "required": false; }; "contentPosition": { "alias": "contentPosition"; "required": false; }; "iconHoverClass": { "alias": "iconHoverClass"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
479
502
  }
480
503
 
481
504
  type ControlLabelPosition = "top" | "bottom" | "left";
@@ -1552,6 +1575,14 @@ declare class WindowService {
1552
1575
  }
1553
1576
 
1554
1577
  type MenuTemplateType = "label" | "iconAndLabel" | "checkAndLabel" | "iconLabelCaption";
1578
+ /**
1579
+ * ARIA role pattern to apply to the menu container and its items.
1580
+ * - `menu` — `<ul role="menu">` + `<li role="menuitem">`. Use for action menus invoked by a button trigger (DropdownComponent).
1581
+ * - `listbox` — `<ul role="listbox">` + `<li role="option">`. Use for value-selection widgets (ComboboxComponent, MultiselectComponent).
1582
+ * - `tree` — `<ul role="tree">` + `<li role="treeitem">`. Use for hierarchical tree navigation (TreeComponent).
1583
+ * - `none` — no role attributes rendered. Default, preserves previous behavior for consumers that have not opted into a specific ARIA pattern.
1584
+ */
1585
+ type MenuRolePattern = "menu" | "listbox" | "tree" | "none";
1555
1586
  type MenuHostElementClasses = 'bg-transparent';
1556
1587
  interface MenuItem<TValue = any, SItems = any> extends NavItem {
1557
1588
  label: string;
@@ -1644,6 +1675,25 @@ declare class MenuComponent implements AfterContentInit, OnDestroy, OnChanges {
1644
1675
  * Controls whether keyboard navigation is enabled
1645
1676
  */
1646
1677
  enableKeyNav?: boolean;
1678
+ /**
1679
+ * The ARIA role pattern applied to the menu container and items. Defaults to `none` so
1680
+ * existing consumers (combobox, multiselect, tree) keep their current behavior until they
1681
+ * opt into a specific pattern. DropdownComponent sets this to `menu`.
1682
+ *
1683
+ * @see {@link MenuRolePattern}
1684
+ */
1685
+ rolePattern: MenuRolePattern;
1686
+ /**
1687
+ * Computed role for the `<ul>` items list based on `rolePattern`. Returns `null` when no
1688
+ * pattern is selected so no `role` attribute is rendered.
1689
+ */
1690
+ get listRole(): 'menu' | 'listbox' | 'tree' | null;
1691
+ /**
1692
+ * Returns the appropriate ARIA role for a given item under the current `rolePattern`.
1693
+ * Heading items are always `presentation` so they are not announced as interactive
1694
+ * descendants of the parent role.
1695
+ */
1696
+ getItemRole(item: MenuItem): 'menuitem' | 'option' | 'treeitem' | 'presentation' | null;
1647
1697
  /**
1648
1698
  * Item currently highlighted by keyboard navigation
1649
1699
  */
@@ -1673,6 +1723,13 @@ declare class MenuComponent implements AfterContentInit, OnDestroy, OnChanges {
1673
1723
  * @memberof MenuComponent
1674
1724
  */
1675
1725
  selectedChanged: EventEmitter<MenuItem>;
1726
+ /**
1727
+ * Emitted when the highlighted item changes via keyboard navigation. Enables consumers
1728
+ * (e.g. DropdownComponent) to mirror the highlight state — for example, to set
1729
+ * `aria-activedescendant` on a trigger button so assistive technology can announce the
1730
+ * currently focused menu item.
1731
+ */
1732
+ highlightedItemChange: EventEmitter<MenuItem | null>;
1676
1733
  /**
1677
1734
  * Emitted when the menu has a parent and back is clicked
1678
1735
  * @memberof MenuComponent
@@ -1806,7 +1863,7 @@ declare class MenuComponent implements AfterContentInit, OnDestroy, OnChanges {
1806
1863
  */
1807
1864
  private setItemIds;
1808
1865
  static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
1809
- static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "ec-menu", never, { "id": { "alias": "id"; "required": false; }; "items": { "alias": "items"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; "templateType": { "alias": "templateType"; "required": false; }; "customMenuTemplate": { "alias": "customMenuTemplate"; "required": false; }; "title": { "alias": "title"; "required": false; }; "showNoItems": { "alias": "showNoItems"; "required": false; }; "noDataText": { "alias": "noDataText"; "required": false; }; "enableKeyNav": { "alias": "enableKeyNav"; "required": false; }; "highlightedItem": { "alias": "highlightedItem"; "required": false; }; "maintainSelectedItem": { "alias": "maintainSelectedItem"; "required": false; }; "truncateItems": { "alias": "truncateItems"; "required": false; }; "preserveIconSpace": { "alias": "preserveIconSpace"; "required": false; }; "dropdownToggleButton": { "alias": "dropdownToggleButton"; "required": false; }; }, { "selectedChanged": "selectedChanged"; "menuClosed": "menuClosed"; }, never, never, false, never>;
1866
+ static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "ec-menu", never, { "id": { "alias": "id"; "required": false; }; "items": { "alias": "items"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; "templateType": { "alias": "templateType"; "required": false; }; "customMenuTemplate": { "alias": "customMenuTemplate"; "required": false; }; "title": { "alias": "title"; "required": false; }; "showNoItems": { "alias": "showNoItems"; "required": false; }; "noDataText": { "alias": "noDataText"; "required": false; }; "enableKeyNav": { "alias": "enableKeyNav"; "required": false; }; "rolePattern": { "alias": "rolePattern"; "required": false; }; "highlightedItem": { "alias": "highlightedItem"; "required": false; }; "maintainSelectedItem": { "alias": "maintainSelectedItem"; "required": false; }; "truncateItems": { "alias": "truncateItems"; "required": false; }; "preserveIconSpace": { "alias": "preserveIconSpace"; "required": false; }; "dropdownToggleButton": { "alias": "dropdownToggleButton"; "required": false; }; }, { "selectedChanged": "selectedChanged"; "highlightedItemChange": "highlightedItemChange"; "menuClosed": "menuClosed"; }, never, never, false, never>;
1810
1867
  }
1811
1868
 
1812
1869
  interface PagingInfo {
@@ -2653,6 +2710,12 @@ declare class DropdownComponent implements OnInit, AfterViewInit, OnDestroy {
2653
2710
  * the toggle buttonType is 'icon'
2654
2711
  */
2655
2712
  buttonTitle: string;
2713
+ /**
2714
+ * Accessible label for the dropdown toggle button. Use this to provide an accessible
2715
+ * name when the toggle is icon-only and has no visible label text. The value will be
2716
+ * translated and set as the aria-label attribute on the native button element.
2717
+ */
2718
+ ariaLabel?: string;
2656
2719
  /**
2657
2720
  * The tabindex of the button
2658
2721
  */
@@ -2767,7 +2830,7 @@ declare class DropdownComponent implements OnInit, AfterViewInit, OnDestroy {
2767
2830
  */
2768
2831
  keyNavigate(event: KeyboardEvent): void;
2769
2832
  static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
2770
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ec-dropdown", never, { "id": { "alias": "id"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "status": { "alias": "status"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "buttonType": { "alias": "buttonType"; "required": false; }; "buttonAlignment": { "alias": "buttonAlignment"; "required": false; }; "buttonTitle": { "alias": "buttonTitle"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "showArrow": { "alias": "showArrow"; "required": false; }; "items": { "alias": "items"; "required": false; }; "menuTemplateType": { "alias": "menuTemplateType"; "required": false; }; "menuTitle": { "alias": "menuTitle"; "required": false; }; "menuHeight": { "alias": "menuHeight"; "required": false; }; "menuWidth": { "alias": "menuWidth"; "required": false; }; "menuMinWidth": { "alias": "menuMinWidth"; "required": false; }; "menuPosition": { "alias": "menuPosition"; "required": false; }; "menuFooter": { "alias": "menuFooter"; "required": false; }; "popupFixed": { "alias": "popupFixed"; "required": false; }; "buttonCustomTemplate": { "alias": "buttonCustomTemplate"; "required": false; }; "pending": { "alias": "pending"; "required": false; }; }, { "itemSelected": "itemSelected"; "popupOpened": "popupOpened"; }, never, never, false, never>;
2833
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ec-dropdown", never, { "id": { "alias": "id"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "status": { "alias": "status"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "buttonType": { "alias": "buttonType"; "required": false; }; "buttonAlignment": { "alias": "buttonAlignment"; "required": false; }; "buttonTitle": { "alias": "buttonTitle"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "showArrow": { "alias": "showArrow"; "required": false; }; "items": { "alias": "items"; "required": false; }; "menuTemplateType": { "alias": "menuTemplateType"; "required": false; }; "menuTitle": { "alias": "menuTitle"; "required": false; }; "menuHeight": { "alias": "menuHeight"; "required": false; }; "menuWidth": { "alias": "menuWidth"; "required": false; }; "menuMinWidth": { "alias": "menuMinWidth"; "required": false; }; "menuPosition": { "alias": "menuPosition"; "required": false; }; "menuFooter": { "alias": "menuFooter"; "required": false; }; "popupFixed": { "alias": "popupFixed"; "required": false; }; "buttonCustomTemplate": { "alias": "buttonCustomTemplate"; "required": false; }; "pending": { "alias": "pending"; "required": false; }; }, { "itemSelected": "itemSelected"; "popupOpened": "popupOpened"; }, never, never, false, never>;
2771
2834
  }
2772
2835
 
2773
2836
  /**
@@ -5281,7 +5344,8 @@ declare class ResizableComponent extends ResizableBase implements OnInit {
5281
5344
  }
5282
5345
 
5283
5346
  declare class HighlightTextPipe implements PipeTransform {
5284
- transform(value: string, searchText: string): string;
5347
+ transform(value: string, searchText: string, normalizePattern?: string): string;
5348
+ private transformNormalized;
5285
5349
  private strongWrap;
5286
5350
  private escapeRegex;
5287
5351
  static ɵfac: i0.ɵɵFactoryDeclaration<HighlightTextPipe, never>;
@@ -6743,4 +6807,4 @@ declare class MockTranslationHelperService {
6743
6807
  }
6744
6808
 
6745
6809
  export { AppBarComponent, AvatarComponent, BannerComponent, ButtonComponent, CacheService, Calendar, CalendarComponent, CheckboxComponent, ClickAreaForDirective, CollapsibleToggleComponent, ComboboxComponent, ComponentsModule, ConfirmComponent, ConfirmDialogContext, CopyButtonBaseTestInjectorFactory, CopyButtonDirective, CopyTableButtonDirective, CustomValidators, DateDisplayPipe, DateDisplayPipe2, DateInput, DateInputComponent, DateTimeHelper, DialogCloseDuration, DialogCloseEvent, DialogCloseLatestEvent, DialogComponent, DialogEvent, DialogGroupComponent, DialogOpenDuration, DialogOpenEndEvent, DialogOpenStartEvent, DialogResult, DialogService, DropdownComponent, ErrorService, FileTypeExtensions, FileUploadComponent, FormControlBase, FormControlComponent, FormControlLabelComponent, FormGroupComponent, FormGroupHelper, HelpPopoverComponent, HierarchyBase, HierarchyBaseTestInjectorFactory, HierarchyItem, HierarchyMocks, HierarchyTreeComponent, HighlightTextPipe, IfViewportWidthDirective, ItemDisplayComponent, ItemPickerComponent, ItemPickerSelectableContext, JsonDisplayComponent, JsonHelper, KeyboardNavContainerDirective, LinkButtonComponent, MenuComponent, MockActivatedRoute, MockDateDisplayPipe, MockDialog, MockDialogContent, MockTranslateService, MockTranslationHelperService, MultiselectComponent, NavGroup, NavItemActiveDirective, NumericboxComponent, Overlay, PageBaseComponent, PageBaseComponentTestHelper, PageBaseComponentTestInjectorFactory, PageInitResult, PageStatus, PageStatuses, PageTitleComponent, PageViewComponent, PanelCloseDuration, PanelOpenDuration, PopoverComponent, PopupContainerDirective, RadioButtonComponent, RadioButtonOption, RelativeDatePipe, ResizableBase, ResizableColumnComponent, ResizableComponent, RouterHelper, RowCountPipe, ScrollService, SearchableTableComponent, SelectComponent, SpinnerComponent, SplashComponent, SplashService, SpyFactory, TableComponent, TableLockedColumnComponent, TableMasterHeaderRowComponent, TableMasterRowComponent, TablePaginationComponent, TableSelectableRowComponent, TableSelectableRowContext, TabsComponent, Tag, TagsComponent, TelemetryService, TelemetryTrackerService, TextboxComponent, TimeDisplayPipe, ToastComponent, ToastEvent, ToastService, ToasterComponent, TooltipComponent, TooltipDirective, TooltipService, TreeComponent, UnicodeStrings, UserPreferenceService, ValidationMessageService, ViewOverlayComponent, WindowService, WizardBaseComponent, WizardButtonsComponent, WizardProgressComponent, canadianPostalCodeRegex, clickEvent, dateInputFormatRegex, domainPattern, findAllSpacesPattern, forEachFormControl, getApiError, getControlValue, getDecimalPattern, handleKeyNavigate, integerPattern, isApiError, menuAnimationSpeed, mockRouterFactory, mockRouterHelperFactory, numericboxValidation, orderByIgnoreCase, otherZipCodeRegex, phoneNumberValidationPattern, sortByIgnoreCase, textboxValidation, unitedStatesZipCodeRegex, urlValidationPattern, validateFormGroupValuesAreUnique };
6746
- export type { ApiError, AppSplashEvent, AppSplashOptions, AvatarUser, BannerCacheEntry, BannerStyle, BannerType, ButtonType, CheckboxState, ClickableElement, ComboboxMenuPosition, ComponentsModuleConfig, ControlLabelPosition, CustomActionResult, DateDisplay, DateDisplayPipeOptions, DatePreferenceContainer, DialogAnimationEvent, DialogContent, DialogOptions, DialogSize, DisplayStatus, DisplayValue, FileOutput, FileType, FileUploadFormGroup, FileValidatorCallback, Help, HelpControl, HelpPopoverConfig, InvalidFileError, KeyNavigateHandlers, LinkItem, LinkTarget, MenuHostElementClasses, MenuItem, MenuTemplateType, MultiselectMenuPosition, NavItem, PagingInfo, PickerItem, PopoverContentPosition, PopupPlacement, PopupStatus, RadioButtonDirection, RadioButtonType, RelativeDateOptions, ResizeCacheEntry, RowCountInfo, SearchableTableRefreshOptions, Tab, TableSearchResults, TableSort, TableSortDirection, TagType, TextboxType, TextboxValidatorParameters, ToastAction, ToastItem, ToastSource, ToggledHierarchyItem, TooltipOptions, TooltipPosition, TreeType, ViewStatus, WizardTab };
6810
+ export type { ApiError, AppSplashEvent, AppSplashOptions, AvatarUser, BannerCacheEntry, BannerStyle, BannerType, ButtonType, CheckboxState, ClickableElement, ComboboxMenuPosition, ComponentsModuleConfig, ControlLabelPosition, CustomActionResult, DateDisplay, DateDisplayPipeOptions, DatePreferenceContainer, DialogAnimationEvent, DialogContent, DialogOptions, DialogSize, DisplayStatus, DisplayValue, FileOutput, FileType, FileUploadFormGroup, FileValidatorCallback, Help, HelpControl, HelpPopoverConfig, InvalidFileError, KeyNavigateHandlers, LinkItem, LinkTarget, MenuHostElementClasses, MenuItem, MenuRolePattern, MenuTemplateType, MultiselectMenuPosition, NavItem, PagingInfo, PickerItem, PopoverContentPosition, PopupPlacement, PopupStatus, RadioButtonDirection, RadioButtonType, RelativeDateOptions, ResizeCacheEntry, RowCountInfo, SearchableTableRefreshOptions, Tab, TableSearchResults, TableSort, TableSortDirection, TagType, TextboxType, TextboxValidatorParameters, ToastAction, ToastItem, ToastSource, ToggledHierarchyItem, TooltipOptions, TooltipPosition, TreeType, ViewStatus, WizardTab };