@abgov/angular-components 5.0.0-dev.1 → 5.0.0-dev.3

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "https://github.com/GovAlta/ui-components/issues"
6
6
  },
7
7
  "license": "Apache-2.0",
8
- "version": "5.0.0-dev.1",
8
+ "version": "5.0.0-dev.3",
9
9
  "keywords": [
10
10
  "Goab",
11
11
  "ui-components",
@@ -17,7 +17,7 @@
17
17
  "directory": "libs/angular-components"
18
18
  },
19
19
  "peerDependencies": {
20
- "@abgov/ui-components-common": "^0.0.0 || ^1.0.0",
20
+ "@abgov/ui-components-common": "^0.0.0 || ^1.0.0 || ^2.0.0",
21
21
  "@angular/forms": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0",
22
22
  "@angular/common": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0",
23
23
  "@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0"
@@ -34,6 +34,7 @@
34
34
  "default": "./fesm2022/abgov-angular-components.mjs"
35
35
  }
36
36
  },
37
+ "type": "module",
37
38
  "dependencies": {
38
39
  "tslib": "^2.3.0"
39
40
  }
@@ -1,11 +1,11 @@
1
1
  import * as i0 from '@angular/core';
2
- import { ElementRef, Renderer2, OnInit, TemplateRef, EventEmitter, ChangeDetectorRef } from '@angular/core';
2
+ import { ElementRef, Renderer2, OnInit, TemplateRef, EventEmitter } from '@angular/core';
3
3
  import { ControlValueAccessor, CheckboxControlValueAccessor } from '@angular/forms';
4
4
  import { Spacing, GoabAccordionHeadingSize, GoabAccordionIconPosition, GoabBadgeType, GoabIconType, GoabBadgeSize, GoabBadgeEmphasis, GoabBlockDirection, GoabBlockAlignment, GoabButtonType, GoabButtonSize, GoabButtonVariant, GoabButtonGroupAlignment, GoabButtonGroupGap, GoabCalendarOnChangeDetail, GoabCalloutType, GoabCalloutSize, GoabCalloutAriaLive, GoabCalloutIconTheme, GoabCalloutEmphasis, GoabCheckboxSize, GoabCheckboxOnChangeDetail, GoabCheckboxListOnChangeDetail, GoabChipVariant, GoabChipTheme, GoabCircularProgressVariant, GoabCircularProgressSize, GoabContainerType, GoabContainerAccent, GoabContainerPadding, GoabContainerWidth, GoabDatePickerInputType, GoabDatePickerOnChangeDetail, GoabDrawerPosition, GoabDrawerSize, GoabDropdownSize, GoabDropdownOnChangeDetail, GoabDropdownItemMountType, GoabFileUploadOnCancelDetail, GoabFileUploadOnDeleteDetail, GoabFileUploadInputVariant, GoabFileUploadInputOnSelectFileDetail, GoabPublicFormStatus, GoabFormState, GoabPublicFormPageStep, GoabPublicFormPageButtonVisibility, GoabPublicFormTaskStatus, GoabFormDispatchOn, GoabFieldsetOnContinueDetail, GoabFormItemLabelSize, GoabFormItemRequirement, GoabFormItemType, GoabFormStepStatus, GoabFormStepperOnChangeDetail, GoabIconOverridesType, GoabIconSize, GoabIconTheme, GoabIconButtonVariant, GoabInputType, GoabInputAutoCapitalize, GoabInputSize, GoabInputOnFocusDetail, GoabInputOnBlurDetail, GoabInputOnKeyPressDetail, GoabInputOnChangeDetail, GoabLinkColor, GoabLinkSize, GoabServiceLevel, GoabLinkTarget, GoabModalCalloutVariant, GoabModalTransition, GoabMenuButtonOnActionDetail, GoabNotificationType, GoabAriaLiveType, GoabNotificationEmphasis, GoabPageBlockSize, GoabPaginationVariant, GoabPaginationOnChangeDetail, GoabPopoverPosition, GoabRadioGroupOrientation, GoabRadioGroupSize, GoabRadioGroupOnChangeDetail, GoabSkeletonType, GoabSkeletonSize, GoabSpacerHorizontalSpacing, GoabSpacerVerticalSpacing, GoabTableVariant, GoabTableSortMode, GoabTableOnSortDetail, GoabTableOnMultiSortDetail, GoabTableSortDirection, GoabTableSortOrder, GoabTabsVariant, GoabTabsOrientation, GoabTabsNavigation, GoabTabsOnChangeDetail, GoabTextTextElement, GoabTextHeadingElement, GoabTextSize, GoabTextMaxWidth, GoabTextColor, GoabTextAreaCountBy, GoabTextAreaSize, GoabTextAreaOnChangeDetail, GoabTextAreaOnKeyPressDetail, GoabTextAreaOnBlurDetail, GoabTooltipPosition, GoabTooltipHorizontalAlignment, GoabWorkSideMenuItemType, GoabWorkSideNotificationItemType, GoabWorkSideNotificationReadStatus, GoabWorkSideNotificationPriority, GoabWorkSideNotificationActiveTabType } from '@abgov/ui-components-common';
5
5
  export * from '@abgov/ui-components-common';
6
6
 
