@sebgroup/green-core-ng 3.21.0 → 3.21.1

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/index.d.ts CHANGED
@@ -1,26 +1,27 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { OnInit, OnChanges, AfterViewInit, EventEmitter, SimpleChanges, ElementRef, NgZone, ChangeDetectorRef, Renderer2, Injector, InjectionToken, RendererStyleFlags2, RendererFactory2, RendererType2 } from '@angular/core';
3
3
  import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
4
- import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
5
4
  import { GdsAvatar } from '@sebgroup/green-core/components/avatar/avatar.component.js';
5
+ import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
6
6
  import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
7
7
  import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
8
8
  import { ControlValueAccessor, NgControl } from '@angular/forms';
9
9
  import { GdsButton } from '@sebgroup/green-core/components/button/button.component.js';
10
- import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
11
10
  import { GdsCard } from '@sebgroup/green-core/components/card/card.component.js';
11
+ import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
12
12
  import { GdsCardLinked } from '@sebgroup/green-core/components/card-linked/card-linked.component.js';
13
13
  import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.component.js';
14
14
  import { GdsCoachmark } from '@sebgroup/green-core/components/coachmark/coachmark.component.js';
15
15
  import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
16
- import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
17
16
  import { GdsDetails } from '@sebgroup/green-core/components/details/details.component.js';
17
+ import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
18
18
  import { GdsDialog } from '@sebgroup/green-core/components/dialog/dialog.component.js';
19
19
  import { GdsDiv } from '@sebgroup/green-core/components/div/div.component.js';
20
20
  import { GdsDivider } from '@sebgroup/green-core/components/divider/divider.component.js';
21
- import { GdsDropdown, GdsOption } from '@sebgroup/green-core/components/dropdown/dropdown.component.js';
22
- import { GdsFilterChips } from '@sebgroup/green-core/components/filter-chips/filter-chips.component.js';
21
+ import { GdsDropdown } from '@sebgroup/green-core/components/dropdown/dropdown.component.js';
22
+ import { GdsOption } from '@sebgroup/green-core/components/dropdown/option.component.js';
23
23
  import { GdsFab } from '@sebgroup/green-core/components/fab/fab.component.js';
24
+ import { GdsFilterChips } from '@sebgroup/green-core/components/filter-chips/filter-chips.component.js';
24
25
  import { GdsFlex } from '@sebgroup/green-core/components/flex/flex.component.js';
25
26
  import { GdsFormSummary } from '@sebgroup/green-core/components/form-summary/summary.component.js';
26
27
  import { GdsGrid } from '@sebgroup/green-core/components/grid/grid.component.js';
@@ -454,73 +455,85 @@ declare class GdsAlertComponent implements OnInit, OnChanges, AfterViewInit {
454
455
  }
455
456
 
456
457
  /**
457
- * Angular wrapper for the gds-badge web component
458
- * `gds-badge`
458
+ * Angular wrapper for the gds-avatar web component
459
+ * `gds-avatar` is a visual element used to represent a user or entity.
460
+ It supports displaying an image, slotted text content, or a fallback icon.
459
461
  */
