@ascentgl/ads-ui 21.2.1 → 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/README.md +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs +7 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +11 -11
- package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs +8 -8
- package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui.mjs +999 -722
- package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/sass/ads-ui/abstracts/_functions.scss +18 -18
- package/src/assets/sass/ads-ui/abstracts/_mixins.scss +90 -90
- package/src/assets/sass/ads-ui/abstracts/_variables.scss +127 -127
- package/src/assets/sass/ads-ui/base/_reset.scss +19 -19
- package/src/assets/sass/ads-ui/base/_typography.scss +179 -179
- package/src/assets/sass/ads-ui/base/_utilities.scss +104 -104
- package/src/assets/sass/ads-ui/main.scss +8 -8
- package/src/assets/sass/ads-ui/overrides/_angular-material.scss +8 -8
- package/src/assets/sass/ads-ui/overrides/angular-material/_bottom-sheet.scss +12 -12
- package/src/assets/sass/ads-ui/overrides/angular-material/_datetimepicker.scss +248 -248
- package/src/assets/sass/ads-ui/overrides/angular-material/_dropdown.scss +31 -31
- package/src/assets/sass/ads-ui/overrides/angular-material/_html.scss +14 -14
- package/src/assets/sass/ads-ui/overrides/angular-material/_mat-list.scss +47 -47
- package/src/assets/sass/ads-ui/overrides/angular-material/_menu.scss +89 -89
- package/src/assets/sass/ads-ui/overrides/angular-material/_search-dropdown-modal.scss +34 -34
- package/src/assets/sass/ads-ui/overrides/angular-material/_snackbar.scss +40 -40
- package/src/assets/sass/ads-ui/overrides/angular-material/_tooltip.scss +76 -76
- package/src/assets/sass/ads-ui/themes/_ads-palette.scss +98 -98
- package/types/ascentgl-ads-ui.d.ts +92 -4
|
@@ -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 () */
|
|
@@ -2418,6 +2418,8 @@ declare class AdsTableComponent implements AfterViewInit, OnDestroy {
|
|
|
2418
2418
|
/** @ignore */
|
|
2419
2419
|
filteredColumns: string[];
|
|
2420
2420
|
/** @ignore */
|
|
2421
|
+
private columnVisibilityMenuOpen;
|
|
2422
|
+
/** @ignore */
|
|
2421
2423
|
private getBreakpoint;
|
|
2422
2424
|
/** @ignore */
|
|
2423
2425
|
getDefaultColDef(): ColDef<GENERIC_COLLECTION>;
|
|
@@ -2432,6 +2434,10 @@ declare class AdsTableComponent implements AfterViewInit, OnDestroy {
|
|
|
2432
2434
|
/** @ignore */
|
|
2433
2435
|
openColumnVisibilityMenu(): void;
|
|
2434
2436
|
/** @ignore */
|
|
2437
|
+
onColumnVisibilityMenuClosed(): void;
|
|
2438
|
+
/** @ignore */
|
|
2439
|
+
private syncColumnVisibilityWithGrid;
|
|
2440
|
+
/** @ignore */
|
|
2435
2441
|
hideAllColumns(): void;
|
|
2436
2442
|
/** @ignore */
|
|
2437
2443
|
showAllColumns(): void;
|
|
@@ -2487,6 +2493,12 @@ declare class AdsTableComponent implements AfterViewInit, OnDestroy {
|
|
|
2487
2493
|
private updateTruncationStates;
|
|
2488
2494
|
/** @ignore */
|
|
2489
2495
|
getTooltipDisabled(headerName: string): boolean;
|
|
2496
|
+
/**
|
|
2497
|
+
* Synchronizes the column visibility controls with the current grid column state.
|
|
2498
|
+
* Call this method after programmatically changing column visibility via gridApi.applyColumnState()
|
|
2499
|
+
* This will also update the hideColumnButtonLabel to reflect the current state.
|
|
2500
|
+
*/
|
|
2501
|
+
syncColumnVisibility(): void;
|
|
2490
2502
|
/** @ignore */
|
|
2491
2503
|
ngOnDestroy(): void;
|
|
2492
2504
|
protected readonly themeQuartz: ag_grid_community.Theme<ag_grid_community.ThemeDefaultParams>;
|
|
@@ -3305,5 +3317,81 @@ declare class AdsProgressStepperModule {
|
|
|
3305
3317
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsProgressStepperModule>;
|
|
3306
3318
|
}
|
|
3307
3319
|
|
|
3308
|
-
|
|
3309
|
-
|
|
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 };
|