7
7
  declare class ValueDirective implements ControlValueAccessor {
8
- protected elementRef: ElementRef;
8
+ protected elementRef: ElementRef<any>;
9
9
  private _value;
10
10
  private _disabled;
11
11
  onChange: any;
@@ -16,14 +16,13 @@ declare class ValueDirective implements ControlValueAccessor {
16
16
  registerOnChange(fn: () => void): void;
17
17
  registerOnTouched(fn: () => void): void;
18
18
  setDisabledState(isDisabled: boolean): void;
19
- constructor(elementRef: ElementRef);
20
19
  listenForValueChange(event: Event): void;
21
20
  listenForDisabledChange(event: Event): void;
22
21
  static ɵfac: i0.ɵɵFactoryDeclaration<ValueDirective, never>;
23
22
  static ɵdir: i0.ɵɵDirectiveDeclaration<ValueDirective, "[goaValue]", never, {}, {}, never, never, true, never>;
24
23
  }
25
24
  declare class ValueListDirective implements ControlValueAccessor {
26
- protected elementRef: ElementRef;
25
+ protected elementRef: ElementRef<any>;
27
26
  private _value?;
28
27
  onChange: any;
29
28
  onTouched: any;
@@ -32,7 +31,6 @@ declare class ValueListDirective implements ControlValueAccessor {
32
31
  writeValue(value?: string[]): void;
33
32
  registerOnChange(fn: () => void): void;
34
33
  registerOnTouched(fn: () => void): void;
35
- constructor(elementRef: ElementRef);
36
34
  listenForValueChange(event: Event): void;
37
35
  _setValue(value?: string[]): void;
38
36
  static ɵfac: i0.ɵɵFactoryDeclaration<ValueListDirective, never>;
@@ -45,7 +43,7 @@ declare class CheckedDirective extends CheckboxControlValueAccessor {
45
43
  private _checked;
46
44
  onChange: any;
47
45
  onTouched: any;
48
- constructor(renderer: Renderer2, elementRef: ElementRef);
46
+ constructor();
49
47
  get value(): string;
50
48
  set value(checked: any);
51
49
  writeValue(checked: any): void;
@@ -72,7 +70,6 @@ declare abstract class GoabBaseComponent {
72
70
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabBaseComponent, "ng-component", never, { "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
73
71
  }
74
72
  declare abstract class GoabControlValueAccessor extends GoabBaseComponent implements ControlValueAccessor {
75
- protected renderer: Renderer2;
76
73
  id?: string;
77
74
  disabled?: boolean;
78
75
  error?: boolean;
@@ -98,7 +95,7 @@ declare abstract class GoabControlValueAccessor extends GoabBaseComponent implem
98
95
  * The base class captures it here so children don't need their own ViewChild.
99
96
  */
100
97
  protected goaComponentRef?: ElementRef;
101
- constructor(renderer: Renderer2);
98
+ protected renderer: Renderer2;
102
99
  /**
103
100
  * Convert an arbitrary value into a string for DOM attribute assignment.
104
101
  * Child classes can override when they need special formatting.
@@ -144,7 +141,6 @@ declare class GoabAccordion extends GoabBaseComponent implements OnInit {
144
141
  iconPosition?: GoabAccordionIconPosition;
145
142
  onChange: EventEmitter<boolean>;
146
143
  isReady: boolean;
147
- constructor(cdr: ChangeDetectorRef);
148
144
  ngOnInit(): void;
149
145
  _onChange(e: Event): void;
150
146
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabAccordion, never>;
@@ -163,7 +159,6 @@ declare class GoabBadge extends GoabBaseComponent implements OnInit {
163
159
  ariaLabel?: string;
164
160
  isReady: boolean;
165
161
  version: string;
166
- constructor(cdr: ChangeDetectorRef);
167
162
  ngOnInit(): void;
168
163
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabBadge, never>;
169
164
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabBadge, "goab-badge", never, { "type": { "alias": "type"; "required": false; }; "content": { "alias": "content"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
@@ -179,7 +174,6 @@ declare class GoabBlock extends GoabBaseComponent implements OnInit {
179
174
  minWidth?: string;
180
175
  maxWidth?: string;
181
176
  isReady: boolean;
182
- constructor(cdr: ChangeDetectorRef);
183
177
  ngOnInit(): void;
184
178
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabBlock, never>;
185
179
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabBlock, "goab-block", never, { "gap": { "alias": "gap"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -200,7 +194,6 @@ declare class GoabButton extends GoabBaseComponent implements OnInit {
200
194
  onClick: EventEmitter<any>;
201
195
  isReady: boolean;
202
196
  version: string;
203
- constructor(cdr: ChangeDetectorRef);
204
197
  ngOnInit(): void;
205
198
  _onClick(): void;
206
199
  protected readonly JSON: JSON;
@@ -214,7 +207,6 @@ declare class GoabButtonGroup extends GoabBaseComponent implements OnInit {
214
207
  alignment?: GoabButtonGroupAlignment;
215
208
  gap?: GoabButtonGroupGap;
216
209
  isReady: boolean;
217
- constructor(cdr: ChangeDetectorRef);
218
210
  ngOnInit(): void;
219
211
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabButtonGroup, never>;
220
212
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabButtonGroup, "goab-button-group", never, { "alignment": { "alias": "alignment"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -234,7 +226,6 @@ declare class GoabCalendar extends GoabBaseComponent implements OnInit {
234
226
  valueString(): string;
235
227
  minString(): string;
236
228
  maxString(): string;
237
- constructor(cdr: ChangeDetectorRef);
238
229
  ngOnInit(): void;
239
230
  _onChange(e: Event): void;
240
231
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabCalendar, never>;
@@ -245,7 +236,6 @@ declare class GoabCallout extends GoabBaseComponent implements OnInit {
245
236
  private cdr;
246
237
  isReady: boolean;
247
238
  version: string;
248
- constructor(cdr: ChangeDetectorRef);
249
239
  ngOnInit(): void;
250
240
  type?: GoabCalloutType;
251
241
  heading?: string;
@@ -261,7 +251,6 @@ declare class GoabCallout extends GoabBaseComponent implements OnInit {
261
251
  declare class GoabCard extends GoabBaseComponent implements OnInit {
262
252
  private cdr;
263
253
  isReady: boolean;
264
- constructor(cdr: ChangeDetectorRef);
265
254
  ngOnInit(): void;
266
255
  elevation?: number;
267
256
  width?: string;
@@ -273,7 +262,6 @@ declare class GoabCard extends GoabBaseComponent implements OnInit {
273
262
  declare class GoabCardContent implements OnInit {
274
263
  private cdr;
275
264
  isReady: boolean;
276
- constructor(cdr: ChangeDetectorRef);
277
265
  ngOnInit(): void;
278
266
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabCardContent, never>;
279
267
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabCardContent, "goab-card-content", never, {}, {}, never, ["*"], true, never>;
@@ -282,7 +270,6 @@ declare class GoabCardContent implements OnInit {
282
270
  declare class GoabCardActions implements OnInit {
283
271
  private cdr;
284
272
  isReady: boolean;
285
- constructor(cdr: ChangeDetectorRef);
286
273
  ngOnInit(): void;
287
274
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabCardActions, never>;
288
275
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabCardActions, "goab-card-actions", never, {}, {}, never, ["*"], true, never>;
@@ -293,7 +280,6 @@ declare class GoabCardImage implements OnInit {
293
280
  src: string;
294
281
  height: string;
295
282
  isReady: boolean;
296
- constructor(cdr: ChangeDetectorRef);
297
283
  ngOnInit(): void;
298
284
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabCardImage, never>;
299
285
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabCardImage, "goab-card-image", never, { "src": { "alias": "src"; "required": true; }; "height": { "alias": "height"; "required": true; }; }, {}, never, ["*"], true, never>;
@@ -303,7 +289,6 @@ declare class GoabCheckbox extends GoabControlValueAccessor implements OnInit {
303
289
  private cdr;
304
290
  isReady: boolean;
305
291
  version: string;
306
- constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
307
292
  ngOnInit(): void;
308
293
  name?: string;
309
294
  checked?: boolean;
@@ -335,7 +320,6 @@ declare class GoabCheckboxList extends GoabControlValueAccessor implements OnIni
335
320
  maxWidth?: string;
336
321
  size?: GoabCheckboxSize;
337
322
  value?: string[];
338
- constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
339
323
  ngOnInit(): void;
340
324
  onChange: EventEmitter<GoabCheckboxListOnChangeDetail>;
341
325
  _onChange(e: Event): void;
@@ -347,7 +331,6 @@ declare class GoabCheckboxList extends GoabControlValueAccessor implements OnIni
347
331
  declare class GoabChip extends GoabBaseComponent implements OnInit {
348
332
  private cdr;
349
333
  isReady: boolean;
350
- constructor(cdr: ChangeDetectorRef);
351
334
  ngOnInit(): void;
352
335
  leadingIcon?: GoabIconType | null;
353
336
  error?: boolean;
@@ -372,7 +355,6 @@ declare class GoabCircularProgress implements OnInit {
372
355
  progress?: number;
373
356
  testId?: string;
374
357
  isReady: boolean;
375
- constructor(cdr: ChangeDetectorRef);
376
358
  ngOnInit(): void;
377
359
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabCircularProgress, never>;
378
360
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabCircularProgress, "goab-circular-progress", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "message": { "alias": "message"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
@@ -384,7 +366,6 @@ declare class GoabColumnLayout implements OnInit {
384
366
  private cdr;
385
367
  /** no props **/
386
368
  isReady: boolean;
387
- constructor(cdr: ChangeDetectorRef);
388
369
  ngOnInit(): void;
389
370
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabColumnLayout, never>;
390
371
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabColumnLayout, "goab-column-layout", never, {}, {}, never, ["*"], true, never>;
@@ -402,7 +383,6 @@ declare class GoabContainer extends GoabBaseComponent implements OnInit {
402
383
  title: TemplateRef<any>;
403
384
  actions: TemplateRef<any>;
404
385
  isReady: boolean;
405
- constructor(cdr: ChangeDetectorRef);
406
386
  ngOnInit(): void;
407
387
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabContainer, never>;
408
388
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabContainer, "goab-container", never, { "type": { "alias": "type"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "title": { "alias": "title"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -414,14 +394,13 @@ declare class GoabDataGrid implements OnInit {
414
394
  keyboardIconPosition: "left" | "right";
415
395
  keyboardNav: "layout" | "table";
416
396
  isReady: boolean;
417
- constructor(cdr: ChangeDetectorRef);
418
397
  ngOnInit(): void;
419
398
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDataGrid, never>;
420
399
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabDataGrid, "goab-data-grid", never, { "keyboardIconVisibility": { "alias": "keyboardIconVisibility"; "required": false; }; "keyboardIconPosition": { "alias": "keyboardIconPosition"; "required": false; }; "keyboardNav": { "alias": "keyboardNav"; "required": true; }; }, {}, never, ["*"], true, never>;
421
400
  }
422
401
 
423
402
  declare class GoabDatePicker extends GoabControlValueAccessor implements OnInit {
424
- protected elementRef: ElementRef;
403
+ protected elementRef: ElementRef<any>;
425
404
  private cdr;
426
405
  isReady: boolean;
427
406
  version: string;
@@ -442,7 +421,6 @@ declare class GoabDatePicker extends GoabControlValueAccessor implements OnInit
442
421
  minString(): string;
443
422
  maxString(): string;
444
423
  _onChange(e: Event): void;
445
- constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, renderer: Renderer2);
446
424
  ngOnInit(): void;
447
425
  setDisabledState(isDisabled: boolean): void;
448
426
  listenDisabledChange(event: Event): void;
@@ -457,7 +435,6 @@ declare class GoabDetails extends GoabBaseComponent implements OnInit {
457
435
  open?: boolean;
458
436
  maxWidth?: string;
459
437
  isReady: boolean;
460
- constructor(cdr: ChangeDetectorRef);
461
438
  ngOnInit(): void;
462
439
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDetails, never>;
463
440
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabDetails, "goab-details", never, { "heading": { "alias": "heading"; "required": true; }; "open": { "alias": "open"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -467,7 +444,6 @@ declare class GoabDetails extends GoabBaseComponent implements OnInit {
467
444
  declare class GoabDivider extends GoabBaseComponent implements OnInit {
468
445
  private cdr;
469
446
  isReady: boolean;
470
- constructor(cdr: ChangeDetectorRef);
471
447
  ngOnInit(): void;
472
448
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDivider, never>;
473
449
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabDivider, "goab-divider", never, {}, {}, never, never, true, never>;
@@ -484,7 +460,6 @@ declare class GoabDrawer implements OnInit {
484
460
  actions: TemplateRef<any>;
485
461
  onClose: EventEmitter<any>;
486
462
  isReady: boolean;
487
- constructor(cdr: ChangeDetectorRef);
488
463
  ngOnInit(): void;
489
464
  _onClose(): void;
490
465
  getHeadingAsString(): string;
@@ -516,7 +491,6 @@ declare class GoabDropdown extends GoabControlValueAccessor implements OnInit {
516
491
  onChange: EventEmitter<GoabDropdownOnChangeDetail>;
517
492
  isReady: boolean;
518
493
  version: string;
519
- constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
520
494
  ngOnInit(): void;
521
495
  _onChange(e: Event): void;
522
496
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDropdown, never>;
@@ -534,7 +508,6 @@ declare class GoabDropdownItem implements OnInit {
534
508
  name?: string;
535
509
  mountType?: GoabDropdownItemMountType;
536
510
  isReady: boolean;
537
- constructor(cdr: ChangeDetectorRef);
538
511
  ngOnInit(): void;
539
512
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDropdownItem, never>;
540
513
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabDropdownItem, "goab-dropdown-item", never, { "value": { "alias": "value"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "mountType": { "alias": "mountType"; "required": false; }; }, {}, never, never, true, never>;
@@ -552,7 +525,6 @@ declare class GoabFileUploadCard implements OnInit {
552
525
  onDelete: EventEmitter<GoabFileUploadOnDeleteDetail>;
553
526
  isReady: boolean;
554
527
  version: string;
555
- constructor(cdr: ChangeDetectorRef);
556
528
  ngOnInit(): void;
557
529
  _onCancel(event: Event): void;
558
530
  _onDelete(event: Event): void;
@@ -571,7 +543,6 @@ declare class GoabFileUploadInput extends GoabBaseComponent implements OnInit {
571
543
  onSelectFile: EventEmitter<GoabFileUploadInputOnSelectFileDetail>;
572
544
  isReady: boolean;
573
545
  version: string;
574
- constructor(cdr: ChangeDetectorRef);
575
546
  ngOnInit(): void;
576
547
  _onSelectFile(e: Event): void;
577
548
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFileUploadInput, never>;
@@ -589,7 +560,6 @@ declare class GoabFilterChip extends GoabBaseComponent implements OnInit {
589
560
  onClick: EventEmitter<any>;
590
561
  isReady: boolean;
591
562
  version: string;
592
- constructor(cdr: ChangeDetectorRef);
593
563
  ngOnInit(): void;
594
564
  _onClick(): void;
595
565
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFilterChip, never>;
@@ -605,7 +575,6 @@ declare class GoabAppFooter implements OnInit {
605
575
  url?: string;
606
576
  isReady: boolean;
607
577
  version: string;
608
- constructor(cdr: ChangeDetectorRef);
609
578
  ngOnInit(): void;
610
579
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppFooter, never>;
611
580
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppFooter, "goab-app-footer", never, { "maxContentWidth": { "alias": "maxContentWidth"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, {}, never, ["[slot=nav]", "goab-app-footer-meta-section", "*"], true, never>;
@@ -617,7 +586,6 @@ declare class GoabAppFooterMetaSection implements OnInit {
617
586
  /** "slot" is required and must equal to "meta" so it can be rendered in the correct position **/
618
587
  slot: "meta";
619
588
  isReady: boolean;
620
- constructor(cdr: ChangeDetectorRef);
621
589
  ngOnInit(): void;
622
590
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppFooterMetaSection, never>;
623
591
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppFooterMetaSection, "goab-app-footer-meta-section", never, { "testId": { "alias": "testId"; "required": false; }; "slot": { "alias": "slot"; "required": true; }; }, {}, never, ["*"], true, never>;
@@ -631,7 +599,6 @@ declare class GoabAppFooterNavSection implements OnInit {
631
599
  /** "slot" is required and must equal to "nav" so it can be rendered in the correct position **/
632
600
  slot: "nav";
633
601
  isReady: boolean;
634
- constructor(cdr: ChangeDetectorRef);
635
602
  ngOnInit(): void;
636
603
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppFooterNavSection, never>;
637
604
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppFooterNavSection, "goab-app-footer-nav-section", never, { "heading": { "alias": "heading"; "required": false; }; "maxColumnCount": { "alias": "maxColumnCount"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "slot": { "alias": "slot"; "required": true; }; }, {}, never, ["*"], true, never>;
@@ -738,7 +705,6 @@ declare class GoabFormItem extends GoabBaseComponent implements OnInit {
738
705
  name?: string;
739
706
  isReady: boolean;
740
707
  version: string;
741
- constructor(cdr: ChangeDetectorRef);
742
708
  ngOnInit(): void;
743
709
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormItem, never>;
744
710
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormItem, "goab-form-item", never, { "label": { "alias": "label"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "error": { "alias": "error"; "required": false; }; "requirement": { "alias": "requirement"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "publicFormSummaryOrder": { "alias": "publicFormSummaryOrder"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*", "goab-form-item-slot"], true, never>;
@@ -755,7 +721,6 @@ declare class GoabFormStep implements OnInit {
755
721
  text?: string;
756
722
  status?: GoabFormStepStatus;
757
723
  isReady: boolean;
758
- constructor(cdr: ChangeDetectorRef);
759
724
  ngOnInit(): void;
760
725
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormStep, never>;
761
726
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormStep, "goab-form-step", never, { "text": { "alias": "text"; "required": false; }; "status": { "alias": "status"; "required": false; }; }, {}, never, never, true, never>;
@@ -766,7 +731,6 @@ declare class GoabFormStepper extends GoabBaseComponent implements OnInit {
766
731
  step?: number;
767
732
  onChange: EventEmitter<GoabFormStepperOnChangeDetail>;
768
733
  isReady: boolean;
769
- constructor(cdr: ChangeDetectorRef);
770
734
  ngOnInit(): void;
771
735
  _onChange(e: Event): void;
772
736
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormStepper, never>;
@@ -778,7 +742,6 @@ declare class GoabGrid extends GoabBaseComponent implements OnInit {
778
742
  isReady: boolean;
779
743
  minChildWidth: string;
780
744
  gap?: Spacing;
781
- constructor(cdr: ChangeDetectorRef);
782
745
  ngOnInit(): void;
783
746
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabGrid, never>;
784
747
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabGrid, "goab-grid", never, { "minChildWidth": { "alias": "minChildWidth"; "required": true; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -793,7 +756,6 @@ declare class GoabAppHeader extends GoabBaseComponent implements OnInit {
793
756
  fullMenuBreakpoint?: number;
794
757
  isReady: boolean;
795
758
  version: string;
796
- constructor(cdr: ChangeDetectorRef);
797
759
  ngOnInit(): void;
798
760
  onMenuClick: EventEmitter<any>;
799
761
  _onMenuClick(): void;
@@ -809,7 +771,6 @@ declare class GoabAppHeaderMenu extends GoabBaseComponent implements OnInit {
809
771
  slotName?: string;
810
772
  get hostSlot(): string | null;
811
773
  isReady: boolean;
812
- constructor(cdr: ChangeDetectorRef);
813
774
  ngOnInit(): void;
814
775
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppHeaderMenu, never>;
815
776
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppHeaderMenu, "goab-app-header-menu", never, { "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "slotName": { "alias": "slotName"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -826,7 +787,6 @@ declare class GoabHeroBanner implements OnInit {
826
787
  backgroundColor?: string;
827
788
  textColor?: string;
828
789
  actions: TemplateRef<any>;
829
- constructor(cdr: ChangeDetectorRef);
830
790
  ngOnInit(): void;
831
791
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabHeroBanner, never>;
832
792
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabHeroBanner, "goab-hero-banner", never, { "heading": { "alias": "heading"; "required": false; }; "backgroundUrl": { "alias": "backgroundUrl"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "maxContentWidth": { "alias": "maxContentWidth"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -843,7 +803,6 @@ declare class GoabIcon extends GoabBaseComponent implements OnInit {
843
803
  title?: string;
844
804
  ariaLabel?: string;
845
805
  isReady: boolean;
846
- constructor(cdr: ChangeDetectorRef);
847
806
  ngOnInit(): void;
848
807
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabIcon, never>;
849
808
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabIcon, "goab-icon", never, { "type": { "alias": "type"; "required": true; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "fillColor": { "alias": "fillColor"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "title": { "alias": "title"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
@@ -865,7 +824,6 @@ declare class GoabIconButton extends GoabBaseComponent implements OnInit {
865
824
  actionArg?: string;
866
825
  actionArgs?: Record<string, unknown>;
867
826
  onClick: EventEmitter<any>;
868
- constructor(cdr: ChangeDetectorRef);
869
827
  ngOnInit(): void;
870
828
  _onClick(): void;
871
829
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabIconButton, never>;
@@ -905,10 +863,9 @@ declare class GoabInput extends GoabControlValueAccessor implements OnInit {
905
863
  onBlur: EventEmitter<GoabInputOnBlurDetail>;
906
864
  onKeyPress: EventEmitter<GoabInputOnKeyPressDetail>;
907
865
  onChange: EventEmitter<GoabInputOnChangeDetail>;
908
- isReady: boolean;
909
866
  version: string;
867
+ isReady: boolean;
910
868
  handleTrailingIconClick: boolean;
911
- constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
912
869
  ngOnInit(): void;
913
870
  _onTrailingIconClick(_: Event): void;
914
871
  _onChange(e: Event): void;
@@ -969,7 +926,6 @@ declare class GoabInputNumber implements ControlValueAccessor, OnInit {
969
926
  onKeyPress: EventEmitter<GoabInputOnKeyPressDetail>;
970
927
  onChange: EventEmitter<GoabInputOnChangeDetail>;
971
928
  handleTrailingIconClick: boolean;
972
- constructor(cdr: ChangeDetectorRef);
973
929
  ngOnInit(): void;
974
930
  _onTrailingIconClick(_: Event): void;
975
931
  _onChange(e: Event): void;
@@ -1007,7 +963,6 @@ declare class GoabLinearProgress implements OnInit {
1007
963
  ariaLabelledBy?: string;
1008
964
  testid?: string;
1009
965
  isReady: boolean;
1010
- constructor(cdr: ChangeDetectorRef);
1011
966
  ngOnInit(): void;
1012
967
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabLinearProgress, never>;
1013
968
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabLinearProgress, "goab-linear-progress", never, { "progress": { "alias": "progress"; "required": false; }; "percentVisibility": { "alias": "percentVisibility"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "testid": { "alias": "testid"; "required": false; }; }, {}, never, never, true, never>;
@@ -1028,7 +983,6 @@ declare class GoabLink implements OnInit {
1028
983
  mb?: Spacing;
1029
984
  ml?: Spacing;
1030
985
  mr?: Spacing;
1031
- constructor(cdr: ChangeDetectorRef);
1032
986
  ngOnInit(): void;
1033
987
  protected readonly JSON: JSON;
1034
988
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabLink, never>;
@@ -1045,7 +999,6 @@ declare class GoabMicrositeHeader implements OnInit {
1045
999
  maxContentWidth?: string;
1046
1000
  feedbackUrlTarget?: GoabLinkTarget;
1047
1001
  headerUrlTarget?: GoabLinkTarget;
1048
- constructor(cdr: ChangeDetectorRef);
1049
1002
  ngOnInit(): void;
1050
1003
  onFeedbackClick: EventEmitter<any>;
1051
1004
  getVersionAsString(): string;
@@ -1059,7 +1012,6 @@ declare class GoabModal implements OnInit {
1059
1012
  private cdr;
1060
1013
  isReady: boolean;
1061
1014
  version: string;
1062
- constructor(cdr: ChangeDetectorRef);
1063
1015
  ngOnInit(): void;
1064
1016
  calloutVariant?: GoabModalCalloutVariant;
1065
1017
  open?: boolean;
@@ -1117,7 +1069,6 @@ declare class GoabNotification implements OnInit {
1117
1069
  emphasis?: GoabNotificationEmphasis;
1118
1070
  compact?: boolean;
1119
1071
  testId?: string;
1120
- constructor(cdr: ChangeDetectorRef);
1121
1072
  ngOnInit(): void;
1122
1073
  onDismiss: EventEmitter<any>;
1123
1074
  _onDismiss(): void;
@@ -1131,7 +1082,6 @@ declare class GoabPageBlock implements OnInit {
1131
1082
  isReady: boolean;
1132
1083
  width?: GoabPageBlockSize;
1133
1084
  testId?: string;
1134
- constructor(cdr: ChangeDetectorRef);
1135
1085
  ngOnInit(): void;
1136
1086
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabPageBlock, never>;
1137
1087
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabPageBlock, "goab-page-block", never, { "width": { "alias": "width"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1141,7 +1091,6 @@ declare class GoabPages extends GoabBaseComponent implements OnInit {
1141
1091
  private cdr;
1142
1092
  isReady: boolean;
1143
1093
  current?: number;
1144
- constructor(cdr: ChangeDetectorRef);
1145
1094
  ngOnInit(): void;
1146
1095
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabPages, never>;
1147
1096
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabPages, "goab-pages", never, { "current": { "alias": "current"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1156,7 +1105,6 @@ declare class GoabPagination extends GoabBaseComponent implements OnInit {
1156
1105
  pageNumber: number;
1157
1106
  perPageCount?: number;
1158
1107
  variant?: GoabPaginationVariant;
1159
- constructor(cdr: ChangeDetectorRef);
1160
1108
  ngOnInit(): void;
1161
1109
  onChange: EventEmitter<GoabPaginationOnChangeDetail>;
1162
1110
  _onChange(e: Event): void;
@@ -1176,7 +1124,6 @@ declare class GoabPopover extends GoabBaseComponent implements OnInit {
1176
1124
  */
1177
1125
  relative?: boolean;
1178
1126
  target: TemplateRef<any>;
1179
- constructor(cdr: ChangeDetectorRef);
1180
1127
  ngOnInit(): void;
1181
1128
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabPopover, never>;
1182
1129
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabPopover, "goab-popover", never, { "maxWidth": { "alias": "maxWidth"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "padded": { "alias": "padded"; "required": false; }; "position": { "alias": "position"; "required": false; }; "relative": { "alias": "relative"; "required": false; }; "target": { "alias": "target"; "required": true; }; }, {}, never, ["*"], true, never>;
@@ -1192,7 +1139,6 @@ declare class GoabPushDrawer implements OnInit {
1192
1139
  actions: TemplateRef<any>;
1193
1140
  onClose: EventEmitter<any>;
1194
1141
  isReady: boolean;
1195
- constructor(cdr: ChangeDetectorRef);
1196
1142
  ngOnInit(): void;
1197
1143
  _onClose(): void;
1198
1144
  getHeadingAsString(): string;
@@ -1210,7 +1156,6 @@ declare class GoabRadioGroup extends GoabControlValueAccessor implements OnInit
1210
1156
  orientation?: GoabRadioGroupOrientation;
1211
1157
  ariaLabel?: string;
1212
1158
  size?: GoabRadioGroupSize;
1213
- constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
1214
1159
  ngOnInit(): void;
1215
1160
  onChange: EventEmitter<GoabRadioGroupOnChangeDetail>;
1216
1161
  _onChange(e: Event): void;
@@ -1234,7 +1179,6 @@ declare class GoabRadioItem extends GoabBaseComponent implements OnInit {
1234
1179
  compact?: boolean;
1235
1180
  isReady: boolean;
1236
1181
  version: string;
1237
- constructor(cdr: ChangeDetectorRef);
1238
1182
  ngOnInit(): void;
1239
1183
  getDescriptionAsString(): string;
1240
1184
  getDescriptionAsTemplate(): TemplateRef<any> | null;
@@ -1251,7 +1195,6 @@ declare class GoabSideMenu implements OnInit {
1251
1195
  isReady: boolean;
1252
1196
  version: string;
1253
1197
  testId?: string;
1254
- constructor(cdr: ChangeDetectorRef);
1255
1198
  ngOnInit(): void;
1256
1199
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabSideMenu, never>;
1257
1200
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabSideMenu, "goab-side-menu", never, { "testId": { "alias": "testId"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1263,7 +1206,6 @@ declare class GoabSideMenuGroup extends GoabBaseComponent implements OnInit {
1263
1206
  version: string;
1264
1207
  heading: string;
1265
1208
  icon?: GoabIconType;
1266
- constructor(cdr: ChangeDetectorRef);
1267
1209
  ngOnInit(): void;
1268
1210
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabSideMenuGroup, never>;
1269
1211
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabSideMenuGroup, "goab-side-menu-group", never, { "heading": { "alias": "heading"; "required": true; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1276,7 +1218,6 @@ declare class GoabSideMenuHeading implements OnInit {
1276
1218
  icon: GoabIconType;
1277
1219
  testId?: string;
1278
1220
  meta: TemplateRef<any>;
1279
- constructor(cdr: ChangeDetectorRef);
1280
1221
  ngOnInit(): void;
1281
1222
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabSideMenuHeading, never>;
1282
1223
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabSideMenuHeading, "goab-side-menu-heading", never, { "icon": { "alias": "icon"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "meta": { "alias": "meta"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1289,7 +1230,6 @@ declare class GoabSkeleton extends GoabBaseComponent implements OnInit {
1289
1230
  maxWidth: string;
1290
1231
  size?: GoabSkeletonSize;
1291
1232
  lineCount?: number;
1292
- constructor(cdr: ChangeDetectorRef);
1293
1233
  ngOnInit(): void;
1294
1234
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabSkeleton, never>;
1295
1235
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabSkeleton, "goab-skeleton", never, { "type": { "alias": "type"; "required": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "size": { "alias": "size"; "required": false; }; "lineCount": { "alias": "lineCount"; "required": false; }; }, {}, never, never, true, never>;
@@ -1302,7 +1242,6 @@ declare class GoabSpacer implements OnInit {
1302
1242
  hSpacing?: GoabSpacerHorizontalSpacing;
1303
1243
  vSpacing?: GoabSpacerVerticalSpacing;
1304
1244
  testId?: string;
1305
- constructor(cdr: ChangeDetectorRef);
1306
1245
  ngOnInit(): void;
1307
1246
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabSpacer, never>;
1308
1247
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabSpacer, "goab-spacer", never, { "hSpacing": { "alias": "hSpacing"; "required": false; }; "vSpacing": { "alias": "vSpacing"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
@@ -1314,7 +1253,6 @@ declare class GoabTab implements OnInit {
1314
1253
  heading: string | TemplateRef<any>;
1315
1254
  disabled?: boolean;
1316
1255
  slug?: string;
1317
- constructor(cdr: ChangeDetectorRef);
1318
1256
  ngOnInit(): void;
1319
1257
  getHeadingAsString(): string;
1320
1258
  getHeadingAsTemplate(): TemplateRef<any> | null;
@@ -1331,7 +1269,6 @@ declare class GoabTable extends GoabBaseComponent implements OnInit {
1331
1269
  variant?: GoabTableVariant;
1332
1270
  sortMode?: GoabTableSortMode;
1333
1271
  striped?: boolean;
1334
- constructor(cdr: ChangeDetectorRef);
1335
1272
  ngOnInit(): void;
1336
1273
  onSort: EventEmitter<GoabTableOnSortDetail>;
1337
1274
  onMultiSort: EventEmitter<GoabTableOnMultiSortDetail>;
@@ -1348,7 +1285,6 @@ declare class GoabTableSortHeader implements OnInit {
1348
1285
  name?: string;
1349
1286
  direction?: GoabTableSortDirection;
1350
1287
  sortOrder?: GoabTableSortOrder;
1351
- constructor(cdr: ChangeDetectorRef);
1352
1288
  ngOnInit(): void;
1353
1289
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabTableSortHeader, never>;
1354
1290
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabTableSortHeader, "goab-table-sort-header", never, { "name": { "alias": "name"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "sortOrder": { "alias": "sortOrder"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1364,7 +1300,6 @@ declare class GoabTabs implements OnInit {
1364
1300
  /** Tab layout orientation. "auto" stacks vertically on mobile (default), "horizontal" keeps horizontal on all screen sizes. */
1365
1301
  orientation?: GoabTabsOrientation;
1366
1302
  navigation?: GoabTabsNavigation;
1367
- constructor(cdr: ChangeDetectorRef);
1368
1303
  ngOnInit(): void;
1369
1304
  onChange: EventEmitter<GoabTabsOnChangeDetail>;
1370
1305
  _onChange(e: Event): void;
@@ -1381,7 +1316,6 @@ declare class GoabTemporaryNotificationCtrl implements OnInit {
1381
1316
  verticalPosition: SnackbarVerticalPosition;
1382
1317
  horizontalPosition: SnackbarHorizontalPosition;
1383
1318
  testId?: string;
1384
- constructor(cdr: ChangeDetectorRef);
1385
1319
  ngOnInit(): void;
1386
1320
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabTemporaryNotificationCtrl, never>;
1387
1321
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabTemporaryNotificationCtrl, "goab-temporary-notification-ctrl", never, { "verticalPosition": { "alias": "verticalPosition"; "required": false; }; "horizontalPosition": { "alias": "horizontalPosition"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
@@ -1400,7 +1334,6 @@ declare class GoabText implements OnInit {
1400
1334
  ml?: Spacing;
1401
1335
  mr?: Spacing;
1402
1336
  isReady: boolean;
1403
- constructor(cdr: ChangeDetectorRef);
1404
1337
  ngOnInit(): void;
1405
1338
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabText, never>;
1406
1339
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabText, "goab-text", never, { "tag": { "alias": "tag"; "required": false; }; "size": { "alias": "size"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "color": { "alias": "color"; "required": false; }; "id": { "alias": "id"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1424,7 +1357,6 @@ declare class GoabTextArea extends GoabControlValueAccessor implements OnInit {
1424
1357
  onBlur: EventEmitter<GoabTextAreaOnBlurDetail>;
1425
1358
  isReady: boolean;
1426
1359
  version: string;
1427
- constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
1428
1360
  ngOnInit(): void;
1429
1361
  _onChange(e: Event): void;
1430
1362
  _onKeyPress(e: Event): void;
@@ -1442,7 +1374,6 @@ declare class GoabTooltip extends GoabBaseComponent implements OnInit {
1442
1374
  content?: string | TemplateRef<unknown>;
1443
1375
  hAlign?: GoabTooltipHorizontalAlignment;
1444
1376
  maxWidth?: string;
1445
- constructor(cdr: ChangeDetectorRef);
1446
1377
  ngOnInit(): void;
1447
1378
  getContentAsString(): string;
1448
1379
  getContentAsTemplate(): TemplateRef<unknown> | null;
@@ -1464,7 +1395,6 @@ declare class GoabWorkSideMenu implements OnInit {
1464
1395
  onToggle: EventEmitter<any>;
1465
1396
  onNavigate: EventEmitter<string>;
1466
1397
  isReady: boolean;
1467
- constructor(cdr: ChangeDetectorRef);
1468
1398
  ngOnInit(): void;
1469
1399
  _onToggle(): void;
1470
1400
  _onNavigate(e: Event): void;
@@ -1480,7 +1410,6 @@ declare class GoabWorkSideMenuGroup implements OnInit {
1480
1410
  open?: boolean;
1481
1411
  testId?: string;
1482
1412
  isReady: boolean;
1483
- constructor(cdr: ChangeDetectorRef);
1484
1413
  ngOnInit(): void;
1485
1414
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabWorkSideMenuGroup, never>;
1486
1415
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabWorkSideMenuGroup, "goab-work-side-menu-group", never, { "heading": { "alias": "heading"; "required": true; }; "icon": { "alias": "icon"; "required": false; }; "open": { "alias": "open"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1499,7 +1428,6 @@ declare class GoabWorkSideMenuItem implements OnInit {
1499
1428
  type?: GoabWorkSideMenuItemType;
1500
1429
  popoverContent: TemplateRef<any>;
1501
1430
  isReady: boolean;
1502
- constructor(cdr: ChangeDetectorRef);
1503
1431
  ngOnInit(): void;
1504
1432
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabWorkSideMenuItem, never>;
1505
1433
  static ɵcmp: i0.ɵɵComponentDeclaration<GoabWorkSideMenuItem, "goab-work-side-menu-item", never, { "label": { "alias": "label"; "required": true; }; "url": { "alias": "url"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "current": { "alias": "current"; "required": false; }; "divider": { "alias": "divider"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "type": { "alias": "type"; "required": false; }; "popoverContent": { "alias": "popoverContent"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -1516,7 +1444,6 @@ declare class GoabWorkSideNotificationItem implements OnInit {
1516
1444
  testId?: string;
1517
1445
  onClick: EventEmitter<void>;
1518
1446
  isReady: boolean;
1519
- constructor(cdr: ChangeDetectorRef);
1520
1447
  ngOnInit(): void;
1521
1448
  _onClick(): void;
1522
1449
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabWorkSideNotificationItem, never>;
@@ -1531,7 +1458,6 @@ declare class GoabWorkSideNotificationPanel implements OnInit {
1531
1458
  onMarkAllRead: EventEmitter<void>;
1532
1459
  onViewAll: EventEmitter<void>;
1533
1460
  isReady: boolean;
1534
- constructor(cdr: ChangeDetectorRef);
1535
1461
  ngOnInit(): void;
1536
1462
  _onMarkAllRead(): void;
1537
1463
  _onViewAll(): void;