460
- declare class GdsBadgeComponent implements OnInit, OnChanges, AfterViewInit {
462
+ declare class GdsAvatarComponent implements OnInit, OnChanges, AfterViewInit {
461
463
  private elementRef;
462
464
  private zone;
463
465
  private cdr;
464
- get element(): GdsBadge;
466
+ get element(): GdsAvatar;
465
467
  constructor();
466
- variant?: GdsBadge['variant'];
467
- size?: GdsBadge['size'];
468
- notification?: GdsBadge['notification'];
469
- rounded?: GdsBadge['rounded'];
470
- mainSlotOccupied?: GdsBadge['mainSlotOccupied'];
471
- leadSlotOccupied?: GdsBadge['leadSlotOccupied'];
468
+ /** Image URL to display inside the avatar.
469
+ When set, an `<img>` is rendered directly in the shadow DOM. */
470
+ src?: GdsAvatar['src'];
471
+ /** Alt text for the image when using the `src` property. */
472
+ alt?: GdsAvatar['alt'];
473
+ /** The size of the avatar. */
474
+ size?: GdsAvatar['size'];
475
+ /** The shape of the avatar. */
476
+ shape?: GdsAvatar['shape'];
477
+ /** The color level used when resolving color tokens for style expression properties. */
478
+ level?: GdsAvatar['level'];
479
+ /** Style Expression Property that controls the `background` color of the avatar shape.
480
+ Only accepts color tokens and optional transparency values. */
481
+ background?: GdsAvatar['background'];
482
+ /** Style Expression Property that controls the text/icon `color` of the avatar.
483
+ Accepts content color tokens and optional transparency values. */
484
+ color?: GdsAvatar['color'];
472
485
  /** Style Expression Property that controls the `width` property.
473
486
  Supports space tokens and all valid CSS `width` values. */
474
- width?: GdsBadge['width'];
487
+ width?: GdsAvatar['width'];
475
488
  /** Style Expression Property that controls the `min-width` property.
476
489
  Supports space tokens and all valid CSS `min-width` values. */
477
- minWidth?: GdsBadge['min-width'];
490
+ minWidth?: GdsAvatar['min-width'];
478
491
  /** Style Expression Property that controls the `max-width` property.
479
492
  Supports space tokens and all valid CSS `max-width` values. */
480
- maxWidth?: GdsBadge['max-width'];
493
+ maxWidth?: GdsAvatar['max-width'];
481
494
  /** Style Expression Property that controls the `inline-size` property.
482
495
  Supports space tokens and all valid CSS `inline-size` values */
483
- inlineSize?: GdsBadge['inline-size'];
496
+ inlineSize?: GdsAvatar['inline-size'];
484
497
  /** Style Expression Property that controls the `min-inline-size` property.
485
498
  Supports space tokens and all valid CSS `min-inline-size` values. */
486
- minInlineSize?: GdsBadge['min-inline-size'];
499
+ minInlineSize?: GdsAvatar['min-inline-size'];
487
500
  /** Style Expression Property that controls the `max-inline-size` property.
488
501
  Supports space tokens and all valid CSS `max-inline-size` values. */
489
- maxInlineSize?: GdsBadge['max-inline-size'];
502
+ maxInlineSize?: GdsAvatar['max-inline-size'];
490
503
  /** Style Expression Property that controls the `margin` property.
491
504
  Only accepts space tokens. */
492
- margin?: GdsBadge['margin'];
505
+ margin?: GdsAvatar['margin'];
493
506
  /** Style Expression Property that controls the `margin-inline` property.
494
507
  Only accepts space tokens. */
495
- marginInline?: GdsBadge['margin-inline'];
508
+ marginInline?: GdsAvatar['margin-inline'];
496
509
  /** Style Expression Property that controls the `margin-block` property.
497
510
  Only accepts space tokens. */
498
- marginBlock?: GdsBadge['margin-block'];
511
+ marginBlock?: GdsAvatar['margin-block'];
499
512
  /** Style Expression Property that controls the `align-self` property.
500
513
  Supports all valid CSS `align-self` values. */
501
- alignSelf?: GdsBadge['align-self'];
514
+ alignSelf?: GdsAvatar['align-self'];
502
515
  /** Style Expression Property that controls the `justify-self` property.
503
516
  Supports all valid CSS `justify-self` values. */
504
- justifySelf?: GdsBadge['justify-self'];
517
+ justifySelf?: GdsAvatar['justify-self'];
505
518
  /** Style Expression Property that controls the `place-self` property.
506
519
  Supports all valid CSS `place-self` values. */
507
- placeSelf?: GdsBadge['place-self'];
520
+ placeSelf?: GdsAvatar['place-self'];
508
521
  /** Style Expression Property that controls the `grid-column` property.
509
522
  Supports all valid CSS grid-column values.
510
523
  Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
511
- gridColumn?: GdsBadge['grid-column'];
524
+ gridColumn?: GdsAvatar['grid-column'];
512
525
  /** Style Expression Property that controls the `grid-row` property.
513
526
  Supports all valid CSS `grid-row` values. */
514
- gridRow?: GdsBadge['grid-row'];
527
+ gridRow?: GdsAvatar['grid-row'];
515
528
  /** Style Expression Property that controls the `grid-area` property.
516
529
  Supports all valid CSS `grid-area` values. */
517
- gridArea?: GdsBadge['grid-area'];
530
+ gridArea?: GdsAvatar['grid-area'];
518
531
  /** Style Expression Property that controls the `flex` property.
519
532
  Supports all valid CSS `flex` values. */
520
- flex?: GdsBadge['flex'];
533
+ flex?: GdsAvatar['flex'];
521
534
  /** Style Expression Property that controls the `order` property.
522
535
  Supports all valid CSS `order` values. */
523
- order?: GdsBadge['order'];
536
+ order?: GdsAvatar['order'];
524
537
  /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
525
538
 
526
539
  This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
@@ -529,99 +542,83 @@ declare class GdsBadgeComponent implements OnInit, OnChanges, AfterViewInit {
529
542
 
530
543
  Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
531
544
  element needs to be measured synchronously after being added to the DOM. */
532
- syncFirstRender?: GdsBadge['syncFirstRender'];
545
+ syncFirstRender?: GdsAvatar['syncFirstRender'];
533
546
  ngOnInit(): void;
534
547
  ngOnChanges(changes: SimpleChanges): void;
535
548
  ngAfterViewInit(): void;
536
- static ɵfac: i0.ɵɵFactoryDeclaration<GdsBadgeComponent, never>;
537
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsBadgeComponent, "gds-badge", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "notification": { "alias": "notification"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "mainSlotOccupied": { "alias": "mainSlotOccupied"; "required": false; }; "leadSlotOccupied": { "alias": "leadSlotOccupied"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
538
- static ngAcceptInputType_notification: unknown;
539
- static ngAcceptInputType_rounded: unknown;
540
- static ngAcceptInputType_mainSlotOccupied: unknown;
541
- static ngAcceptInputType_leadSlotOccupied: unknown;
549
+ static ɵfac: i0.ɵɵFactoryDeclaration<GdsAvatarComponent, never>;
550
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsAvatarComponent, "gds-avatar", never, { "src": { "alias": "src"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "size": { "alias": "size"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "level": { "alias": "level"; "required": false; }; "background": { "alias": "background"; "required": false; }; "color": { "alias": "color"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
542
551
  static ngAcceptInputType_syncFirstRender: unknown;
543
552
  }
544
553
 
545
554
  /**
546
- * Angular wrapper for the gds-avatar web component
547
- * `gds-avatar` is a visual element used to represent a user or entity.
548
- It supports displaying an image, slotted text content, or a fallback icon.
555
+ * Angular wrapper for the gds-badge web component
556
+ * `gds-badge`
549
557
  */
550
- declare class GdsAvatarComponent implements OnInit, OnChanges, AfterViewInit {
558
+ declare class GdsBadgeComponent implements OnInit, OnChanges, AfterViewInit {
551
559
  private elementRef;
552
560
  private zone;
553
561
  private cdr;
554
- get element(): GdsAvatar;
562
+ get element(): GdsBadge;
555
563
  constructor();
556
- /** Image URL to display inside the avatar.
557
- When set, an `<img>` is rendered directly in the shadow DOM. */
558
- src?: GdsAvatar['src'];
559
- /** Alt text for the image when using the `src` property. */
560
- alt?: GdsAvatar['alt'];
561
- /** The size of the avatar. */
562
- size?: GdsAvatar['size'];
563
- /** The shape of the avatar. */
564
- shape?: GdsAvatar['shape'];
565
- /** The color level used when resolving color tokens for style expression properties. */
566
- level?: GdsAvatar['level'];
567
- /** Style Expression Property that controls the `background` color of the avatar shape.
568
- Only accepts color tokens and optional transparency values. */
569
- background?: GdsAvatar['background'];
570
- /** Style Expression Property that controls the text/icon `color` of the avatar.
571
- Accepts content color tokens and optional transparency values. */
572
- color?: GdsAvatar['color'];
564
+ variant?: GdsBadge['variant'];
565
+ size?: GdsBadge['size'];
566
+ notification?: GdsBadge['notification'];
567
+ rounded?: GdsBadge['rounded'];
568
+ mainSlotOccupied?: GdsBadge['mainSlotOccupied'];
569
+ leadSlotOccupied?: GdsBadge['leadSlotOccupied'];
573
570
  /** Style Expression Property that controls the `width` property.
574
571
  Supports space tokens and all valid CSS `width` values. */
575
- width?: GdsAvatar['width'];
572
+ width?: GdsBadge['width'];
576
573
  /** Style Expression Property that controls the `min-width` property.
577
574
  Supports space tokens and all valid CSS `min-width` values. */
578
- minWidth?: GdsAvatar['min-width'];
575
+ minWidth?: GdsBadge['min-width'];
579
576
  /** Style Expression Property that controls the `max-width` property.
580
577
  Supports space tokens and all valid CSS `max-width` values. */
581
- maxWidth?: GdsAvatar['max-width'];
578
+ maxWidth?: GdsBadge['max-width'];
582
579
  /** Style Expression Property that controls the `inline-size` property.
583
580
  Supports space tokens and all valid CSS `inline-size` values */
584
- inlineSize?: GdsAvatar['inline-size'];
581
+ inlineSize?: GdsBadge['inline-size'];
585
582
  /** Style Expression Property that controls the `min-inline-size` property.
586
583
  Supports space tokens and all valid CSS `min-inline-size` values. */
587
- minInlineSize?: GdsAvatar['min-inline-size'];
584
+ minInlineSize?: GdsBadge['min-inline-size'];
588
585
  /** Style Expression Property that controls the `max-inline-size` property.
589
586
  Supports space tokens and all valid CSS `max-inline-size` values. */
590
- maxInlineSize?: GdsAvatar['max-inline-size'];
587
+ maxInlineSize?: GdsBadge['max-inline-size'];
591
588
  /** Style Expression Property that controls the `margin` property.
592
589
  Only accepts space tokens. */
593
- margin?: GdsAvatar['margin'];
590
+ margin?: GdsBadge['margin'];
594
591
  /** Style Expression Property that controls the `margin-inline` property.
595
592
  Only accepts space tokens. */
596
- marginInline?: GdsAvatar['margin-inline'];
593
+ marginInline?: GdsBadge['margin-inline'];
597
594
  /** Style Expression Property that controls the `margin-block` property.
598
595
  Only accepts space tokens. */
599
- marginBlock?: GdsAvatar['margin-block'];
596
+ marginBlock?: GdsBadge['margin-block'];
600
597
  /** Style Expression Property that controls the `align-self` property.
601
598
  Supports all valid CSS `align-self` values. */
602
- alignSelf?: GdsAvatar['align-self'];
599
+ alignSelf?: GdsBadge['align-self'];
603
600
  /** Style Expression Property that controls the `justify-self` property.
604
601
  Supports all valid CSS `justify-self` values. */
605
- justifySelf?: GdsAvatar['justify-self'];
602
+ justifySelf?: GdsBadge['justify-self'];
606
603
  /** Style Expression Property that controls the `place-self` property.
607
604
  Supports all valid CSS `place-self` values. */
608
- placeSelf?: GdsAvatar['place-self'];
605
+ placeSelf?: GdsBadge['place-self'];
609
606
  /** Style Expression Property that controls the `grid-column` property.
610
607
  Supports all valid CSS grid-column values.
611
608
  Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
612
- gridColumn?: GdsAvatar['grid-column'];
609
+ gridColumn?: GdsBadge['grid-column'];
613
610
  /** Style Expression Property that controls the `grid-row` property.
614
611
  Supports all valid CSS `grid-row` values. */
615
- gridRow?: GdsAvatar['grid-row'];
612
+ gridRow?: GdsBadge['grid-row'];
616
613
  /** Style Expression Property that controls the `grid-area` property.
617
614
  Supports all valid CSS `grid-area` values. */
618
- gridArea?: GdsAvatar['grid-area'];
615
+ gridArea?: GdsBadge['grid-area'];
619
616
  /** Style Expression Property that controls the `flex` property.
620
617
  Supports all valid CSS `flex` values. */
621
- flex?: GdsAvatar['flex'];
618
+ flex?: GdsBadge['flex'];
622
619
  /** Style Expression Property that controls the `order` property.
623
620
  Supports all valid CSS `order` values. */
624
- order?: GdsAvatar['order'];
621
+ order?: GdsBadge['order'];
625
622
  /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
626
623
 
627
624
  This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
@@ -630,12 +627,16 @@ declare class GdsAvatarComponent implements OnInit, OnChanges, AfterViewInit {
630
627
 
631
628
  Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
632
629
  element needs to be measured synchronously after being added to the DOM. */
633
- syncFirstRender?: GdsAvatar['syncFirstRender'];
630
+ syncFirstRender?: GdsBadge['syncFirstRender'];
634
631
  ngOnInit(): void;
635
632
  ngOnChanges(changes: SimpleChanges): void;
636
633
  ngAfterViewInit(): void;
637
- static ɵfac: i0.ɵɵFactoryDeclaration<GdsAvatarComponent, never>;
638
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsAvatarComponent, "gds-avatar", never, { "src": { "alias": "src"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "size": { "alias": "size"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "level": { "alias": "level"; "required": false; }; "background": { "alias": "background"; "required": false; }; "color": { "alias": "color"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
634
+ static ɵfac: i0.ɵɵFactoryDeclaration<GdsBadgeComponent, never>;
635
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsBadgeComponent, "gds-badge", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "notification": { "alias": "notification"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "mainSlotOccupied": { "alias": "mainSlotOccupied"; "required": false; }; "leadSlotOccupied": { "alias": "leadSlotOccupied"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
636
+ static ngAcceptInputType_notification: unknown;
637
+ static ngAcceptInputType_rounded: unknown;
638
+ static ngAcceptInputType_mainSlotOccupied: unknown;
639
+ static ngAcceptInputType_leadSlotOccupied: unknown;
639
640
  static ngAcceptInputType_syncFirstRender: unknown;
640
641
  }
641
642
 
@@ -929,72 +930,6 @@ declare class GdsButtonComponent extends GdsFormControlBase {
929
930
  static ngAcceptInputType_syncFirstRender: unknown;
930
931
  }
931
932
 
932
- /**
933
- * Angular wrapper for the gds-calendar web component
934
- *
935
- */
936
- declare class GdsCalendarComponent implements OnInit, OnChanges, AfterViewInit {
937
- private elementRef;
938
- private zone;
939
- private cdr;
940
- get element(): GdsCalendar;
941
- constructor();
942
- /** The currently selected date. */
943
- value?: GdsCalendar['value'];
944
- /** The minimum date that can be selected. */
945
- min?: GdsCalendar['min'];
946
- /** The maximum date that can be selected. */
947
- max?: GdsCalendar['max'];
948
- /** The date that is currently focused. */
949
- focusedDate?: GdsCalendar['focusedDate'];
950
- /** Whether to disable weekends or not. */
951
- disabledWeekends?: GdsCalendar['disabledWeekends'];
952
- /** An array of dates that should be disabled in the calendar. */
953
- disabledDates?: GdsCalendar['disabledDates'];
954
- /** The month that is currently focused. */
955
- focusedMonth?: GdsCalendar['focusedMonth'];
956
- /** The year that is currently focused. */
957
- focusedYear?: GdsCalendar['focusedYear'];
958
- /** Sets the size of the grid. Defaults to "large". */
959
- size?: GdsCalendar['size'];
960
- /** Whether to show week numbers or not. */
961
- showWeekNumbers?: GdsCalendar['showWeekNumbers'];
962
- /** Whether to hide extraneous days (that fall ouside of current month) */
963
- hideExtraneousDays?: GdsCalendar['hideExtraneousDays'];
964
- /** Whether to hide the day names shown above the calendar. */
965
- hideDayNames?: GdsCalendar['hideDayNames'];
966
- /** An array of `CustomizedDate` objects that can be used customize the appearance of dates.
967
- This can only be set through the property, not through an attribute. */
968
- customizedDates?: GdsCalendar['customizedDates'];
969
- /** The accessible label for the calendar. */
970
- label?: GdsCalendar['label'];
971
- /** A template function to customize the accessible date label. */
972
- dateLabelTemplate?: GdsCalendar['dateLabelTemplate'];
973
- /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
974
-
975
- This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
976
- run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
977
- is projected.
978
-
979
- Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
980
- element needs to be measured synchronously after being added to the DOM. */
981
- syncFirstRender?: GdsCalendar['syncFirstRender'];
982
- /** Fired when a date is selected. */
983
- change: EventEmitter<Event>;
984
- /** Fired when focus is changed. Can be cancelled using `event.preventDefault()`. */
985
- gdsDateFocused: EventEmitter<CustomEvent<any>>;
986
- ngOnInit(): void;
987
- ngOnChanges(changes: SimpleChanges): void;
988
- ngAfterViewInit(): void;
989
- static ɵfac: i0.ɵɵFactoryDeclaration<GdsCalendarComponent, never>;
990
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsCalendarComponent, "gds-calendar", never, { "value": { "alias": "value"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "disabledWeekends": { "alias": "disabledWeekends"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "focusedMonth": { "alias": "focusedMonth"; "required": false; }; "focusedYear": { "alias": "focusedYear"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "hideExtraneousDays": { "alias": "hideExtraneousDays"; "required": false; }; "hideDayNames": { "alias": "hideDayNames"; "required": false; }; "customizedDates": { "alias": "customizedDates"; "required": false; }; "label": { "alias": "label"; "required": false; }; "dateLabelTemplate": { "alias": "dateLabelTemplate"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "change": "change"; "gdsDateFocused": "gdsDateFocused"; }, never, ["*"], true, never>;
991
- static ngAcceptInputType_disabledWeekends: unknown;
992
- static ngAcceptInputType_showWeekNumbers: unknown;
993
- static ngAcceptInputType_hideExtraneousDays: unknown;
994
- static ngAcceptInputType_hideDayNames: unknown;
995
- static ngAcceptInputType_syncFirstRender: unknown;
996
- }
997
-
998
933
  /**
999
934
  * Angular wrapper for the gds-card web component
1000
935
  * A container for content representing a single entity. e.g. a contact, article, or task.
@@ -1233,6 +1168,72 @@ declare class GdsCardComponent implements OnInit, OnChanges, AfterViewInit {
1233
1168
  static ngAcceptInputType_syncFirstRender: unknown;
1234
1169
  }
1235
1170
 
1171
+ /**
1172
+ * Angular wrapper for the gds-calendar web component
1173
+ *
1174
+ */
1175
+ declare class GdsCalendarComponent implements OnInit, OnChanges, AfterViewInit {
1176
+ private elementRef;
1177
+ private zone;
1178
+ private cdr;
1179
+ get element(): GdsCalendar;
1180
+ constructor();
1181
+ /** The currently selected date. */
1182
+ value?: GdsCalendar['value'];
1183
+ /** The minimum date that can be selected. */
1184
+ min?: GdsCalendar['min'];
1185
+ /** The maximum date that can be selected. */
1186
+ max?: GdsCalendar['max'];
1187
+ /** The date that is currently focused. */
1188
+ focusedDate?: GdsCalendar['focusedDate'];
1189
+ /** Whether to disable weekends or not. */
1190
+ disabledWeekends?: GdsCalendar['disabledWeekends'];
1191
+ /** An array of dates that should be disabled in the calendar. */
1192
+ disabledDates?: GdsCalendar['disabledDates'];
1193
+ /** The month that is currently focused. */
1194
+ focusedMonth?: GdsCalendar['focusedMonth'];
1195
+ /** The year that is currently focused. */
1196
+ focusedYear?: GdsCalendar['focusedYear'];
1197
+ /** Sets the size of the grid. Defaults to "large". */
1198
+ size?: GdsCalendar['size'];
1199
+ /** Whether to show week numbers or not. */
1200
+ showWeekNumbers?: GdsCalendar['showWeekNumbers'];
1201
+ /** Whether to hide extraneous days (that fall ouside of current month) */
1202
+ hideExtraneousDays?: GdsCalendar['hideExtraneousDays'];
1203
+ /** Whether to hide the day names shown above the calendar. */
1204
+ hideDayNames?: GdsCalendar['hideDayNames'];
1205
+ /** An array of `CustomizedDate` objects that can be used customize the appearance of dates.
1206
+ This can only be set through the property, not through an attribute. */
1207
+ customizedDates?: GdsCalendar['customizedDates'];
1208
+ /** The accessible label for the calendar. */
1209
+ label?: GdsCalendar['label'];
1210
+ /** A template function to customize the accessible date label. */
1211
+ dateLabelTemplate?: GdsCalendar['dateLabelTemplate'];
1212
+ /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
1213
+
1214
+ This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
1215
+ run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
1216
+ is projected.
1217
+
1218
+ Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
1219
+ element needs to be measured synchronously after being added to the DOM. */
1220
+ syncFirstRender?: GdsCalendar['syncFirstRender'];
1221
+ /** Fired when a date is selected. */
1222
+ change: EventEmitter<Event>;
1223
+ /** Fired when focus is changed. Can be cancelled using `event.preventDefault()`. */
1224
+ gdsDateFocused: EventEmitter<CustomEvent<any>>;
1225
+ ngOnInit(): void;
1226
+ ngOnChanges(changes: SimpleChanges): void;
1227
+ ngAfterViewInit(): void;
1228
+ static ɵfac: i0.ɵɵFactoryDeclaration<GdsCalendarComponent, never>;
1229
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsCalendarComponent, "gds-calendar", never, { "value": { "alias": "value"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "disabledWeekends": { "alias": "disabledWeekends"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "focusedMonth": { "alias": "focusedMonth"; "required": false; }; "focusedYear": { "alias": "focusedYear"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "hideExtraneousDays": { "alias": "hideExtraneousDays"; "required": false; }; "hideDayNames": { "alias": "hideDayNames"; "required": false; }; "customizedDates": { "alias": "customizedDates"; "required": false; }; "label": { "alias": "label"; "required": false; }; "dateLabelTemplate": { "alias": "dateLabelTemplate"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "change": "change"; "gdsDateFocused": "gdsDateFocused"; }, never, ["*"], true, never>;
1230
+ static ngAcceptInputType_disabledWeekends: unknown;
1231
+ static ngAcceptInputType_showWeekNumbers: unknown;
1232
+ static ngAcceptInputType_hideExtraneousDays: unknown;
1233
+ static ngAcceptInputType_hideDayNames: unknown;
1234
+ static ngAcceptInputType_syncFirstRender: unknown;
1235
+ }
1236
+
1236
1237
  /**
1237
1238
  * Angular wrapper for the gds-card-linked web component
1238
1239
  *
@@ -1709,6 +1710,96 @@ declare class GdsContextMenuComponent implements OnInit, OnChanges, AfterViewIni
1709
1710
  static ngAcceptInputType_syncFirstRender: unknown;
1710
1711
  }
1711
1712
 
1713
+ /**
1714
+ * Angular wrapper for the gds-details web component
1715
+ * Details component that provides collapsible content sections.
1716
+ */
1717
+ declare class GdsDetailsComponent implements OnInit, OnChanges, AfterViewInit {
1718
+ private elementRef;
1719
+ private zone;
1720
+ private cdr;
1721
+ get element(): GdsDetails;
1722
+ constructor();
1723
+ /** The summary text displayed in the details header */
1724
+ summary?: GdsDetails['summary'];
1725
+ /** Group identifier for details behavior synchronization */
1726
+ name?: GdsDetails['name'];
1727
+ /** Controls the expanded state of the details */
1728
+ open?: GdsDetails['open'];
1729
+ /** Controls the size variant of the details */
1730
+ size?: GdsDetails['size'];
1731
+ /** Style Expression Property that controls the `width` property.
1732
+ Supports space tokens and all valid CSS `width` values. */
1733
+ width?: GdsDetails['width'];
1734
+ /** Style Expression Property that controls the `min-width` property.
1735
+ Supports space tokens and all valid CSS `min-width` values. */
1736
+ minWidth?: GdsDetails['min-width'];
1737
+ /** Style Expression Property that controls the `max-width` property.
1738
+ Supports space tokens and all valid CSS `max-width` values. */
1739
+ maxWidth?: GdsDetails['max-width'];
1740
+ /** Style Expression Property that controls the `inline-size` property.
1741
+ Supports space tokens and all valid CSS `inline-size` values */
1742
+ inlineSize?: GdsDetails['inline-size'];
1743
+ /** Style Expression Property that controls the `min-inline-size` property.
1744
+ Supports space tokens and all valid CSS `min-inline-size` values. */
1745
+ minInlineSize?: GdsDetails['min-inline-size'];
1746
+ /** Style Expression Property that controls the `max-inline-size` property.
1747
+ Supports space tokens and all valid CSS `max-inline-size` values. */
1748
+ maxInlineSize?: GdsDetails['max-inline-size'];
1749
+ /** Style Expression Property that controls the `margin` property.
1750
+ Only accepts space tokens. */
1751
+ margin?: GdsDetails['margin'];
1752
+ /** Style Expression Property that controls the `margin-inline` property.
1753
+ Only accepts space tokens. */
1754
+ marginInline?: GdsDetails['margin-inline'];
1755
+ /** Style Expression Property that controls the `margin-block` property.
1756
+ Only accepts space tokens. */
1757
+ marginBlock?: GdsDetails['margin-block'];
1758
+ /** Style Expression Property that controls the `align-self` property.
1759
+ Supports all valid CSS `align-self` values. */
1760
+ alignSelf?: GdsDetails['align-self'];
1761
+ /** Style Expression Property that controls the `justify-self` property.
1762
+ Supports all valid CSS `justify-self` values. */
1763
+ justifySelf?: GdsDetails['justify-self'];
1764
+ /** Style Expression Property that controls the `place-self` property.
1765
+ Supports all valid CSS `place-self` values. */
1766
+ placeSelf?: GdsDetails['place-self'];
1767
+ /** Style Expression Property that controls the `grid-column` property.
1768
+ Supports all valid CSS grid-column values.
1769
+ Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
1770
+ gridColumn?: GdsDetails['grid-column'];
1771
+ /** Style Expression Property that controls the `grid-row` property.
1772
+ Supports all valid CSS `grid-row` values. */
1773
+ gridRow?: GdsDetails['grid-row'];
1774
+ /** Style Expression Property that controls the `grid-area` property.
1775
+ Supports all valid CSS `grid-area` values. */
1776
+ gridArea?: GdsDetails['grid-area'];
1777
+ /** Style Expression Property that controls the `flex` property.
1778
+ Supports all valid CSS `flex` values. */
1779
+ flex?: GdsDetails['flex'];
1780
+ /** Style Expression Property that controls the `order` property.
1781
+ Supports all valid CSS `order` values. */
1782
+ order?: GdsDetails['order'];
1783
+ /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
1784
+
1785
+ This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
1786
+ run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
1787
+ is projected.
1788
+
1789
+ Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
1790
+ element needs to be measured synchronously after being added to the DOM. */
1791
+ syncFirstRender?: GdsDetails['syncFirstRender'];
1792
+ /** Fired when details opens or closes */
1793
+ gdsUiState: EventEmitter<CustomEvent<any>>;
1794
+ ngOnInit(): void;
1795
+ ngOnChanges(changes: SimpleChanges): void;
1796
+ ngAfterViewInit(): void;
1797
+ static ɵfac: i0.ɵɵFactoryDeclaration<GdsDetailsComponent, never>;
1798
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsDetailsComponent, "gds-details", never, { "summary": { "alias": "summary"; "required": false; }; "name": { "alias": "name"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
1799
+ static ngAcceptInputType_open: unknown;
1800
+ static ngAcceptInputType_syncFirstRender: unknown;
1801
+ }
1802
+
1712
1803
  /**
1713
1804
  * Angular wrapper for the gds-datepicker web component
1714
1805
  *
@@ -1869,96 +1960,6 @@ declare class GdsDatepickerComponent extends GdsFormControlBase {
1869
1960
  static ngAcceptInputType_syncFirstRender: unknown;
1870
1961
  }
1871
1962
 
1872
- /**
1873
- * Angular wrapper for the gds-details web component
1874
- * Details component that provides collapsible content sections.
1875
- */
1876
- declare class GdsDetailsComponent implements OnInit, OnChanges, AfterViewInit {
1877
- private elementRef;
1878
- private zone;
1879
- private cdr;
1880
- get element(): GdsDetails;
1881
- constructor();
1882
- /** The summary text displayed in the details header */
1883
- summary?: GdsDetails['summary'];
1884
- /** Group identifier for details behavior synchronization */
1885
- name?: GdsDetails['name'];
1886
- /** Controls the expanded state of the details */
1887
- open?: GdsDetails['open'];
1888
- /** Controls the size variant of the details */
1889
- size?: GdsDetails['size'];
1890
- /** Style Expression Property that controls the `width` property.
1891
- Supports space tokens and all valid CSS `width` values. */
1892
- width?: GdsDetails['width'];
1893
- /** Style Expression Property that controls the `min-width` property.
1894
- Supports space tokens and all valid CSS `min-width` values. */
1895
- minWidth?: GdsDetails['min-width'];
1896
- /** Style Expression Property that controls the `max-width` property.
1897
- Supports space tokens and all valid CSS `max-width` values. */
1898
- maxWidth?: GdsDetails['max-width'];
1899
- /** Style Expression Property that controls the `inline-size` property.
1900
- Supports space tokens and all valid CSS `inline-size` values */
1901
- inlineSize?: GdsDetails['inline-size'];
1902
- /** Style Expression Property that controls the `min-inline-size` property.
1903
- Supports space tokens and all valid CSS `min-inline-size` values. */
1904
- minInlineSize?: GdsDetails['min-inline-size'];
1905
- /** Style Expression Property that controls the `max-inline-size` property.
1906
- Supports space tokens and all valid CSS `max-inline-size` values. */
1907
- maxInlineSize?: GdsDetails['max-inline-size'];
1908
- /** Style Expression Property that controls the `margin` property.
1909
- Only accepts space tokens. */
1910
- margin?: GdsDetails['margin'];
1911
- /** Style Expression Property that controls the `margin-inline` property.
1912
- Only accepts space tokens. */
1913
- marginInline?: GdsDetails['margin-inline'];
1914
- /** Style Expression Property that controls the `margin-block` property.
1915
- Only accepts space tokens. */
1916
- marginBlock?: GdsDetails['margin-block'];
1917
- /** Style Expression Property that controls the `align-self` property.
1918
- Supports all valid CSS `align-self` values. */
1919
- alignSelf?: GdsDetails['align-self'];
1920
- /** Style Expression Property that controls the `justify-self` property.
1921
- Supports all valid CSS `justify-self` values. */
1922
- justifySelf?: GdsDetails['justify-self'];
1923
- /** Style Expression Property that controls the `place-self` property.
1924
- Supports all valid CSS `place-self` values. */
1925
- placeSelf?: GdsDetails['place-self'];
1926
- /** Style Expression Property that controls the `grid-column` property.
1927
- Supports all valid CSS grid-column values.
1928
- Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
1929
- gridColumn?: GdsDetails['grid-column'];
1930
- /** Style Expression Property that controls the `grid-row` property.
1931
- Supports all valid CSS `grid-row` values. */
1932
- gridRow?: GdsDetails['grid-row'];
1933
- /** Style Expression Property that controls the `grid-area` property.
1934
- Supports all valid CSS `grid-area` values. */
1935
- gridArea?: GdsDetails['grid-area'];
1936
- /** Style Expression Property that controls the `flex` property.
1937
- Supports all valid CSS `flex` values. */
1938
- flex?: GdsDetails['flex'];
1939
- /** Style Expression Property that controls the `order` property.
1940
- Supports all valid CSS `order` values. */
1941
- order?: GdsDetails['order'];
1942
- /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
1943
-
1944
- This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
1945
- run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
1946
- is projected.
1947
-
1948
- Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
1949
- element needs to be measured synchronously after being added to the DOM. */
1950
- syncFirstRender?: GdsDetails['syncFirstRender'];
1951
- /** Fired when details opens or closes */
1952
- gdsUiState: EventEmitter<CustomEvent<any>>;
1953
- ngOnInit(): void;
1954
- ngOnChanges(changes: SimpleChanges): void;
1955
- ngAfterViewInit(): void;
1956
- static ɵfac: i0.ɵɵFactoryDeclaration<GdsDetailsComponent, never>;
1957
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsDetailsComponent, "gds-details", never, { "summary": { "alias": "summary"; "required": false; }; "name": { "alias": "name"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
1958
- static ngAcceptInputType_open: unknown;
1959
- static ngAcceptInputType_syncFirstRender: unknown;
1960
- }
1961
-
1962
1963
  /**
1963
1964
  * Angular wrapper for the gds-dialog web component
1964
1965
  *
@@ -2509,6 +2510,10 @@ declare class GdsDropdownComponent extends GdsFormControlBase {
2509
2510
  disableMobileStyles?: GdsDropdown['disableMobileStyles'];
2510
2511
  /** Whether the supporting text should be displayed or not. */
2511
2512
  showExtendedSupportingText?: GdsDropdown['showExtendedSupportingText'];
2513
+ /** Writes that land while a selection is being dispatched are ignored. Such a write can only have
2514
+ observed pre-commit state, so honouring it would let a `change` listener anywhere in the
2515
+ ancestor chain replace the selection before the consumer's own handler reads it. */
2516
+ value?: GdsDropdown['value'];
2512
2517
  /** A validator that can be used to validate the form control and set an error message. */
2513
2518
  validator?: GdsDropdown['validator'];
2514
2519
  /** The required attribute can be used to communicate to users of assistive technology that the control is required. Validation still needs to be done in a validator or equivalent. */
@@ -2520,8 +2525,6 @@ declare class GdsDropdownComponent extends GdsFormControlBase {
2520
2525
  invalid?: GdsDropdown['invalid'];
2521
2526
  /** The label of the form control. */
2522
2527
  label?: GdsDropdown['label'];
2523
- /** Get or set the value of the form control. */
2524
- value?: GdsDropdown['value'];
2525
2528
  name?: GdsDropdown['name'];
2526
2529
  /** If the input is Disabled */
2527
2530
  disabled?: GdsDropdown['disabled'];
@@ -2549,7 +2552,7 @@ declare class GdsDropdownComponent extends GdsFormControlBase {
2549
2552
  ngOnChanges(changes: SimpleChanges): void;
2550
2553
  ngAfterViewInit(): void;
2551
2554
  static ɵfac: i0.ɵɵFactoryDeclaration<GdsDropdownComponent, never>;
2552
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsDropdownComponent, "gds-dropdown", never, { "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "supportingText": { "alias": "supportingText"; "required": false; }; "open": { "alias": "open"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "combobox": { "alias": "combobox"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "searchFilter": { "alias": "searchFilter"; "required": false; }; "syncPopoverWidth": { "alias": "syncPopoverWidth"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "size": { "alias": "size"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "plain": { "alias": "plain"; "required": false; }; "disableMobileStyles": { "alias": "disableMobileStyles"; "required": false; }; "showExtendedSupportingText": { "alias": "showExtendedSupportingText"; "required": false; }; "validator": { "alias": "validator"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "change": "change"; "input": "input"; "gdsUiState": "gdsUiState"; "gdsFilterInput": "gdsFilterInput"; "gdsInputCleared": "gdsInputCleared"; }, never, ["*"], true, never>;
2555
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsDropdownComponent, "gds-dropdown", never, { "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "supportingText": { "alias": "supportingText"; "required": false; }; "open": { "alias": "open"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "combobox": { "alias": "combobox"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "searchFilter": { "alias": "searchFilter"; "required": false; }; "syncPopoverWidth": { "alias": "syncPopoverWidth"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "size": { "alias": "size"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "plain": { "alias": "plain"; "required": false; }; "disableMobileStyles": { "alias": "disableMobileStyles"; "required": false; }; "showExtendedSupportingText": { "alias": "showExtendedSupportingText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "validator": { "alias": "validator"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "change": "change"; "input": "input"; "gdsUiState": "gdsUiState"; "gdsFilterInput": "gdsFilterInput"; "gdsInputCleared": "gdsInputCleared"; }, never, ["*"], true, never>;
2553
2556
  static ngAcceptInputType_open: unknown;
2554
2557
  static ngAcceptInputType_searchable: unknown;
2555
2558
  static ngAcceptInputType_multiple: unknown;
@@ -2566,31 +2569,27 @@ declare class GdsDropdownComponent extends GdsFormControlBase {
2566
2569
  }
2567
2570
 
2568
2571
  /**
2569
- * Angular wrapper for the gds-filter-chips web component
2572
+ * Angular wrapper for the gds-option web component
2570
2573
  *
2571
2574
  */
2572
- declare class GdsFilterChipsComponent extends GdsFormControlBase {
2573
- /** The value of the currently selected chip or chips. This will be an array
2574
- if multi-select is enabled. */
2575
- value?: GdsFilterChips['value'];
2576
- /** Whether multiple chips can be selected at once. */
2577
- multiple?: GdsFilterChips['multiple'];
2578
- /** The accessible label for the control */
2579
- label?: GdsFilterChips['label'];
2580
- /** Whether the chips should collapse into a single row when space is limited */
2581
- rowCollapse?: GdsFilterChips['rowCollapse'];
2582
- /** A validator that can be used to validate the form control and set an error message. */
2583
- validator?: GdsFilterChips['validator'];
2584
- /** The required attribute can be used to communicate to users of assistive technology that the control is required. Validation still needs to be done in a validator or equivalent. */
2585
- required?: GdsFilterChips['required'];
2586
- /** This can be used to manually control the error message that will be displayed
2587
- when the control is invalid. */
2588
- errorMessage?: GdsFilterChips['errorMessage'];
2589
- /** Validation state of the form control. Setting this to true triggers the invalid state of the control. */
2590
- invalid?: GdsFilterChips['invalid'];
2591
- name?: GdsFilterChips['name'];
2592
- /** If the input is Disabled */
2593
- disabled?: GdsFilterChips['disabled'];
2575
+ declare class GdsOptionComponent implements OnInit, OnChanges, AfterViewInit {
2576
+ private elementRef;
2577
+ private zone;
2578
+ private cdr;
2579
+ get element(): GdsOption;
2580
+ constructor();
2581
+ /** The value of the option. */
2582
+ value?: GdsOption['value'];
2583
+ /** Controls whether the option is visible or not. */
2584
+ hidden?: GdsOption['hidden'];
2585
+ /** Returns true if the option is selected.
2586
+ Setting this property will select or unselect the option. */
2587
+ selected?: GdsOption['selected'];
2588
+ /** Sets this option as a placeholder.
2589
+ A placehodler option does not have a value and will act as the default option.
2590
+
2591
+ In a multiple select listbox, placeholder options will not be rendered in the list. */
2592
+ isPlaceholder?: GdsOption['isPlaceholder'];
2594
2593
  /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
2595
2594
 
2596
2595
  This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
@@ -2599,19 +2598,17 @@ declare class GdsFilterChipsComponent extends GdsFormControlBase {
2599
2598
 
2600
2599
  Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
2601
2600
  element needs to be measured synchronously after being added to the DOM. */
2602
- syncFirstRender?: GdsFilterChips['syncFirstRender'];
2603
- /** When a chip is clicked */
2604
- change: EventEmitter<Event>;
2605
- get element(): GdsFilterChips;
2601
+ syncFirstRender?: GdsOption['syncFirstRender'];
2602
+ /** Fired when the option is selected. */
2603
+ gdsSelect: EventEmitter<CustomEvent<any>>;
2606
2604
  ngOnInit(): void;
2607
2605
  ngOnChanges(changes: SimpleChanges): void;
2608
2606
  ngAfterViewInit(): void;
2609
- static ɵfac: i0.ɵɵFactoryDeclaration<GdsFilterChipsComponent, never>;
2610
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsFilterChipsComponent, "gds-filter-chips", never, { "value": { "alias": "value"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "label": { "alias": "label"; "required": false; }; "rowCollapse": { "alias": "rowCollapse"; "required": false; }; "validator": { "alias": "validator"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "change": "change"; }, never, ["*"], true, never>;
2611
- static ngAcceptInputType_multiple: unknown;
2612
- static ngAcceptInputType_rowCollapse: unknown;
2613
- static ngAcceptInputType_required: unknown;
2614
- static ngAcceptInputType_disabled: unknown;
2607
+ static ɵfac: i0.ɵɵFactoryDeclaration<GdsOptionComponent, never>;
2608
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsOptionComponent, "gds-option", never, { "value": { "alias": "value"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "isPlaceholder": { "alias": "isPlaceholder"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsSelect": "gdsSelect"; }, never, ["*"], true, never>;
2609
+ static ngAcceptInputType_hidden: unknown;
2610
+ static ngAcceptInputType_selected: unknown;
2611
+ static ngAcceptInputType_isPlaceholder: unknown;
2615
2612
  static ngAcceptInputType_syncFirstRender: unknown;
2616
2613
  }
2617
2614
 
@@ -2758,6 +2755,56 @@ declare class GdsFabComponent extends GdsFormControlBase {
2758
2755
  static ngAcceptInputType_syncFirstRender: unknown;
2759
2756
  }
2760
2757
 
2758
+ /**
2759
+ * Angular wrapper for the gds-filter-chips web component
2760
+ *
2761
+ */
2762
+ declare class GdsFilterChipsComponent extends GdsFormControlBase {
2763
+ /** The value of the currently selected chip or chips. This will be an array
2764
+ if multi-select is enabled. */
2765
+ value?: GdsFilterChips['value'];
2766
+ /** Whether multiple chips can be selected at once. */
2767
+ multiple?: GdsFilterChips['multiple'];
2768
+ /** The accessible label for the control */
2769
+ label?: GdsFilterChips['label'];
2770
+ /** Whether the chips should collapse into a single row when space is limited */
2771
+ rowCollapse?: GdsFilterChips['rowCollapse'];
2772
+ /** A validator that can be used to validate the form control and set an error message. */
2773
+ validator?: GdsFilterChips['validator'];
2774
+ /** The required attribute can be used to communicate to users of assistive technology that the control is required. Validation still needs to be done in a validator or equivalent. */
2775
+ required?: GdsFilterChips['required'];
2776
+ /** This can be used to manually control the error message that will be displayed
2777
+ when the control is invalid. */
2778
+ errorMessage?: GdsFilterChips['errorMessage'];
2779
+ /** Validation state of the form control. Setting this to true triggers the invalid state of the control. */
2780
+ invalid?: GdsFilterChips['invalid'];
2781
+ name?: GdsFilterChips['name'];
2782
+ /** If the input is Disabled */
2783
+ disabled?: GdsFilterChips['disabled'];
2784
+ /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
2785
+
2786
+ This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
2787
+ run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
2788
+ is projected.
2789
+
2790
+ Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
2791
+ element needs to be measured synchronously after being added to the DOM. */
2792
+ syncFirstRender?: GdsFilterChips['syncFirstRender'];
2793
+ /** When a chip is clicked */
2794
+ change: EventEmitter<Event>;
2795
+ get element(): GdsFilterChips;
2796
+ ngOnInit(): void;
2797
+ ngOnChanges(changes: SimpleChanges): void;
2798
+ ngAfterViewInit(): void;
2799
+ static ɵfac: i0.ɵɵFactoryDeclaration<GdsFilterChipsComponent, never>;
2800
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsFilterChipsComponent, "gds-filter-chips", never, { "value": { "alias": "value"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "label": { "alias": "label"; "required": false; }; "rowCollapse": { "alias": "rowCollapse"; "required": false; }; "validator": { "alias": "validator"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "change": "change"; }, never, ["*"], true, never>;
2801
+ static ngAcceptInputType_multiple: unknown;
2802
+ static ngAcceptInputType_rowCollapse: unknown;
2803
+ static ngAcceptInputType_required: unknown;
2804
+ static ngAcceptInputType_disabled: unknown;
2805
+ static ngAcceptInputType_syncFirstRender: unknown;
2806
+ }
2807
+
2761
2808
  /**
2762
2809
  * Angular wrapper for the gds-flex web component
2763
2810
  *
@@ -35464,50 +35511,6 @@ declare class GdsMenuHeadingComponent implements OnInit, OnChanges, AfterViewIni
35464
35511
  static ngAcceptInputType_syncFirstRender: unknown;
35465
35512
  }
35466
35513
 
35467
- /**
35468
- * Angular wrapper for the gds-option web component
35469
- *
35470
- */
35471
- declare class GdsOptionComponent implements OnInit, OnChanges, AfterViewInit {
35472
- private elementRef;
35473
- private zone;
35474
- private cdr;
35475
- get element(): GdsOption;
35476
- constructor();
35477
- /** The value of the option. */
35478
- value?: GdsOption['value'];
35479
- /** Controls whether the option is visible or not. */
35480
- hidden?: GdsOption['hidden'];
35481
- /** Returns true if the option is selected.
35482
- Setting this property will select or unselect the option. */
35483
- selected?: GdsOption['selected'];
35484
- /** Sets this option as a placeholder.
35485
- A placehodler option does not have a value and will act as the default option.
35486
-
35487
- In a multiple select listbox, placeholder options will not be rendered in the list. */
35488
- isPlaceholder?: GdsOption['isPlaceholder'];
35489
- /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
35490
-
35491
- This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
35492
- run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
35493
- is projected.
35494
-
35495
- Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
35496
- element needs to be measured synchronously after being added to the DOM. */
35497
- syncFirstRender?: GdsOption['syncFirstRender'];
35498
- /** Fired when the option is selected. */
35499
- gdsSelect: EventEmitter<CustomEvent<any>>;
35500
- ngOnInit(): void;
35501
- ngOnChanges(changes: SimpleChanges): void;
35502
- ngAfterViewInit(): void;
35503
- static ɵfac: i0.ɵɵFactoryDeclaration<GdsOptionComponent, never>;
35504
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsOptionComponent, "gds-option", never, { "value": { "alias": "value"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "isPlaceholder": { "alias": "isPlaceholder"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsSelect": "gdsSelect"; }, never, ["*"], true, never>;
35505
- static ngAcceptInputType_hidden: unknown;
35506
- static ngAcceptInputType_selected: unknown;
35507
- static ngAcceptInputType_isPlaceholder: unknown;
35508
- static ngAcceptInputType_syncFirstRender: unknown;
35509
- }
35510
-
35511
35514
  /**
35512
35515
  * Optional convenience module for importing all green-core-ng wrapper components at once.
35513
35516
  *
@@ -35531,7 +35534,7 @@ declare class GdsOptionComponent implements OnInit, OnChanges, AfterViewInit {
35531
35534
  */
35532
35535
  declare class GreenCoreNgModule {
35533
35536
  static ɵfac: i0.ɵɵFactoryDeclaration<GreenCoreNgModule, never>;
35534
- static ɵmod: i0.ɵɵNgModuleDeclaration<GreenCoreNgModule, never, [typeof GdsAlertComponent, typeof GdsBadgeComponent, typeof GdsAvatarComponent, typeof GdsBlurComponent, typeof GdsBreadcrumbsComponent, typeof GdsButtonComponent, typeof GdsCalendarComponent, typeof GdsCardComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDatepickerComponent, typeof GdsDetailsComponent, typeof GdsDialogComponent, typeof GdsDivComponent, typeof GdsDividerComponent, typeof GdsDropdownComponent, typeof GdsFilterChipsComponent, typeof GdsFabComponent, typeof GdsFlexComponent, typeof GdsFormSummaryComponent, typeof GdsGridComponent, typeof GdsGroupedListComponent, typeof GdsImgComponent, typeof GdsInputComponent, typeof GdsLinkComponent, typeof GdsListComponent, typeof GdsMaskComponent, typeof GdsMenuButtonComponent, typeof GdsPaginationComponent, typeof GdsBackdropComponent, typeof GdsPopoverComponent, typeof GdsRadioComponent, typeof GdsRichTextComponent, typeof GdsSegmentedControlComponent, typeof GdsSelectComponent, typeof GdsSignalComponent, typeof GdsSpinnerComponent, typeof GdsSwitchComponent, typeof GdsTableComponent, typeof GdsTabsComponent, typeof GdsTextComponent, typeof GdsTextareaComponent, typeof GdsThemeComponent, typeof GdsVideoComponent, typeof GdsCardPattern01Component, typeof GdsListItemPattern01Component, typeof GdsAvatarGroupComponent, typeof GdsBreadcrumbComponent, typeof GdsCheckboxGroupComponent, typeof GdsIconDetailsComponent, typeof GdsFilterChipComponent, typeof GdsFormattedAccountComponent, typeof GdsFormattedDateComponent, typeof GdsFormattedNumberComponent, typeof GdsListItemComponent, typeof GdsRadioGroupComponent, typeof GdsSegmentComponent, typeof GdsSensitiveAccountComponent, typeof GdsSensitiveDateComponent, typeof GdsSensitiveNumberComponent, typeof GdsTabComponent, typeof GdsTabPanelComponent, typeof IconAiComponent, typeof IconAirplaneUpComponent, typeof IconArchiveComponent, typeof IconArrowBottomTopComponent, typeof IconArrowBoxLeftAltComponent, typeof IconArrowBoxLeftComponent, typeof IconArrowBoxRightComponent, typeof IconArrowDownComponent, typeof IconArrowInboxComponent, typeof IconArrowLeftRightComponent, typeof IconArrowLeftComponent, typeof IconArrowOutOfBoxComponent, typeof IconArrowRightCircleComponent, typeof IconArrowRightDownCircleComponent, typeof IconArrowRightUpCircleComponent, typeof IconArrowRightComponent, typeof IconArrowRotateClockwiseComponent, typeof IconArrowRotateCounterClockwiseComponent, typeof IconArrowRotateLeftRightComponent, typeof IconArrowRotateRightLeftComponent, typeof IconArrowShareLeftComponent, typeof IconArrowShareRightComponent, typeof IconArrowSplitComponent, typeof IconArrowUpComponent, typeof IconArrowWallDownComponent, typeof IconArrowWallLeftComponent, typeof IconArrowWallRightComponent, typeof IconArrowWallUpComponent, typeof IconArrowComponent, typeof IconArrowsRepeatRightComponent, typeof IconAsteriskComponent, typeof IconAtComponent, typeof IconBackComponent, typeof IconBackwardComponent, typeof IconBagComponent, typeof IconBankComponent, typeof IconBanknote2Component, typeof IconBanknoteComponent, typeof IconBarcodeComponent, typeof IconBarsThreeComponent, typeof IconBarsTwoComponent, typeof IconBasketComponent, typeof IconBatteryLoadingComponent, typeof IconBellComponent, typeof IconBlockComponent, typeof IconBookComponent, typeof IconBookmarkCheckComponent, typeof IconBookmarkDeleteComponent, typeof IconBookmarkPlusComponent, typeof IconBookmarkRemoveComponent, typeof IconBookmarkComponent, typeof IconBooksComponent, typeof IconBrandAppStoreComponent, typeof IconBrandAppleMusicComponent, typeof IconBrandBankidComponent, typeof IconBrandChromeComponent, typeof IconBrandFacebookComponent, typeof IconBrandFigmaComponent, typeof IconBrandFirefoxComponent, typeof IconBrandGithubComponent, typeof IconBrandGreenComponent, typeof IconBrandInstagramComponent, typeof IconBrandLinkedinComponent, typeof IconBrandPlayStoreComponent, typeof IconBrandRssFeedComponent, typeof IconBrandSebComponent, typeof IconBrandSpotifyComponent, typeof IconBrandStorybookComponent, typeof IconBrandSwishWordComponent, typeof IconBrandXComponent, typeof IconBrushComponent, typeof IconBubbleAnnotationComponent, typeof IconBubblesComponent, typeof IconBuildingsComponent, typeof IconBulletListComponent, typeof IconCalculatorComponent, typeof IconCalendarCheckComponent, typeof IconCalendarRepeatComponent, typeof IconCalendarComponent, typeof IconCalenderAddComponent, typeof IconCallComponent, typeof IconCarComponent, typeof IconCarusselComponent, typeof IconChainLinkBrokenComponent, typeof IconChainLinkComponent, typeof IconChartTwoComponent, typeof IconChecklistComponent, typeof IconCheckmarkComponent, typeof IconChevronBottomComponent, typeof IconChevronDoubleDownComponent, typeof IconChevronDoubleLeftComponent, typeof IconChevronDoubleRightComponent, typeof IconChevronDoubleUpComponent, typeof IconChevronDownSmallComponent, typeof IconChevronGrabberVerticalReversedComponent, typeof IconChevronGrabberVerticalComponent, typeof IconChevronLeftSmallComponent, typeof IconChevronLeftComponent, typeof IconChevronRightSmallComponent, typeof IconChevronRightComponent, typeof IconChevronTopSmallComponent, typeof IconChevronTopComponent, typeof IconCircleBanComponent, typeof IconCircleCheckComponent, typeof IconCircleDotsComponent, typeof IconCircleInfoComponent, typeof IconCircleMinusComponent, typeof IconCirclePlaceholderOnComponent, typeof IconCirclePlusComponent, typeof IconCircleQuestionmarkComponent, typeof IconCircleXComponent, typeof IconCirclesThreeComponent, typeof IconClockComponent, typeof IconCloudDownloadComponent, typeof IconCloudUploadComponent, typeof IconCloudySunComponent, typeof IconCodeBracketsComponent, typeof IconCodeComponent, typeof IconCompassRoundComponent, typeof IconCookiesComponent, typeof IconCopyComponent, typeof IconCreditCardAddComponent, typeof IconCreditCardComponent, typeof IconCrossLargeComponent, typeof IconCrossSmallComponent, typeof IconCupHotComponent, typeof IconCursorComponent, typeof IconDevicesComponent, typeof IconDirectionComponent, typeof IconDollarComponent, typeof IconDotGridOneHorizontalComponent, typeof IconDotGridOneVerticalComponent, typeof IconDotGridThreeComponent, typeof IconDotGridTwoComponent, typeof IconEmailComponent, typeof IconEmojiAngryComponent, typeof IconEmojiNeutralComponent, typeof IconEmojiSadComponent, typeof IconEmojiSmileComponent, typeof IconEmojiSmileyComponent, typeof IconEuroComponent, typeof IconExpandComponent, typeof IconEyeOpenComponent, typeof IconEyeSlashComponent, typeof IconFashionComponent, typeof IconFastForwardComponent, typeof IconFileBendComponent, typeof IconFileChartComponent, typeof IconFileTextComponent, typeof IconFilesComponent, typeof IconFilterComponent, typeof IconFlagComponent, typeof IconFloppyDiskComponent, typeof IconFocusComponent, typeof IconFolderAddRightComponent, typeof IconFolderComponent, typeof IconFullscreenComponent, typeof IconGiftComponent, typeof IconGlobusComponent, typeof IconGraduateCapComponent, typeof IconGreenPowerComponent, typeof IconGroupComponent, typeof IconGrowthComponent, typeof IconHeadphonesComponent, typeof IconHeartBeatComponent, typeof IconHeartComponent, typeof IconHistoryComponent, typeof IconHomeEnergyOneComponent, typeof IconHomeEnergyTwoComponent, typeof IconHomeOpenComponent, typeof IconHomeRoofComponent, typeof IconHorizontalAlignmentBottomComponent, typeof IconHourglassComponent, typeof IconImagesComponent, typeof IconInboxEmptyComponent, typeof IconIndustryComponent, typeof IconJpgComponent, typeof IconKeyComponent, typeof IconKnifeSpoonComponent, typeof IconLabComponent, typeof IconLawComponent, typeof IconLeisureComponent, typeof IconLightBulbSimpleComponent, typeof IconLightningComponent, typeof IconLineChartFourComponent, typeof IconLineChartOneComponent, typeof IconLineChartThreeComponent, typeof IconLineChartTwoComponent, typeof IconLockComponent, typeof IconMacbookAirComponent, typeof IconMagnifyingGlassComponent, typeof IconMapPinComponent, typeof IconMegaphoneComponent, typeof IconMenuSidebarComponent, typeof IconMicOffComponent, typeof IconMicOnComponent, typeof IconMinimizeComponent, typeof IconMinusLargeComponent, typeof IconMinusSmallComponent, typeof IconMoneyHandComponent, typeof IconMoneybagComponent, typeof IconMoonComponent, typeof IconMuteComponent, typeof IconNewspaperComponent, typeof IconOfficeComponent, typeof IconPageAddComponent, typeof IconPaperPlaneTopRightComponent, typeof IconPaperclipComponent, typeof IconPauseComponent, typeof IconPdfComponent, typeof IconPencilSignComponent, typeof IconPencilSparkleComponent, typeof IconPencilWaveComponent, typeof IconPensionComponent, typeof IconPeopleA11yComponent, typeof IconPeopleAddComponent, typeof IconPeopleAddedComponent, typeof IconPeopleCircleComponent, typeof IconPeopleCopyComponent, typeof IconPeopleProfileComponent, typeof IconPeopleRemoveComponent, typeof IconPeopleComponent, typeof IconPercentComponent, typeof IconPhoneComponent, typeof IconPieChartComponent, typeof IconPiggyBankComponent, typeof IconPinComponent, typeof IconPinchComponent, typeof IconPlayCircleComponent, typeof IconPlayComponent, typeof IconPlusLargeComponent, typeof IconPlusSmallComponent, typeof IconPngComponent, typeof IconPoopComponent, typeof IconPostcardComponent, typeof IconPoundComponent, typeof IconPowerPlantComponent, typeof IconPowerComponent, typeof IconPrinterComponent, typeof IconPushComponent, typeof IconQrCodeComponent, typeof IconRainyComponent, typeof IconRaisingHandComponent, typeof IconReadingListComponent, typeof IconReceiptBillComponent, typeof IconReceiptionBellComponent, typeof IconRecordComponent, typeof IconRefundComponent, typeof IconRobotComponent, typeof IconRocketComponent, typeof IconRunShortcutComponent, typeof IconSafariComponent, typeof IconSchoolComponent, typeof IconScissorsComponent, typeof IconSearchMenuComponent, typeof IconSettingsGearComponent, typeof IconSettingsSliderHorComponent, typeof IconSettingsSliderVerComponent, typeof IconShapesComponent, typeof IconShareComponent, typeof IconShieldCheckedComponent, typeof IconShieldCrossedComponent, typeof IconShieldComponent, typeof IconShoppingBagComponent, typeof IconSignatureComponent, typeof IconSmartwatchComponent, typeof IconSolarComponent, typeof IconSortAscendingComponent, typeof IconSortDescendingComponent, typeof IconSortDownComponent, typeof IconSortUpComponent, typeof IconSortComponent, typeof IconSquareArrowTopRightComponent, typeof IconSquareBehindSquareComponent, typeof IconSquareGridCircleComponent, typeof IconSquarePlaceholderComponent, typeof IconStarComponent, typeof IconStoreComponent, typeof IconSunComponent, typeof IconSunsetArrowDownComponent, typeof IconTagComponent, typeof IconTargetArrowComponent, typeof IconTelevisionComponent, typeof IconTennisComponent, typeof IconTextEditComponent, typeof IconThermostatComponent, typeof IconThumbsDownComponent, typeof IconThumbsUpComponent, typeof IconTicketComponent, typeof IconTradingViewCandlesComponent, typeof IconTrashCanComponent, typeof IconTreeComponent, typeof IconTrendingFiveComponent, typeof IconTrendingFourComponent, typeof IconTrendingOneComponent, typeof IconTrendingThreeComponent, typeof IconTrendingTwoComponent, typeof IconTriangleExclamationComponent, typeof IconTruckComponent, typeof IconUmbrellaSecurityComponent, typeof IconUnlockedComponent, typeof IconVolumeFullComponent, typeof IconVolumeHalfComponent, typeof IconVolumeOffComponent, typeof IconWalletComponent, typeof IconWarningSignComponent, typeof IconWifiFullComponent, typeof IconYoutubeComponent, typeof IconZapComponent, typeof IconZoomInComponent, typeof IconZoomOutComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent, typeof GdsOptionComponent], [typeof GdsAlertComponent, typeof GdsBadgeComponent, typeof GdsAvatarComponent, typeof GdsBlurComponent, typeof GdsBreadcrumbsComponent, typeof GdsButtonComponent, typeof GdsCalendarComponent, typeof GdsCardComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDatepickerComponent, typeof GdsDetailsComponent, typeof GdsDialogComponent, typeof GdsDivComponent, typeof GdsDividerComponent, typeof GdsDropdownComponent, typeof GdsFilterChipsComponent, typeof GdsFabComponent, typeof GdsFlexComponent, typeof GdsFormSummaryComponent, typeof GdsGridComponent, typeof GdsGroupedListComponent, typeof GdsImgComponent, typeof GdsInputComponent, typeof GdsLinkComponent, typeof GdsListComponent, typeof GdsMaskComponent, typeof GdsMenuButtonComponent, typeof GdsPaginationComponent, typeof GdsBackdropComponent, typeof GdsPopoverComponent, typeof GdsRadioComponent, typeof GdsRichTextComponent, typeof GdsSegmentedControlComponent, typeof GdsSelectComponent, typeof GdsSignalComponent, typeof GdsSpinnerComponent, typeof GdsSwitchComponent, typeof GdsTableComponent, typeof GdsTabsComponent, typeof GdsTextComponent, typeof GdsTextareaComponent, typeof GdsThemeComponent, typeof GdsVideoComponent, typeof GdsCardPattern01Component, typeof GdsListItemPattern01Component, typeof GdsAvatarGroupComponent, typeof GdsBreadcrumbComponent, typeof GdsCheckboxGroupComponent, typeof GdsIconDetailsComponent, typeof GdsFilterChipComponent, typeof GdsFormattedAccountComponent, typeof GdsFormattedDateComponent, typeof GdsFormattedNumberComponent, typeof GdsListItemComponent, typeof GdsRadioGroupComponent, typeof GdsSegmentComponent, typeof GdsSensitiveAccountComponent, typeof GdsSensitiveDateComponent, typeof GdsSensitiveNumberComponent, typeof GdsTabComponent, typeof GdsTabPanelComponent, typeof IconAiComponent, typeof IconAirplaneUpComponent, typeof IconArchiveComponent, typeof IconArrowBottomTopComponent, typeof IconArrowBoxLeftAltComponent, typeof IconArrowBoxLeftComponent, typeof IconArrowBoxRightComponent, typeof IconArrowDownComponent, typeof IconArrowInboxComponent, typeof IconArrowLeftRightComponent, typeof IconArrowLeftComponent, typeof IconArrowOutOfBoxComponent, typeof IconArrowRightCircleComponent, typeof IconArrowRightDownCircleComponent, typeof IconArrowRightUpCircleComponent, typeof IconArrowRightComponent, typeof IconArrowRotateClockwiseComponent, typeof IconArrowRotateCounterClockwiseComponent, typeof IconArrowRotateLeftRightComponent, typeof IconArrowRotateRightLeftComponent, typeof IconArrowShareLeftComponent, typeof IconArrowShareRightComponent, typeof IconArrowSplitComponent, typeof IconArrowUpComponent, typeof IconArrowWallDownComponent, typeof IconArrowWallLeftComponent, typeof IconArrowWallRightComponent, typeof IconArrowWallUpComponent, typeof IconArrowComponent, typeof IconArrowsRepeatRightComponent, typeof IconAsteriskComponent, typeof IconAtComponent, typeof IconBackComponent, typeof IconBackwardComponent, typeof IconBagComponent, typeof IconBankComponent, typeof IconBanknote2Component, typeof IconBanknoteComponent, typeof IconBarcodeComponent, typeof IconBarsThreeComponent, typeof IconBarsTwoComponent, typeof IconBasketComponent, typeof IconBatteryLoadingComponent, typeof IconBellComponent, typeof IconBlockComponent, typeof IconBookComponent, typeof IconBookmarkCheckComponent, typeof IconBookmarkDeleteComponent, typeof IconBookmarkPlusComponent, typeof IconBookmarkRemoveComponent, typeof IconBookmarkComponent, typeof IconBooksComponent, typeof IconBrandAppStoreComponent, typeof IconBrandAppleMusicComponent, typeof IconBrandBankidComponent, typeof IconBrandChromeComponent, typeof IconBrandFacebookComponent, typeof IconBrandFigmaComponent, typeof IconBrandFirefoxComponent, typeof IconBrandGithubComponent, typeof IconBrandGreenComponent, typeof IconBrandInstagramComponent, typeof IconBrandLinkedinComponent, typeof IconBrandPlayStoreComponent, typeof IconBrandRssFeedComponent, typeof IconBrandSebComponent, typeof IconBrandSpotifyComponent, typeof IconBrandStorybookComponent, typeof IconBrandSwishWordComponent, typeof IconBrandXComponent, typeof IconBrushComponent, typeof IconBubbleAnnotationComponent, typeof IconBubblesComponent, typeof IconBuildingsComponent, typeof IconBulletListComponent, typeof IconCalculatorComponent, typeof IconCalendarCheckComponent, typeof IconCalendarRepeatComponent, typeof IconCalendarComponent, typeof IconCalenderAddComponent, typeof IconCallComponent, typeof IconCarComponent, typeof IconCarusselComponent, typeof IconChainLinkBrokenComponent, typeof IconChainLinkComponent, typeof IconChartTwoComponent, typeof IconChecklistComponent, typeof IconCheckmarkComponent, typeof IconChevronBottomComponent, typeof IconChevronDoubleDownComponent, typeof IconChevronDoubleLeftComponent, typeof IconChevronDoubleRightComponent, typeof IconChevronDoubleUpComponent, typeof IconChevronDownSmallComponent, typeof IconChevronGrabberVerticalReversedComponent, typeof IconChevronGrabberVerticalComponent, typeof IconChevronLeftSmallComponent, typeof IconChevronLeftComponent, typeof IconChevronRightSmallComponent, typeof IconChevronRightComponent, typeof IconChevronTopSmallComponent, typeof IconChevronTopComponent, typeof IconCircleBanComponent, typeof IconCircleCheckComponent, typeof IconCircleDotsComponent, typeof IconCircleInfoComponent, typeof IconCircleMinusComponent, typeof IconCirclePlaceholderOnComponent, typeof IconCirclePlusComponent, typeof IconCircleQuestionmarkComponent, typeof IconCircleXComponent, typeof IconCirclesThreeComponent, typeof IconClockComponent, typeof IconCloudDownloadComponent, typeof IconCloudUploadComponent, typeof IconCloudySunComponent, typeof IconCodeBracketsComponent, typeof IconCodeComponent, typeof IconCompassRoundComponent, typeof IconCookiesComponent, typeof IconCopyComponent, typeof IconCreditCardAddComponent, typeof IconCreditCardComponent, typeof IconCrossLargeComponent, typeof IconCrossSmallComponent, typeof IconCupHotComponent, typeof IconCursorComponent, typeof IconDevicesComponent, typeof IconDirectionComponent, typeof IconDollarComponent, typeof IconDotGridOneHorizontalComponent, typeof IconDotGridOneVerticalComponent, typeof IconDotGridThreeComponent, typeof IconDotGridTwoComponent, typeof IconEmailComponent, typeof IconEmojiAngryComponent, typeof IconEmojiNeutralComponent, typeof IconEmojiSadComponent, typeof IconEmojiSmileComponent, typeof IconEmojiSmileyComponent, typeof IconEuroComponent, typeof IconExpandComponent, typeof IconEyeOpenComponent, typeof IconEyeSlashComponent, typeof IconFashionComponent, typeof IconFastForwardComponent, typeof IconFileBendComponent, typeof IconFileChartComponent, typeof IconFileTextComponent, typeof IconFilesComponent, typeof IconFilterComponent, typeof IconFlagComponent, typeof IconFloppyDiskComponent, typeof IconFocusComponent, typeof IconFolderAddRightComponent, typeof IconFolderComponent, typeof IconFullscreenComponent, typeof IconGiftComponent, typeof IconGlobusComponent, typeof IconGraduateCapComponent, typeof IconGreenPowerComponent, typeof IconGroupComponent, typeof IconGrowthComponent, typeof IconHeadphonesComponent, typeof IconHeartBeatComponent, typeof IconHeartComponent, typeof IconHistoryComponent, typeof IconHomeEnergyOneComponent, typeof IconHomeEnergyTwoComponent, typeof IconHomeOpenComponent, typeof IconHomeRoofComponent, typeof IconHorizontalAlignmentBottomComponent, typeof IconHourglassComponent, typeof IconImagesComponent, typeof IconInboxEmptyComponent, typeof IconIndustryComponent, typeof IconJpgComponent, typeof IconKeyComponent, typeof IconKnifeSpoonComponent, typeof IconLabComponent, typeof IconLawComponent, typeof IconLeisureComponent, typeof IconLightBulbSimpleComponent, typeof IconLightningComponent, typeof IconLineChartFourComponent, typeof IconLineChartOneComponent, typeof IconLineChartThreeComponent, typeof IconLineChartTwoComponent, typeof IconLockComponent, typeof IconMacbookAirComponent, typeof IconMagnifyingGlassComponent, typeof IconMapPinComponent, typeof IconMegaphoneComponent, typeof IconMenuSidebarComponent, typeof IconMicOffComponent, typeof IconMicOnComponent, typeof IconMinimizeComponent, typeof IconMinusLargeComponent, typeof IconMinusSmallComponent, typeof IconMoneyHandComponent, typeof IconMoneybagComponent, typeof IconMoonComponent, typeof IconMuteComponent, typeof IconNewspaperComponent, typeof IconOfficeComponent, typeof IconPageAddComponent, typeof IconPaperPlaneTopRightComponent, typeof IconPaperclipComponent, typeof IconPauseComponent, typeof IconPdfComponent, typeof IconPencilSignComponent, typeof IconPencilSparkleComponent, typeof IconPencilWaveComponent, typeof IconPensionComponent, typeof IconPeopleA11yComponent, typeof IconPeopleAddComponent, typeof IconPeopleAddedComponent, typeof IconPeopleCircleComponent, typeof IconPeopleCopyComponent, typeof IconPeopleProfileComponent, typeof IconPeopleRemoveComponent, typeof IconPeopleComponent, typeof IconPercentComponent, typeof IconPhoneComponent, typeof IconPieChartComponent, typeof IconPiggyBankComponent, typeof IconPinComponent, typeof IconPinchComponent, typeof IconPlayCircleComponent, typeof IconPlayComponent, typeof IconPlusLargeComponent, typeof IconPlusSmallComponent, typeof IconPngComponent, typeof IconPoopComponent, typeof IconPostcardComponent, typeof IconPoundComponent, typeof IconPowerPlantComponent, typeof IconPowerComponent, typeof IconPrinterComponent, typeof IconPushComponent, typeof IconQrCodeComponent, typeof IconRainyComponent, typeof IconRaisingHandComponent, typeof IconReadingListComponent, typeof IconReceiptBillComponent, typeof IconReceiptionBellComponent, typeof IconRecordComponent, typeof IconRefundComponent, typeof IconRobotComponent, typeof IconRocketComponent, typeof IconRunShortcutComponent, typeof IconSafariComponent, typeof IconSchoolComponent, typeof IconScissorsComponent, typeof IconSearchMenuComponent, typeof IconSettingsGearComponent, typeof IconSettingsSliderHorComponent, typeof IconSettingsSliderVerComponent, typeof IconShapesComponent, typeof IconShareComponent, typeof IconShieldCheckedComponent, typeof IconShieldCrossedComponent, typeof IconShieldComponent, typeof IconShoppingBagComponent, typeof IconSignatureComponent, typeof IconSmartwatchComponent, typeof IconSolarComponent, typeof IconSortAscendingComponent, typeof IconSortDescendingComponent, typeof IconSortDownComponent, typeof IconSortUpComponent, typeof IconSortComponent, typeof IconSquareArrowTopRightComponent, typeof IconSquareBehindSquareComponent, typeof IconSquareGridCircleComponent, typeof IconSquarePlaceholderComponent, typeof IconStarComponent, typeof IconStoreComponent, typeof IconSunComponent, typeof IconSunsetArrowDownComponent, typeof IconTagComponent, typeof IconTargetArrowComponent, typeof IconTelevisionComponent, typeof IconTennisComponent, typeof IconTextEditComponent, typeof IconThermostatComponent, typeof IconThumbsDownComponent, typeof IconThumbsUpComponent, typeof IconTicketComponent, typeof IconTradingViewCandlesComponent, typeof IconTrashCanComponent, typeof IconTreeComponent, typeof IconTrendingFiveComponent, typeof IconTrendingFourComponent, typeof IconTrendingOneComponent, typeof IconTrendingThreeComponent, typeof IconTrendingTwoComponent, typeof IconTriangleExclamationComponent, typeof IconTruckComponent, typeof IconUmbrellaSecurityComponent, typeof IconUnlockedComponent, typeof IconVolumeFullComponent, typeof IconVolumeHalfComponent, typeof IconVolumeOffComponent, typeof IconWalletComponent, typeof IconWarningSignComponent, typeof IconWifiFullComponent, typeof IconYoutubeComponent, typeof IconZapComponent, typeof IconZoomInComponent, typeof IconZoomOutComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent, typeof GdsOptionComponent]>;
35537
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GreenCoreNgModule, never, [typeof GdsAlertComponent, typeof GdsAvatarComponent, typeof GdsBadgeComponent, typeof GdsBlurComponent, typeof GdsBreadcrumbsComponent, typeof GdsButtonComponent, typeof GdsCardComponent, typeof GdsCalendarComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDetailsComponent, typeof GdsDatepickerComponent, typeof GdsDialogComponent, typeof GdsDivComponent, typeof GdsDividerComponent, typeof GdsDropdownComponent, typeof GdsOptionComponent, typeof GdsFabComponent, typeof GdsFilterChipsComponent, typeof GdsFlexComponent, typeof GdsFormSummaryComponent, typeof GdsGridComponent, typeof GdsGroupedListComponent, typeof GdsImgComponent, typeof GdsInputComponent, typeof GdsLinkComponent, typeof GdsListComponent, typeof GdsMaskComponent, typeof GdsMenuButtonComponent, typeof GdsPaginationComponent, typeof GdsBackdropComponent, typeof GdsPopoverComponent, typeof GdsRadioComponent, typeof GdsRichTextComponent, typeof GdsSegmentedControlComponent, typeof GdsSelectComponent, typeof GdsSignalComponent, typeof GdsSpinnerComponent, typeof GdsSwitchComponent, typeof GdsTableComponent, typeof GdsTabsComponent, typeof GdsTextComponent, typeof GdsTextareaComponent, typeof GdsThemeComponent, typeof GdsVideoComponent, typeof GdsCardPattern01Component, typeof GdsListItemPattern01Component, typeof GdsAvatarGroupComponent, typeof GdsBreadcrumbComponent, typeof GdsCheckboxGroupComponent, typeof GdsIconDetailsComponent, typeof GdsFilterChipComponent, typeof GdsFormattedAccountComponent, typeof GdsFormattedDateComponent, typeof GdsFormattedNumberComponent, typeof GdsListItemComponent, typeof GdsRadioGroupComponent, typeof GdsSegmentComponent, typeof GdsSensitiveAccountComponent, typeof GdsSensitiveDateComponent, typeof GdsSensitiveNumberComponent, typeof GdsTabComponent, typeof GdsTabPanelComponent, typeof IconAiComponent, typeof IconAirplaneUpComponent, typeof IconArchiveComponent, typeof IconArrowBottomTopComponent, typeof IconArrowBoxLeftAltComponent, typeof IconArrowBoxLeftComponent, typeof IconArrowBoxRightComponent, typeof IconArrowDownComponent, typeof IconArrowInboxComponent, typeof IconArrowLeftRightComponent, typeof IconArrowLeftComponent, typeof IconArrowOutOfBoxComponent, typeof IconArrowRightCircleComponent, typeof IconArrowRightDownCircleComponent, typeof IconArrowRightUpCircleComponent, typeof IconArrowRightComponent, typeof IconArrowRotateClockwiseComponent, typeof IconArrowRotateCounterClockwiseComponent, typeof IconArrowRotateLeftRightComponent, typeof IconArrowRotateRightLeftComponent, typeof IconArrowShareLeftComponent, typeof IconArrowShareRightComponent, typeof IconArrowSplitComponent, typeof IconArrowUpComponent, typeof IconArrowWallDownComponent, typeof IconArrowWallLeftComponent, typeof IconArrowWallRightComponent, typeof IconArrowWallUpComponent, typeof IconArrowComponent, typeof IconArrowsRepeatRightComponent, typeof IconAsteriskComponent, typeof IconAtComponent, typeof IconBackComponent, typeof IconBackwardComponent, typeof IconBagComponent, typeof IconBankComponent, typeof IconBanknote2Component, typeof IconBanknoteComponent, typeof IconBarcodeComponent, typeof IconBarsThreeComponent, typeof IconBarsTwoComponent, typeof IconBasketComponent, typeof IconBatteryLoadingComponent, typeof IconBellComponent, typeof IconBlockComponent, typeof IconBookComponent, typeof IconBookmarkCheckComponent, typeof IconBookmarkDeleteComponent, typeof IconBookmarkPlusComponent, typeof IconBookmarkRemoveComponent, typeof IconBookmarkComponent, typeof IconBooksComponent, typeof IconBrandAppStoreComponent, typeof IconBrandAppleMusicComponent, typeof IconBrandBankidComponent, typeof IconBrandChromeComponent, typeof IconBrandFacebookComponent, typeof IconBrandFigmaComponent, typeof IconBrandFirefoxComponent, typeof IconBrandGithubComponent, typeof IconBrandGreenComponent, typeof IconBrandInstagramComponent, typeof IconBrandLinkedinComponent, typeof IconBrandPlayStoreComponent, typeof IconBrandRssFeedComponent, typeof IconBrandSebComponent, typeof IconBrandSpotifyComponent, typeof IconBrandStorybookComponent, typeof IconBrandSwishWordComponent, typeof IconBrandXComponent, typeof IconBrushComponent, typeof IconBubbleAnnotationComponent, typeof IconBubblesComponent, typeof IconBuildingsComponent, typeof IconBulletListComponent, typeof IconCalculatorComponent, typeof IconCalendarCheckComponent, typeof IconCalendarRepeatComponent, typeof IconCalendarComponent, typeof IconCalenderAddComponent, typeof IconCallComponent, typeof IconCarComponent, typeof IconCarusselComponent, typeof IconChainLinkBrokenComponent, typeof IconChainLinkComponent, typeof IconChartTwoComponent, typeof IconChecklistComponent, typeof IconCheckmarkComponent, typeof IconChevronBottomComponent, typeof IconChevronDoubleDownComponent, typeof IconChevronDoubleLeftComponent, typeof IconChevronDoubleRightComponent, typeof IconChevronDoubleUpComponent, typeof IconChevronDownSmallComponent, typeof IconChevronGrabberVerticalReversedComponent, typeof IconChevronGrabberVerticalComponent, typeof IconChevronLeftSmallComponent, typeof IconChevronLeftComponent, typeof IconChevronRightSmallComponent, typeof IconChevronRightComponent, typeof IconChevronTopSmallComponent, typeof IconChevronTopComponent, typeof IconCircleBanComponent, typeof IconCircleCheckComponent, typeof IconCircleDotsComponent, typeof IconCircleInfoComponent, typeof IconCircleMinusComponent, typeof IconCirclePlaceholderOnComponent, typeof IconCirclePlusComponent, typeof IconCircleQuestionmarkComponent, typeof IconCircleXComponent, typeof IconCirclesThreeComponent, typeof IconClockComponent, typeof IconCloudDownloadComponent, typeof IconCloudUploadComponent, typeof IconCloudySunComponent, typeof IconCodeBracketsComponent, typeof IconCodeComponent, typeof IconCompassRoundComponent, typeof IconCookiesComponent, typeof IconCopyComponent, typeof IconCreditCardAddComponent, typeof IconCreditCardComponent, typeof IconCrossLargeComponent, typeof IconCrossSmallComponent, typeof IconCupHotComponent, typeof IconCursorComponent, typeof IconDevicesComponent, typeof IconDirectionComponent, typeof IconDollarComponent, typeof IconDotGridOneHorizontalComponent, typeof IconDotGridOneVerticalComponent, typeof IconDotGridThreeComponent, typeof IconDotGridTwoComponent, typeof IconEmailComponent, typeof IconEmojiAngryComponent, typeof IconEmojiNeutralComponent, typeof IconEmojiSadComponent, typeof IconEmojiSmileComponent, typeof IconEmojiSmileyComponent, typeof IconEuroComponent, typeof IconExpandComponent, typeof IconEyeOpenComponent, typeof IconEyeSlashComponent, typeof IconFashionComponent, typeof IconFastForwardComponent, typeof IconFileBendComponent, typeof IconFileChartComponent, typeof IconFileTextComponent, typeof IconFilesComponent, typeof IconFilterComponent, typeof IconFlagComponent, typeof IconFloppyDiskComponent, typeof IconFocusComponent, typeof IconFolderAddRightComponent, typeof IconFolderComponent, typeof IconFullscreenComponent, typeof IconGiftComponent, typeof IconGlobusComponent, typeof IconGraduateCapComponent, typeof IconGreenPowerComponent, typeof IconGroupComponent, typeof IconGrowthComponent, typeof IconHeadphonesComponent, typeof IconHeartBeatComponent, typeof IconHeartComponent, typeof IconHistoryComponent, typeof IconHomeEnergyOneComponent, typeof IconHomeEnergyTwoComponent, typeof IconHomeOpenComponent, typeof IconHomeRoofComponent, typeof IconHorizontalAlignmentBottomComponent, typeof IconHourglassComponent, typeof IconImagesComponent, typeof IconInboxEmptyComponent, typeof IconIndustryComponent, typeof IconJpgComponent, typeof IconKeyComponent, typeof IconKnifeSpoonComponent, typeof IconLabComponent, typeof IconLawComponent, typeof IconLeisureComponent, typeof IconLightBulbSimpleComponent, typeof IconLightningComponent, typeof IconLineChartFourComponent, typeof IconLineChartOneComponent, typeof IconLineChartThreeComponent, typeof IconLineChartTwoComponent, typeof IconLockComponent, typeof IconMacbookAirComponent, typeof IconMagnifyingGlassComponent, typeof IconMapPinComponent, typeof IconMegaphoneComponent, typeof IconMenuSidebarComponent, typeof IconMicOffComponent, typeof IconMicOnComponent, typeof IconMinimizeComponent, typeof IconMinusLargeComponent, typeof IconMinusSmallComponent, typeof IconMoneyHandComponent, typeof IconMoneybagComponent, typeof IconMoonComponent, typeof IconMuteComponent, typeof IconNewspaperComponent, typeof IconOfficeComponent, typeof IconPageAddComponent, typeof IconPaperPlaneTopRightComponent, typeof IconPaperclipComponent, typeof IconPauseComponent, typeof IconPdfComponent, typeof IconPencilSignComponent, typeof IconPencilSparkleComponent, typeof IconPencilWaveComponent, typeof IconPensionComponent, typeof IconPeopleA11yComponent, typeof IconPeopleAddComponent, typeof IconPeopleAddedComponent, typeof IconPeopleCircleComponent, typeof IconPeopleCopyComponent, typeof IconPeopleProfileComponent, typeof IconPeopleRemoveComponent, typeof IconPeopleComponent, typeof IconPercentComponent, typeof IconPhoneComponent, typeof IconPieChartComponent, typeof IconPiggyBankComponent, typeof IconPinComponent, typeof IconPinchComponent, typeof IconPlayCircleComponent, typeof IconPlayComponent, typeof IconPlusLargeComponent, typeof IconPlusSmallComponent, typeof IconPngComponent, typeof IconPoopComponent, typeof IconPostcardComponent, typeof IconPoundComponent, typeof IconPowerPlantComponent, typeof IconPowerComponent, typeof IconPrinterComponent, typeof IconPushComponent, typeof IconQrCodeComponent, typeof IconRainyComponent, typeof IconRaisingHandComponent, typeof IconReadingListComponent, typeof IconReceiptBillComponent, typeof IconReceiptionBellComponent, typeof IconRecordComponent, typeof IconRefundComponent, typeof IconRobotComponent, typeof IconRocketComponent, typeof IconRunShortcutComponent, typeof IconSafariComponent, typeof IconSchoolComponent, typeof IconScissorsComponent, typeof IconSearchMenuComponent, typeof IconSettingsGearComponent, typeof IconSettingsSliderHorComponent, typeof IconSettingsSliderVerComponent, typeof IconShapesComponent, typeof IconShareComponent, typeof IconShieldCheckedComponent, typeof IconShieldCrossedComponent, typeof IconShieldComponent, typeof IconShoppingBagComponent, typeof IconSignatureComponent, typeof IconSmartwatchComponent, typeof IconSolarComponent, typeof IconSortAscendingComponent, typeof IconSortDescendingComponent, typeof IconSortDownComponent, typeof IconSortUpComponent, typeof IconSortComponent, typeof IconSquareArrowTopRightComponent, typeof IconSquareBehindSquareComponent, typeof IconSquareGridCircleComponent, typeof IconSquarePlaceholderComponent, typeof IconStarComponent, typeof IconStoreComponent, typeof IconSunComponent, typeof IconSunsetArrowDownComponent, typeof IconTagComponent, typeof IconTargetArrowComponent, typeof IconTelevisionComponent, typeof IconTennisComponent, typeof IconTextEditComponent, typeof IconThermostatComponent, typeof IconThumbsDownComponent, typeof IconThumbsUpComponent, typeof IconTicketComponent, typeof IconTradingViewCandlesComponent, typeof IconTrashCanComponent, typeof IconTreeComponent, typeof IconTrendingFiveComponent, typeof IconTrendingFourComponent, typeof IconTrendingOneComponent, typeof IconTrendingThreeComponent, typeof IconTrendingTwoComponent, typeof IconTriangleExclamationComponent, typeof IconTruckComponent, typeof IconUmbrellaSecurityComponent, typeof IconUnlockedComponent, typeof IconVolumeFullComponent, typeof IconVolumeHalfComponent, typeof IconVolumeOffComponent, typeof IconWalletComponent, typeof IconWarningSignComponent, typeof IconWifiFullComponent, typeof IconYoutubeComponent, typeof IconZapComponent, typeof IconZoomInComponent, typeof IconZoomOutComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent], [typeof GdsAlertComponent, typeof GdsAvatarComponent, typeof GdsBadgeComponent, typeof GdsBlurComponent, typeof GdsBreadcrumbsComponent, typeof GdsButtonComponent, typeof GdsCardComponent, typeof GdsCalendarComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDetailsComponent, typeof GdsDatepickerComponent, typeof GdsDialogComponent, typeof GdsDivComponent, typeof GdsDividerComponent, typeof GdsDropdownComponent, typeof GdsOptionComponent, typeof GdsFabComponent, typeof GdsFilterChipsComponent, typeof GdsFlexComponent, typeof GdsFormSummaryComponent, typeof GdsGridComponent, typeof GdsGroupedListComponent, typeof GdsImgComponent, typeof GdsInputComponent, typeof GdsLinkComponent, typeof GdsListComponent, typeof GdsMaskComponent, typeof GdsMenuButtonComponent, typeof GdsPaginationComponent, typeof GdsBackdropComponent, typeof GdsPopoverComponent, typeof GdsRadioComponent, typeof GdsRichTextComponent, typeof GdsSegmentedControlComponent, typeof GdsSelectComponent, typeof GdsSignalComponent, typeof GdsSpinnerComponent, typeof GdsSwitchComponent, typeof GdsTableComponent, typeof GdsTabsComponent, typeof GdsTextComponent, typeof GdsTextareaComponent, typeof GdsThemeComponent, typeof GdsVideoComponent, typeof GdsCardPattern01Component, typeof GdsListItemPattern01Component, typeof GdsAvatarGroupComponent, typeof GdsBreadcrumbComponent, typeof GdsCheckboxGroupComponent, typeof GdsIconDetailsComponent, typeof GdsFilterChipComponent, typeof GdsFormattedAccountComponent, typeof GdsFormattedDateComponent, typeof GdsFormattedNumberComponent, typeof GdsListItemComponent, typeof GdsRadioGroupComponent, typeof GdsSegmentComponent, typeof GdsSensitiveAccountComponent, typeof GdsSensitiveDateComponent, typeof GdsSensitiveNumberComponent, typeof GdsTabComponent, typeof GdsTabPanelComponent, typeof IconAiComponent, typeof IconAirplaneUpComponent, typeof IconArchiveComponent, typeof IconArrowBottomTopComponent, typeof IconArrowBoxLeftAltComponent, typeof IconArrowBoxLeftComponent, typeof IconArrowBoxRightComponent, typeof IconArrowDownComponent, typeof IconArrowInboxComponent, typeof IconArrowLeftRightComponent, typeof IconArrowLeftComponent, typeof IconArrowOutOfBoxComponent, typeof IconArrowRightCircleComponent, typeof IconArrowRightDownCircleComponent, typeof IconArrowRightUpCircleComponent, typeof IconArrowRightComponent, typeof IconArrowRotateClockwiseComponent, typeof IconArrowRotateCounterClockwiseComponent, typeof IconArrowRotateLeftRightComponent, typeof IconArrowRotateRightLeftComponent, typeof IconArrowShareLeftComponent, typeof IconArrowShareRightComponent, typeof IconArrowSplitComponent, typeof IconArrowUpComponent, typeof IconArrowWallDownComponent, typeof IconArrowWallLeftComponent, typeof IconArrowWallRightComponent, typeof IconArrowWallUpComponent, typeof IconArrowComponent, typeof IconArrowsRepeatRightComponent, typeof IconAsteriskComponent, typeof IconAtComponent, typeof IconBackComponent, typeof IconBackwardComponent, typeof IconBagComponent, typeof IconBankComponent, typeof IconBanknote2Component, typeof IconBanknoteComponent, typeof IconBarcodeComponent, typeof IconBarsThreeComponent, typeof IconBarsTwoComponent, typeof IconBasketComponent, typeof IconBatteryLoadingComponent, typeof IconBellComponent, typeof IconBlockComponent, typeof IconBookComponent, typeof IconBookmarkCheckComponent, typeof IconBookmarkDeleteComponent, typeof IconBookmarkPlusComponent, typeof IconBookmarkRemoveComponent, typeof IconBookmarkComponent, typeof IconBooksComponent, typeof IconBrandAppStoreComponent, typeof IconBrandAppleMusicComponent, typeof IconBrandBankidComponent, typeof IconBrandChromeComponent, typeof IconBrandFacebookComponent, typeof IconBrandFigmaComponent, typeof IconBrandFirefoxComponent, typeof IconBrandGithubComponent, typeof IconBrandGreenComponent, typeof IconBrandInstagramComponent, typeof IconBrandLinkedinComponent, typeof IconBrandPlayStoreComponent, typeof IconBrandRssFeedComponent, typeof IconBrandSebComponent, typeof IconBrandSpotifyComponent, typeof IconBrandStorybookComponent, typeof IconBrandSwishWordComponent, typeof IconBrandXComponent, typeof IconBrushComponent, typeof IconBubbleAnnotationComponent, typeof IconBubblesComponent, typeof IconBuildingsComponent, typeof IconBulletListComponent, typeof IconCalculatorComponent, typeof IconCalendarCheckComponent, typeof IconCalendarRepeatComponent, typeof IconCalendarComponent, typeof IconCalenderAddComponent, typeof IconCallComponent, typeof IconCarComponent, typeof IconCarusselComponent, typeof IconChainLinkBrokenComponent, typeof IconChainLinkComponent, typeof IconChartTwoComponent, typeof IconChecklistComponent, typeof IconCheckmarkComponent, typeof IconChevronBottomComponent, typeof IconChevronDoubleDownComponent, typeof IconChevronDoubleLeftComponent, typeof IconChevronDoubleRightComponent, typeof IconChevronDoubleUpComponent, typeof IconChevronDownSmallComponent, typeof IconChevronGrabberVerticalReversedComponent, typeof IconChevronGrabberVerticalComponent, typeof IconChevronLeftSmallComponent, typeof IconChevronLeftComponent, typeof IconChevronRightSmallComponent, typeof IconChevronRightComponent, typeof IconChevronTopSmallComponent, typeof IconChevronTopComponent, typeof IconCircleBanComponent, typeof IconCircleCheckComponent, typeof IconCircleDotsComponent, typeof IconCircleInfoComponent, typeof IconCircleMinusComponent, typeof IconCirclePlaceholderOnComponent, typeof IconCirclePlusComponent, typeof IconCircleQuestionmarkComponent, typeof IconCircleXComponent, typeof IconCirclesThreeComponent, typeof IconClockComponent, typeof IconCloudDownloadComponent, typeof IconCloudUploadComponent, typeof IconCloudySunComponent, typeof IconCodeBracketsComponent, typeof IconCodeComponent, typeof IconCompassRoundComponent, typeof IconCookiesComponent, typeof IconCopyComponent, typeof IconCreditCardAddComponent, typeof IconCreditCardComponent, typeof IconCrossLargeComponent, typeof IconCrossSmallComponent, typeof IconCupHotComponent, typeof IconCursorComponent, typeof IconDevicesComponent, typeof IconDirectionComponent, typeof IconDollarComponent, typeof IconDotGridOneHorizontalComponent, typeof IconDotGridOneVerticalComponent, typeof IconDotGridThreeComponent, typeof IconDotGridTwoComponent, typeof IconEmailComponent, typeof IconEmojiAngryComponent, typeof IconEmojiNeutralComponent, typeof IconEmojiSadComponent, typeof IconEmojiSmileComponent, typeof IconEmojiSmileyComponent, typeof IconEuroComponent, typeof IconExpandComponent, typeof IconEyeOpenComponent, typeof IconEyeSlashComponent, typeof IconFashionComponent, typeof IconFastForwardComponent, typeof IconFileBendComponent, typeof IconFileChartComponent, typeof IconFileTextComponent, typeof IconFilesComponent, typeof IconFilterComponent, typeof IconFlagComponent, typeof IconFloppyDiskComponent, typeof IconFocusComponent, typeof IconFolderAddRightComponent, typeof IconFolderComponent, typeof IconFullscreenComponent, typeof IconGiftComponent, typeof IconGlobusComponent, typeof IconGraduateCapComponent, typeof IconGreenPowerComponent, typeof IconGroupComponent, typeof IconGrowthComponent, typeof IconHeadphonesComponent, typeof IconHeartBeatComponent, typeof IconHeartComponent, typeof IconHistoryComponent, typeof IconHomeEnergyOneComponent, typeof IconHomeEnergyTwoComponent, typeof IconHomeOpenComponent, typeof IconHomeRoofComponent, typeof IconHorizontalAlignmentBottomComponent, typeof IconHourglassComponent, typeof IconImagesComponent, typeof IconInboxEmptyComponent, typeof IconIndustryComponent, typeof IconJpgComponent, typeof IconKeyComponent, typeof IconKnifeSpoonComponent, typeof IconLabComponent, typeof IconLawComponent, typeof IconLeisureComponent, typeof IconLightBulbSimpleComponent, typeof IconLightningComponent, typeof IconLineChartFourComponent, typeof IconLineChartOneComponent, typeof IconLineChartThreeComponent, typeof IconLineChartTwoComponent, typeof IconLockComponent, typeof IconMacbookAirComponent, typeof IconMagnifyingGlassComponent, typeof IconMapPinComponent, typeof IconMegaphoneComponent, typeof IconMenuSidebarComponent, typeof IconMicOffComponent, typeof IconMicOnComponent, typeof IconMinimizeComponent, typeof IconMinusLargeComponent, typeof IconMinusSmallComponent, typeof IconMoneyHandComponent, typeof IconMoneybagComponent, typeof IconMoonComponent, typeof IconMuteComponent, typeof IconNewspaperComponent, typeof IconOfficeComponent, typeof IconPageAddComponent, typeof IconPaperPlaneTopRightComponent, typeof IconPaperclipComponent, typeof IconPauseComponent, typeof IconPdfComponent, typeof IconPencilSignComponent, typeof IconPencilSparkleComponent, typeof IconPencilWaveComponent, typeof IconPensionComponent, typeof IconPeopleA11yComponent, typeof IconPeopleAddComponent, typeof IconPeopleAddedComponent, typeof IconPeopleCircleComponent, typeof IconPeopleCopyComponent, typeof IconPeopleProfileComponent, typeof IconPeopleRemoveComponent, typeof IconPeopleComponent, typeof IconPercentComponent, typeof IconPhoneComponent, typeof IconPieChartComponent, typeof IconPiggyBankComponent, typeof IconPinComponent, typeof IconPinchComponent, typeof IconPlayCircleComponent, typeof IconPlayComponent, typeof IconPlusLargeComponent, typeof IconPlusSmallComponent, typeof IconPngComponent, typeof IconPoopComponent, typeof IconPostcardComponent, typeof IconPoundComponent, typeof IconPowerPlantComponent, typeof IconPowerComponent, typeof IconPrinterComponent, typeof IconPushComponent, typeof IconQrCodeComponent, typeof IconRainyComponent, typeof IconRaisingHandComponent, typeof IconReadingListComponent, typeof IconReceiptBillComponent, typeof IconReceiptionBellComponent, typeof IconRecordComponent, typeof IconRefundComponent, typeof IconRobotComponent, typeof IconRocketComponent, typeof IconRunShortcutComponent, typeof IconSafariComponent, typeof IconSchoolComponent, typeof IconScissorsComponent, typeof IconSearchMenuComponent, typeof IconSettingsGearComponent, typeof IconSettingsSliderHorComponent, typeof IconSettingsSliderVerComponent, typeof IconShapesComponent, typeof IconShareComponent, typeof IconShieldCheckedComponent, typeof IconShieldCrossedComponent, typeof IconShieldComponent, typeof IconShoppingBagComponent, typeof IconSignatureComponent, typeof IconSmartwatchComponent, typeof IconSolarComponent, typeof IconSortAscendingComponent, typeof IconSortDescendingComponent, typeof IconSortDownComponent, typeof IconSortUpComponent, typeof IconSortComponent, typeof IconSquareArrowTopRightComponent, typeof IconSquareBehindSquareComponent, typeof IconSquareGridCircleComponent, typeof IconSquarePlaceholderComponent, typeof IconStarComponent, typeof IconStoreComponent, typeof IconSunComponent, typeof IconSunsetArrowDownComponent, typeof IconTagComponent, typeof IconTargetArrowComponent, typeof IconTelevisionComponent, typeof IconTennisComponent, typeof IconTextEditComponent, typeof IconThermostatComponent, typeof IconThumbsDownComponent, typeof IconThumbsUpComponent, typeof IconTicketComponent, typeof IconTradingViewCandlesComponent, typeof IconTrashCanComponent, typeof IconTreeComponent, typeof IconTrendingFiveComponent, typeof IconTrendingFourComponent, typeof IconTrendingOneComponent, typeof IconTrendingThreeComponent, typeof IconTrendingTwoComponent, typeof IconTriangleExclamationComponent, typeof IconTruckComponent, typeof IconUmbrellaSecurityComponent, typeof IconUnlockedComponent, typeof IconVolumeFullComponent, typeof IconVolumeHalfComponent, typeof IconVolumeOffComponent, typeof IconWalletComponent, typeof IconWarningSignComponent, typeof IconWifiFullComponent, typeof IconYoutubeComponent, typeof IconZapComponent, typeof IconZoomInComponent, typeof IconZoomOutComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent]>;
35535
35538
  static ɵinj: i0.ɵɵInjectorDeclaration<GreenCoreNgModule>;
35536
35539
  }
35537
35540