@ascentgl/ads-ui 20.27.1 → 20.29.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.mjs +415 -41
- package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
- package/index.d.ts +126 -18
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -43,10 +43,10 @@ import { MatDialogRef } from '@angular/material/dialog';
|
|
|
43
43
|
import * as i7 from '@angular/material/expansion';
|
|
44
44
|
import { MatExpansionPanel, MatAccordion } from '@angular/material/expansion';
|
|
45
45
|
import * as ag_grid_community from 'ag-grid-community';
|
|
46
|
-
import { GridOptions, ColDef, GridApi, GridReadyEvent, FirstDataRenderedEvent } from 'ag-grid-community';
|
|
47
|
-
import * as i4$6 from '
|
|
48
|
-
import
|
|
49
|
-
import
|
|
46
|
+
import { GridOptions, ColDef, GridApi, SortChangedEvent, FilterChangedEvent, GridReadyEvent, FirstDataRenderedEvent } from 'ag-grid-community';
|
|
47
|
+
import * as i4$6 from '@angular/material/menu';
|
|
48
|
+
import { MatMenuTrigger, MatMenuPanel, MatMenu } from '@angular/material/menu';
|
|
49
|
+
import * as i4$7 from 'ag-grid-angular';
|
|
50
50
|
import * as i4$8 from 'angular-split';
|
|
51
51
|
import { SplitComponent, SplitGutterInteractionEvent } from 'angular-split';
|
|
52
52
|
import * as i12 from '@angular/material/toolbar';
|
|
@@ -210,8 +210,10 @@ declare class AdsButtonComponent {
|
|
|
210
210
|
size: i0.InputSignal<Size>;
|
|
211
211
|
/** Sets the "type" attribute on the button */
|
|
212
212
|
type: i0.InputSignal<"button" | "submit" | "reset">;
|
|
213
|
+
/** Makes the button take 100% width of its container */
|
|
214
|
+
fullWidth: i0.InputSignal<boolean>;
|
|
213
215
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonComponent, never>;
|
|
214
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsButtonComponent, "ads-button", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
216
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsButtonComponent, "ads-button", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
215
217
|
}
|
|
216
218
|
|
|
217
219
|
declare class AdsButtonModule {
|
|
@@ -222,7 +224,7 @@ declare class AdsButtonModule {
|
|
|
222
224
|
|
|
223
225
|
declare class AdsButtonContainerComponent {
|
|
224
226
|
/** How buttons in the container should be placed */
|
|
225
|
-
justify: i0.InputSignal<"
|
|
227
|
+
justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
|
|
226
228
|
/** The gap between elements */
|
|
227
229
|
gap: i0.InputSignal<number>;
|
|
228
230
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
|
|
@@ -2034,6 +2036,12 @@ declare class AdsRadioButtonModule {
|
|
|
2034
2036
|
declare class AdsSlideToggleComponent extends AbstractBaseComponent {
|
|
2035
2037
|
/** Set to "true" to make the toggle title "Yes" or "No" */
|
|
2036
2038
|
enableYesOrNo: boolean;
|
|
2039
|
+
/**
|
|
2040
|
+
* Optional custom titles for the toggle states.
|
|
2041
|
+
* Array with two strings: [enabled_text, disabled_text]
|
|
2042
|
+
* Example: ['Show', 'Hide'] or ['Active', 'Inactive']
|
|
2043
|
+
*/
|
|
2044
|
+
customTitles?: [string, string];
|
|
2037
2045
|
/** @ignore */
|
|
2038
2046
|
valueControl: FormControl;
|
|
2039
2047
|
/** Form control, associated with input field */
|
|
@@ -2048,8 +2056,10 @@ declare class AdsSlideToggleComponent extends AbstractBaseComponent {
|
|
|
2048
2056
|
toggle(): void;
|
|
2049
2057
|
/** @ignore */
|
|
2050
2058
|
getTitle(enabled: boolean): string;
|
|
2059
|
+
/** @ignore */
|
|
2060
|
+
getToggleWidth(): string;
|
|
2051
2061
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSlideToggleComponent, never>;
|
|
2052
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsSlideToggleComponent, "ads-slide-toggle", never, { "enableYesOrNo": { "alias": "enableYesOrNo"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "id": { "alias": "id"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, false, never>;
|
|
2062
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsSlideToggleComponent, "ads-slide-toggle", never, { "enableYesOrNo": { "alias": "enableYesOrNo"; "required": false; }; "customTitles": { "alias": "customTitles"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "id": { "alias": "id"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, false, never>;
|
|
2053
2063
|
}
|
|
2054
2064
|
|
|
2055
2065
|
declare class AdsSlideToggle {
|
|
@@ -2305,7 +2315,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
|
|
|
2305
2315
|
/** Component width. Must include units of measure: px, %, em, rem, etc. */
|
|
2306
2316
|
width: i0.InputSignal<string>;
|
|
2307
2317
|
/** The Chevron Icon size () */
|
|
2308
|
-
chevronSize: i0.InputSignal<"
|
|
2318
|
+
chevronSize: i0.InputSignal<"xs" | "base">;
|
|
2309
2319
|
/** Header padding size size () */
|
|
2310
2320
|
headerPadding: i0.InputSignal<string>;
|
|
2311
2321
|
/** Content padding size size () */
|
|
@@ -2334,14 +2344,23 @@ declare enum TableBreakpoint {
|
|
|
2334
2344
|
LG = "lg",
|
|
2335
2345
|
XL = "xl"
|
|
2336
2346
|
}
|
|
2347
|
+
interface ColumnVisibilityControl {
|
|
2348
|
+
field: string;
|
|
2349
|
+
headerName: string;
|
|
2350
|
+
control: FormControl<boolean>;
|
|
2351
|
+
}
|
|
2337
2352
|
declare class AdsTableComponent implements AfterViewInit, OnDestroy {
|
|
2338
2353
|
private elementRef;
|
|
2354
|
+
private registry;
|
|
2355
|
+
private cdr;
|
|
2339
2356
|
/** @ignore */
|
|
2340
|
-
constructor(elementRef: ElementRef);
|
|
2357
|
+
constructor(elementRef: ElementRef, registry: AdsIconRegistry, cdr: ChangeDetectorRef);
|
|
2341
2358
|
/** The grid's width */
|
|
2342
2359
|
width: string;
|
|
2343
2360
|
/** The grid's height */
|
|
2344
2361
|
height: string;
|
|
2362
|
+
/** Custom header template for the table header actions */
|
|
2363
|
+
headerTemplate?: TemplateRef<any>;
|
|
2345
2364
|
/** The grid options for ag-Grid */
|
|
2346
2365
|
gridOptions?: GridOptions;
|
|
2347
2366
|
/** The data to be displayed in the grid */
|
|
@@ -2356,23 +2375,87 @@ declare class AdsTableComponent implements AfterViewInit, OnDestroy {
|
|
|
2356
2375
|
loading: boolean;
|
|
2357
2376
|
/** Columns data by breakPoints */
|
|
2358
2377
|
columnDefsByBreakpoint: Record<TableBreakpoint, ColDef[]>;
|
|
2378
|
+
/** Show/hide the header with column visibility button */
|
|
2379
|
+
showHeaderActions: boolean;
|
|
2380
|
+
/** Event emitted when all filters are cleared */
|
|
2381
|
+
filtersCleared: EventEmitter<void>;
|
|
2382
|
+
/** @ignore */
|
|
2383
|
+
menuTrigger: MatMenuTrigger;
|
|
2359
2384
|
/** @ignore */
|
|
2360
2385
|
tableColumnDefs: i0.WritableSignal<ColDef<any, any>[]>;
|
|
2361
2386
|
/** @ignore */
|
|
2387
|
+
columnVisibilityList: i0.WritableSignal<ColumnVisibilityControl[]>;
|
|
2388
|
+
/** @ignore */
|
|
2389
|
+
private destroy$;
|
|
2390
|
+
/** @ignore */
|
|
2362
2391
|
private cachedDefaultColDef;
|
|
2363
2392
|
/** @ignore */
|
|
2364
2393
|
private currentBreakpoint?;
|
|
2365
2394
|
/** @ignore */
|
|
2366
2395
|
private resizeObserver?;
|
|
2367
2396
|
/** @ignore */
|
|
2397
|
+
gridApi?: GridApi;
|
|
2398
|
+
/** @ignore */
|
|
2399
|
+
private truncationStates;
|
|
2400
|
+
/** @ignore */
|
|
2401
|
+
private currentSortField;
|
|
2402
|
+
/** @ignore */
|
|
2403
|
+
private currentSortDirection;
|
|
2404
|
+
/** @ignore */
|
|
2405
|
+
filteredColumns: string[];
|
|
2406
|
+
/** @ignore */
|
|
2368
2407
|
private getBreakpoint;
|
|
2369
2408
|
/** @ignore */
|
|
2370
2409
|
getDefaultColDef(): ColDef<GENERIC_COLLECTION>;
|
|
2371
2410
|
/** @ignore */
|
|
2372
|
-
gridApi?: GridApi;
|
|
2373
|
-
/** @ignore */
|
|
2374
2411
|
ngAfterViewInit(): void;
|
|
2375
2412
|
/** @ignore */
|
|
2413
|
+
private initializeColumnVisibility;
|
|
2414
|
+
/** @ignore */
|
|
2415
|
+
private unsubscribeFromControls;
|
|
2416
|
+
/** @ignore */
|
|
2417
|
+
private getActiveColumnDefs;
|
|
2418
|
+
/** @ignore */
|
|
2419
|
+
openColumnVisibilityMenu(): void;
|
|
2420
|
+
/** @ignore */
|
|
2421
|
+
hideAllColumns(): void;
|
|
2422
|
+
/** @ignore */
|
|
2423
|
+
showAllColumns(): void;
|
|
2424
|
+
/** @ignore */
|
|
2425
|
+
get allColumnsVisible(): boolean;
|
|
2426
|
+
/** @ignore */
|
|
2427
|
+
get allColumnsHidden(): boolean;
|
|
2428
|
+
/** @ignore */
|
|
2429
|
+
get hiddenColumnsCount(): number;
|
|
2430
|
+
/** @ignore */
|
|
2431
|
+
get hideColumnButtonLabel(): string;
|
|
2432
|
+
/** @ignore */
|
|
2433
|
+
get sortButtonLabel(): string;
|
|
2434
|
+
/** @ignore */
|
|
2435
|
+
get filterButtonLabel(): string;
|
|
2436
|
+
/** @ignore */
|
|
2437
|
+
get isSortedTable(): boolean;
|
|
2438
|
+
/** @ignore */
|
|
2439
|
+
get isFilteredTable(): boolean;
|
|
2440
|
+
/** @ignore */
|
|
2441
|
+
private updateSortingState;
|
|
2442
|
+
/** @ignore */
|
|
2443
|
+
private updateFilteringState;
|
|
2444
|
+
/** @ignore */
|
|
2445
|
+
private onSortChanged;
|
|
2446
|
+
/** @ignore */
|
|
2447
|
+
private onFilterChanged;
|
|
2448
|
+
/** @ignore */
|
|
2449
|
+
sortChanged($event: SortChangedEvent): void;
|
|
2450
|
+
/** @ignore */
|
|
2451
|
+
filterChanged($event: FilterChangedEvent): void;
|
|
2452
|
+
/** @ignore */
|
|
2453
|
+
clearAllFilters(): void;
|
|
2454
|
+
/** @ignore */
|
|
2455
|
+
clearAllSorting(): void;
|
|
2456
|
+
/** @ignore */
|
|
2457
|
+
private updateGridColumns;
|
|
2458
|
+
/** @ignore */
|
|
2376
2459
|
private onGridReady;
|
|
2377
2460
|
/** @ignore */
|
|
2378
2461
|
private onFirstDataRendered;
|
|
@@ -2387,15 +2470,40 @@ declare class AdsTableComponent implements AfterViewInit, OnDestroy {
|
|
|
2387
2470
|
/** @ignore */
|
|
2388
2471
|
private getFallbackColumnDefs;
|
|
2389
2472
|
/** @ignore */
|
|
2473
|
+
private updateTruncationStates;
|
|
2474
|
+
/** @ignore */
|
|
2475
|
+
getTooltipDisabled(headerName: string): boolean;
|
|
2476
|
+
/** @ignore */
|
|
2390
2477
|
ngOnDestroy(): void;
|
|
2391
2478
|
protected readonly themeQuartz: ag_grid_community.Theme<ag_grid_community.ThemeDefaultParams>;
|
|
2392
2479
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTableComponent, never>;
|
|
2393
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTableComponent, "ads-table", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; "columnDefs": { "alias": "columnDefs"; "required": false; }; "icons": { "alias": "icons"; "required": false; }; "defaultColDef": { "alias": "defaultColDef"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnDefsByBreakpoint": { "alias": "columnDefsByBreakpoint"; "required": false; }; }, {}, never, never, false, never>;
|
|
2480
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTableComponent, "ads-table", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; "columnDefs": { "alias": "columnDefs"; "required": false; }; "icons": { "alias": "icons"; "required": false; }; "defaultColDef": { "alias": "defaultColDef"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnDefsByBreakpoint": { "alias": "columnDefsByBreakpoint"; "required": false; }; "showHeaderActions": { "alias": "showHeaderActions"; "required": false; }; }, { "filtersCleared": "filtersCleared"; }, never, never, false, never>;
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
declare class AdsTableButtonComponent {
|
|
2484
|
+
/** The unique ID for the button */
|
|
2485
|
+
id: i0.InputSignal<string>;
|
|
2486
|
+
/** Whether the button is disabled */
|
|
2487
|
+
disabled: i0.InputSignal<boolean>;
|
|
2488
|
+
/** Makes the button take 100% width of its container */
|
|
2489
|
+
fullWidth: i0.InputSignal<boolean>;
|
|
2490
|
+
/** The menu to trigger when button is clicked */
|
|
2491
|
+
matMenuTriggerFor: i0.InputSignal<MatMenuPanel<any> | null>;
|
|
2492
|
+
/** Event emitted when the menu is opened */
|
|
2493
|
+
menuOpened: i0.OutputEmitterRef<void>;
|
|
2494
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTableButtonComponent, never>;
|
|
2495
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTableButtonComponent, "ads-table-button", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "matMenuTriggerFor": { "alias": "matMenuTriggerFor"; "required": false; "isSignal": true; }; }, { "menuOpened": "menuOpened"; }, never, ["*"], false, never>;
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2498
|
+
declare class AdsTableButtonModule {
|
|
2499
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTableButtonModule, never>;
|
|
2500
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTableButtonModule, [typeof AdsTableButtonComponent], [typeof i2.CommonModule, typeof i3$1.MatButtonModule, typeof i4$6.MatMenuModule], [typeof AdsTableButtonComponent]>;
|
|
2501
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AdsTableButtonModule>;
|
|
2394
2502
|
}
|
|
2395
2503
|
|
|
2396
2504
|
declare class AdsTableModule {
|
|
2397
2505
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTableModule, never>;
|
|
2398
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTableModule, [typeof AdsTableComponent], [typeof i2.CommonModule, typeof i4.AdsIconModule, typeof i4$6.
|
|
2506
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTableModule, [typeof AdsTableComponent], [typeof i2.CommonModule, typeof i4.AdsIconModule, typeof i4$7.AgGridAngular, typeof i2$1.MatDialogModule, typeof AdsSlideToggle, typeof AdsButtonModule, typeof AdsTableButtonModule, typeof AdsDividerModule, typeof i16.MatTooltip, typeof i4$6.MatMenuModule], [typeof AdsTableComponent]>;
|
|
2399
2507
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsTableModule>;
|
|
2400
2508
|
}
|
|
2401
2509
|
|
|
@@ -2431,7 +2539,7 @@ declare class AdsNavMenuComponent {
|
|
|
2431
2539
|
|
|
2432
2540
|
declare class AdsNavMenuModule {
|
|
2433
2541
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsNavMenuModule, never>;
|
|
2434
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNavMenuModule, [typeof AdsNavMenuComponent], [typeof i2.CommonModule, typeof i4.AdsIconModule, typeof i2.NgOptimizedImage, typeof i4$
|
|
2542
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNavMenuModule, [typeof AdsNavMenuComponent], [typeof i2.CommonModule, typeof i4.AdsIconModule, typeof i2.NgOptimizedImage, typeof i4$6.MatMenu, typeof i4$6.MatMenuTrigger, typeof i3$2.RouterLinkActive, typeof i4$6.MatMenuItem, typeof i3$2.RouterLink], [typeof AdsNavMenuComponent]>;
|
|
2435
2543
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsNavMenuModule>;
|
|
2436
2544
|
}
|
|
2437
2545
|
|
|
@@ -2580,7 +2688,7 @@ declare class AdsScmsSideNavBarComponent extends AbstractSideNavBarComponent {
|
|
|
2580
2688
|
|
|
2581
2689
|
declare class AdsScmsSideNavBarModule {
|
|
2582
2690
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsScmsSideNavBarModule, never>;
|
|
2583
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsScmsSideNavBarModule, [typeof AdsScmsSideNavBarComponent], [typeof i2.CommonModule, typeof i4$8.SplitComponent, typeof i4$8.SplitAreaComponent, typeof i3$2.RouterLink, typeof i3$2.RouterLinkActive, typeof i4.AdsIconModule, typeof AdsDividerModule, typeof i7.MatAccordion, typeof i7.MatExpansionPanel, typeof i7.MatExpansionPanelDescription, typeof i7.MatExpansionPanelHeader, typeof i7.MatExpansionPanelTitle, typeof AdsAscentLogoModule, typeof i16.MatTooltip, typeof AdsBreadcrumbModule, typeof i4$
|
|
2691
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsScmsSideNavBarModule, [typeof AdsScmsSideNavBarComponent], [typeof i2.CommonModule, typeof i4$8.SplitComponent, typeof i4$8.SplitAreaComponent, typeof i3$2.RouterLink, typeof i3$2.RouterLinkActive, typeof i4.AdsIconModule, typeof AdsDividerModule, typeof i7.MatAccordion, typeof i7.MatExpansionPanel, typeof i7.MatExpansionPanelDescription, typeof i7.MatExpansionPanelHeader, typeof i7.MatExpansionPanelTitle, typeof AdsAscentLogoModule, typeof i16.MatTooltip, typeof AdsBreadcrumbModule, typeof i4$6.MatMenu, typeof i12.MatToolbar, typeof i4$6.MatMenuTrigger, typeof i3$1.MatIconButton, typeof i3$2.RouterOutlet], [typeof AdsScmsSideNavBarComponent]>;
|
|
2584
2692
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsScmsSideNavBarModule>;
|
|
2585
2693
|
}
|
|
2586
2694
|
|
|
@@ -2662,7 +2770,7 @@ declare class AdsMainMenuItemsComponent {
|
|
|
2662
2770
|
|
|
2663
2771
|
declare class AdsMainMenuItemsModule {
|
|
2664
2772
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsMainMenuItemsModule, never>;
|
|
2665
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMainMenuItemsModule, [typeof AdsMainMenuItemsComponent], [typeof i2.CommonModule, typeof i3$2.RouterModule, typeof i4$
|
|
2773
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMainMenuItemsModule, [typeof AdsMainMenuItemsComponent], [typeof i2.CommonModule, typeof i3$2.RouterModule, typeof i4$6.MatMenuModule, typeof AdsButtonModule, typeof AdsButtonModule, typeof AdsLinkButtonModule], [typeof AdsMainMenuItemsComponent]>;
|
|
2666
2774
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsMainMenuItemsModule>;
|
|
2667
2775
|
}
|
|
2668
2776
|
|
|
@@ -2687,7 +2795,7 @@ declare class AdsProfileDisplayModule {
|
|
|
2687
2795
|
|
|
2688
2796
|
declare class AdsMainMenuModule {
|
|
2689
2797
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsMainMenuModule, never>;
|
|
2690
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMainMenuModule, [typeof AdsMainMenuComponent], [typeof i2.CommonModule, typeof i3$8.MatBottomSheetModule, typeof i4$9.MatListModule, typeof i4$
|
|
2798
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMainMenuModule, [typeof AdsMainMenuComponent], [typeof i2.CommonModule, typeof i3$8.MatBottomSheetModule, typeof i4$9.MatListModule, typeof i4$6.MatMenuModule, typeof i4.AdsIconModule, typeof AdsMainMenuItemsModule, typeof AdsProfileDisplayModule, typeof i3$2.RouterModule], [typeof AdsMainMenuComponent]>;
|
|
2691
2799
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsMainMenuModule>;
|
|
2692
2800
|
}
|
|
2693
2801
|
|
|
@@ -3184,4 +3292,4 @@ declare class AdsProgressStepperModule {
|
|
|
3184
3292
|
}
|
|
3185
3293
|
|
|
3186
3294
|
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, 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, AdsWizardStepperComponent, AdsWizardStepperModule, AscentCardComponent, AscentCardModule, BadgeColor, Colors, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, SpinnerSize, StepStatus, TableBreakpoint, ViewportService, WindowService, WizardStepStatus };
|
|
3187
|
-
export type { AdsModalData, Breadcrumb, 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, WizardStep };
|
|
3295
|
+
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, WizardStep };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ascentgl/ads-ui",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.29.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": ">=20.3.0",
|
|
6
6
|
"date-fns": ">=4.1.0",
|
|
@@ -79,14 +79,14 @@
|
|
|
79
79
|
"types": "./src/lib/components/progress-indicators/progress-bar/index.d.ts",
|
|
80
80
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs"
|
|
81
81
|
},
|
|
82
|
-
"./src/lib/components/progress-indicators/progress-indicator-spinner": {
|
|
83
|
-
"types": "./src/lib/components/progress-indicators/progress-indicator-spinner/index.d.ts",
|
|
84
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs"
|
|
85
|
-
},
|
|
86
82
|
"./src/lib/components/progress-indicators/progress-spinner": {
|
|
87
83
|
"types": "./src/lib/components/progress-indicators/progress-spinner/index.d.ts",
|
|
88
84
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs"
|
|
89
85
|
},
|
|
86
|
+
"./src/lib/components/progress-indicators/progress-indicator-spinner": {
|
|
87
|
+
"types": "./src/lib/components/progress-indicators/progress-indicator-spinner/index.d.ts",
|
|
88
|
+
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs"
|
|
89
|
+
},
|
|
90
90
|
"./src/lib/components/tags/tag-container": {
|
|
91
91
|
"types": "./src/lib/components/tags/tag-container/index.d.ts",
|
|
92
92
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs"
|