@ascentgl/ads-ui 21.25.0 → 21.27.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 +2 -2
- 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 +2 -2
- 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 +2 -2
- 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.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs +2 -2
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs +2 -2
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs +2 -2
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs +2 -2
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui.mjs +546 -227
- 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 +33 -33
- 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 +150 -75
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { OnChanges, SimpleChanges, OnDestroy, EventEmitter, ElementRef, SimpleChange, OnInit, AfterContentInit, Renderer2, AfterViewInit, ChangeDetectorRef, TemplateRef, PipeTransform, QueryList } from '@angular/core';
|
|
3
|
-
import * as
|
|
3
|
+
import * as i3 from '@ascentgl/ads-icons';
|
|
4
4
|
import { AdsIconRegistry, IconThemes } from '@ascentgl/ads-icons';
|
|
5
5
|
import * as i2 from '@angular/common';
|
|
6
6
|
import { Location } from '@angular/common';
|
|
7
7
|
import { adsIcon } from '@ascentgl/ads-icons/icons';
|
|
8
|
-
import * as i3 from '@angular/material/badge';
|
|
9
|
-
import * as i3$
|
|
8
|
+
import * as i3$1 from '@angular/material/badge';
|
|
9
|
+
import * as i3$3 from '@angular/router';
|
|
10
10
|
import { Router } from '@angular/router';
|
|
11
|
-
import * as i3$
|
|
12
|
-
import * as i3$
|
|
11
|
+
import * as i3$2 from '@angular/material/button';
|
|
12
|
+
import * as i3$4 from '@angular/forms';
|
|
13
13
|
import { FormBuilder, FormGroup, AbstractControl, FormControl, FormControlStatus, NgControl } from '@angular/forms';
|
|
14
|
-
import * as i4
|
|
14
|
+
import * as i4 from '@angular/cdk/overlay';
|
|
15
15
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
16
16
|
import { Subject, Subscription, Observable } from 'rxjs';
|
|
17
|
-
import * as i4$
|
|
17
|
+
import * as i4$1 from '@ascentgl/ads-utils';
|
|
18
18
|
import { GENERIC_COLLECTION } from '@ascentgl/ads-utils';
|
|
19
19
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
20
20
|
import * as i5 from '@angular/material/progress-spinner';
|
|
@@ -22,20 +22,20 @@ import * as i5$1 from '@angular/material/select';
|
|
|
22
22
|
import { MatSelect } from '@angular/material/select';
|
|
23
23
|
import * as i6 from '@angular/material/core';
|
|
24
24
|
import { MatOption, NativeDateAdapter } from '@angular/material/core';
|
|
25
|
-
import * as i4$
|
|
25
|
+
import * as i4$2 from '@angular/material/form-field';
|
|
26
26
|
import * as i5$2 from '@angular/material/input';
|
|
27
27
|
import * as i10 from '@angular/material/icon';
|
|
28
28
|
import * as i16 from '@angular/material/tooltip';
|
|
29
29
|
import * as i13 from '@angular/material/autocomplete';
|
|
30
30
|
import { MatAutocomplete, MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
31
|
-
import * as i3$
|
|
32
|
-
import * as i3$
|
|
33
|
-
import * as i3$
|
|
31
|
+
import * as i3$5 from 'ngx-mask';
|
|
32
|
+
import * as i3$6 from '@angular/material/divider';
|
|
33
|
+
import * as i3$7 from '@angular/material/datepicker';
|
|
34
34
|
import * as i5$3 from '@mat-datetimepicker/core';
|
|
35
35
|
import { MatDatetimepickerComponent, MatDatetimepickerInputEvent } from '@mat-datetimepicker/core';
|
|
36
|
-
import * as i4$
|
|
37
|
-
import * as i4$
|
|
38
|
-
import * as i3$
|
|
36
|
+
import * as i4$3 from '@angular/material/radio';
|
|
37
|
+
import * as i4$4 from '@angular/material/slider';
|
|
38
|
+
import * as i3$8 from '@angular/material/snack-bar';
|
|
39
39
|
import { MatSnackBarRef } from '@angular/material/snack-bar';
|
|
40
40
|
import { BreakpointState, BreakpointObserver } from '@angular/cdk/layout';
|
|
41
41
|
import * as i2$1 from '@angular/material/dialog';
|
|
@@ -44,15 +44,15 @@ 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
46
|
import { GridOptions, ColDef, GridApi, SortChangedEvent, FilterChangedEvent, GridReadyEvent, FirstDataRenderedEvent } from 'ag-grid-community';
|
|
47
|
-
import * as i4$
|
|
47
|
+
import * as i4$5 from '@angular/material/menu';
|
|
48
48
|
import { MatMenuTrigger, MatMenuPanel, MatMenu } from '@angular/material/menu';
|
|
49
|
-
import * as i4$
|
|
50
|
-
import * as i4$
|
|
49
|
+
import * as i4$6 from 'ag-grid-angular';
|
|
50
|
+
import * as i4$7 from 'angular-split';
|
|
51
51
|
import { SplitComponent, SplitGutterInteractionEvent } from 'angular-split';
|
|
52
52
|
import * as i12 from '@angular/material/toolbar';
|
|
53
|
-
import * as i3$
|
|
53
|
+
import * as i3$9 from '@angular/material/bottom-sheet';
|
|
54
54
|
import { MatBottomSheet } from '@angular/material/bottom-sheet';
|
|
55
|
-
import * as i4$
|
|
55
|
+
import * as i4$8 from '@angular/material/list';
|
|
56
56
|
import * as i2$2 from '@angular/material/tabs';
|
|
57
57
|
import { MatTabGroup } from '@angular/material/tabs';
|
|
58
58
|
import { HttpClient } from '@angular/common/http';
|
|
@@ -88,7 +88,7 @@ declare class AdsAvatarComponent implements OnChanges {
|
|
|
88
88
|
|
|
89
89
|
declare class AdsAvatarModule {
|
|
90
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsAvatarModule, never>;
|
|
91
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsAvatarModule, [typeof AdsAvatarComponent], [typeof i2.CommonModule, typeof
|
|
91
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsAvatarModule, [typeof AdsAvatarComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule], [typeof AdsAvatarComponent]>;
|
|
92
92
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsAvatarModule>;
|
|
93
93
|
}
|
|
94
94
|
|
|
@@ -135,7 +135,7 @@ declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
|
|
|
135
135
|
/** provide icon name. NOTE: the icon must be registered in icon registry **/
|
|
136
136
|
name: i0.InputSignal<adsIcon>;
|
|
137
137
|
/** choose ads icon theme **/
|
|
138
|
-
theme: i0.InputSignal<"
|
|
138
|
+
theme: i0.InputSignal<"primary" | "iconPrimary" | "success" | "warn" | "white">;
|
|
139
139
|
/** set badge value as number **/
|
|
140
140
|
value: i0.InputSignal<number>;
|
|
141
141
|
/** @ignore **/
|
|
@@ -148,7 +148,7 @@ declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
|
|
|
148
148
|
|
|
149
149
|
declare class AdsNumericBadgeModule {
|
|
150
150
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsNumericBadgeModule, never>;
|
|
151
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNumericBadgeModule, [typeof AdsNumericBadgeComponent], [typeof
|
|
151
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNumericBadgeModule, [typeof AdsNumericBadgeComponent], [typeof i3.AdsIconModule, typeof i3$1.MatBadge], [typeof AdsNumericBadgeComponent]>;
|
|
152
152
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsNumericBadgeModule>;
|
|
153
153
|
}
|
|
154
154
|
|
|
@@ -189,13 +189,13 @@ declare class AdsIconButtonComponent {
|
|
|
189
189
|
|
|
190
190
|
declare class AdsIconButtonModule {
|
|
191
191
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsIconButtonModule, never>;
|
|
192
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsIconButtonModule, [typeof AdsIconButtonComponent], [typeof i2.CommonModule, typeof i3$
|
|
192
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsIconButtonModule, [typeof AdsIconButtonComponent], [typeof i2.CommonModule, typeof i3$2.MatButtonModule, typeof i3.AdsIconModule], [typeof AdsIconButtonComponent]>;
|
|
193
193
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsIconButtonModule>;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
declare class AdsBreadcrumbModule {
|
|
197
197
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsBreadcrumbModule, never>;
|
|
198
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsBreadcrumbModule, [typeof AdsBreadcrumbComponent], [typeof i2.CommonModule, typeof i3$
|
|
198
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsBreadcrumbModule, [typeof AdsBreadcrumbComponent], [typeof i2.CommonModule, typeof i3$3.RouterModule, typeof i3.AdsIconModule, typeof AdsIconButtonModule], [typeof AdsBreadcrumbComponent]>;
|
|
199
199
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsBreadcrumbModule>;
|
|
200
200
|
}
|
|
201
201
|
|
|
@@ -220,7 +220,7 @@ declare class AdsButtonComponent {
|
|
|
220
220
|
|
|
221
221
|
declare class AdsButtonModule {
|
|
222
222
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonModule, never>;
|
|
223
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsButtonModule, [typeof AdsButtonComponent], [typeof i2.CommonModule, typeof i3$
|
|
223
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsButtonModule, [typeof AdsButtonComponent], [typeof i2.CommonModule, typeof i3$2.MatButtonModule], [typeof AdsButtonComponent]>;
|
|
224
224
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsButtonModule>;
|
|
225
225
|
}
|
|
226
226
|
|
|
@@ -378,7 +378,7 @@ declare class AdsTagComponent {
|
|
|
378
378
|
|
|
379
379
|
declare class AdsTagModule {
|
|
380
380
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTagModule, never>;
|
|
381
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTagModule, [typeof AdsTagComponent], [typeof i2.CommonModule, typeof
|
|
381
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTagModule, [typeof AdsTagComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule], [typeof AdsTagComponent]>;
|
|
382
382
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsTagModule>;
|
|
383
383
|
}
|
|
384
384
|
|
|
@@ -484,7 +484,7 @@ declare class AdsTagContainerModule {
|
|
|
484
484
|
|
|
485
485
|
declare class AdsCreateTagModule {
|
|
486
486
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsCreateTagModule, never>;
|
|
487
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsCreateTagModule, [typeof AdsCreateTagComponent], [typeof i2.CommonModule, typeof i3$
|
|
487
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsCreateTagModule, [typeof AdsCreateTagComponent], [typeof i2.CommonModule, typeof i3$2.MatButtonModule, typeof i4.OverlayModule, typeof i3$4.ReactiveFormsModule, typeof i3.AdsIconModule, typeof AdsButtonModule, typeof AdsTagContainerModule, typeof AdsTagModule], [typeof AdsCreateTagComponent]>;
|
|
488
488
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsCreateTagModule>;
|
|
489
489
|
}
|
|
490
490
|
|
|
@@ -685,7 +685,7 @@ declare class AdsErrorPageCodeModule {
|
|
|
685
685
|
*/
|
|
686
686
|
declare class AdsErrorPageModule {
|
|
687
687
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsErrorPageModule, never>;
|
|
688
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsErrorPageModule, [typeof AdsErrorPageComponent], [typeof i2.CommonModule, typeof AdsButtonModule, typeof i3$
|
|
688
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsErrorPageModule, [typeof AdsErrorPageComponent], [typeof i2.CommonModule, typeof AdsButtonModule, typeof i3$3.RouterModule, typeof AdsErrorPageCodeModule], [typeof AdsErrorPageComponent]>;
|
|
689
689
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsErrorPageModule>;
|
|
690
690
|
}
|
|
691
691
|
|
|
@@ -777,7 +777,7 @@ declare class AdsLinkButtonComponent {
|
|
|
777
777
|
|
|
778
778
|
declare class AdsLinkButtonModule {
|
|
779
779
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsLinkButtonModule, never>;
|
|
780
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsLinkButtonModule, [typeof AdsLinkButtonComponent], [typeof i2.CommonModule, typeof i3$
|
|
780
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsLinkButtonModule, [typeof AdsLinkButtonComponent], [typeof i2.CommonModule, typeof i3$2.MatButtonModule, typeof i3.AdsIconModule], [typeof AdsLinkButtonComponent]>;
|
|
781
781
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsLinkButtonModule>;
|
|
782
782
|
}
|
|
783
783
|
|
|
@@ -970,7 +970,7 @@ declare class AdsProgressBarComponent implements OnChanges {
|
|
|
970
970
|
|
|
971
971
|
declare class AdsProgressBarModule {
|
|
972
972
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsProgressBarModule, never>;
|
|
973
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsProgressBarModule, [typeof AdsProgressBarComponent], [typeof i2.CommonModule, typeof
|
|
973
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsProgressBarModule, [typeof AdsProgressBarComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule], [typeof AdsProgressBarComponent]>;
|
|
974
974
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsProgressBarModule>;
|
|
975
975
|
}
|
|
976
976
|
|
|
@@ -1011,7 +1011,7 @@ declare class AdsProgressSpinnerComponent implements OnInit {
|
|
|
1011
1011
|
|
|
1012
1012
|
declare class AdsProgressSpinnerModule {
|
|
1013
1013
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsProgressSpinnerModule, never>;
|
|
1014
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsProgressSpinnerModule, [typeof AdsProgressSpinnerComponent], [typeof i2.CommonModule, typeof
|
|
1014
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsProgressSpinnerModule, [typeof AdsProgressSpinnerComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule, typeof i4$1.AdsGestureModule, typeof i5.MatProgressSpinnerModule], [typeof AdsProgressSpinnerComponent]>;
|
|
1015
1015
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsProgressSpinnerModule>;
|
|
1016
1016
|
}
|
|
1017
1017
|
|
|
@@ -1270,7 +1270,7 @@ declare class AdsDropdownComponent extends AbstractDropdownComponent implements
|
|
|
1270
1270
|
/** @ignore */
|
|
1271
1271
|
protected readonly Colors: typeof Colors;
|
|
1272
1272
|
/** @ignore */
|
|
1273
|
-
protected readonly FormControl: i3$
|
|
1273
|
+
protected readonly FormControl: i3$4.ɵFormControlCtor;
|
|
1274
1274
|
private hostEl;
|
|
1275
1275
|
private intersectionObserver?;
|
|
1276
1276
|
constructor();
|
|
@@ -1362,6 +1362,10 @@ declare class AdsCheckboxComponent extends AbstractBaseComponent implements OnIn
|
|
|
1362
1362
|
/** Set to "true" to make the checkbox indeterminate */
|
|
1363
1363
|
indeterminate: boolean;
|
|
1364
1364
|
width: string;
|
|
1365
|
+
/** Tooltip message, displayed over tooltip icon */
|
|
1366
|
+
tooltip?: string;
|
|
1367
|
+
/** Href for the Tooltip */
|
|
1368
|
+
tooltipHref?: string;
|
|
1365
1369
|
/** @ignore */
|
|
1366
1370
|
private valueChangeSub?;
|
|
1367
1371
|
/** @ignore */
|
|
@@ -1374,18 +1378,18 @@ declare class AdsCheckboxComponent extends AbstractBaseComponent implements OnIn
|
|
|
1374
1378
|
/** @ignore */
|
|
1375
1379
|
toggleCheck(): void;
|
|
1376
1380
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsCheckboxComponent, never>;
|
|
1377
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsCheckboxComponent, "ads-checkbox", never, { "indeterminate": { "alias": "indeterminate"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, false, never>;
|
|
1381
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsCheckboxComponent, "ads-checkbox", never, { "indeterminate": { "alias": "indeterminate"; "required": false; }; "width": { "alias": "width"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipHref": { "alias": "tooltipHref"; "required": false; }; }, {}, never, never, false, never>;
|
|
1378
1382
|
}
|
|
1379
1383
|
|
|
1380
1384
|
declare class AdsCheckboxModule {
|
|
1381
1385
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsCheckboxModule, never>;
|
|
1382
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsCheckboxModule, [typeof AdsCheckboxComponent], [typeof i2.CommonModule, typeof i3$
|
|
1386
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsCheckboxModule, [typeof AdsCheckboxComponent], [typeof i2.CommonModule, typeof i3$4.ReactiveFormsModule, typeof AdsHintComponent, typeof AdsErrorComponent, typeof AdsInputTooltipComponent, typeof AdsSuccessComponent], [typeof AdsCheckboxComponent]>;
|
|
1383
1387
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsCheckboxModule>;
|
|
1384
1388
|
}
|
|
1385
1389
|
|
|
1386
1390
|
declare class AdsDropdownModule {
|
|
1387
1391
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsDropdownModule, never>;
|
|
1388
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsDropdownModule, [typeof AdsDropdownComponent], [typeof i2.CommonModule, typeof i3$
|
|
1392
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsDropdownModule, [typeof AdsDropdownComponent], [typeof i2.CommonModule, typeof i3$4.ReactiveFormsModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatSelectModule, typeof i3.AdsIconModule, typeof i5$2.MatInputModule, typeof i3$2.MatIconButton, typeof AdsInputTooltipComponent, typeof i10.MatIcon, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsSuccessComponent, typeof AdsTagModule, typeof AdsCheckboxModule, typeof i16.MatTooltipModule], [typeof AdsDropdownComponent]>;
|
|
1389
1393
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsDropdownModule>;
|
|
1390
1394
|
}
|
|
1391
1395
|
|
|
@@ -1414,7 +1418,7 @@ declare class AdsMultiSelectDropdownComponent extends AdsDropdownComponent {
|
|
|
1414
1418
|
|
|
1415
1419
|
declare class AdsMultiSelectDropdownModule {
|
|
1416
1420
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsMultiSelectDropdownModule, never>;
|
|
1417
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMultiSelectDropdownModule, [typeof AdsMultiSelectDropdownComponent], [typeof i2.CommonModule, typeof i3$
|
|
1421
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMultiSelectDropdownModule, [typeof AdsMultiSelectDropdownComponent], [typeof i2.CommonModule, typeof i3$4.ReactiveFormsModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatSelectModule, typeof i3.AdsIconModule, typeof i5$2.MatInputModule, typeof AdsInputTooltipComponent, typeof i3$2.MatIconButton, typeof i10.MatIcon, typeof AdsSuccessComponent, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsTagModule, typeof AdsCheckboxModule, typeof i16.MatTooltipModule], [typeof AdsMultiSelectDropdownComponent]>;
|
|
1418
1422
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsMultiSelectDropdownModule>;
|
|
1419
1423
|
}
|
|
1420
1424
|
|
|
@@ -1472,7 +1476,7 @@ declare class AdsInputComponent extends AbstractInputComponent implements OnInit
|
|
|
1472
1476
|
|
|
1473
1477
|
declare class AdsInputModule {
|
|
1474
1478
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsInputModule, never>;
|
|
1475
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsInputModule, [typeof AdsInputComponent], [typeof i2.CommonModule, typeof i4$
|
|
1479
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsInputModule, [typeof AdsInputComponent], [typeof i2.CommonModule, typeof i4$2.MatFormFieldModule, typeof i5$2.MatInputModule, typeof i3$4.ReactiveFormsModule, typeof i3.AdsIconModule, typeof AdsInputTooltipComponent, typeof i3$2.MatIconButton, typeof AdsSuccessComponent, typeof AdsErrorComponent, typeof AdsHintComponent, typeof i3$5.NgxMaskDirective, typeof i13.MatAutocompleteTrigger], [typeof AdsInputComponent]>;
|
|
1476
1480
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsInputModule>;
|
|
1477
1481
|
}
|
|
1478
1482
|
|
|
@@ -1501,7 +1505,7 @@ declare class AdsPhoneFieldComponent extends AbstractInputComponent implements O
|
|
|
1501
1505
|
|
|
1502
1506
|
declare class AdsPhoneFieldModule {
|
|
1503
1507
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsPhoneFieldModule, never>;
|
|
1504
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsPhoneFieldModule, [typeof AdsPhoneFieldComponent], [typeof i2.CommonModule, typeof i3$
|
|
1508
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsPhoneFieldModule, [typeof AdsPhoneFieldComponent], [typeof i2.CommonModule, typeof i3$5.NgxMaskDirective, typeof AdsInputModule], [typeof AdsPhoneFieldComponent]>;
|
|
1505
1509
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsPhoneFieldModule>;
|
|
1506
1510
|
}
|
|
1507
1511
|
|
|
@@ -1518,7 +1522,7 @@ declare class AdsTextareaComponent extends AbstractInputComponent {
|
|
|
1518
1522
|
|
|
1519
1523
|
declare class AdsTextareaModule {
|
|
1520
1524
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTextareaModule, never>;
|
|
1521
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTextareaModule, [typeof AdsTextareaComponent], [typeof i2.CommonModule, typeof i4$
|
|
1525
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTextareaModule, [typeof AdsTextareaComponent], [typeof i2.CommonModule, typeof i4$2.MatFormFieldModule, typeof i5$2.MatInputModule, typeof i3$4.ReactiveFormsModule, typeof i3.AdsIconModule, typeof i3$2.MatIconButton, typeof AdsInputTooltipComponent, typeof AdsSuccessComponent, typeof AdsErrorComponent, typeof AdsHintComponent], [typeof AdsTextareaComponent]>;
|
|
1522
1526
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsTextareaModule>;
|
|
1523
1527
|
}
|
|
1524
1528
|
|
|
@@ -1580,7 +1584,7 @@ declare class AdsInputDropdownComponent extends AbstractInputComponent implement
|
|
|
1580
1584
|
|
|
1581
1585
|
declare class AdsInputDropdownModule {
|
|
1582
1586
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsInputDropdownModule, never>;
|
|
1583
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsInputDropdownModule, [typeof AdsInputDropdownComponent], [typeof i2.CommonModule, typeof i3$
|
|
1587
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsInputDropdownModule, [typeof AdsInputDropdownComponent], [typeof i2.CommonModule, typeof i3$6.MatDividerModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatSelectModule, typeof i5$2.MatInputModule, typeof i3$4.ReactiveFormsModule, typeof i3.AdsIconModule, typeof AdsInputModule, typeof AdsDropdownModule, typeof AdsInputTooltipComponent, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsSuccessComponent, typeof i3$5.NgxMaskDirective], [typeof AdsInputDropdownComponent]>;
|
|
1584
1588
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsInputDropdownModule>;
|
|
1585
1589
|
}
|
|
1586
1590
|
|
|
@@ -1827,7 +1831,7 @@ declare class AdsSearchDropdownHighlighterPipeModule {
|
|
|
1827
1831
|
|
|
1828
1832
|
declare class AdsSearchDropdownModule {
|
|
1829
1833
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSearchDropdownModule, never>;
|
|
1830
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSearchDropdownModule, [typeof AdsSearchDropdownComponent], [typeof i2.CommonModule, typeof i4$
|
|
1834
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSearchDropdownModule, [typeof AdsSearchDropdownComponent], [typeof i2.CommonModule, typeof i4$2.MatFormFieldModule, typeof i3.AdsIconModule, typeof i5$2.MatInputModule, typeof i3$4.ReactiveFormsModule, typeof i13.MatAutocompleteModule, typeof i5$1.MatSelectModule, typeof AdsSearchDropdownHighlighterPipeModule, typeof i3$7.MatDatepickerModule, typeof i3$2.MatIconButton, typeof AdsInputTooltipComponent, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsSuccessComponent, typeof i16.MatTooltipModule], [typeof AdsSearchDropdownComponent]>;
|
|
1831
1835
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsSearchDropdownModule>;
|
|
1832
1836
|
}
|
|
1833
1837
|
|
|
@@ -1853,7 +1857,7 @@ declare class AdsSearchInputComponent extends AdsInputComponent {
|
|
|
1853
1857
|
|
|
1854
1858
|
declare class AdsSearchInputModule {
|
|
1855
1859
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSearchInputModule, never>;
|
|
1856
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSearchInputModule, [typeof AdsSearchInputComponent], [typeof i2.CommonModule, typeof i4$
|
|
1860
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSearchInputModule, [typeof AdsSearchInputComponent], [typeof i2.CommonModule, typeof i4$2.MatFormFieldModule, typeof i3.AdsIconModule, typeof i5$2.MatInputModule, typeof i5.MatProgressSpinnerModule, typeof i3$4.ReactiveFormsModule, typeof i13.MatAutocompleteModule, typeof i5$1.MatSelectModule, typeof i3$2.MatIconButton, typeof AdsInputTooltipComponent, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsSuccessComponent], [typeof AdsSearchInputComponent]>;
|
|
1857
1861
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsSearchInputModule>;
|
|
1858
1862
|
}
|
|
1859
1863
|
|
|
@@ -2011,7 +2015,7 @@ declare class DateTimePickerFormatDirectiveModule {
|
|
|
2011
2015
|
|
|
2012
2016
|
declare class AdsDatetimepickerModule {
|
|
2013
2017
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsDatetimepickerModule, never>;
|
|
2014
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsDatetimepickerModule, [typeof AdsDatetimepickerComponent], [typeof i2.CommonModule, typeof i3$
|
|
2018
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsDatetimepickerModule, [typeof AdsDatetimepickerComponent], [typeof i2.CommonModule, typeof i3$7.MatDatepickerModule, typeof i4$2.MatFormFieldModule, typeof i5$3.MatNativeDatetimeModule, typeof i5$2.MatInputModule, typeof i3$4.ReactiveFormsModule, typeof i3.AdsIconModule, typeof i5$3.MatDatetimepickerModule, typeof i10.MatIconModule, typeof DateTimePickerFormatDirectiveModule, typeof i3$2.MatIconButton, typeof AdsInputTooltipComponent, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsSuccessComponent], [typeof AdsDatetimepickerComponent]>;
|
|
2015
2019
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsDatetimepickerModule>;
|
|
2016
2020
|
}
|
|
2017
2021
|
|
|
@@ -2030,6 +2034,8 @@ declare class AdsDatepickerComponent extends AdsDatetimepickerComponent implemen
|
|
|
2030
2034
|
showTimePicker: boolean;
|
|
2031
2035
|
/** @ignore */
|
|
2032
2036
|
protected readonly defaultErrorMessages: GENERIC_COLLECTION<string>;
|
|
2037
|
+
/** @ignore - Previous raw input value for tracking changes */
|
|
2038
|
+
private previousRawValue;
|
|
2033
2039
|
/** @ignore */
|
|
2034
2040
|
private elementRef;
|
|
2035
2041
|
/** @ignore */
|
|
@@ -2046,13 +2052,27 @@ declare class AdsDatepickerComponent extends AdsDatetimepickerComponent implemen
|
|
|
2046
2052
|
protected displayedValueToControlValue(value: Date): string;
|
|
2047
2053
|
/** @ignore */
|
|
2048
2054
|
protected onSyncDisplayedValue(valueToApply?: string): void;
|
|
2055
|
+
/** @ignore - Override to add date input formatting */
|
|
2056
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
2057
|
+
/** @ignore - Handle date input with auto-formatting */
|
|
2058
|
+
private handleDateInput;
|
|
2059
|
+
/** @ignore - Format date input after backspace/delete/paste */
|
|
2060
|
+
private formatDateInput;
|
|
2061
|
+
/** @ignore - Format digits with slashes (MM/DD/YYYY) */
|
|
2062
|
+
private formatWithSlashes;
|
|
2063
|
+
/** @ignore - Validate partial date input */
|
|
2064
|
+
private validatePartialDate;
|
|
2065
|
+
/** @ignore - Get maximum days in a month (without considering leap year for partial input) */
|
|
2066
|
+
private getMaxDaysInMonth;
|
|
2067
|
+
/** @ignore - Check if a complete date is valid */
|
|
2068
|
+
private isValidDate;
|
|
2049
2069
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsDatepickerComponent, never>;
|
|
2050
2070
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdsDatepickerComponent, "ads-datepicker", never, { "customDisplayFormat": { "alias": "customDisplayFormat"; "required": false; }; "closeOnOutOfView": { "alias": "closeOnOutOfView"; "required": false; }; "outOfViewRootMargin": { "alias": "outOfViewRootMargin"; "required": false; }; }, {}, never, never, false, never>;
|
|
2051
2071
|
}
|
|
2052
2072
|
|
|
2053
2073
|
declare class AdsDatepickerModule {
|
|
2054
2074
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsDatepickerModule, never>;
|
|
2055
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsDatepickerModule, [typeof AdsDatepickerComponent], [typeof i2.CommonModule, typeof i3$
|
|
2075
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsDatepickerModule, [typeof AdsDatepickerComponent], [typeof i2.CommonModule, typeof i3$7.MatDatepickerModule, typeof i4$2.MatFormFieldModule, typeof i5$2.MatInputModule, typeof i6.MatNativeDateModule, typeof i5$3.MatNativeDatetimeModule, typeof i3$4.ReactiveFormsModule, typeof i3.AdsIconModule, typeof i5$3.MatDatetimepickerModule, typeof i10.MatIconModule, typeof DateTimePickerFormatDirectiveModule, typeof AdsInputTooltipComponent, typeof i3$2.MatIconButton, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsSuccessComponent], [typeof AdsDatepickerComponent]>;
|
|
2056
2076
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsDatepickerModule>;
|
|
2057
2077
|
}
|
|
2058
2078
|
|
|
@@ -2080,7 +2100,7 @@ declare class AdsTimepickerComponent extends AdsDatetimepickerComponent {
|
|
|
2080
2100
|
|
|
2081
2101
|
declare class AdsTimepickerModule {
|
|
2082
2102
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTimepickerModule, never>;
|
|
2083
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTimepickerModule, [typeof AdsTimepickerComponent], [typeof i2.CommonModule, typeof i5$3.MatDatetimepickerModule, typeof i3$
|
|
2103
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTimepickerModule, [typeof AdsTimepickerComponent], [typeof i2.CommonModule, typeof i5$3.MatDatetimepickerModule, typeof i3$7.MatDatepickerModule, typeof i4$2.MatFormFieldModule, typeof i5$3.MatNativeDatetimeModule, typeof i6.MatNativeDateModule, typeof i5$2.MatInputModule, typeof i3$4.ReactiveFormsModule, typeof i3.AdsIconModule, typeof i10.MatIconModule, typeof DateTimePickerFormatDirectiveModule, typeof i3$2.MatIconButton, typeof AdsInputTooltipComponent, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsSuccessComponent], [typeof AdsTimepickerComponent]>;
|
|
2084
2104
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsTimepickerModule>;
|
|
2085
2105
|
}
|
|
2086
2106
|
|
|
@@ -2111,7 +2131,7 @@ declare class AdsRadioButtonComponent extends AdsDropdownComponent implements On
|
|
|
2111
2131
|
|
|
2112
2132
|
declare class AdsRadioButtonModule {
|
|
2113
2133
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsRadioButtonModule, never>;
|
|
2114
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsRadioButtonModule, [typeof AdsRadioButtonComponent], [typeof i2.CommonModule, typeof i3$
|
|
2134
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsRadioButtonModule, [typeof AdsRadioButtonComponent], [typeof i2.CommonModule, typeof i3$4.ReactiveFormsModule, typeof i4$3.MatRadioModule, typeof i6.MatOptionModule, typeof i5$2.MatInputModule, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsInputTooltipComponent, typeof AdsSearchDropdownHighlighterPipeModule, typeof AdsSuccessComponent], [typeof AdsRadioButtonComponent]>;
|
|
2115
2135
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsRadioButtonModule>;
|
|
2116
2136
|
}
|
|
2117
2137
|
|
|
@@ -2146,7 +2166,7 @@ declare class AdsSlideToggleComponent extends AbstractBaseComponent {
|
|
|
2146
2166
|
|
|
2147
2167
|
declare class AdsSlideToggle {
|
|
2148
2168
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSlideToggle, never>;
|
|
2149
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSlideToggle, [typeof AdsSlideToggleComponent], [typeof i2.CommonModule, typeof i3$
|
|
2169
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSlideToggle, [typeof AdsSlideToggleComponent], [typeof i2.CommonModule, typeof i3$4.ReactiveFormsModule, typeof AdsInputTooltipComponent, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsSuccessComponent], [typeof AdsSlideToggleComponent]>;
|
|
2150
2170
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsSlideToggle>;
|
|
2151
2171
|
}
|
|
2152
2172
|
|
|
@@ -2171,7 +2191,7 @@ declare class AdsSliderComponent extends AdsCheckboxComponent {
|
|
|
2171
2191
|
|
|
2172
2192
|
declare class AdsSliderModule {
|
|
2173
2193
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSliderModule, never>;
|
|
2174
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSliderModule, [typeof AdsSliderComponent], [typeof i2.CommonModule, typeof i3$
|
|
2194
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSliderModule, [typeof AdsSliderComponent], [typeof i2.CommonModule, typeof i3$4.ReactiveFormsModule, typeof i4$4.MatSliderModule, typeof i5$2.MatInputModule, typeof i3.AdsIconModule, typeof AdsErrorComponent, typeof AdsHintComponent], [typeof AdsSliderComponent]>;
|
|
2175
2195
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsSliderModule>;
|
|
2176
2196
|
}
|
|
2177
2197
|
|
|
@@ -2222,7 +2242,7 @@ declare enum PanelClass {
|
|
|
2222
2242
|
|
|
2223
2243
|
declare class AdsSnackbarModule {
|
|
2224
2244
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSnackbarModule, never>;
|
|
2225
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSnackbarModule, [typeof AdsSnackbarComponent], [typeof AdsButtonModule, typeof i3$
|
|
2245
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSnackbarModule, [typeof AdsSnackbarComponent], [typeof AdsButtonModule, typeof i3$8.MatSnackBarModule, typeof i2.CommonModule], [typeof AdsSnackbarComponent]>;
|
|
2226
2246
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsSnackbarModule>;
|
|
2227
2247
|
}
|
|
2228
2248
|
|
|
@@ -2349,7 +2369,7 @@ declare class AdsModalComponent extends AbstractWindowResizeComponent implements
|
|
|
2349
2369
|
|
|
2350
2370
|
declare class AdsModalModule {
|
|
2351
2371
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsModalModule, never>;
|
|
2352
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsModalModule, [typeof AdsModalComponent], [typeof i2$1.MatDialogModule, typeof AdsButtonModule, typeof
|
|
2372
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsModalModule, [typeof AdsModalComponent], [typeof i2$1.MatDialogModule, typeof AdsButtonModule, typeof i3.AdsIconModule, typeof i2.NgTemplateOutlet], [typeof AdsModalComponent]>;
|
|
2353
2373
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsModalModule>;
|
|
2354
2374
|
}
|
|
2355
2375
|
|
|
@@ -2357,10 +2377,16 @@ type Chip = {
|
|
|
2357
2377
|
id: string;
|
|
2358
2378
|
title: string;
|
|
2359
2379
|
};
|
|
2380
|
+
type ChipDropdownOption = {
|
|
2381
|
+
id: string;
|
|
2382
|
+
label: string;
|
|
2383
|
+
value?: unknown;
|
|
2384
|
+
};
|
|
2360
2385
|
|
|
2361
2386
|
declare class AdsChipComponent {
|
|
2362
2387
|
private registry;
|
|
2363
|
-
|
|
2388
|
+
private elementRef;
|
|
2389
|
+
constructor(registry: AdsIconRegistry, elementRef: ElementRef);
|
|
2364
2390
|
/** The unique id of the chip */
|
|
2365
2391
|
id: i0.InputSignal<string>;
|
|
2366
2392
|
/** The text of the chip - optional when using ng-content */
|
|
@@ -2371,21 +2397,37 @@ declare class AdsChipComponent {
|
|
|
2371
2397
|
disabled: i0.InputSignal<boolean>;
|
|
2372
2398
|
/** Show delete icon before text */
|
|
2373
2399
|
deletable: i0.InputSignal<boolean>;
|
|
2400
|
+
/** Enable dropdown mode */
|
|
2401
|
+
dropdown: i0.InputSignal<boolean>;
|
|
2402
|
+
/** Dropdown options when dropdown mode is enabled */
|
|
2403
|
+
dropdownOptions: i0.InputSignal<ChipDropdownOption[]>;
|
|
2374
2404
|
/** Event emitted when the remove icon is clicked */
|
|
2375
2405
|
deleted: i0.OutputEmitterRef<string>;
|
|
2376
2406
|
/** Event emitted when a chip is selected */
|
|
2377
2407
|
selected: i0.OutputEmitterRef<Chip>;
|
|
2408
|
+
/** Event emitted when a dropdown option is selected */
|
|
2409
|
+
optionSelected: i0.OutputEmitterRef<ChipDropdownOption>;
|
|
2410
|
+
/** @ignore */
|
|
2411
|
+
isDropdownOpen: boolean;
|
|
2412
|
+
/** @ignore */
|
|
2413
|
+
onDocumentClick(event: MouseEvent): void;
|
|
2378
2414
|
/** @ignore */
|
|
2379
2415
|
onSelected(): void;
|
|
2380
2416
|
/** @ignore */
|
|
2381
|
-
onDelete(): void;
|
|
2417
|
+
onDelete(event: MouseEvent): void;
|
|
2418
|
+
/** @ignore */
|
|
2419
|
+
toggleDropdown(): void;
|
|
2420
|
+
/** @ignore */
|
|
2421
|
+
closeDropdown(): void;
|
|
2422
|
+
/** @ignore */
|
|
2423
|
+
selectOption(option: ChipDropdownOption): void;
|
|
2382
2424
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsChipComponent, never>;
|
|
2383
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsChipComponent, "ads-chip", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "showCheckedIcon": { "alias": "showCheckedIcon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "deletable": { "alias": "deletable"; "required": false; "isSignal": true; }; }, { "deleted": "deleted"; "selected": "selected"; }, never, ["*"], false, never>;
|
|
2425
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsChipComponent, "ads-chip", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "showCheckedIcon": { "alias": "showCheckedIcon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "deletable": { "alias": "deletable"; "required": false; "isSignal": true; }; "dropdown": { "alias": "dropdown"; "required": false; "isSignal": true; }; "dropdownOptions": { "alias": "dropdownOptions"; "required": false; "isSignal": true; }; }, { "deleted": "deleted"; "selected": "selected"; "optionSelected": "optionSelected"; }, never, ["*"], false, never>;
|
|
2384
2426
|
}
|
|
2385
2427
|
|
|
2386
2428
|
declare class AdsChipModule {
|
|
2387
2429
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsChipModule, never>;
|
|
2388
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsChipModule, [typeof AdsChipComponent], [typeof i2.NgClass, typeof i2.NgStyle, typeof
|
|
2430
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsChipModule, [typeof AdsChipComponent], [typeof i2.NgClass, typeof i2.NgStyle, typeof i3.AdsIconModule], [typeof AdsChipComponent]>;
|
|
2389
2431
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsChipModule>;
|
|
2390
2432
|
}
|
|
2391
2433
|
|
|
@@ -2428,7 +2470,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
|
|
|
2428
2470
|
|
|
2429
2471
|
declare class AdsExpansionPanelModule {
|
|
2430
2472
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsExpansionPanelModule, never>;
|
|
2431
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsExpansionPanelModule, [typeof AdsExpansionPanelComponent], [typeof i2.NgClass, typeof i2.NgStyle, typeof
|
|
2473
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsExpansionPanelModule, [typeof AdsExpansionPanelComponent], [typeof i2.NgClass, typeof i2.NgStyle, typeof i3.AdsIconModule, typeof i7.MatExpansionPanel, typeof i7.MatExpansionPanelTitle, typeof i7.MatExpansionPanelHeader, typeof i7.MatExpansionPanelDescription, typeof i2.NgTemplateOutlet], [typeof AdsExpansionPanelComponent]>;
|
|
2432
2474
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsExpansionPanelModule>;
|
|
2433
2475
|
}
|
|
2434
2476
|
|
|
@@ -2606,13 +2648,13 @@ declare class AdsTableButtonComponent {
|
|
|
2606
2648
|
|
|
2607
2649
|
declare class AdsTableButtonModule {
|
|
2608
2650
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTableButtonModule, never>;
|
|
2609
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTableButtonModule, [typeof AdsTableButtonComponent], [typeof i2.CommonModule, typeof i3$
|
|
2651
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTableButtonModule, [typeof AdsTableButtonComponent], [typeof i2.CommonModule, typeof i3$2.MatButtonModule, typeof i4$5.MatMenuModule], [typeof AdsTableButtonComponent]>;
|
|
2610
2652
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsTableButtonModule>;
|
|
2611
2653
|
}
|
|
2612
2654
|
|
|
2613
2655
|
declare class AdsTableModule {
|
|
2614
2656
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTableModule, never>;
|
|
2615
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTableModule, [typeof AdsTableComponent], [typeof i2.CommonModule, typeof
|
|
2657
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTableModule, [typeof AdsTableComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule, typeof i4$6.AgGridAngular, typeof i2$1.MatDialogModule, typeof AdsSlideToggle, typeof AdsButtonModule, typeof AdsTableButtonModule, typeof AdsDividerModule, typeof i16.MatTooltip, typeof i4$5.MatMenuModule], [typeof AdsTableComponent]>;
|
|
2616
2658
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsTableModule>;
|
|
2617
2659
|
}
|
|
2618
2660
|
|
|
@@ -2648,7 +2690,7 @@ declare class AdsNavMenuComponent {
|
|
|
2648
2690
|
|
|
2649
2691
|
declare class AdsNavMenuModule {
|
|
2650
2692
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsNavMenuModule, never>;
|
|
2651
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNavMenuModule, [typeof AdsNavMenuComponent], [typeof i2.CommonModule, typeof
|
|
2693
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNavMenuModule, [typeof AdsNavMenuComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule, typeof i2.NgOptimizedImage, typeof i4$5.MatMenu, typeof i4$5.MatMenuTrigger, typeof i3$3.RouterLinkActive, typeof i4$5.MatMenuItem, typeof i3$3.RouterLink], [typeof AdsNavMenuComponent]>;
|
|
2652
2694
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsNavMenuModule>;
|
|
2653
2695
|
}
|
|
2654
2696
|
|
|
@@ -2735,7 +2777,7 @@ declare class AdsSideNavBarComponent extends AbstractSideNavBarComponent {
|
|
|
2735
2777
|
|
|
2736
2778
|
declare class AdsSideNavBarModule {
|
|
2737
2779
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSideNavBarModule, never>;
|
|
2738
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSideNavBarModule, [typeof AdsSideNavBarComponent], [typeof i2.CommonModule, typeof AdsPrimaryLogoModule, typeof i4$
|
|
2780
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsSideNavBarModule, [typeof AdsSideNavBarComponent], [typeof i2.CommonModule, typeof AdsPrimaryLogoModule, typeof i4$7.SplitComponent, typeof i4$7.SplitAreaComponent, typeof i3$3.RouterOutlet, typeof i3$3.RouterLink, typeof i3$3.RouterLinkActive, typeof i3.AdsIconModule, typeof AdsDividerModule], [typeof AdsSideNavBarComponent]>;
|
|
2739
2781
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsSideNavBarModule>;
|
|
2740
2782
|
}
|
|
2741
2783
|
|
|
@@ -2810,7 +2852,7 @@ declare class AdsScmsSideNavBarComponent extends AbstractSideNavBarComponent {
|
|
|
2810
2852
|
|
|
2811
2853
|
declare class AdsScmsSideNavBarModule {
|
|
2812
2854
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsScmsSideNavBarModule, never>;
|
|
2813
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsScmsSideNavBarModule, [typeof AdsScmsSideNavBarComponent], [typeof i2.CommonModule, typeof i4$
|
|
2855
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsScmsSideNavBarModule, [typeof AdsScmsSideNavBarComponent], [typeof i2.CommonModule, typeof i4$7.SplitComponent, typeof i4$7.SplitAreaComponent, typeof i3$3.RouterLink, typeof i3$3.RouterLinkActive, typeof i3.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$5.MatMenu, typeof i12.MatToolbar, typeof i4$5.MatMenuTrigger, typeof i3$2.MatIconButton, typeof i3$3.RouterOutlet], [typeof AdsScmsSideNavBarComponent]>;
|
|
2814
2856
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsScmsSideNavBarModule>;
|
|
2815
2857
|
}
|
|
2816
2858
|
|
|
@@ -2892,7 +2934,7 @@ declare class AdsMainMenuItemsComponent {
|
|
|
2892
2934
|
|
|
2893
2935
|
declare class AdsMainMenuItemsModule {
|
|
2894
2936
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsMainMenuItemsModule, never>;
|
|
2895
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMainMenuItemsModule, [typeof AdsMainMenuItemsComponent], [typeof i2.CommonModule, typeof i3$
|
|
2937
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMainMenuItemsModule, [typeof AdsMainMenuItemsComponent], [typeof i2.CommonModule, typeof i3$3.RouterModule, typeof i4$5.MatMenuModule, typeof AdsButtonModule, typeof AdsButtonModule, typeof AdsLinkButtonModule], [typeof AdsMainMenuItemsComponent]>;
|
|
2896
2938
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsMainMenuItemsModule>;
|
|
2897
2939
|
}
|
|
2898
2940
|
|
|
@@ -2911,13 +2953,13 @@ declare class AdsProfileDisplayComponent {
|
|
|
2911
2953
|
|
|
2912
2954
|
declare class AdsProfileDisplayModule {
|
|
2913
2955
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsProfileDisplayModule, never>;
|
|
2914
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsProfileDisplayModule, [typeof AdsProfileDisplayComponent], [typeof i2.CommonModule, typeof i3$
|
|
2956
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsProfileDisplayModule, [typeof AdsProfileDisplayComponent], [typeof i2.CommonModule, typeof i3$3.RouterModule, typeof i3.AdsIconModule], [typeof AdsProfileDisplayComponent]>;
|
|
2915
2957
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsProfileDisplayModule>;
|
|
2916
2958
|
}
|
|
2917
2959
|
|
|
2918
2960
|
declare class AdsMainMenuModule {
|
|
2919
2961
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsMainMenuModule, never>;
|
|
2920
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMainMenuModule, [typeof AdsMainMenuComponent], [typeof i2.CommonModule, typeof i3$
|
|
2962
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsMainMenuModule, [typeof AdsMainMenuComponent], [typeof i2.CommonModule, typeof i3$9.MatBottomSheetModule, typeof i4$8.MatListModule, typeof i4$5.MatMenuModule, typeof i3.AdsIconModule, typeof AdsMainMenuItemsModule, typeof AdsProfileDisplayModule, typeof i3$3.RouterModule], [typeof AdsMainMenuComponent]>;
|
|
2921
2963
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsMainMenuModule>;
|
|
2922
2964
|
}
|
|
2923
2965
|
|
|
@@ -2991,7 +3033,7 @@ type WizardStep = {
|
|
|
2991
3033
|
|
|
2992
3034
|
declare class AdsWizardStepperModule {
|
|
2993
3035
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsWizardStepperModule, never>;
|
|
2994
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsWizardStepperModule, [typeof AdsWizardStepperComponent], [typeof i2.CommonModule, typeof i16.MatTooltipModule, typeof
|
|
3036
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsWizardStepperModule, [typeof AdsWizardStepperComponent], [typeof i2.CommonModule, typeof i16.MatTooltipModule, typeof i3.AdsIconModule], [typeof AdsWizardStepperComponent]>;
|
|
2995
3037
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsWizardStepperModule>;
|
|
2996
3038
|
}
|
|
2997
3039
|
|
|
@@ -3022,10 +3064,41 @@ declare class AdsStepperComponent {
|
|
|
3022
3064
|
|
|
3023
3065
|
declare class AdsStepperModule {
|
|
3024
3066
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsStepperModule, never>;
|
|
3025
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsStepperModule, [typeof AdsStepperComponent], [typeof i2.CommonModule, typeof i3$
|
|
3067
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsStepperModule, [typeof AdsStepperComponent], [typeof i2.CommonModule, typeof i3$2.MatButton, typeof i3.AdsIconModule], [typeof AdsStepperComponent]>;
|
|
3026
3068
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsStepperModule>;
|
|
3027
3069
|
}
|
|
3028
3070
|
|
|
3071
|
+
declare enum HorizontalStepStatus {
|
|
3072
|
+
Planned = "planned",
|
|
3073
|
+
InProgress = "in-progress",
|
|
3074
|
+
Completed = "completed"
|
|
3075
|
+
}
|
|
3076
|
+
type HorizontalStep = {
|
|
3077
|
+
title: string;
|
|
3078
|
+
status: HorizontalStepStatus;
|
|
3079
|
+
};
|
|
3080
|
+
declare class AdsHorizontalStepperComponent {
|
|
3081
|
+
private registry;
|
|
3082
|
+
/** @ignore */
|
|
3083
|
+
constructor(registry: AdsIconRegistry);
|
|
3084
|
+
/** @ignore */
|
|
3085
|
+
protected readonly HorizontalStepStatus: typeof HorizontalStepStatus;
|
|
3086
|
+
/** The id of the Stepper */
|
|
3087
|
+
id: i0.InputSignal<string>;
|
|
3088
|
+
/**
|
|
3089
|
+
* The steps to display
|
|
3090
|
+
*/
|
|
3091
|
+
steps: i0.InputSignal<HorizontalStep[]>;
|
|
3092
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsHorizontalStepperComponent, never>;
|
|
3093
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsHorizontalStepperComponent, "ads-horizontal-stepper", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "steps": { "alias": "steps"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3096
|
+
declare class AdsHorizontalStepperModule {
|
|
3097
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsHorizontalStepperModule, never>;
|
|
3098
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsHorizontalStepperModule, [typeof AdsHorizontalStepperComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule], [typeof AdsHorizontalStepperComponent]>;
|
|
3099
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AdsHorizontalStepperModule>;
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3029
3102
|
type HorizontalNavLink = {
|
|
3030
3103
|
text: string;
|
|
3031
3104
|
route: string;
|
|
@@ -3047,7 +3120,7 @@ declare class AdsHorizontalNavBarComponent implements OnInit {
|
|
|
3047
3120
|
|
|
3048
3121
|
declare class AdsHorizontalNavBarModule {
|
|
3049
3122
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsHorizontalNavBarModule, never>;
|
|
3050
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsHorizontalNavBarModule, [typeof AdsHorizontalNavBarComponent], [typeof i2$2.MatTabNav, typeof i2$2.MatTabLink, typeof i3$
|
|
3123
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsHorizontalNavBarModule, [typeof AdsHorizontalNavBarComponent], [typeof i2$2.MatTabNav, typeof i2$2.MatTabLink, typeof i3$3.RouterOutlet, typeof i3$3.RouterLink, typeof i3$3.RouterLinkActive, typeof i2$2.MatTabNavPanel], [typeof AdsHorizontalNavBarComponent]>;
|
|
3051
3124
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsHorizontalNavBarModule>;
|
|
3052
3125
|
}
|
|
3053
3126
|
|
|
@@ -3121,7 +3194,7 @@ declare class AdsTimeFieldComponent extends AdsInputDropdownComponent implements
|
|
|
3121
3194
|
|
|
3122
3195
|
declare class AdsTimeFieldModule {
|
|
3123
3196
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTimeFieldModule, never>;
|
|
3124
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTimeFieldModule, [typeof AdsTimeFieldComponent], [typeof i2.CommonModule, typeof AdsInputDropdownModule, typeof
|
|
3197
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsTimeFieldModule, [typeof AdsTimeFieldComponent], [typeof i2.CommonModule, typeof AdsInputDropdownModule, typeof i3.AdsIconModule, typeof i3$2.MatIconButton, typeof i3$5.NgxMaskDirective, typeof i3$4.ReactiveFormsModule, typeof AdsInputModule], [typeof AdsTimeFieldComponent]>;
|
|
3125
3198
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsTimeFieldModule>;
|
|
3126
3199
|
}
|
|
3127
3200
|
|
|
@@ -3194,7 +3267,7 @@ declare class AdsNavigationCollapseHandleComponent {
|
|
|
3194
3267
|
|
|
3195
3268
|
declare class AdsNavigationCollapseHandleModule {
|
|
3196
3269
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsNavigationCollapseHandleModule, never>;
|
|
3197
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNavigationCollapseHandleModule, [typeof AdsNavigationCollapseHandleComponent], [typeof
|
|
3270
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNavigationCollapseHandleModule, [typeof AdsNavigationCollapseHandleComponent], [typeof i3.AdsIconModule], [typeof AdsNavigationCollapseHandleComponent]>;
|
|
3198
3271
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsNavigationCollapseHandleModule>;
|
|
3199
3272
|
}
|
|
3200
3273
|
|
|
@@ -3257,7 +3330,7 @@ declare class AdsNavigationItemComponent {
|
|
|
3257
3330
|
|
|
3258
3331
|
declare class AdsNavigationItemModule {
|
|
3259
3332
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsNavigationItemModule, never>;
|
|
3260
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNavigationItemModule, [typeof AdsNavigationItemComponent], [typeof i2.CommonModule, typeof i3$
|
|
3333
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsNavigationItemModule, [typeof AdsNavigationItemComponent], [typeof i2.CommonModule, typeof i3$3.RouterModule, typeof i16.MatTooltipModule, typeof i3.AdsIconModule], [typeof AdsNavigationItemComponent]>;
|
|
3261
3334
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsNavigationItemModule>;
|
|
3262
3335
|
}
|
|
3263
3336
|
|
|
@@ -3362,7 +3435,7 @@ declare class AdsInternationalPhoneFieldComponent extends AbstractInputComponent
|
|
|
3362
3435
|
|
|
3363
3436
|
declare class AdsInternationalPhoneFieldModule {
|
|
3364
3437
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsInternationalPhoneFieldModule, never>;
|
|
3365
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsInternationalPhoneFieldModule, [typeof AdsInternationalPhoneFieldComponent], [typeof i2.CommonModule, typeof i3$
|
|
3438
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsInternationalPhoneFieldModule, [typeof AdsInternationalPhoneFieldComponent], [typeof i2.CommonModule, typeof i3$5.NgxMaskDirective, typeof AdsInputModule, typeof AdsDropdownModule, typeof AdsErrorComponent, typeof AdsHintComponent, typeof AdsInputTooltipComponent, typeof AdsSuccessComponent], [typeof AdsInternationalPhoneFieldComponent]>;
|
|
3366
3439
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsInternationalPhoneFieldModule>;
|
|
3367
3440
|
}
|
|
3368
3441
|
|
|
@@ -3413,7 +3486,7 @@ declare class AdsProgressStepperComponent implements AfterViewInit, OnChanges, O
|
|
|
3413
3486
|
|
|
3414
3487
|
declare class AdsProgressStepperModule {
|
|
3415
3488
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsProgressStepperModule, never>;
|
|
3416
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsProgressStepperModule, [typeof AdsProgressStepperComponent], [typeof i2.CommonModule, typeof
|
|
3489
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsProgressStepperModule, [typeof AdsProgressStepperComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule, typeof i4$1.AdsGestureModule], [typeof AdsProgressStepperComponent]>;
|
|
3417
3490
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsProgressStepperModule>;
|
|
3418
3491
|
}
|
|
3419
3492
|
|
|
@@ -3435,6 +3508,8 @@ declare class AdsVerticalSideNavigationStepperComponent {
|
|
|
3435
3508
|
steps: VerticalSideNavigationStep[];
|
|
3436
3509
|
/** Whether to enable smooth scrolling when navigating to steps */
|
|
3437
3510
|
smoothScroll: boolean;
|
|
3511
|
+
/** Offset in pixels from the top when scrolling to an element */
|
|
3512
|
+
scrollOffset: number;
|
|
3438
3513
|
/** Event emitted when a step is clicked */
|
|
3439
3514
|
stepClick: EventEmitter<{
|
|
3440
3515
|
step: VerticalSideNavigationStep;
|
|
@@ -3453,12 +3528,12 @@ declare class AdsVerticalSideNavigationStepperComponent {
|
|
|
3453
3528
|
/** @ignore */
|
|
3454
3529
|
private scrollToElement;
|
|
3455
3530
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsVerticalSideNavigationStepperComponent, never>;
|
|
3456
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsVerticalSideNavigationStepperComponent, "ads-vertical-side-navigation-stepper", never, { "steps": { "alias": "steps"; "required": false; }; "smoothScroll": { "alias": "smoothScroll"; "required": false; }; }, { "stepClick": "stepClick"; "subStepClick": "subStepClick"; }, never, never, false, never>;
|
|
3531
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsVerticalSideNavigationStepperComponent, "ads-vertical-side-navigation-stepper", never, { "steps": { "alias": "steps"; "required": false; }; "smoothScroll": { "alias": "smoothScroll"; "required": false; }; "scrollOffset": { "alias": "scrollOffset"; "required": false; }; }, { "stepClick": "stepClick"; "subStepClick": "subStepClick"; }, never, never, false, never>;
|
|
3457
3532
|
}
|
|
3458
3533
|
|
|
3459
3534
|
declare class AdsVerticalSideNavigationStepperModule {
|
|
3460
3535
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsVerticalSideNavigationStepperModule, never>;
|
|
3461
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsVerticalSideNavigationStepperModule, [typeof AdsVerticalSideNavigationStepperComponent], [typeof i2.CommonModule, typeof
|
|
3536
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsVerticalSideNavigationStepperModule, [typeof AdsVerticalSideNavigationStepperComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule], [typeof AdsVerticalSideNavigationStepperComponent]>;
|
|
3462
3537
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsVerticalSideNavigationStepperModule>;
|
|
3463
3538
|
}
|
|
3464
3539
|
|
|
@@ -3471,5 +3546,5 @@ declare function provideAdsUi(config: AdsUiConfig): {
|
|
|
3471
3546
|
useValue: AdsUiConfig;
|
|
3472
3547
|
}[];
|
|
3473
3548
|
|
|
3474
|
-
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, AdsPilotPayLogoComponent, AdsPilotPayLogoModule, 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, AdsVerticalSideNavigationStepperComponent, AdsVerticalSideNavigationStepperModule, AdsWizardStepperComponent, AdsWizardStepperModule, AscentCardComponent, AscentCardModule, BadgeColor, Colors, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, SpinnerSize, StepStatus, TableBreakpoint, ViewportService, WindowService, WizardStepStatus, provideAdsUi };
|
|
3475
|
-
export type { AdsModalData, AdsUiConfig, Breadcrumb, ColumnVisibilityControl, Copyright, DROP_CALLBACK_INDEXES, DividerStyle, ErrorPageConfig, ErrorPageInfoColumn, HorizontalNavLink, IconButtonSize, Link, MainMenuItem, NavItem, NavMenuItem, NumericStep, ProgressStep, ScmsNavItem, ScmsNavSubItem, SearchDropdownComponentOptions, SearchDropdownDisplayControlValue, SearchDropdownStaticOption, SearchDropdownStaticOptionTemplateContext, Size, SnackBarData, Step, Tab, Tag, UNSUBSCRIBE_FUNCTIONS_COLLECTION, Variant, VerticalSideNavigationStep, WizardStep };
|
|
3549
|
+
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, 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, 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, AdsVerticalSideNavigationStepperComponent, AdsVerticalSideNavigationStepperModule, AdsWizardStepperComponent, AdsWizardStepperModule, AscentCardComponent, AscentCardModule, BadgeColor, Colors, CustomDatetimeAdapter, DividerComponent, ErrorPageDefault, HorizontalStepStatus, MainMenuService, ModalActionType, ModalPanelClass, PanelClass, ShellLayoutComponent, SpinnerSize, StepStatus, TableBreakpoint, ViewportService, WindowService, WizardStepStatus, provideAdsUi };
|
|
3550
|
+
export type { AdsModalData, AdsUiConfig, Breadcrumb, ColumnVisibilityControl, Copyright, DROP_CALLBACK_INDEXES, DividerStyle, ErrorPageConfig, ErrorPageInfoColumn, HorizontalNavLink, HorizontalStep, IconButtonSize, Link, MainMenuItem, NavItem, NavMenuItem, NumericStep, ProgressStep, ScmsNavItem, ScmsNavSubItem, SearchDropdownComponentOptions, SearchDropdownDisplayControlValue, SearchDropdownStaticOption, SearchDropdownStaticOptionTemplateContext, Size, SnackBarData, Step, Tab, Tag, UNSUBSCRIBE_FUNCTIONS_COLLECTION, Variant, VerticalSideNavigationStep, WizardStep };
|