@ascentgl/ads-ui 22.0.3 → 22.7.0

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": "@ascentgl/ads-ui",
3
- "version": "22.0.3",
3
+ "version": "22.7.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=22.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -168,7 +168,7 @@ declare class AdsButtonComponent {
168
168
 
169
169
  declare class AdsButtonContainerComponent {
170
170
  /** How buttons in the container should be placed */
171
- justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
171
+ justify: i0.InputSignal<"flex-start" | "flex-end" | "center">;
172
172
  /** The gap between elements */
173
173
  gap: i0.InputSignal<number>;
174
174
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
@@ -2237,6 +2237,118 @@ declare class AdsChipComponent {
2237
2237
  static ɵcmp: i0.ɵɵComponentDeclaration<AdsChipComponent, "ads-chip", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "showCheckedIcon": { "alias": "showCheckedIcon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "deletable": { "alias": "deletable"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "dropdown": { "alias": "dropdown"; "required": false; "isSignal": true; }; "dropdownOptions": { "alias": "dropdownOptions"; "required": false; "isSignal": true; }; }, { "deleted": "deleted"; "selected": "selected"; "optionSelected": "optionSelected"; }, never, ["*"], true, never>;
2238
2238
  }
2239
2239
 
2240
+ /**
2241
+ * A single selectable entry inside an {@link AdsMenuDropDownComponent}.
2242
+ */
2243
+ interface AdsMenuDropDownItem {
2244
+ /** Unique identifier for the item, used for tracking and emitted on selection */
2245
+ id: string;
2246
+ /** The visible text label of the item */
2247
+ label: string;
2248
+ /** Optional leading icon name from the ADS icon set */
2249
+ icon?: adsIcon;
2250
+ /** Whether the item is disabled (skipped during keyboard navigation and not selectable) */
2251
+ disabled?: boolean;
2252
+ /**
2253
+ * When true, a horizontal divider is rendered directly above this item (unless it is the
2254
+ * first item). Use to visually group actions — e.g. separating a "Set as default" action
2255
+ * from the rest of the menu. Purely presentational; does not affect keyboard navigation.
2256
+ */
2257
+ separatorBefore?: boolean;
2258
+ }
2259
+
2260
+ declare class AdsMenuDropDownComponent implements AfterViewInit {
2261
+ private registry;
2262
+ constructor(registry: AdsIconRegistry);
2263
+ /** The list of menu items to display */
2264
+ items: i0.InputSignal<AdsMenuDropDownItem[]>;
2265
+ /** Accessible label describing the menu, exposed via `aria-label` */
2266
+ ariaLabel: i0.InputSignal<string>;
2267
+ /** Move keyboard focus to the first item once the menu is rendered */
2268
+ autoFocus: i0.InputSignal<boolean>;
2269
+ /** Emitted when an enabled item is selected (via click, Enter or Space) */
2270
+ itemSelect: i0.OutputEmitterRef<AdsMenuDropDownItem>;
2271
+ /** Emitted when the menu requests to close (Escape key or Tab out) */
2272
+ closed: i0.OutputEmitterRef<void>;
2273
+ /** @ignore Index of the item that currently owns the roving tabindex */
2274
+ readonly activeIndex: i0.WritableSignal<number>;
2275
+ /** @ignore References to the rendered menu item buttons */
2276
+ private readonly itemButtons;
2277
+ /** @ignore */
2278
+ ngAfterViewInit(): void;
2279
+ /** @ignore Handles all keyboard interaction for the menu */
2280
+ onKeydown(event: KeyboardEvent): void;
2281
+ /** @ignore */
2282
+ selectItem(item: AdsMenuDropDownItem): void;
2283
+ /** @ignore */
2284
+ private selectActive;
2285
+ /** @ignore Moves focus to the next enabled item in the given direction, wrapping around */
2286
+ private moveFocus;
2287
+ /** @ignore */
2288
+ private focusIndex;
2289
+ /** @ignore */
2290
+ private firstEnabledIndex;
2291
+ /** @ignore */
2292
+ private lastEnabledIndex;
2293
+ static ɵfac: i0.ɵɵFactoryDeclaration<AdsMenuDropDownComponent, never>;
2294
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsMenuDropDownComponent, "ads-menu-drop-down", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "autoFocus": { "alias": "autoFocus"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "closed": "closed"; }, never, never, true, never>;
2295
+ }
2296
+
2297
+ /** Preferred side/alignment the menu opens towards before auto-flipping. */
2298
+ type AdsMenuDropDownPosition = 'below-start' | 'below-end' | 'above-start' | 'above-end';
2299
+ /**
2300
+ * Opens an {@link AdsMenuDropDownComponent} in a CDK overlay anchored to the host element.
2301
+ *
2302
+ * The overlay is rendered at the document root (so it is never clipped by an ag-grid cell or
2303
+ * any `overflow: hidden` ancestor) and auto-positions itself: it opens towards `menuPosition`
2304
+ * when there is room, otherwise it flips to whichever side fits, and is pushed fully into the
2305
+ * viewport as a last resort so it is always visible.
2306
+ *
2307
+ * @example
2308
+ * ```html
2309
+ * <ads-icon-button
2310
+ * [adsMenuDropDownTriggerFor]="actionItems"
2311
+ * menuPosition="below-start"
2312
+ * (itemSelect)="onAction($event, row)">
2313
+ * <ads-icon name="more_vertical" />
2314
+ * </ads-icon-button>
2315
+ * ```
2316
+ */
2317
+ declare class AdsMenuDropDownTriggerDirective implements OnDestroy {
2318
+ private readonly overlay;
2319
+ private readonly elementRef;
2320
+ /** The items to render inside the menu */
2321
+ items: i0.InputSignal<AdsMenuDropDownItem[]>;
2322
+ /** Preferred side/alignment the menu opens towards before auto-flipping */
2323
+ menuPosition: i0.InputSignal<AdsMenuDropDownPosition>;
2324
+ /** Accessible label applied to the menu panel */
2325
+ menuAriaLabel: i0.InputSignal<string>;
2326
+ /** Disable the trigger so the menu cannot be opened */
2327
+ disabled: i0.InputSignalWithTransform<boolean, unknown>;
2328
+ /** Emitted when an enabled item is selected */
2329
+ itemSelect: i0.OutputEmitterRef<AdsMenuDropDownItem>;
2330
+ /** Emitted when the menu opens */
2331
+ menuOpened: i0.OutputEmitterRef<void>;
2332
+ /** Emitted when the menu closes */
2333
+ menuClosed: i0.OutputEmitterRef<void>;
2334
+ /** @ignore Whether the menu is currently open */
2335
+ readonly isOpen: i0.WritableSignal<boolean>;
2336
+ /** @ignore */
2337
+ private overlayRef;
2338
+ /** @ignore */
2339
+ private menuRef;
2340
+ /** @ignore */
2341
+ toggle(): void;
2342
+ /** Open the menu (no-op if disabled or already open). */
2343
+ open(): void;
2344
+ /** Close the menu and restore focus to the trigger. */
2345
+ close(): void;
2346
+ /** @ignore */
2347
+ ngOnDestroy(): void;
2348
+ static ɵfac: i0.ɵɵFactoryDeclaration<AdsMenuDropDownTriggerDirective, never>;
2349
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AdsMenuDropDownTriggerDirective, "[adsMenuDropDownTriggerFor]", never, { "items": { "alias": "adsMenuDropDownTriggerFor"; "required": true; "isSignal": true; }; "menuPosition": { "alias": "menuPosition"; "required": false; "isSignal": true; }; "menuAriaLabel": { "alias": "menuAriaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "menuOpened": "menuOpened"; "menuClosed": "menuClosed"; }, never, never, true, never>;
2350
+ }
2351
+
2240
2352
  declare class AdsExpansionPanelComponent implements AfterContentInit {
2241
2353
  private registry;
2242
2354
  private elementRef;
@@ -2261,7 +2373,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
2261
2373
  /** Component width. Must include units of measure: px, %, em, rem, etc. */
2262
2374
  width: i0.InputSignal<string>;
2263
2375
  /** The Chevron Icon size () */
2264
- chevronSize: i0.InputSignal<"xs" | "base">;
2376
+ chevronSize: i0.InputSignal<"base" | "xs">;
2265
2377
  /** Header padding size () */
2266
2378
  headerPadding: i0.InputSignal<string>;
2267
2379
  /** Content padding size () */
@@ -2520,7 +2632,7 @@ declare class AdsSortMenuComponent implements OnChanges, OnDestroy {
2520
2632
  /** All column sort/filter configs (all possible columns) */
2521
2633
  columnSortFilterConfigs: ColumnSortFilterConfig[];
2522
2634
  /** Current column sort states from the table */
2523
- columnSortStates: Map<string, "asc" | "desc" | null>;
2635
+ columnSortStates: Map<string, "desc" | "asc" | null>;
2524
2636
  /** Emits when sort configuration changes (order or direction) */
2525
2637
  sortChanged: EventEmitter<SortMenuChangeEvent>;
2526
2638
  /** Emits when sorts are removed for columns */
@@ -2637,7 +2749,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
2637
2749
  values: string[];
2638
2750
  }>;
2639
2751
  /** Event emitted when view mode changes between grid and list */
2640
- viewChanged: EventEmitter<"grid" | "list">;
2752
+ viewChanged: EventEmitter<"list" | "grid">;
2641
2753
  /** @ignore - Current view mode: grid or list */
2642
2754
  isListView: i0.WritableSignal<boolean>;
2643
2755
  /** @ignore - Cached filtered row data for list view */
@@ -2677,7 +2789,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
2677
2789
  /** @ignore */
2678
2790
  activeColumnMenu: i0.WritableSignal<string | null>;
2679
2791
  /** @ignore */
2680
- columnSortStates: i0.WritableSignal<Map<string, "asc" | "desc" | null>>;
2792
+ columnSortStates: i0.WritableSignal<Map<string, "desc" | "asc" | null>>;
2681
2793
  /** @ignore */
2682
2794
  columnFilterStates: i0.WritableSignal<Map<string, string[]>>;
2683
2795
  /** @ignore */
@@ -3221,11 +3333,18 @@ type AdsNavItemV2 = {
3221
3333
  href?: string;
3222
3334
  subItems?: AdsNavSubItemV2[];
3223
3335
  showDividerAfterItem?: boolean;
3336
+ /** Force the item highlighted regardless of the router (for click-driven, non-route items). */
3337
+ active?: boolean;
3224
3338
  };
3225
3339
  type AdsNavSubItemV2 = {
3226
3340
  label: string;
3227
3341
  icon?: adsIcon;
3228
- href: string;
3342
+ /** Optional: omit for click-driven items that are not routes (emit `itemSelect` instead). */
3343
+ href?: string;
3344
+ /** Caller context carried through `itemSelect` (e.g. a tab index). */
3345
+ id?: string;
3346
+ /** Force the item highlighted regardless of the router (for click-driven, non-route items). */
3347
+ active?: boolean;
3229
3348
  };
3230
3349
 
3231
3350
  declare class AdsSideNavBarV2Component implements OnInit, OnDestroy {
@@ -3241,6 +3360,8 @@ declare class AdsSideNavBarV2Component implements OnInit, OnDestroy {
3241
3360
  collapsed: i0.InputSignal<boolean | undefined>;
3242
3361
  /** Emits when collapsed state changes */
3243
3362
  collapsedChange: i0.OutputEmitterRef<boolean>;
3363
+ /** Emits when a click-driven sub-item (one without an `href`) is selected. */
3364
+ itemSelect: i0.OutputEmitterRef<AdsNavSubItemV2>;
3244
3365
  /** @ignore */
3245
3366
  isMobile: i0.WritableSignal<boolean>;
3246
3367
  /** @ignore */
@@ -3259,16 +3380,18 @@ declare class AdsSideNavBarV2Component implements OnInit, OnDestroy {
3259
3380
  toggleCollapsed(): void;
3260
3381
  /** @ignore */
3261
3382
  onNavItemClick(): void;
3383
+ /** @ignore Click handler for sub-items; emits `itemSelect` for non-route (hrefless) items. */
3384
+ onSubItemClick(item: AdsNavSubItemV2): void;
3262
3385
  /** @ignore */
3263
3386
  private checkMobile;
3264
3387
  /** @ignore */
3265
3388
  hasActiveLink(item: AdsNavItemV2): boolean;
3266
- /** @ignore */
3389
+ /** @ignore Explicit `active` flag wins; falls back to a router match when `href` is set. */
3267
3390
  hasActiveSubLink(item: AdsNavSubItemV2): boolean;
3268
3391
  /** @ignore */
3269
3392
  private isActive;
3270
3393
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsSideNavBarV2Component, never>;
3271
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsSideNavBarV2Component, "ads-side-nav-bar-v2", never, { "navItems": { "alias": "navItems"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, { "collapsedChange": "collapsedChange"; }, never, never, true, never>;
3394
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsSideNavBarV2Component, "ads-side-nav-bar-v2", never, { "navItems": { "alias": "navItems"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, { "collapsedChange": "collapsedChange"; "itemSelect": "itemSelect"; }, never, never, true, never>;
3272
3395
  }
3273
3396
 
3274
3397
  type MainMenuItem = {
@@ -3441,7 +3564,7 @@ declare class AdsHorizontalStepperComponent {
3441
3564
  /**
3442
3565
  * Stepper size
3443
3566
  */
3444
- size: i0.InputSignal<"xs" | "base">;
3567
+ size: i0.InputSignal<"base" | "xs">;
3445
3568
  /** @ignore */
3446
3569
  protected isBaseSize: i0.Signal<boolean>;
3447
3570
  /** Event emitted when a step is clicked */
@@ -3751,6 +3874,12 @@ interface Tab {
3751
3874
  disabled?: boolean;
3752
3875
  template?: TemplateRef<unknown>;
3753
3876
  headerTemplate?: TemplateRef<unknown>;
3877
+ /** CSS class applied to the tab's header element (mat-tab `labelClass`). */
3878
+ labelClass?: string;
3879
+ /** Context object passed to `headerTemplate` and `template` so one template can render per-tab data. */
3880
+ templateContext?: unknown;
3881
+ /** When `true`, the tab content renders lazily via `matTabContent` (only while the tab is active). */
3882
+ lazy?: boolean;
3754
3883
  }
3755
3884
  declare class AdsTabsComponent implements AfterViewInit {
3756
3885
  tabGroup: i0.Signal<MatTabGroup>;
@@ -3762,6 +3891,10 @@ declare class AdsTabsComponent implements AfterViewInit {
3762
3891
  activeColor: Colors | undefined;
3763
3892
  /** When `true`, the border-bottom on inactive (non-active, non-disabled) tabs is hidden. Defaults to `false`. */
3764
3893
  hideInactiveBorder: boolean;
3894
+ /** When `false`, tab headers size to their content instead of stretching to fill the width. Defaults to `true`. */
3895
+ stretchTabs: boolean;
3896
+ /** Tab change animation duration forwarded to `mat-tab-group` (e.g. `'500ms'`). When `undefined`, Material's default is used. */
3897
+ animationDuration: string | number | undefined;
3765
3898
  selectedIndexChange: EventEmitter<number>;
3766
3899
  tabChange: EventEmitter<{
3767
3900
  index: number;
@@ -3771,7 +3904,7 @@ declare class AdsTabsComponent implements AfterViewInit {
3771
3904
  get _activeColorVar(): string | null;
3772
3905
  ngAfterViewInit(): void;
3773
3906
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsTabsComponent, never>;
3774
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsTabsComponent, "ads-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "tabWidth": { "alias": "tabWidth"; "required": false; }; "activeColor": { "alias": "activeColor"; "required": false; }; "hideInactiveBorder": { "alias": "hideInactiveBorder"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "tabChange": "tabChange"; }, never, never, true, never>;
3907
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsTabsComponent, "ads-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "tabWidth": { "alias": "tabWidth"; "required": false; }; "activeColor": { "alias": "activeColor"; "required": false; }; "hideInactiveBorder": { "alias": "hideInactiveBorder"; "required": false; }; "stretchTabs": { "alias": "stretchTabs"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "tabChange": "tabChange"; }, never, never, true, never>;
3775
3908
  }
3776
3909
 
3777
3910
  declare enum CountryCode {
@@ -3937,5 +4070,5 @@ declare function provideAdsUi(config: AdsUiConfig): {
3937
4070
  useValue: AdsUiConfig;
3938
4071
  }[];
3939
4072
 
3940
- export { AdsArchitectureLogoComponent, AdsAscentLogoComponent, AdsAvatarComponent, AdsBaselineWidgetComponent, AdsBreadcrumbComponent, AdsBubbleComponent, AdsButtonComponent, AdsButtonContainerComponent, AdsCardComponent, AdsCheckboxComponent, AdsChipComponent, AdsColumnSortFilterMenuComponent, AdsCreateTagComponent, AdsCurrencyFieldComponent, AdsCustomHeaderComponent, AdsCustomerPortalLogoComponent, AdsCxaLogoComponent, AdsDatepickerComponent, AdsDatetimepickerComponent, AdsDragAndDropListComponent, AdsDropdownComponent, AdsErrorPageCodeComponent, AdsErrorPageComponent, AdsExpansionPanelComponent, AdsFilterMenuComponent, AdsFooterComponent, AdsFooterContainerComponent, AdsGenericLogoComponent, AdsHeaderComponent, AdsHeaderContainerComponent, AdsHistoryStepperComponent, AdsHorizontalNavBarComponent, AdsHorizontalStepperComponent, AdsIconButtonComponent, AdsIconHoverComponent, AdsInputComponent, AdsInputDropdownComponent, AdsInternationalPhoneFieldComponent, AdsLinkButtonComponent, AdsMainMenuComponent, AdsModalComponent, AdsMultiSelectDropdownComponent, AdsNavMenuComponent, AdsNavigationCollapseHandleComponent, AdsNavigationComponent, AdsNavigationHeaderComponent, AdsNavigationItemComponent, AdsNavigationItemsContainerComponent, AdsNumericBadgeComponent, AdsNumericStepperComponent, AdsOrgDisplayTextComponent, AdsPeakEssentialsLogoComponent, AdsPeakMarketplaceLogoComponent, AdsPeakOrderManagementLogoComponent, AdsPhoneFieldComponent, AdsPilotPayLogoComponent, AdsPrimaryLogoComponent, AdsProgressBarComponent, AdsProgressIndicatorSpinnerComponent, AdsProgressSpinnerComponent, AdsProgressStepperComponent, AdsRadioButtonComponent, AdsScmsLogoComponent, AdsScmsSideNavBarComponent, AdsSearchDropdownComponent, AdsSearchInputComponent, AdsShipmentHorizontalStepperComponent, AdsSideNavBarComponent, AdsSideNavBarV2Component, AdsSlideToggleComponent, AdsSliderComponent, AdsSnackbarComponent, AdsSortMenuComponent, AdsSplashPageComponent, AdsStepperComponent, AdsSubNavigationButtonComponent, AdsTableComponent, AdsTabsComponent, AdsTagComponent, AdsTagContainerComponent, AdsTextareaComponent, AdsTimeFieldComponent, AdsTimepickerComponent, AdsVerticalSideNavigationStepperComponent, AdsWizardStepperComponent, AscentCardComponent, BadgeColor, Colors, CountryCode, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, HistoryAction, HorizontalStepStatus, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, SpinnerSize, StepStatus, TableBreakpoint, ViewportService, WindowService, WizardStepStatus, provideAdsUi };
3941
- export type { ActiveFilter, ActiveSort, AdsModalData, AdsNavItemV2, AdsNavSubItemV2, AdsUiConfig, Breadcrumb, ColumnFilterOption, ColumnSortFilterConfig, ColumnSortOption, ColumnVisibilityControl, Copyright, CustomHeaderParams, DROP_CALLBACK_INDEXES, DividerStyle, ErrorPageConfig, ErrorPageInfoColumn, FilterOptionsSortComparator, FilterValueFormatter, HistoryContextTag, HistoryEvent, HistoryGroup, HorizontalNavLink, HorizontalStep, IconButtonSize, Link, MainMenuItem, NavItem, NavMenuItem, NumericStep, ProgressStep, ScmsNavItem, ScmsNavSubItem, SearchDropdownComponentOptions, SearchDropdownDisplayControlValue, SearchDropdownStaticOption, SearchDropdownStaticOptionTemplateContext, ShipmentStep, Size, SnackBarData, SortComparator, SortMenuChangeEvent, SortType, Step, Tab, Tag, UNSUBSCRIBE_FUNCTIONS_COLLECTION, Variant, VerticalSideNavigationStep, WizardStep };
4073
+ export { AdsArchitectureLogoComponent, AdsAscentLogoComponent, AdsAvatarComponent, AdsBaselineWidgetComponent, AdsBreadcrumbComponent, AdsBubbleComponent, AdsButtonComponent, AdsButtonContainerComponent, AdsCardComponent, AdsCheckboxComponent, AdsChipComponent, AdsColumnSortFilterMenuComponent, AdsCreateTagComponent, AdsCurrencyFieldComponent, AdsCustomHeaderComponent, AdsCustomerPortalLogoComponent, AdsCxaLogoComponent, AdsDatepickerComponent, AdsDatetimepickerComponent, AdsDragAndDropListComponent, AdsDropdownComponent, AdsErrorPageCodeComponent, AdsErrorPageComponent, AdsExpansionPanelComponent, AdsFilterMenuComponent, AdsFooterComponent, AdsFooterContainerComponent, AdsGenericLogoComponent, AdsHeaderComponent, AdsHeaderContainerComponent, AdsHistoryStepperComponent, AdsHorizontalNavBarComponent, AdsHorizontalStepperComponent, AdsIconButtonComponent, AdsIconHoverComponent, AdsInputComponent, AdsInputDropdownComponent, AdsInternationalPhoneFieldComponent, AdsLinkButtonComponent, AdsMainMenuComponent, AdsMenuDropDownComponent, AdsMenuDropDownTriggerDirective, AdsModalComponent, AdsMultiSelectDropdownComponent, AdsNavMenuComponent, AdsNavigationCollapseHandleComponent, AdsNavigationComponent, AdsNavigationHeaderComponent, AdsNavigationItemComponent, AdsNavigationItemsContainerComponent, AdsNumericBadgeComponent, AdsNumericStepperComponent, AdsOrgDisplayTextComponent, AdsPeakEssentialsLogoComponent, AdsPeakMarketplaceLogoComponent, AdsPeakOrderManagementLogoComponent, AdsPhoneFieldComponent, AdsPilotPayLogoComponent, AdsPrimaryLogoComponent, AdsProgressBarComponent, AdsProgressIndicatorSpinnerComponent, AdsProgressSpinnerComponent, AdsProgressStepperComponent, AdsRadioButtonComponent, AdsScmsLogoComponent, AdsScmsSideNavBarComponent, AdsSearchDropdownComponent, AdsSearchInputComponent, AdsShipmentHorizontalStepperComponent, AdsSideNavBarComponent, AdsSideNavBarV2Component, AdsSlideToggleComponent, AdsSliderComponent, AdsSnackbarComponent, AdsSortMenuComponent, AdsSplashPageComponent, AdsStepperComponent, AdsSubNavigationButtonComponent, AdsTableComponent, AdsTabsComponent, AdsTagComponent, AdsTagContainerComponent, AdsTextareaComponent, AdsTimeFieldComponent, AdsTimepickerComponent, AdsVerticalSideNavigationStepperComponent, AdsWizardStepperComponent, AscentCardComponent, BadgeColor, Colors, CountryCode, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, HistoryAction, HorizontalStepStatus, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, SpinnerSize, StepStatus, TableBreakpoint, ViewportService, WindowService, WizardStepStatus, provideAdsUi };
4074
+ export type { ActiveFilter, ActiveSort, AdsMenuDropDownItem, AdsMenuDropDownPosition, AdsModalData, AdsNavItemV2, AdsNavSubItemV2, AdsUiConfig, Breadcrumb, ColumnFilterOption, ColumnSortFilterConfig, ColumnSortOption, ColumnVisibilityControl, Copyright, CustomHeaderParams, DROP_CALLBACK_INDEXES, DividerStyle, ErrorPageConfig, ErrorPageInfoColumn, FilterOptionsSortComparator, FilterValueFormatter, HistoryContextTag, HistoryEvent, HistoryGroup, HorizontalNavLink, HorizontalStep, IconButtonSize, Link, MainMenuItem, NavItem, NavMenuItem, NumericStep, ProgressStep, ScmsNavItem, ScmsNavSubItem, SearchDropdownComponentOptions, SearchDropdownDisplayControlValue, SearchDropdownStaticOption, SearchDropdownStaticOptionTemplateContext, ShipmentStep, Size, SnackBarData, SortComparator, SortMenuChangeEvent, SortType, Step, Tab, Tag, UNSUBSCRIBE_FUNCTIONS_COLLECTION, Variant, VerticalSideNavigationStep, WizardStep };