@ascentgl/ads-ui 21.3.0 → 21.4.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/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +10 -10
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui.mjs +829 -598
- package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ascentgl-ads-ui.d.ts +80 -4
package/package.json
CHANGED
|
@@ -224,7 +224,7 @@ declare class AdsButtonModule {
|
|
|
224
224
|
|
|
225
225
|
declare class AdsButtonContainerComponent {
|
|
226
226
|
/** How buttons in the container should be placed */
|
|
227
|
-
justify: i0.InputSignal<"
|
|
227
|
+
justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
|
|
228
228
|
/** The gap between elements */
|
|
229
229
|
gap: i0.InputSignal<number>;
|
|
230
230
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
|
|
@@ -2327,7 +2327,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
|
|
|
2327
2327
|
/** Component width. Must include units of measure: px, %, em, rem, etc. */
|
|
2328
2328
|
width: i0.InputSignal<string>;
|
|
2329
2329
|
/** The Chevron Icon size () */
|
|
2330
|
-
chevronSize: i0.InputSignal<"
|
|
2330
|
+
chevronSize: i0.InputSignal<"xs" | "base">;
|
|
2331
2331
|
/** Header padding size size () */
|
|
2332
2332
|
headerPadding: i0.InputSignal<string>;
|
|
2333
2333
|
/** Content padding size size () */
|
|
@@ -3317,5 +3317,81 @@ declare class AdsProgressStepperModule {
|
|
|
3317
3317
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsProgressStepperModule>;
|
|
3318
3318
|
}
|
|
3319
3319
|
|
|
3320
|
-
|
|
3321
|
-
|
|
3320
|
+
interface VerticalNavigationStep {
|
|
3321
|
+
/** Unique identifier for the step */
|
|
3322
|
+
id: string;
|
|
3323
|
+
/** Display name of the step */
|
|
3324
|
+
label: string;
|
|
3325
|
+
/** CSS selector or element ID to scroll to when step is clicked */
|
|
3326
|
+
targetSelector?: string;
|
|
3327
|
+
/** Whether the step is currently active */
|
|
3328
|
+
active?: boolean;
|
|
3329
|
+
/** Whether the step is disabled */
|
|
3330
|
+
disabled?: boolean;
|
|
3331
|
+
}
|
|
3332
|
+
declare class AdsVerticalNavigationStepperComponent implements OnInit, OnDestroy, OnChanges {
|
|
3333
|
+
/** List of steps to display in the stepper */
|
|
3334
|
+
steps: VerticalNavigationStep[];
|
|
3335
|
+
/** Index of the currently active step */
|
|
3336
|
+
activeStepIndex: number;
|
|
3337
|
+
/** Whether to enable smooth scrolling when navigating to steps */
|
|
3338
|
+
smoothScroll: boolean;
|
|
3339
|
+
/** Scroll offset in pixels when navigating to target elements */
|
|
3340
|
+
scrollOffset: number;
|
|
3341
|
+
/** Whether clicking on steps is enabled */
|
|
3342
|
+
clickable: boolean;
|
|
3343
|
+
/** Event emitted when a step is clicked */
|
|
3344
|
+
stepClick: EventEmitter<{
|
|
3345
|
+
step: VerticalNavigationStep;
|
|
3346
|
+
index: number;
|
|
3347
|
+
}>;
|
|
3348
|
+
/** @ignore */
|
|
3349
|
+
private scrollListener?;
|
|
3350
|
+
/** @ignore */
|
|
3351
|
+
ngOnInit(): void;
|
|
3352
|
+
/** @ignore */
|
|
3353
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
3354
|
+
/** @ignore */
|
|
3355
|
+
ngOnDestroy(): void;
|
|
3356
|
+
/** @ignore */
|
|
3357
|
+
private updateActiveStep;
|
|
3358
|
+
/** @ignore */
|
|
3359
|
+
private setupScrollListener;
|
|
3360
|
+
/** @ignore */
|
|
3361
|
+
private updateActiveStepBasedOnScroll;
|
|
3362
|
+
/** @ignore */
|
|
3363
|
+
onStepClick(step: VerticalNavigationStep, index: number): void;
|
|
3364
|
+
/** @ignore */
|
|
3365
|
+
private scrollToElement;
|
|
3366
|
+
/** @ignore */
|
|
3367
|
+
private setActiveStep;
|
|
3368
|
+
/**
|
|
3369
|
+
* Programmatically set the active step
|
|
3370
|
+
* @param index - The index of the step to activate
|
|
3371
|
+
*/
|
|
3372
|
+
setActiveStepByIndex(index: number): void;
|
|
3373
|
+
/**
|
|
3374
|
+
* Programmatically set the active step by step ID
|
|
3375
|
+
* @param id - The ID of the step to activate
|
|
3376
|
+
*/
|
|
3377
|
+
setActiveStepById(id: string): void;
|
|
3378
|
+
/**
|
|
3379
|
+
* Navigate to the next step
|
|
3380
|
+
*/
|
|
3381
|
+
nextStep(): void;
|
|
3382
|
+
/**
|
|
3383
|
+
* Navigate to the previous step
|
|
3384
|
+
*/
|
|
3385
|
+
previousStep(): void;
|
|
3386
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsVerticalNavigationStepperComponent, never>;
|
|
3387
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsVerticalNavigationStepperComponent, "ads-vertical-navigation-stepper", never, { "steps": { "alias": "steps"; "required": false; }; "activeStepIndex": { "alias": "activeStepIndex"; "required": false; }; "smoothScroll": { "alias": "smoothScroll"; "required": false; }; "scrollOffset": { "alias": "scrollOffset"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; }, { "stepClick": "stepClick"; }, never, never, false, never>;
|
|
3388
|
+
}
|
|
3389
|
+
|
|
3390
|
+
declare class AdsVerticalNavigationStepperModule {
|
|
3391
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsVerticalNavigationStepperModule, never>;
|
|
3392
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsVerticalNavigationStepperModule, [typeof AdsVerticalNavigationStepperComponent], [typeof i2.CommonModule], [typeof AdsVerticalNavigationStepperComponent]>;
|
|
3393
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AdsVerticalNavigationStepperModule>;
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
export { AdsAscentLogoComponent, AdsAscentLogoModule, AdsAvatarComponent, AdsAvatarModule, AdsBreadcrumbComponent, AdsBreadcrumbModule, AdsBubbleComponent, AdsBubbleModule, AdsButtonComponent, AdsButtonContainerComponent, AdsButtonContainerModule, AdsButtonModule, AdsCardComponent, AdsCardModule, AdsCheckboxComponent, AdsCheckboxModule, AdsChipComponent, AdsChipModule, AdsCreateTagComponent, AdsCreateTagModule, AdsDatepickerComponent, AdsDatepickerModule, AdsDatetimepickerComponent, AdsDatetimepickerModule, AdsDividerModule, AdsDragAndDropListComponent, AdsDragAndDropListModule, AdsDropdownComponent, AdsDropdownModule, AdsErrorPageCodeComponent, AdsErrorPageCodeModule, AdsErrorPageComponent, AdsErrorPageModule, AdsExpansionPanelComponent, AdsExpansionPanelModule, AdsFooterComponent, AdsFooterContainerComponent, AdsFooterContainerModule, AdsFooterModule, AdsGenericLogoComponent, AdsGenericLogoModule, AdsHeaderComponent, AdsHeaderContainerComponent, AdsHeaderContainerModule, AdsHeaderModule, AdsHorizontalNavBarComponent, AdsHorizontalNavBarModule, 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, AdsPrimaryLogoComponent, AdsPrimaryLogoModule, AdsProgressBarComponent, AdsProgressBarModule, AdsProgressIndicatorSpinnerComponent, AdsProgressIndicatorSpinnerModule, AdsProgressSpinnerComponent, AdsProgressSpinnerModule, AdsProgressStepperComponent, AdsProgressStepperModule, AdsRadioButtonComponent, AdsRadioButtonModule, AdsScmsLogoComponent, AdsScmsLogoModule, AdsScmsSideNavBarComponent, AdsScmsSideNavBarModule, AdsSearchDropdownComponent, AdsSearchDropdownModule, AdsSearchInputComponent, AdsSearchInputModule, AdsShellLayoutModule, AdsSideNavBarComponent, AdsSideNavBarModule, AdsSlideToggle, AdsSlideToggleComponent, AdsSliderComponent, AdsSliderModule, AdsSnackbarComponent, AdsSnackbarModule, AdsSplashPageComponent, AdsSplashPageModule, AdsStepperComponent, AdsStepperModule, AdsTableComponent, AdsTableModule, AdsTabsComponent, AdsTabsModule, AdsTagComponent, AdsTagContainerComponent, AdsTagContainerModule, AdsTagModule, AdsTextareaComponent, AdsTextareaModule, AdsTimeFieldComponent, AdsTimeFieldModule, AdsTimepickerComponent, AdsTimepickerModule, AdsVerticalNavigationStepperComponent, AdsVerticalNavigationStepperModule, AdsWizardStepperComponent, AdsWizardStepperModule, AscentCardComponent, AscentCardModule, BadgeColor, Colors, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, SpinnerSize, StepStatus, TableBreakpoint, ViewportService, WindowService, WizardStepStatus };
|
|
3397
|
+
export type { AdsModalData, Breadcrumb, ColumnVisibilityControl, Copyright, DROP_CALLBACK_INDEXES, DividerStyle, ErrorPageConfig, ErrorPageInfoColumn, HorizontalNavLink, IconButtonSize, Link, MainMenuItem, NavItem, NavMenuItem, NumericStep, ProgressStep, ScmsNavItem, ScmsNavSubItem, Size, SnackBarData, Step, Tab, Tag, UNSUBSCRIBE_FUNCTIONS_COLLECTION, Variant, VerticalNavigationStep, WizardStep };
|