@ascentgl/ads-ui 21.128.1 → 21.129.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.
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Input, Component, NgModule, input, output, computed, ChangeDetectionStrategy, inject, model, signal, viewChild, effect, HostListener, ElementRef, ViewChild, Directive, EventEmitter, Output, InjectionToken, DestroyRef, HostBinding, Pipe, contentChild, TemplateRef, Inject, Optional, ChangeDetectorRef, Injectable, Renderer2, ViewChildren } from '@angular/core';
|
|
3
3
|
import * as i1 from '@ascentgl/ads-icons';
|
|
4
4
|
import { AdsIconModule, AdsIconRegistry } from '@ascentgl/ads-icons';
|
|
5
|
-
import { adsIconUserCircle, adsIconBell, adsIconMenuMoreInfo, adsIconChevronRight, adsIconCross, adsIconPlus, adsIconWarning, adsIconLock, adsIconPlusCircle, adsIconSearch, adsIconStarFull, adsIconUsers, adsIconSortDescending, adsIconCheckCircleFilled, adsIconVisibilityEye, adsIconVisibilityEyeNone, adsIconStatusProcessing, adsIconInformation, adsIconChevronDown, adsIconLoading, adsIconDatepicker, adsIconTimepicker, adsIconCheck, adsIconDropdownArrow, adsIconChevronUp, adsIconSortDownToUp, adsIconSortUpToDown, adsIconMenuFilters, adsIconSortingArrowUp, adsIconSortingArrowDown, adsIconTableFilter, adsIconDrag, adsIconFilter, adsIconArrowUpAndDown, adsIconListView, adsIconGridView, adsIconHamburgerMenu, adsIconChevronLeft, adsIconStatusNew } from '@ascentgl/ads-icons/icons';
|
|
5
|
+
import { adsIconUserCircle, adsIconBell, adsIconMenuMoreInfo, adsIconChevronRight, adsIconCross, adsIconPlus, adsIconWarning, adsIconLock, adsIconPlusCircle, adsIconSearch, adsIconStarFull, adsIconUsers, adsIconSortDescending, adsIconCheckCircleFilled, adsIconVisibilityEye, adsIconVisibilityEyeNone, adsIconStatusProcessing, adsIconInformation, adsIconChevronDown, adsIconLoading, adsIconDatepicker, adsIconTimepicker, adsIconCheck, adsIconDropdownArrow, adsIconChevronUp, adsIconSortDownToUp, adsIconSortUpToDown, adsIconMenuFilters, adsIconSortingArrowUp, adsIconSortingArrowDown, adsIconTableFilter, adsIconDrag, adsIconFilter, adsIconArrowUpAndDown, adsIconListView, adsIconGridView, adsIconHamburgerMenu, adsIconChevronLeft, adsIconStatusNew, adsIconPencil, adsIconFileAdd } from '@ascentgl/ads-icons/icons';
|
|
6
6
|
import * as i1$1 from '@angular/common';
|
|
7
7
|
import { CommonModule, NgOptimizedImage, NgTemplateOutlet, NgClass, NgStyle, DOCUMENT } from '@angular/common';
|
|
8
8
|
import * as i2 from '@angular/material/badge';
|
|
@@ -11573,6 +11573,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
11573
11573
|
}]
|
|
11574
11574
|
}] });
|
|
11575
11575
|
|
|
11576
|
+
var ShipmentHistoryAction;
|
|
11577
|
+
(function (ShipmentHistoryAction) {
|
|
11578
|
+
ShipmentHistoryAction["Created"] = "Created";
|
|
11579
|
+
ShipmentHistoryAction["Added"] = "Added";
|
|
11580
|
+
ShipmentHistoryAction["Edited"] = "Edited";
|
|
11581
|
+
ShipmentHistoryAction["Removed"] = "Removed";
|
|
11582
|
+
ShipmentHistoryAction["Cancelled"] = "Cancelled";
|
|
11583
|
+
})(ShipmentHistoryAction || (ShipmentHistoryAction = {}));
|
|
11584
|
+
|
|
11585
|
+
class AdsShipmentHistoryStepperComponent {
|
|
11586
|
+
/** @ignore */
|
|
11587
|
+
constructor(registry) {
|
|
11588
|
+
this.registry = registry;
|
|
11589
|
+
/** Grouped history events, each group representing a single day */
|
|
11590
|
+
this.groups = input.required(...(ngDevMode ? [{ debugName: "groups" }] : []));
|
|
11591
|
+
/** @ignore */
|
|
11592
|
+
this.ShipmentHistoryAction = ShipmentHistoryAction;
|
|
11593
|
+
/** @ignore */
|
|
11594
|
+
this.listItems = computed(() => {
|
|
11595
|
+
const groups = this.groups();
|
|
11596
|
+
const items = [];
|
|
11597
|
+
const totalEvents = groups.reduce((sum, g) => sum + g.events.length, 0);
|
|
11598
|
+
let eventCount = 0;
|
|
11599
|
+
for (const group of groups) {
|
|
11600
|
+
items.push({ kind: 'separator', date: group.date });
|
|
11601
|
+
for (const event of group.events) {
|
|
11602
|
+
eventCount++;
|
|
11603
|
+
items.push({ kind: 'event', event, isLast: eventCount === totalEvents });
|
|
11604
|
+
}
|
|
11605
|
+
}
|
|
11606
|
+
return items;
|
|
11607
|
+
}, ...(ngDevMode ? [{ debugName: "listItems" }] : []));
|
|
11608
|
+
this.registry.register([adsIconPencil, adsIconFileAdd, adsIconCross]);
|
|
11609
|
+
}
|
|
11610
|
+
/** @ignore */
|
|
11611
|
+
isSeparator(item) {
|
|
11612
|
+
return item.kind === 'separator';
|
|
11613
|
+
}
|
|
11614
|
+
/** @ignore */
|
|
11615
|
+
isEvent(item) {
|
|
11616
|
+
return item.kind === 'event';
|
|
11617
|
+
}
|
|
11618
|
+
/** @ignore */
|
|
11619
|
+
resolveTagColor(color) {
|
|
11620
|
+
return color ?? Colors.Secondary;
|
|
11621
|
+
}
|
|
11622
|
+
/** @ignore */
|
|
11623
|
+
resolveIconName(action) {
|
|
11624
|
+
switch (action) {
|
|
11625
|
+
case ShipmentHistoryAction.Created:
|
|
11626
|
+
case ShipmentHistoryAction.Added:
|
|
11627
|
+
return 'file_add';
|
|
11628
|
+
case ShipmentHistoryAction.Removed:
|
|
11629
|
+
case ShipmentHistoryAction.Cancelled:
|
|
11630
|
+
return 'cross';
|
|
11631
|
+
case ShipmentHistoryAction.Edited:
|
|
11632
|
+
default:
|
|
11633
|
+
return 'pencil';
|
|
11634
|
+
}
|
|
11635
|
+
}
|
|
11636
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: AdsShipmentHistoryStepperComponent, deps: [{ token: i1.AdsIconRegistry }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
11637
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.6", type: AdsShipmentHistoryStepperComponent, isStandalone: false, selector: "ads-shipment-history-stepper", inputs: { groups: { classPropertyName: "groups", publicName: "groups", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<div class=\"shipment-history-stepper\">\n @for (item of listItems(); track $index) {\n @if (isSeparator(item)) {\n <div class=\"date-separator\" role=\"separator\" [attr.aria-label]=\"item.date\">\n <span class=\"date-label\">{{ item.date }}</span>\n </div>\n }\n\n @if (isEvent(item)) {\n <div class=\"history-event\">\n <div class=\"event-indicator-column\" aria-hidden=\"true\">\n <div class=\"event-indicator\">\n <div class=\"indicator-bubble\">\n <ads-icon [name]=\"resolveIconName(item.event.action)\" theme=\"light\" stroke=\"light\" size=\"xxxs\" />\n </div>\n </div>\n @if (!item.isLast) {\n <div class=\"event-connector\"></div>\n }\n </div>\n\n <div class=\"event-content\">\n <div class=\"event-header\">\n <span class=\"event-action\">{{ item.event.action }}</span>\n @if (item.event.contextTag) {\n <ads-tag\n [id]=\"'history-tag-' + item.event.contextTag.label\"\n [tag]=\"item.event.contextTag.label\"\n [color]=\"resolveTagColor(item.event.contextTag.color)\"\n [textColor]=\"'white'\"\n [removable]=\"false\"\n />\n }\n @if (item.event.fieldName) {\n <span class=\"event-field-name\">{{ item.event.fieldName }}</span>\n }\n </div>\n\n @if (item.event.oldValue || item.event.newValue) {\n <div class=\"event-value\">\n @if (item.event.oldValue) {\n <span class=\"old-value\">{{ item.event.oldValue }}</span>\n @if (item.event.action !== ShipmentHistoryAction.Removed) {\n <span class=\"value-arrow\" aria-hidden=\"true\">\u2192</span>\n }\n }\n @if (item.event.newValue) {\n <span class=\"new-value\">{{ item.event.newValue }}</span>\n }\n </div>\n }\n\n <div class=\"event-meta\">\n <span class=\"meta-time\">{{ item.event.time }}</span>\n @if (item.event.user) {\n <div class=\"meta-separator\" aria-hidden=\"true\"></div>\n <span class=\"meta-user\">{{ item.event.user }}</span>\n }\n </div>\n </div>\n </div>\n }\n }\n</div>\n", styles: [".shipment-history-stepper{display:flex;flex-direction:column;width:100%}.date-separator{display:flex;align-items:center;gap:16px;padding:8px 0;color:var(--color-medium);font-size:14px;line-height:18px}.date-separator:before,.date-separator:after{content:\"\";flex:1;height:1px;background-color:var(--color-muted)}.history-event{display:flex;gap:8px;align-items:stretch;min-width:0}.event-indicator-column{display:flex;flex-direction:column;align-items:center;flex-shrink:0;width:20px}.event-indicator{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:22px;height:22px}.indicator-bubble{display:flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;border:3px solid var(--color-light);background-color:var(--color-white);box-sizing:border-box;flex-shrink:0}.indicator-bubble ::ng-deep ads-icon{width:10px!important;height:10px!important}.indicator-bubble ::ng-deep ads-icon svg{width:10px!important;height:10px!important}.event-connector{flex:1;width:4px;background-color:var(--color-light);min-height:86px;margin:4px 0;border-radius:80px}.event-content{display:flex;flex-direction:column;gap:8px;min-width:0;flex:1}.event-header{display:flex;align-items:center;flex-wrap:wrap;gap:8px}.event-action{color:var(--color-dark);font-size:16px;font-weight:600;line-height:21px}.event-field-name{color:var(--color-dark);font-size:16px;font-weight:400;line-height:21px}.event-value{display:flex;align-items:center;flex-wrap:wrap;gap:4px;font-size:16px;line-height:21px}.old-value{color:var(--color-medium);text-decoration:line-through}.value-arrow{color:var(--color-medium)}.new-value{color:var(--color-dark)}.event-meta{display:flex;align-items:center;gap:6px;color:var(--color-medium);font-size:14px;line-height:18px}.meta-separator{width:3px;height:3px;border-radius:50%;background-color:var(--color-medium);flex-shrink:0}\n"], dependencies: [{ kind: "component", type: i1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }, { kind: "component", type: AdsTagComponent, selector: "ads-tag", inputs: ["color", "borderColor", "borderWidth", "width", "id", "removable", "textColor", "clickable", "tag"], outputs: ["remove", "selected"] }] }); }
|
|
11638
|
+
}
|
|
11639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: AdsShipmentHistoryStepperComponent, decorators: [{
|
|
11640
|
+
type: Component,
|
|
11641
|
+
args: [{ selector: 'ads-shipment-history-stepper', standalone: false, template: "<div class=\"shipment-history-stepper\">\n @for (item of listItems(); track $index) {\n @if (isSeparator(item)) {\n <div class=\"date-separator\" role=\"separator\" [attr.aria-label]=\"item.date\">\n <span class=\"date-label\">{{ item.date }}</span>\n </div>\n }\n\n @if (isEvent(item)) {\n <div class=\"history-event\">\n <div class=\"event-indicator-column\" aria-hidden=\"true\">\n <div class=\"event-indicator\">\n <div class=\"indicator-bubble\">\n <ads-icon [name]=\"resolveIconName(item.event.action)\" theme=\"light\" stroke=\"light\" size=\"xxxs\" />\n </div>\n </div>\n @if (!item.isLast) {\n <div class=\"event-connector\"></div>\n }\n </div>\n\n <div class=\"event-content\">\n <div class=\"event-header\">\n <span class=\"event-action\">{{ item.event.action }}</span>\n @if (item.event.contextTag) {\n <ads-tag\n [id]=\"'history-tag-' + item.event.contextTag.label\"\n [tag]=\"item.event.contextTag.label\"\n [color]=\"resolveTagColor(item.event.contextTag.color)\"\n [textColor]=\"'white'\"\n [removable]=\"false\"\n />\n }\n @if (item.event.fieldName) {\n <span class=\"event-field-name\">{{ item.event.fieldName }}</span>\n }\n </div>\n\n @if (item.event.oldValue || item.event.newValue) {\n <div class=\"event-value\">\n @if (item.event.oldValue) {\n <span class=\"old-value\">{{ item.event.oldValue }}</span>\n @if (item.event.action !== ShipmentHistoryAction.Removed) {\n <span class=\"value-arrow\" aria-hidden=\"true\">\u2192</span>\n }\n }\n @if (item.event.newValue) {\n <span class=\"new-value\">{{ item.event.newValue }}</span>\n }\n </div>\n }\n\n <div class=\"event-meta\">\n <span class=\"meta-time\">{{ item.event.time }}</span>\n @if (item.event.user) {\n <div class=\"meta-separator\" aria-hidden=\"true\"></div>\n <span class=\"meta-user\">{{ item.event.user }}</span>\n }\n </div>\n </div>\n </div>\n }\n }\n</div>\n", styles: [".shipment-history-stepper{display:flex;flex-direction:column;width:100%}.date-separator{display:flex;align-items:center;gap:16px;padding:8px 0;color:var(--color-medium);font-size:14px;line-height:18px}.date-separator:before,.date-separator:after{content:\"\";flex:1;height:1px;background-color:var(--color-muted)}.history-event{display:flex;gap:8px;align-items:stretch;min-width:0}.event-indicator-column{display:flex;flex-direction:column;align-items:center;flex-shrink:0;width:20px}.event-indicator{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:22px;height:22px}.indicator-bubble{display:flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;border:3px solid var(--color-light);background-color:var(--color-white);box-sizing:border-box;flex-shrink:0}.indicator-bubble ::ng-deep ads-icon{width:10px!important;height:10px!important}.indicator-bubble ::ng-deep ads-icon svg{width:10px!important;height:10px!important}.event-connector{flex:1;width:4px;background-color:var(--color-light);min-height:86px;margin:4px 0;border-radius:80px}.event-content{display:flex;flex-direction:column;gap:8px;min-width:0;flex:1}.event-header{display:flex;align-items:center;flex-wrap:wrap;gap:8px}.event-action{color:var(--color-dark);font-size:16px;font-weight:600;line-height:21px}.event-field-name{color:var(--color-dark);font-size:16px;font-weight:400;line-height:21px}.event-value{display:flex;align-items:center;flex-wrap:wrap;gap:4px;font-size:16px;line-height:21px}.old-value{color:var(--color-medium);text-decoration:line-through}.value-arrow{color:var(--color-medium)}.new-value{color:var(--color-dark)}.event-meta{display:flex;align-items:center;gap:6px;color:var(--color-medium);font-size:14px;line-height:18px}.meta-separator{width:3px;height:3px;border-radius:50%;background-color:var(--color-medium);flex-shrink:0}\n"] }]
|
|
11642
|
+
}], ctorParameters: () => [{ type: i1.AdsIconRegistry }], propDecorators: { groups: [{ type: i0.Input, args: [{ isSignal: true, alias: "groups", required: true }] }] } });
|
|
11643
|
+
|
|
11644
|
+
class AdsShipmentHistoryStepperModule {
|
|
11645
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: AdsShipmentHistoryStepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
11646
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: AdsShipmentHistoryStepperModule, declarations: [AdsShipmentHistoryStepperComponent], imports: [CommonModule, AdsIconModule, AdsTagModule], exports: [AdsShipmentHistoryStepperComponent] }); }
|
|
11647
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: AdsShipmentHistoryStepperModule, imports: [CommonModule, AdsIconModule, AdsTagModule] }); }
|
|
11648
|
+
}
|
|
11649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: AdsShipmentHistoryStepperModule, decorators: [{
|
|
11650
|
+
type: NgModule,
|
|
11651
|
+
args: [{
|
|
11652
|
+
declarations: [AdsShipmentHistoryStepperComponent],
|
|
11653
|
+
imports: [CommonModule, AdsIconModule, AdsTagModule],
|
|
11654
|
+
exports: [AdsShipmentHistoryStepperComponent],
|
|
11655
|
+
}]
|
|
11656
|
+
}] });
|
|
11657
|
+
|
|
11576
11658
|
class AdsHorizontalNavBarComponent {
|
|
11577
11659
|
/** @ignore */
|
|
11578
11660
|
constructor(router) {
|
|
@@ -12738,5 +12820,5 @@ function provideAdsUi(config) {
|
|
|
12738
12820
|
* Generated bundle index. Do not edit.
|
|
12739
12821
|
*/
|
|
12740
12822
|
|
|
12741
|
-
export { AdsArchitectureLogoComponent, AdsArchitectureLogoModule, AdsAscentLogoComponent, AdsAscentLogoModule, AdsAvatarComponent, AdsAvatarModule, AdsBaselineWidgetComponent, AdsBaselineWidgetModule, AdsBreadcrumbComponent, AdsBreadcrumbModule, AdsBubbleComponent, AdsBubbleModule, AdsButtonComponent, AdsButtonContainerComponent, AdsButtonContainerModule, AdsButtonModule, AdsCardComponent, AdsCardModule, AdsCheckboxComponent, AdsCheckboxModule, AdsChipComponent, AdsChipModule, AdsColumnSortFilterMenuComponent, AdsColumnSortFilterMenuModule, AdsCreateTagComponent, AdsCreateTagModule, AdsCurrencyFieldComponent, AdsCurrencyFieldModule, AdsCustomHeaderComponent, AdsCustomHeaderModule, AdsCustomerPortalLogoComponent, AdsCustomerPortalLogoModule, AdsCxaLogoComponent, AdsCxaLogoModule, AdsDatepickerComponent, AdsDatepickerModule, AdsDatetimepickerComponent, AdsDatetimepickerModule, AdsDividerModule, AdsDragAndDropListComponent, AdsDragAndDropListModule, AdsDropdownComponent, AdsDropdownModule, AdsErrorPageCodeComponent, AdsErrorPageCodeModule, AdsErrorPageComponent, AdsErrorPageModule, AdsExpansionPanelComponent, AdsExpansionPanelModule, AdsFilterMenuComponent, AdsFilterMenuModule, AdsFooterComponent, AdsFooterContainerComponent, AdsFooterContainerModule, AdsFooterModule, AdsGenericLogoComponent, AdsGenericLogoModule, AdsHeaderComponent, AdsHeaderContainerComponent, AdsHeaderContainerModule, AdsHeaderModule, AdsHorizontalNavBarComponent, AdsHorizontalNavBarModule, AdsHorizontalStepperComponent, AdsHorizontalStepperModule, AdsIconButtonComponent, AdsIconButtonModule, AdsIconHoverComponent, AdsIconHoverModule, AdsInputComponent, AdsInputDropdownComponent, AdsInputDropdownModule, AdsInputModule, AdsInternationalPhoneFieldComponent, AdsInternationalPhoneFieldModule, AdsLinkButtonComponent, AdsLinkButtonModule, AdsMainMenuComponent, AdsMainMenuModule, AdsModalComponent, AdsModalModule, AdsMultiSelectDropdownComponent, AdsMultiSelectDropdownModule, AdsNavMenuComponent, AdsNavMenuModule, AdsNavigationCollapseHandleComponent, AdsNavigationCollapseHandleModule, AdsNavigationComponent, AdsNavigationHeaderComponent, AdsNavigationHeaderModule, AdsNavigationItemComponent, AdsNavigationItemModule, AdsNavigationItemsContainerComponent, AdsNavigationItemsContainerModule, AdsNavigationModule, AdsNumericBadgeComponent, AdsNumericBadgeModule, AdsNumericStepperComponent, AdsNumericStepperModule, AdsOrgDisplayTextComponent, AdsOrgDisplayTextModule, AdsPeakEssentialsLogoComponent, AdsPeakEssentialsLogoModule, AdsPeakMarketplaceLogoComponent, AdsPeakMarketplaceLogoModule, AdsPeakOrderManagementLogoComponent, AdsPeakOrderManagementLogoModule, AdsPhoneFieldComponent, AdsPhoneFieldModule, AdsPilotPayLogoComponent, AdsPilotPayLogoModule, AdsPrimaryLogoComponent, AdsPrimaryLogoModule, AdsProgressBarComponent, AdsProgressBarModule, AdsProgressIndicatorSpinnerComponent, AdsProgressIndicatorSpinnerModule, AdsProgressSpinnerComponent, AdsProgressSpinnerModule, AdsProgressStepperComponent, AdsProgressStepperModule, AdsRadioButtonComponent, AdsRadioButtonModule, AdsScmsLogoComponent, AdsScmsLogoModule, AdsScmsSideNavBarComponent, AdsScmsSideNavBarModule, AdsSearchDropdownComponent, AdsSearchDropdownModule, AdsSearchInputComponent, AdsSearchInputModule, AdsShellLayoutModule, AdsShipmentHorizontalStepperComponent, AdsShipmentHorizontalStepperModule, AdsSideNavBarComponent, AdsSideNavBarModule, AdsSideNavBarV2Component, AdsSideNavBarV2Module, AdsSlideToggle, AdsSlideToggleComponent, AdsSliderComponent, AdsSliderModule, AdsSnackbarComponent, AdsSnackbarModule, AdsSortMenuComponent, AdsSortMenuModule, AdsSplashPageComponent, AdsSplashPageModule, AdsStepperComponent, AdsStepperModule, AdsSubNavigationButtonComponent, AdsSubNavigationButtonModule, AdsTableComponent, AdsTableModule, AdsTabsComponent, AdsTabsModule, AdsTagComponent, AdsTagContainerComponent, AdsTagContainerModule, AdsTagModule, AdsTextareaComponent, AdsTextareaModule, AdsTimeFieldComponent, AdsTimeFieldModule, AdsTimepickerComponent, AdsTimepickerModule, AdsVerticalSideNavigationStepperComponent, AdsVerticalSideNavigationStepperModule, AdsWizardStepperComponent, AdsWizardStepperModule, AscentCardComponent, AscentCardModule, BadgeColor, Colors, CountryCode, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, HorizontalStepStatus, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, SpinnerSize, StepStatus, TableBreakpoint, ViewportService, WindowService, WizardStepStatus, provideAdsUi };
|
|
12823
|
+
export { AdsArchitectureLogoComponent, AdsArchitectureLogoModule, AdsAscentLogoComponent, AdsAscentLogoModule, AdsAvatarComponent, AdsAvatarModule, AdsBaselineWidgetComponent, AdsBaselineWidgetModule, AdsBreadcrumbComponent, AdsBreadcrumbModule, AdsBubbleComponent, AdsBubbleModule, AdsButtonComponent, AdsButtonContainerComponent, AdsButtonContainerModule, AdsButtonModule, AdsCardComponent, AdsCardModule, AdsCheckboxComponent, AdsCheckboxModule, AdsChipComponent, AdsChipModule, AdsColumnSortFilterMenuComponent, AdsColumnSortFilterMenuModule, AdsCreateTagComponent, AdsCreateTagModule, AdsCurrencyFieldComponent, AdsCurrencyFieldModule, AdsCustomHeaderComponent, AdsCustomHeaderModule, AdsCustomerPortalLogoComponent, AdsCustomerPortalLogoModule, AdsCxaLogoComponent, AdsCxaLogoModule, AdsDatepickerComponent, AdsDatepickerModule, AdsDatetimepickerComponent, AdsDatetimepickerModule, AdsDividerModule, AdsDragAndDropListComponent, AdsDragAndDropListModule, AdsDropdownComponent, AdsDropdownModule, AdsErrorPageCodeComponent, AdsErrorPageCodeModule, AdsErrorPageComponent, AdsErrorPageModule, AdsExpansionPanelComponent, AdsExpansionPanelModule, AdsFilterMenuComponent, AdsFilterMenuModule, AdsFooterComponent, AdsFooterContainerComponent, AdsFooterContainerModule, AdsFooterModule, AdsGenericLogoComponent, AdsGenericLogoModule, AdsHeaderComponent, AdsHeaderContainerComponent, AdsHeaderContainerModule, AdsHeaderModule, AdsHorizontalNavBarComponent, AdsHorizontalNavBarModule, AdsHorizontalStepperComponent, AdsHorizontalStepperModule, AdsIconButtonComponent, AdsIconButtonModule, AdsIconHoverComponent, AdsIconHoverModule, AdsInputComponent, AdsInputDropdownComponent, AdsInputDropdownModule, AdsInputModule, AdsInternationalPhoneFieldComponent, AdsInternationalPhoneFieldModule, AdsLinkButtonComponent, AdsLinkButtonModule, AdsMainMenuComponent, AdsMainMenuModule, AdsModalComponent, AdsModalModule, AdsMultiSelectDropdownComponent, AdsMultiSelectDropdownModule, AdsNavMenuComponent, AdsNavMenuModule, AdsNavigationCollapseHandleComponent, AdsNavigationCollapseHandleModule, AdsNavigationComponent, AdsNavigationHeaderComponent, AdsNavigationHeaderModule, AdsNavigationItemComponent, AdsNavigationItemModule, AdsNavigationItemsContainerComponent, AdsNavigationItemsContainerModule, AdsNavigationModule, AdsNumericBadgeComponent, AdsNumericBadgeModule, AdsNumericStepperComponent, AdsNumericStepperModule, AdsOrgDisplayTextComponent, AdsOrgDisplayTextModule, AdsPeakEssentialsLogoComponent, AdsPeakEssentialsLogoModule, AdsPeakMarketplaceLogoComponent, AdsPeakMarketplaceLogoModule, AdsPeakOrderManagementLogoComponent, AdsPeakOrderManagementLogoModule, AdsPhoneFieldComponent, AdsPhoneFieldModule, AdsPilotPayLogoComponent, AdsPilotPayLogoModule, AdsPrimaryLogoComponent, AdsPrimaryLogoModule, AdsProgressBarComponent, AdsProgressBarModule, AdsProgressIndicatorSpinnerComponent, AdsProgressIndicatorSpinnerModule, AdsProgressSpinnerComponent, AdsProgressSpinnerModule, AdsProgressStepperComponent, AdsProgressStepperModule, AdsRadioButtonComponent, AdsRadioButtonModule, AdsScmsLogoComponent, AdsScmsLogoModule, AdsScmsSideNavBarComponent, AdsScmsSideNavBarModule, AdsSearchDropdownComponent, AdsSearchDropdownModule, AdsSearchInputComponent, AdsSearchInputModule, AdsShellLayoutModule, AdsShipmentHistoryStepperComponent, AdsShipmentHistoryStepperModule, AdsShipmentHorizontalStepperComponent, AdsShipmentHorizontalStepperModule, AdsSideNavBarComponent, AdsSideNavBarModule, AdsSideNavBarV2Component, AdsSideNavBarV2Module, AdsSlideToggle, AdsSlideToggleComponent, AdsSliderComponent, AdsSliderModule, AdsSnackbarComponent, AdsSnackbarModule, AdsSortMenuComponent, AdsSortMenuModule, AdsSplashPageComponent, AdsSplashPageModule, AdsStepperComponent, AdsStepperModule, AdsSubNavigationButtonComponent, AdsSubNavigationButtonModule, AdsTableComponent, AdsTableModule, AdsTabsComponent, AdsTabsModule, AdsTagComponent, AdsTagContainerComponent, AdsTagContainerModule, AdsTagModule, AdsTextareaComponent, AdsTextareaModule, AdsTimeFieldComponent, AdsTimeFieldModule, AdsTimepickerComponent, AdsTimepickerModule, AdsVerticalSideNavigationStepperComponent, AdsVerticalSideNavigationStepperModule, AdsWizardStepperComponent, AdsWizardStepperModule, AscentCardComponent, AscentCardModule, BadgeColor, Colors, CountryCode, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, HorizontalStepStatus, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, ShipmentHistoryAction, SpinnerSize, StepStatus, TableBreakpoint, ViewportService, WindowService, WizardStepStatus, provideAdsUi };
|
|
12742
12824
|
//# sourceMappingURL=ascentgl-ads-ui.mjs.map
|