@ascentgl/ads-ui 22.13.0 → 22.14.1
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Input, ChangeDetectionStrategy, Component, input, output, computed, effect, inject, model, signal, viewChild, HostListener, ElementRef, ViewChild, Directive, EventEmitter, Output, InjectionToken, DestroyRef, HostBinding, Pipe, contentChild, TemplateRef, Inject, Optional, Injectable, ChangeDetectorRef, Renderer2, viewChildren, booleanAttribute, ViewChildren } from '@angular/core';
|
|
2
|
+
import { Input, ChangeDetectionStrategy, Component, input, output, computed, effect, inject, model, signal, viewChild, HostListener, ElementRef, ViewChild, Directive, EventEmitter, Output, InjectionToken, DestroyRef, HostBinding, Pipe, contentChild, TemplateRef, Inject, Optional, Injectable, ChangeDetectorRef, Renderer2, viewChildren, booleanAttribute, ViewChildren, ContentChildren } from '@angular/core';
|
|
3
3
|
import * as i1$1 from '@angular/common';
|
|
4
4
|
import { CommonModule, NgTemplateOutlet, NgStyle, DOCUMENT, NgClass } from '@angular/common';
|
|
5
5
|
import * as i1 from '@ascentgl/ads-icons';
|
|
@@ -5752,8 +5752,6 @@ class AdsDatepickerComponent extends AdsDatetimepickerComponent {
|
|
|
5752
5752
|
this.inputModifiedByKeyHandler = false;
|
|
5753
5753
|
/** @ignore */
|
|
5754
5754
|
this.elementRef = inject(ElementRef);
|
|
5755
|
-
/** @ignore */
|
|
5756
|
-
this.overlayContainerRef = inject(OverlayContainer);
|
|
5757
5755
|
}
|
|
5758
5756
|
/** @ignore */
|
|
5759
5757
|
ngOnInit() {
|
|
@@ -5791,6 +5789,13 @@ class AdsDatepickerComponent extends AdsDatetimepickerComponent {
|
|
|
5791
5789
|
* Disabling pointer events on the backdrop lets the browser handle scrolling
|
|
5792
5790
|
* natively (preserving momentum / inertia). A document-level pointerdown
|
|
5793
5791
|
* listener replaces the lost backdrop click-to-close behaviour.
|
|
5792
|
+
*
|
|
5793
|
+
* Everything here is scoped to *this* picker's own overlay via {@link getPopupRef}. Reading the
|
|
5794
|
+
* shared `OverlayContainer` instead returns whichever overlay was created first, so a picker used
|
|
5795
|
+
* inside a dialog silently operated on the dialog's backdrop and pane: the dialog lost its
|
|
5796
|
+
* click-outside behavior, and — because a calendar cell is not inside the dialog's pane — the
|
|
5797
|
+
* pointerdown listener treated every click on the calendar as "outside" and closed the picker
|
|
5798
|
+
* before it could select a date.
|
|
5794
5799
|
*/
|
|
5795
5800
|
onOpened() {
|
|
5796
5801
|
super.onOpened();
|
|
@@ -5806,8 +5811,7 @@ class AdsDatepickerComponent extends AdsDatetimepickerComponent {
|
|
|
5806
5811
|
setupScrollPassthrough() {
|
|
5807
5812
|
this.scrollPassthroughCleanup?.();
|
|
5808
5813
|
this.scrollPassthroughCleanup = undefined;
|
|
5809
|
-
const
|
|
5810
|
-
const backdrop = container.querySelector('.cdk-overlay-backdrop');
|
|
5814
|
+
const backdrop = this.getPopupRef()?.backdropElement ?? null;
|
|
5811
5815
|
// Disable pointer events on the backdrop so that wheel / touch events
|
|
5812
5816
|
// reach the scroll container natively. This preserves momentum scrolling
|
|
5813
5817
|
// and avoids the scroll-stop when closeOnOutOfView closes the picker mid-scroll.
|
|
@@ -5823,7 +5827,8 @@ class AdsDatepickerComponent extends AdsDatetimepickerComponent {
|
|
|
5823
5827
|
const onPointerDown = (event) => {
|
|
5824
5828
|
if (!this.picker?.opened)
|
|
5825
5829
|
return;
|
|
5826
|
-
|
|
5830
|
+
// Re-read each time: the picker may have been reopened on a fresh overlay.
|
|
5831
|
+
const overlayPane = this.getPopupRef()?.overlayElement;
|
|
5827
5832
|
const clickedInside = overlayPane?.contains(event.target) ||
|
|
5828
5833
|
this.elementRef.nativeElement.contains(event.target);
|
|
5829
5834
|
if (!clickedInside) {
|
|
@@ -5843,14 +5848,23 @@ class AdsDatepickerComponent extends AdsDatetimepickerComponent {
|
|
|
5843
5848
|
const scrollTarget = this.findScrollableAncestor(this.elementRef.nativeElement);
|
|
5844
5849
|
if (scrollTarget) {
|
|
5845
5850
|
const onScroll = () => {
|
|
5846
|
-
|
|
5847
|
-
this.picker?._popupRef?.updatePosition();
|
|
5851
|
+
this.getPopupRef()?.updatePosition();
|
|
5848
5852
|
};
|
|
5849
5853
|
scrollTarget.addEventListener('scroll', onScroll, { passive: true });
|
|
5850
5854
|
cleanupFns.push(() => scrollTarget.removeEventListener('scroll', onScroll));
|
|
5851
5855
|
}
|
|
5852
5856
|
this.scrollPassthroughCleanup = () => cleanupFns.forEach((fn) => fn());
|
|
5853
5857
|
}
|
|
5858
|
+
/**
|
|
5859
|
+
* @ignore - This picker's own calendar overlay, or undefined while it is closed.
|
|
5860
|
+
* `_popupRef` is private in `MatDatetimepickerComponent`, hence the cast; it is the only handle on
|
|
5861
|
+
* the overlay this picker created, and the only safe one — the `OverlayContainer` is shared by
|
|
5862
|
+
* every overlay on the page.
|
|
5863
|
+
*/
|
|
5864
|
+
getPopupRef() {
|
|
5865
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
5866
|
+
return this.picker?._popupRef;
|
|
5867
|
+
}
|
|
5854
5868
|
/** @ignore - Walk up the DOM to find the first ancestor with overflow-y: auto|scroll */
|
|
5855
5869
|
findScrollableAncestor(node) {
|
|
5856
5870
|
let current = node.parentElement;
|
|
@@ -6524,11 +6538,11 @@ class AdsSnackbarComponent {
|
|
|
6524
6538
|
}
|
|
6525
6539
|
}
|
|
6526
6540
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: AdsSnackbarComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6527
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: AdsSnackbarComponent, isStandalone: true, selector: "ads-snackbar", host: { listeners: { "click": "onSnackbarClick()" } }, ngImport: i0, template: "<div class=\"container\" (click)=\"onSnackbarClick()\" [id]=\"id\">\n <div class=\"snackbar-container\">\n @if (icon; as iconConfig) {\n <ads-icon\n class=\"snackbar-icon\"\n [class.rotated]=\"iconConfig.rotated\"\n [name]=\"iconConfig.name\"\n [color]=\"iconConfig.color\"\n [stroke]=\"iconConfig.stroke\"\n size=\"sm\"\n />\n }\n <span class=\"snackbar-text\" [innerHTML]=\"data.message\" [id]=\"id + '-details'\"></span>\n </div>\n @if (!data.hideActionButton) {\n <ads-button\n [id]=\"id + '-button'\"\n [variant]=\"buttonPanelClass\"\n (click)=\"data.onButtonClick ? data.onButtonClick() : snackBarRef.dismissWithAction(); $event.stopPropagation()\"\n >\n {{ data.buttonCaption ?? defaultButtonCaption }}\n </ads-button>\n }\n @if (showProgressBar) {\n <div class=\"snackbar-progress\" [style.animation-duration.ms]=\"autoCloseDuration\"></div>\n }\n</div>\n", styles: ["
|
|
6541
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: AdsSnackbarComponent, isStandalone: true, selector: "ads-snackbar", host: { listeners: { "click": "onSnackbarClick()" } }, ngImport: i0, template: "<div class=\"container\" (click)=\"onSnackbarClick()\" [id]=\"id\">\n <div class=\"snackbar-container\">\n @if (icon; as iconConfig) {\n <ads-icon\n class=\"snackbar-icon\"\n [class.rotated]=\"iconConfig.rotated\"\n [name]=\"iconConfig.name\"\n [color]=\"iconConfig.color\"\n [stroke]=\"iconConfig.stroke\"\n size=\"sm\"\n />\n }\n <span class=\"snackbar-text\" [innerHTML]=\"data.message\" [id]=\"id + '-details'\"></span>\n </div>\n @if (!data.hideActionButton) {\n <ads-button\n [id]=\"id + '-button'\"\n [variant]=\"buttonPanelClass\"\n (click)=\"data.onButtonClick ? data.onButtonClick() : snackBarRef.dismissWithAction(); $event.stopPropagation()\"\n >\n {{ data.buttonCaption ?? defaultButtonCaption }}\n </ads-button>\n }\n @if (showProgressBar) {\n <div class=\"snackbar-progress\" [style.animation-duration.ms]=\"autoCloseDuration\"></div>\n }\n</div>\n", styles: ["@charset \"UTF-8\";.container{display:flex;justify-content:space-between;align-items:center;gap:24px;width:80vw}.container .snackbar-container{display:flex;align-items:center;gap:16px}.container .snackbar-container .snackbar-icon{flex-shrink:0;display:inline-flex;align-items:center}.container .snackbar-container .snackbar-icon.rotated{transform:rotate(180deg)}.container .snackbar-container .snackbar-text{color:var(--color-white);font-size:16px;font-weight:400;line-height:21px}ads-button{white-space:nowrap}::ng-deep .mdc-snackbar.mat-mdc-snack-bar-container.warning{--mat-snack-bar-container-color: var(--color-alert, #ff5e00)}::ng-deep .mdc-snackbar.mat-mdc-snack-bar-container.warning>.button{color:var(--color-error, #bb1e1e)}.snackbar-progress{position:absolute;left:0;bottom:0;width:100%;height:8px;background-color:#ced6e880;border-bottom-left-radius:var(--mdc-snackbar-container-shape, 4px);border-bottom-right-radius:var(--mdc-snackbar-container-shape, 4px);animation-name:ads-snackbar-countdown;animation-timing-function:linear;animation-fill-mode:forwards}@keyframes ads-snackbar-countdown{0%{width:100%}to{width:0}}@media(width<=500px){.container{width:100%}}\n"], dependencies: [{ kind: "component", type: AdsButtonComponent, selector: "ads-button", inputs: ["id", "variant", "disabled", "size", "type", "fullWidth"] }, { kind: "ngmodule", type: MatSnackBarModule }, { kind: "ngmodule", type: CommonModule }, { kind: "component", type: AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }] }); }
|
|
6528
6542
|
}
|
|
6529
6543
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: AdsSnackbarComponent, decorators: [{
|
|
6530
6544
|
type: Component,
|
|
6531
|
-
args: [{ selector: 'ads-snackbar', imports: [AdsButtonComponent, MatSnackBarModule, CommonModule, AdsIconComponent], template: "<div class=\"container\" (click)=\"onSnackbarClick()\" [id]=\"id\">\n <div class=\"snackbar-container\">\n @if (icon; as iconConfig) {\n <ads-icon\n class=\"snackbar-icon\"\n [class.rotated]=\"iconConfig.rotated\"\n [name]=\"iconConfig.name\"\n [color]=\"iconConfig.color\"\n [stroke]=\"iconConfig.stroke\"\n size=\"sm\"\n />\n }\n <span class=\"snackbar-text\" [innerHTML]=\"data.message\" [id]=\"id + '-details'\"></span>\n </div>\n @if (!data.hideActionButton) {\n <ads-button\n [id]=\"id + '-button'\"\n [variant]=\"buttonPanelClass\"\n (click)=\"data.onButtonClick ? data.onButtonClick() : snackBarRef.dismissWithAction(); $event.stopPropagation()\"\n >\n {{ data.buttonCaption ?? defaultButtonCaption }}\n </ads-button>\n }\n @if (showProgressBar) {\n <div class=\"snackbar-progress\" [style.animation-duration.ms]=\"autoCloseDuration\"></div>\n }\n</div>\n", styles: ["
|
|
6545
|
+
args: [{ selector: 'ads-snackbar', imports: [AdsButtonComponent, MatSnackBarModule, CommonModule, AdsIconComponent], template: "<div class=\"container\" (click)=\"onSnackbarClick()\" [id]=\"id\">\n <div class=\"snackbar-container\">\n @if (icon; as iconConfig) {\n <ads-icon\n class=\"snackbar-icon\"\n [class.rotated]=\"iconConfig.rotated\"\n [name]=\"iconConfig.name\"\n [color]=\"iconConfig.color\"\n [stroke]=\"iconConfig.stroke\"\n size=\"sm\"\n />\n }\n <span class=\"snackbar-text\" [innerHTML]=\"data.message\" [id]=\"id + '-details'\"></span>\n </div>\n @if (!data.hideActionButton) {\n <ads-button\n [id]=\"id + '-button'\"\n [variant]=\"buttonPanelClass\"\n (click)=\"data.onButtonClick ? data.onButtonClick() : snackBarRef.dismissWithAction(); $event.stopPropagation()\"\n >\n {{ data.buttonCaption ?? defaultButtonCaption }}\n </ads-button>\n }\n @if (showProgressBar) {\n <div class=\"snackbar-progress\" [style.animation-duration.ms]=\"autoCloseDuration\"></div>\n }\n</div>\n", styles: ["@charset \"UTF-8\";.container{display:flex;justify-content:space-between;align-items:center;gap:24px;width:80vw}.container .snackbar-container{display:flex;align-items:center;gap:16px}.container .snackbar-container .snackbar-icon{flex-shrink:0;display:inline-flex;align-items:center}.container .snackbar-container .snackbar-icon.rotated{transform:rotate(180deg)}.container .snackbar-container .snackbar-text{color:var(--color-white);font-size:16px;font-weight:400;line-height:21px}ads-button{white-space:nowrap}::ng-deep .mdc-snackbar.mat-mdc-snack-bar-container.warning{--mat-snack-bar-container-color: var(--color-alert, #ff5e00)}::ng-deep .mdc-snackbar.mat-mdc-snack-bar-container.warning>.button{color:var(--color-error, #bb1e1e)}.snackbar-progress{position:absolute;left:0;bottom:0;width:100%;height:8px;background-color:#ced6e880;border-bottom-left-radius:var(--mdc-snackbar-container-shape, 4px);border-bottom-right-radius:var(--mdc-snackbar-container-shape, 4px);animation-name:ads-snackbar-countdown;animation-timing-function:linear;animation-fill-mode:forwards}@keyframes ads-snackbar-countdown{0%{width:100%}to{width:0}}@media(width<=500px){.container{width:100%}}\n"] }]
|
|
6532
6546
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { onSnackbarClick: [{
|
|
6533
6547
|
type: HostListener,
|
|
6534
6548
|
args: ['click']
|
|
@@ -11563,6 +11577,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImpor
|
|
|
11563
11577
|
type: Output
|
|
11564
11578
|
}] } });
|
|
11565
11579
|
|
|
11580
|
+
class AdsVerticalStepComponent {
|
|
11581
|
+
constructor(registry) {
|
|
11582
|
+
this.registry = registry;
|
|
11583
|
+
/** Status of this step */
|
|
11584
|
+
this.status = VerticalStepStatus.Planned;
|
|
11585
|
+
/** @internal Set by the parent AdsVerticalStepperComponent */
|
|
11586
|
+
this.isLast = false;
|
|
11587
|
+
this.VerticalStepStatus = VerticalStepStatus;
|
|
11588
|
+
this.registry.register([adsIconCheckCircleFilled, adsIconWarning]);
|
|
11589
|
+
}
|
|
11590
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: AdsVerticalStepComponent, deps: [{ token: i1.AdsIconRegistry }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
11591
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: AdsVerticalStepComponent, isStandalone: true, selector: "ads-vertical-step", inputs: { status: "status" }, host: { attributes: { "role": "listitem" }, classAttribute: "stepper-item" }, ngImport: i0, template: "<div class=\"stepper-indicator-column\">\n <div class=\"step-indicator\">\n @if (status === VerticalStepStatus.Completed) {\n <ads-icon name=\"check_circle_filled\" theme=\"success\" stroke=\"success\" size=\"xxs_16\"/>\n } @else if (status === VerticalStepStatus.Warning) {\n <ads-icon name=\"warning\" size=\"xxs_16\" />\n } @else if (status === VerticalStepStatus.InProgress) {\n <div class=\"step-indicator__circle in-progress\"></div>\n } @else if (status === VerticalStepStatus.Planned) {\n <div class=\"step-indicator__circle\"></div>\n }\n </div>\n @if (!isLast) {\n <div class=\"stepper-connector\"></div>\n }\n</div>\n<div class=\"stepper-content-wrapper\">\n <ng-content></ng-content>\n</div>\n\n", styles: [":host{position:relative;display:flex;gap:8px;align-items:stretch}.stepper-indicator-column{display:flex;flex-direction:column;align-items:center;width:16px}.step-indicator{--indicator-size: 16px;flex-shrink:0;display:flex;align-items:center;justify-content:center;width:var(--indicator-size);height:var(--indicator-size)}.step-indicator__circle{all:initial;width:16px!important;height:16px!important;border-radius:50%!important;border:2px solid var(--color-light)!important;background:var(--color-white)!important;display:block!important;box-sizing:border-box!important}.step-indicator__circle.in-progress{border-color:var(--color-secondary)!important}.stepper-connector{flex:1;width:2px;background-color:var(--color-light);min-height:24px}.stepper-content-wrapper{display:flex;flex-direction:column;flex:1;padding-top:0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }], changeDetection: i0.ChangeDetectionStrategy.Eager }); }
|
|
11592
|
+
}
|
|
11593
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: AdsVerticalStepComponent, decorators: [{
|
|
11594
|
+
type: Component,
|
|
11595
|
+
args: [{ selector: 'ads-vertical-step', imports: [CommonModule, AdsIconComponent], changeDetection: ChangeDetectionStrategy.Eager, host: {
|
|
11596
|
+
class: 'stepper-item',
|
|
11597
|
+
role: 'listitem',
|
|
11598
|
+
}, template: "<div class=\"stepper-indicator-column\">\n <div class=\"step-indicator\">\n @if (status === VerticalStepStatus.Completed) {\n <ads-icon name=\"check_circle_filled\" theme=\"success\" stroke=\"success\" size=\"xxs_16\"/>\n } @else if (status === VerticalStepStatus.Warning) {\n <ads-icon name=\"warning\" size=\"xxs_16\" />\n } @else if (status === VerticalStepStatus.InProgress) {\n <div class=\"step-indicator__circle in-progress\"></div>\n } @else if (status === VerticalStepStatus.Planned) {\n <div class=\"step-indicator__circle\"></div>\n }\n </div>\n @if (!isLast) {\n <div class=\"stepper-connector\"></div>\n }\n</div>\n<div class=\"stepper-content-wrapper\">\n <ng-content></ng-content>\n</div>\n\n", styles: [":host{position:relative;display:flex;gap:8px;align-items:stretch}.stepper-indicator-column{display:flex;flex-direction:column;align-items:center;width:16px}.step-indicator{--indicator-size: 16px;flex-shrink:0;display:flex;align-items:center;justify-content:center;width:var(--indicator-size);height:var(--indicator-size)}.step-indicator__circle{all:initial;width:16px!important;height:16px!important;border-radius:50%!important;border:2px solid var(--color-light)!important;background:var(--color-white)!important;display:block!important;box-sizing:border-box!important}.step-indicator__circle.in-progress{border-color:var(--color-secondary)!important}.stepper-connector{flex:1;width:2px;background-color:var(--color-light);min-height:24px}.stepper-content-wrapper{display:flex;flex-direction:column;flex:1;padding-top:0}\n"] }]
|
|
11599
|
+
}], ctorParameters: () => [{ type: i1.AdsIconRegistry }], propDecorators: { status: [{
|
|
11600
|
+
type: Input
|
|
11601
|
+
}] } });
|
|
11602
|
+
|
|
11603
|
+
var VerticalStepStatus;
|
|
11604
|
+
(function (VerticalStepStatus) {
|
|
11605
|
+
VerticalStepStatus["Planned"] = "planned";
|
|
11606
|
+
VerticalStepStatus["InProgress"] = "in-progress";
|
|
11607
|
+
VerticalStepStatus["Completed"] = "completed";
|
|
11608
|
+
VerticalStepStatus["Warning"] = "warning";
|
|
11609
|
+
})(VerticalStepStatus || (VerticalStepStatus = {}));
|
|
11610
|
+
class AdsVerticalStepperComponent {
|
|
11611
|
+
ngAfterContentInit() {
|
|
11612
|
+
this.updateLastStep();
|
|
11613
|
+
this.stepComponents.changes.subscribe(() => this.updateLastStep());
|
|
11614
|
+
}
|
|
11615
|
+
updateLastStep() {
|
|
11616
|
+
const steps = this.stepComponents.toArray();
|
|
11617
|
+
steps.forEach((step, i) => {
|
|
11618
|
+
step.isLast = i === steps.length - 1;
|
|
11619
|
+
});
|
|
11620
|
+
}
|
|
11621
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: AdsVerticalStepperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
11622
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.1", type: AdsVerticalStepperComponent, isStandalone: true, selector: "ads-vertical-stepper", queries: [{ propertyName: "stepComponents", predicate: AdsVerticalStepComponent }], ngImport: i0, template: "<nav class=\"ads-vertical-stepper\" role=\"navigation\" aria-label=\"Step navigation\">\n <ol class=\"stepper-list\">\n <ng-content select=\"ads-vertical-step\"></ng-content>\n </ol>\n</nav>\n\n\n\n", styles: [".ads-vertical-stepper{width:100%}.ads-vertical-stepper .stepper-list{list-style:none;margin:0;padding:0;position:relative}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
11623
|
+
}
|
|
11624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: AdsVerticalStepperComponent, decorators: [{
|
|
11625
|
+
type: Component,
|
|
11626
|
+
args: [{ selector: 'ads-vertical-stepper', imports: [CommonModule], template: "<nav class=\"ads-vertical-stepper\" role=\"navigation\" aria-label=\"Step navigation\">\n <ol class=\"stepper-list\">\n <ng-content select=\"ads-vertical-step\"></ng-content>\n </ol>\n</nav>\n\n\n\n", styles: [".ads-vertical-stepper{width:100%}.ads-vertical-stepper .stepper-list{list-style:none;margin:0;padding:0;position:relative}\n"] }]
|
|
11627
|
+
}], propDecorators: { stepComponents: [{
|
|
11628
|
+
type: ContentChildren,
|
|
11629
|
+
args: [AdsVerticalStepComponent]
|
|
11630
|
+
}] } });
|
|
11631
|
+
|
|
11566
11632
|
function provideAdsUi(config) {
|
|
11567
11633
|
return [
|
|
11568
11634
|
{ provide: ADS_UI_CONFIG, useValue: config },
|
|
@@ -11573,5 +11639,5 @@ function provideAdsUi(config) {
|
|
|
11573
11639
|
* Generated bundle index. Do not edit.
|
|
11574
11640
|
*/
|
|
11575
11641
|
|
|
11576
|
-
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, AdsRateOptionCardComponent, 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 };
|
|
11642
|
+
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, AdsRateOptionCardComponent, AdsScmsLogoComponent, AdsScmsSideNavBarComponent, AdsSearchDropdownComponent, AdsSearchInputComponent, AdsShipmentHorizontalStepperComponent, AdsSideNavBarComponent, AdsSideNavBarV2Component, AdsSlideToggleComponent, AdsSliderComponent, AdsSnackbarComponent, AdsSortMenuComponent, AdsSplashPageComponent, AdsStepperComponent, AdsSubNavigationButtonComponent, AdsTableComponent, AdsTabsComponent, AdsTagComponent, AdsTagContainerComponent, AdsTextareaComponent, AdsTimeFieldComponent, AdsTimepickerComponent, AdsVerticalSideNavigationStepperComponent, AdsVerticalStepComponent, AdsVerticalStepperComponent, AdsWizardStepperComponent, AscentCardComponent, BadgeColor, Colors, CountryCode, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, HistoryAction, HorizontalStepStatus, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, SpinnerSize, StepStatus, TableBreakpoint, VerticalStepStatus, ViewportService, WindowService, WizardStepStatus, provideAdsUi };
|
|
11577
11643
|
//# sourceMappingURL=ascentgl-ads-ui.mjs.map
|