@sebgroup/green-core-ng 3.11.1 → 3.12.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.
@@ -1,15 +1,15 @@
1
1
  import { __decorate, __metadata } from 'tslib';
2
2
  import * as i0 from '@angular/core';
3
- import { inject, ElementRef, NgZone, ChangeDetectorRef, EventEmitter, booleanAttribute, Output, Input, ChangeDetectionStrategy, Component, Renderer2, Injector, Directive, DestroyRef, forwardRef, NgModule, InjectionToken, ViewContainerRef, TemplateRef, Injectable, RendererFactory2 } from '@angular/core';
4
- import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
3
+ import { inject, ElementRef, NgZone, ChangeDetectorRef, booleanAttribute, Input, ChangeDetectionStrategy, Component, EventEmitter, Output, Renderer2, Injector, Directive, DestroyRef, forwardRef, NgModule, InjectionToken, ViewContainerRef, TemplateRef, Injectable, RendererFactory2 } from '@angular/core';
5
4
  import { GdsAvatar } from '@sebgroup/green-core/components/avatar/avatar.component.js';
6
- import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
7
- import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
5
+ import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
8
6
  import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
7
+ import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
9
8
  import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
10
9
  import { LocationStrategy, DOCUMENT, CommonModule } from '@angular/common';
11
10
  import { Router, RouterLink, RouterLinkActive, NavigationEnd } from '@angular/router';
12
11
  import { GdsButton } from '@sebgroup/green-core/components/button/button.component.js';
12
+ import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
13
13
  import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
14
14
  import { GdsCard } from '@sebgroup/green-core/components/card/card.component.js';
15
15
  import { GdsCardLinked } from '@sebgroup/green-core/components/card-linked/card-linked.component.js';
@@ -54,14 +54,14 @@ import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-gr
54
54
  import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
55
55
  import { GdsCheckboxGroup } from '@sebgroup/green-core/components/checkbox/checkbox-group/checkbox-group.component.js';
56
56
  import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
57
- import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
58
57
  import { GdsFormattedAccount } from '@sebgroup/green-core/components/formatted-text/account/formatted-account.component.js';
58
+ import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
59
59
  import { GdsFormattedDate } from '@sebgroup/green-core/components/formatted-text/date/formatted-date.component.js';
60
60
  import { GdsFormattedNumber } from '@sebgroup/green-core/components/formatted-text/number/formatted-number.component.js';
61
61
  import { GdsRadioGroup } from '@sebgroup/green-core/components/radio/radio-group/radio-group.component.js';
62
62
  import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
63
- import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
64
63
  import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
64
+ import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
65
65
  import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
66
66
  import { IconAi } from '@sebgroup/green-core/components/icon/icons/ai.component.js';
67
67
  import { IconAirplaneUp } from '@sebgroup/green-core/components/icon/icons/airplane-up.component.js';
@@ -437,91 +437,6 @@ function ProxyInputs(inputNames) {
437
437
  };
438
438
  }
439
439
 
440
- /**
441
- * Angular wrapper for the gds-alert web component
442
- *
443
- */
444
- let GdsAlertComponent = class GdsAlertComponent {
445
- get element() {
446
- return this.elementRef.nativeElement;
447
- }
448
- constructor() {
449
- this.elementRef = inject((ElementRef));
450
- this.zone = inject(NgZone);
451
- this.cdr = inject(ChangeDetectorRef);
452
- /** Fired when alert is dismissed */
453
- this.gdsClose = new EventEmitter();
454
- /** Fired when action button is clicked */
455
- this.gdsAction = new EventEmitter();
456
- this.cdr.detach();
457
- }
458
- ngOnInit() {
459
- // Define the custom element
460
- try {
461
- GdsAlert.define();
462
- }
463
- catch (e) {
464
- // Component may not be available in this version of green-core
465
- console.warn('Failed to define gds-alert:', e);
466
- }
467
- // Set up event listeners
468
- this.elementRef.nativeElement.addEventListener('gds-close', (event) => {
469
- this.gdsClose.emit(event);
470
- });
471
- this.elementRef.nativeElement.addEventListener('gds-action', (event) => {
472
- this.gdsAction.emit(event);
473
- });
474
- }
475
- ngOnChanges(changes) {
476
- // Implementation added by @ProxyInputs decorator
477
- }
478
- ngAfterViewInit() {
479
- // Implementation added by @ProxyInputs decorator
480
- }
481
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
482
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsAlertComponent, isStandalone: true, selector: "gds-alert", inputs: { variant: "variant", label: "label", role: "role", dismissible: ["dismissible", "dismissible", booleanAttribute], timeout: "timeout", buttonLabel: "buttonLabel", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsClose: "gdsClose", gdsAction: "gdsAction" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
483
- };
484
- GdsAlertComponent = __decorate([
485
- ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
486
- __metadata("design:paramtypes", [])
487
- ], GdsAlertComponent);
488
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, decorators: [{
489
- type: Component,
490
- args: [{
491
- selector: 'gds-alert',
492
- standalone: true,
493
- changeDetection: ChangeDetectionStrategy.OnPush,
494
- template: `<ng-content></ng-content>`
495
- }]
496
- }], ctorParameters: () => [], propDecorators: { variant: [{
497
- type: Input
498
- }], label: [{
499
- type: Input
500
- }], role: [{
501
- type: Input
502
- }], dismissible: [{
503
- type: Input,
504
- args: [{ transform: booleanAttribute }]
505
- }], timeout: [{
506
- type: Input
507
- }], buttonLabel: [{
508
- type: Input
509
- }], syncFirstRender: [{
510
- type: Input,
511
- args: [{ transform: booleanAttribute }]
512
- }], gdsClose: [{
513
- type: Output
514
- }], gdsAction: [{
515
- type: Output
516
- }] } });
517
-
518
- /**
519
- * GdsAlertComponent - Angular wrapper for gds-alert
520
- *
521
- *
522
- * Auto-generated from Custom Elements Manifest
523
- */
524
-
525
440
  /**
526
441
  * Angular wrapper for the gds-avatar web component
527
442
  * `gds-avatar` is a visual element used to represent a user or entity.
@@ -630,10 +545,10 @@ It supports displaying an image, slotted text content, or a fallback icon.
630
545
  */
631
546
 
632
547
  /**
633
- * Angular wrapper for the gds-badge web component
634
- * `gds-badge`
548
+ * Angular wrapper for the gds-alert web component
549
+ *
635
550
  */
636
- let GdsBadgeComponent = class GdsBadgeComponent {
551
+ let GdsAlertComponent = class GdsAlertComponent {
637
552
  get element() {
638
553
  return this.elementRef.nativeElement;
639
554
  }
@@ -641,17 +556,28 @@ let GdsBadgeComponent = class GdsBadgeComponent {
641
556
  this.elementRef = inject((ElementRef));
642
557
  this.zone = inject(NgZone);
643
558
  this.cdr = inject(ChangeDetectorRef);
559
+ /** Fired when alert is dismissed */
560
+ this.gdsClose = new EventEmitter();
561
+ /** Fired when action button is clicked */
562
+ this.gdsAction = new EventEmitter();
644
563
  this.cdr.detach();
645
564
  }
646
565
  ngOnInit() {
647
566
  // Define the custom element
648
567
  try {
649
- GdsBadge.define();
568
+ GdsAlert.define();
650
569
  }
651
570
  catch (e) {
652
571
  // Component may not be available in this version of green-core
653
- console.warn('Failed to define gds-badge:', e);
572
+ console.warn('Failed to define gds-alert:', e);
654
573
  }
574
+ // Set up event listeners
575
+ this.elementRef.nativeElement.addEventListener('gds-close', (event) => {
576
+ this.gdsClose.emit(event);
577
+ });
578
+ this.elementRef.nativeElement.addEventListener('gds-action', (event) => {
579
+ this.gdsAction.emit(event);
580
+ });
655
581
  }
656
582
  ngOnChanges(changes) {
657
583
  // Implementation added by @ProxyInputs decorator
@@ -659,88 +585,55 @@ let GdsBadgeComponent = class GdsBadgeComponent {
659
585
  ngAfterViewInit() {
660
586
  // Implementation added by @ProxyInputs decorator
661
587
  }
662
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
663
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBadgeComponent, isStandalone: true, selector: "gds-badge", inputs: { variant: "variant", size: "size", notification: ["notification", "notification", booleanAttribute], rounded: ["rounded", "rounded", booleanAttribute], mainSlotOccupied: ["mainSlotOccupied", "mainSlotOccupied", booleanAttribute], leadSlotOccupied: ["leadSlotOccupied", "leadSlotOccupied", booleanAttribute], width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
588
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
589
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsAlertComponent, isStandalone: true, selector: "gds-alert", inputs: { variant: "variant", label: "label", role: "role", dismissible: ["dismissible", "dismissible", booleanAttribute], timeout: "timeout", buttonLabel: "buttonLabel", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsClose: "gdsClose", gdsAction: "gdsAction" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
664
590
  };
665
- GdsBadgeComponent = __decorate([
666
- ProxyInputs(['variant', 'size', 'notification', 'rounded', 'mainSlotOccupied', 'leadSlotOccupied', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
591
+ GdsAlertComponent = __decorate([
592
+ ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
667
593
  __metadata("design:paramtypes", [])
668
- ], GdsBadgeComponent);
669
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, decorators: [{
594
+ ], GdsAlertComponent);
595
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, decorators: [{
670
596
  type: Component,
671
597
  args: [{
672
- selector: 'gds-badge',
598
+ selector: 'gds-alert',
673
599
  standalone: true,
674
600
  changeDetection: ChangeDetectionStrategy.OnPush,
675
601
  template: `<ng-content></ng-content>`
676
602
  }]
677
603
  }], ctorParameters: () => [], propDecorators: { variant: [{
678
604
  type: Input
679
- }], size: [{
605
+ }], label: [{
680
606
  type: Input
681
- }], notification: [{
682
- type: Input,
683
- args: [{ transform: booleanAttribute }]
684
- }], rounded: [{
685
- type: Input,
686
- args: [{ transform: booleanAttribute }]
687
- }], mainSlotOccupied: [{
688
- type: Input,
689
- args: [{ transform: booleanAttribute }]
690
- }], leadSlotOccupied: [{
607
+ }], role: [{
608
+ type: Input
609
+ }], dismissible: [{
691
610
  type: Input,
692
611
  args: [{ transform: booleanAttribute }]
693
- }], width: [{
694
- type: Input
695
- }], minWidth: [{
696
- type: Input
697
- }], maxWidth: [{
698
- type: Input
699
- }], inlineSize: [{
700
- type: Input
701
- }], minInlineSize: [{
702
- type: Input
703
- }], maxInlineSize: [{
704
- type: Input
705
- }], margin: [{
706
- type: Input
707
- }], marginInline: [{
708
- type: Input
709
- }], marginBlock: [{
710
- type: Input
711
- }], alignSelf: [{
712
- type: Input
713
- }], justifySelf: [{
714
- type: Input
715
- }], placeSelf: [{
716
- type: Input
717
- }], gridColumn: [{
718
- type: Input
719
- }], gridRow: [{
720
- type: Input
721
- }], gridArea: [{
722
- type: Input
723
- }], flex: [{
612
+ }], timeout: [{
724
613
  type: Input
725
- }], order: [{
614
+ }], buttonLabel: [{
726
615
  type: Input
727
616
  }], syncFirstRender: [{
728
617
  type: Input,
729
618
  args: [{ transform: booleanAttribute }]
619
+ }], gdsClose: [{
620
+ type: Output
621
+ }], gdsAction: [{
622
+ type: Output
730
623
  }] } });
731
624
 
732
625
  /**
733
- * GdsBadgeComponent - Angular wrapper for gds-badge
734
- * `gds-badge`
626
+ * GdsAlertComponent - Angular wrapper for gds-alert
627
+ *
735
628
  *
736
629
  * Auto-generated from Custom Elements Manifest
737
630
  */
738
631
 
739
632
  /**
740
- * Angular wrapper for the gds-blur web component
633
+ * Angular wrapper for the gds-breadcrumbs web component
741
634
  *
742
635
  */
743
- let GdsBlurComponent = class GdsBlurComponent {
636
+ let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
744
637
  get element() {
745
638
  return this.elementRef.nativeElement;
746
639
  }
@@ -753,11 +646,11 @@ let GdsBlurComponent = class GdsBlurComponent {
753
646
  ngOnInit() {
754
647
  // Define the custom element
755
648
  try {
756
- GdsBlur.define();
649
+ GdsBreadcrumbs.define();
757
650
  }
758
651
  catch (e) {
759
652
  // Component may not be available in this version of green-core
760
- console.warn('Failed to define gds-blur:', e);
653
+ console.warn('Failed to define gds-breadcrumbs:', e);
761
654
  }
762
655
  }
763
656
  ngOnChanges(changes) {
@@ -766,38 +659,76 @@ let GdsBlurComponent = class GdsBlurComponent {
766
659
  ngAfterViewInit() {
767
660
  // Implementation added by @ProxyInputs decorator
768
661
  }
769
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBlurComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
770
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBlurComponent, isStandalone: true, selector: "gds-blur", inputs: { syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
662
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
663
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBreadcrumbsComponent, isStandalone: true, selector: "gds-breadcrumbs", inputs: { size: "size", label: "label", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
771
664
  };
772
- GdsBlurComponent = __decorate([
773
- ProxyInputs(['syncFirstRender']),
665
+ GdsBreadcrumbsComponent = __decorate([
666
+ ProxyInputs(['size', 'label', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'margin', 'margin-inline', 'margin-block', 'syncFirstRender']),
774
667
  __metadata("design:paramtypes", [])
775
- ], GdsBlurComponent);
776
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBlurComponent, decorators: [{
668
+ ], GdsBreadcrumbsComponent);
669
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, decorators: [{
777
670
  type: Component,
778
671
  args: [{
779
- selector: 'gds-blur',
672
+ selector: 'gds-breadcrumbs',
780
673
  standalone: true,
781
674
  changeDetection: ChangeDetectionStrategy.OnPush,
782
675
  template: `<ng-content></ng-content>`
783
676
  }]
784
- }], ctorParameters: () => [], propDecorators: { syncFirstRender: [{
677
+ }], ctorParameters: () => [], propDecorators: { size: [{
678
+ type: Input
679
+ }], label: [{
680
+ type: Input
681
+ }], alignSelf: [{
682
+ type: Input
683
+ }], justifySelf: [{
684
+ type: Input
685
+ }], placeSelf: [{
686
+ type: Input
687
+ }], gridColumn: [{
688
+ type: Input
689
+ }], gridRow: [{
690
+ type: Input
691
+ }], gridArea: [{
692
+ type: Input
693
+ }], flex: [{
694
+ type: Input
695
+ }], order: [{
696
+ type: Input
697
+ }], width: [{
698
+ type: Input
699
+ }], minWidth: [{
700
+ type: Input
701
+ }], maxWidth: [{
702
+ type: Input
703
+ }], inlineSize: [{
704
+ type: Input
705
+ }], minInlineSize: [{
706
+ type: Input
707
+ }], maxInlineSize: [{
708
+ type: Input
709
+ }], margin: [{
710
+ type: Input
711
+ }], marginInline: [{
712
+ type: Input
713
+ }], marginBlock: [{
714
+ type: Input
715
+ }], syncFirstRender: [{
785
716
  type: Input,
786
717
  args: [{ transform: booleanAttribute }]
787
718
  }] } });
788
719
 
789
720
  /**
790
- * GdsBlurComponent - Angular wrapper for gds-blur
721
+ * GdsBreadcrumbsComponent - Angular wrapper for gds-breadcrumbs
791
722
  *
792
723
  *
793
724
  * Auto-generated from Custom Elements Manifest
794
725
  */
795
726
 
796
727
  /**
797
- * Angular wrapper for the gds-breadcrumbs web component
798
- *
728
+ * Angular wrapper for the gds-badge web component
729
+ * `gds-badge`
799
730
  */
800
- let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
731
+ let GdsBadgeComponent = class GdsBadgeComponent {
801
732
  get element() {
802
733
  return this.elementRef.nativeElement;
803
734
  }
@@ -810,11 +741,11 @@ let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
810
741
  ngOnInit() {
811
742
  // Define the custom element
812
743
  try {
813
- GdsBreadcrumbs.define();
744
+ GdsBadge.define();
814
745
  }
815
746
  catch (e) {
816
747
  // Component may not be available in this version of green-core
817
- console.warn('Failed to define gds-breadcrumbs:', e);
748
+ console.warn('Failed to define gds-badge:', e);
818
749
  }
819
750
  }
820
751
  ngOnChanges(changes) {
@@ -823,41 +754,37 @@ let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
823
754
  ngAfterViewInit() {
824
755
  // Implementation added by @ProxyInputs decorator
825
756
  }
826
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
827
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBreadcrumbsComponent, isStandalone: true, selector: "gds-breadcrumbs", inputs: { size: "size", label: "label", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
757
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
758
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBadgeComponent, isStandalone: true, selector: "gds-badge", inputs: { variant: "variant", size: "size", notification: ["notification", "notification", booleanAttribute], rounded: ["rounded", "rounded", booleanAttribute], mainSlotOccupied: ["mainSlotOccupied", "mainSlotOccupied", booleanAttribute], leadSlotOccupied: ["leadSlotOccupied", "leadSlotOccupied", booleanAttribute], width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
828
759
  };
829
- GdsBreadcrumbsComponent = __decorate([
830
- ProxyInputs(['size', 'label', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'margin', 'margin-inline', 'margin-block', 'syncFirstRender']),
760
+ GdsBadgeComponent = __decorate([
761
+ ProxyInputs(['variant', 'size', 'notification', 'rounded', 'mainSlotOccupied', 'leadSlotOccupied', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
831
762
  __metadata("design:paramtypes", [])
832
- ], GdsBreadcrumbsComponent);
833
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, decorators: [{
763
+ ], GdsBadgeComponent);
764
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, decorators: [{
834
765
  type: Component,
835
766
  args: [{
836
- selector: 'gds-breadcrumbs',
767
+ selector: 'gds-badge',
837
768
  standalone: true,
838
769
  changeDetection: ChangeDetectionStrategy.OnPush,
839
770
  template: `<ng-content></ng-content>`
840
771
  }]
841
- }], ctorParameters: () => [], propDecorators: { size: [{
842
- type: Input
843
- }], label: [{
844
- type: Input
845
- }], alignSelf: [{
846
- type: Input
847
- }], justifySelf: [{
848
- type: Input
849
- }], placeSelf: [{
850
- type: Input
851
- }], gridColumn: [{
852
- type: Input
853
- }], gridRow: [{
854
- type: Input
855
- }], gridArea: [{
856
- type: Input
857
- }], flex: [{
772
+ }], ctorParameters: () => [], propDecorators: { variant: [{
858
773
  type: Input
859
- }], order: [{
774
+ }], size: [{
860
775
  type: Input
776
+ }], notification: [{
777
+ type: Input,
778
+ args: [{ transform: booleanAttribute }]
779
+ }], rounded: [{
780
+ type: Input,
781
+ args: [{ transform: booleanAttribute }]
782
+ }], mainSlotOccupied: [{
783
+ type: Input,
784
+ args: [{ transform: booleanAttribute }]
785
+ }], leadSlotOccupied: [{
786
+ type: Input,
787
+ args: [{ transform: booleanAttribute }]
861
788
  }], width: [{
862
789
  type: Input
863
790
  }], minWidth: [{
@@ -876,14 +803,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
876
803
  type: Input
877
804
  }], marginBlock: [{
878
805
  type: Input
806
+ }], alignSelf: [{
807
+ type: Input
808
+ }], justifySelf: [{
809
+ type: Input
810
+ }], placeSelf: [{
811
+ type: Input
812
+ }], gridColumn: [{
813
+ type: Input
814
+ }], gridRow: [{
815
+ type: Input
816
+ }], gridArea: [{
817
+ type: Input
818
+ }], flex: [{
819
+ type: Input
820
+ }], order: [{
821
+ type: Input
879
822
  }], syncFirstRender: [{
880
823
  type: Input,
881
824
  args: [{ transform: booleanAttribute }]
882
825
  }] } });
883
826
 
884
827
  /**
885
- * GdsBreadcrumbsComponent - Angular wrapper for gds-breadcrumbs
886
- *
828
+ * GdsBadgeComponent - Angular wrapper for gds-badge
829
+ * `gds-badge`
887
830
  *
888
831
  * Auto-generated from Custom Elements Manifest
889
832
  */
@@ -1205,6 +1148,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
1205
1148
  * Auto-generated from Custom Elements Manifest
1206
1149
  */
1207
1150
 
1151
+ /**
1152
+ * Angular wrapper for the gds-blur web component
1153
+ *
1154
+ */
1155
+ let GdsBlurComponent = class GdsBlurComponent {
1156
+ get element() {
1157
+ return this.elementRef.nativeElement;
1158
+ }
1159
+ constructor() {
1160
+ this.elementRef = inject((ElementRef));
1161
+ this.zone = inject(NgZone);
1162
+ this.cdr = inject(ChangeDetectorRef);
1163
+ this.cdr.detach();
1164
+ }
1165
+ ngOnInit() {
1166
+ // Define the custom element
1167
+ try {
1168
+ GdsBlur.define();
1169
+ }
1170
+ catch (e) {
1171
+ // Component may not be available in this version of green-core
1172
+ console.warn('Failed to define gds-blur:', e);
1173
+ }
1174
+ }
1175
+ ngOnChanges(changes) {
1176
+ // Implementation added by @ProxyInputs decorator
1177
+ }
1178
+ ngAfterViewInit() {
1179
+ // Implementation added by @ProxyInputs decorator
1180
+ }
1181
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBlurComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1182
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBlurComponent, isStandalone: true, selector: "gds-blur", inputs: { syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1183
+ };
1184
+ GdsBlurComponent = __decorate([
1185
+ ProxyInputs(['syncFirstRender']),
1186
+ __metadata("design:paramtypes", [])
1187
+ ], GdsBlurComponent);
1188
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBlurComponent, decorators: [{
1189
+ type: Component,
1190
+ args: [{
1191
+ selector: 'gds-blur',
1192
+ standalone: true,
1193
+ changeDetection: ChangeDetectionStrategy.OnPush,
1194
+ template: `<ng-content></ng-content>`
1195
+ }]
1196
+ }], ctorParameters: () => [], propDecorators: { syncFirstRender: [{
1197
+ type: Input,
1198
+ args: [{ transform: booleanAttribute }]
1199
+ }] } });
1200
+
1201
+ /**
1202
+ * GdsBlurComponent - Angular wrapper for gds-blur
1203
+ *
1204
+ *
1205
+ * Auto-generated from Custom Elements Manifest
1206
+ */
1207
+
1208
1208
  /**
1209
1209
  * Angular wrapper for the gds-calendar web component
1210
1210
  *
@@ -3943,6 +3943,8 @@ let GdsInputComponent = class GdsInputComponent extends GdsFormControlBase {
3943
3943
  super(...arguments);
3944
3944
  /** Fired when the clear button is clicked. */
3945
3945
  this.gdsInputCleared = new EventEmitter();
3946
+ /** Fired when the extended supporting text is opened or closed by the user. Can be cancelled to prevent it from opening or closing. */
3947
+ this.gdsUiState = new EventEmitter();
3946
3948
  }
3947
3949
  get element() {
3948
3950
  return this.elementRef.nativeElement;
@@ -3961,6 +3963,9 @@ let GdsInputComponent = class GdsInputComponent extends GdsFormControlBase {
3961
3963
  this.elementRef.nativeElement.addEventListener('gds-input-cleared', (event) => {
3962
3964
  this.gdsInputCleared.emit(event);
3963
3965
  });
3966
+ this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
3967
+ this.gdsUiState.emit(event);
3968
+ });
3964
3969
  }
3965
3970
  ngOnChanges(changes) {
3966
3971
  // Implementation added by @ProxyInputs decorator
@@ -3969,7 +3974,7 @@ let GdsInputComponent = class GdsInputComponent extends GdsFormControlBase {
3969
3974
  super.ngAfterViewInit();
3970
3975
  }
3971
3976
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3972
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsInputComponent, isStandalone: true, selector: "gds-input", inputs: { width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", supportingText: "supportingText", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], clearable: ["clearable", "clearable", booleanAttribute], maxlength: "maxlength", size: "size", plain: ["plain", "plain", booleanAttribute], type: "type", min: "min", max: "max", step: "step", autocapitalize: "autocapitalize", autocorrect: ["autocorrect", "autocorrect", booleanAttribute], autocomplete: "autocomplete", autofocus: ["autofocus", "autofocus", booleanAttribute], enterkeyhint: "enterkeyhint", spellcheck: ["spellcheck", "spellcheck", booleanAttribute], inputmode: "inputmode", charCounterCallback: "charCounterCallback", selectionStart: "selectionStart", selectionEnd: "selectionEnd", selectionDirection: "selectionDirection", value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsInputCleared: "gdsInputCleared" }, providers: [
3977
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsInputComponent, isStandalone: true, selector: "gds-input", inputs: { width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", supportingText: "supportingText", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], clearable: ["clearable", "clearable", booleanAttribute], maxlength: "maxlength", size: "size", plain: ["plain", "plain", booleanAttribute], type: "type", min: "min", max: "max", step: "step", autocapitalize: "autocapitalize", autocorrect: ["autocorrect", "autocorrect", booleanAttribute], autocomplete: "autocomplete", autofocus: ["autofocus", "autofocus", booleanAttribute], enterkeyhint: "enterkeyhint", spellcheck: ["spellcheck", "spellcheck", booleanAttribute], inputmode: "inputmode", charCounterCallback: "charCounterCallback", selectionStart: "selectionStart", selectionEnd: "selectionEnd", selectionDirection: "selectionDirection", value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsInputCleared: "gdsInputCleared", gdsUiState: "gdsUiState" }, providers: [
3973
3978
  {
3974
3979
  provide: NG_VALUE_ACCESSOR,
3975
3980
  useExisting: forwardRef(() => GdsInputComponent),
@@ -4100,6 +4105,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
4100
4105
  args: [{ transform: booleanAttribute }]
4101
4106
  }], gdsInputCleared: [{
4102
4107
  type: Output
4108
+ }], gdsUiState: [{
4109
+ type: Output
4103
4110
  }] } });
4104
4111
 
4105
4112
  /**
@@ -5233,6 +5240,8 @@ let GdsSelectComponent = class GdsSelectComponent extends GdsFormControlBase {
5233
5240
  this.change = new EventEmitter();
5234
5241
  /** Fired on input with detail: { value: string } */
5235
5242
  this.input = new EventEmitter();
5243
+ /** Fired when the extended supporting text is opened or closed by the user. Can be cancelled to prevent it from opening or closing. */
5244
+ this.gdsUiState = new EventEmitter();
5236
5245
  }
5237
5246
  get element() {
5238
5247
  return this.elementRef.nativeElement;
@@ -5247,6 +5256,10 @@ let GdsSelectComponent = class GdsSelectComponent extends GdsFormControlBase {
5247
5256
  // Component may not be available in this version of green-core
5248
5257
  console.warn('Failed to define gds-select:', e);
5249
5258
  }
5259
+ // Set up event listeners
5260
+ this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
5261
+ this.gdsUiState.emit(event);
5262
+ });
5250
5263
  }
5251
5264
  ngOnChanges(changes) {
5252
5265
  // Implementation added by @ProxyInputs decorator
@@ -5255,7 +5268,7 @@ let GdsSelectComponent = class GdsSelectComponent extends GdsFormControlBase {
5255
5268
  super.ngAfterViewInit();
5256
5269
  }
5257
5270
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSelectComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5258
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSelectComponent, isStandalone: true, selector: "gds-select", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", supportingText: "supportingText", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], size: "size", plain: ["plain", "plain", booleanAttribute], selectElement: "selectElement", value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { change: "change", input: "input" }, providers: [
5271
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSelectComponent, isStandalone: true, selector: "gds-select", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", supportingText: "supportingText", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], size: "size", plain: ["plain", "plain", booleanAttribute], selectElement: "selectElement", value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { change: "change", input: "input", gdsUiState: "gdsUiState" }, providers: [
5259
5272
  {
5260
5273
  provide: NG_VALUE_ACCESSOR,
5261
5274
  useExisting: forwardRef(() => GdsSelectComponent),
@@ -5352,6 +5365,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
5352
5365
  type: Output
5353
5366
  }], input: [{
5354
5367
  type: Output
5368
+ }], gdsUiState: [{
5369
+ type: Output
5355
5370
  }] } });
5356
5371
 
5357
5372
  /**
@@ -6019,6 +6034,8 @@ let GdsTextareaComponent = class GdsTextareaComponent extends GdsFormControlBase
6019
6034
  super(...arguments);
6020
6035
  /** Fired when the clear button is clicked. */
6021
6036
  this.gdsInputCleared = new EventEmitter();
6037
+ /** Fired when the extended supporting text is opened or closed by the user. Can be cancelled to prevent it from opening or closing. */
6038
+ this.gdsUiState = new EventEmitter();
6022
6039
  }
6023
6040
  get element() {
6024
6041
  return this.elementRef.nativeElement;
@@ -6037,6 +6054,9 @@ let GdsTextareaComponent = class GdsTextareaComponent extends GdsFormControlBase
6037
6054
  this.elementRef.nativeElement.addEventListener('gds-input-cleared', (event) => {
6038
6055
  this.gdsInputCleared.emit(event);
6039
6056
  });
6057
+ this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
6058
+ this.gdsUiState.emit(event);
6059
+ });
6040
6060
  }
6041
6061
  ngOnChanges(changes) {
6042
6062
  // Implementation added by @ProxyInputs decorator
@@ -6045,7 +6065,7 @@ let GdsTextareaComponent = class GdsTextareaComponent extends GdsFormControlBase
6045
6065
  super.ngAfterViewInit();
6046
6066
  }
6047
6067
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsTextareaComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6048
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsTextareaComponent, isStandalone: true, selector: "gds-textarea", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", rows: "rows", supportingText: "supportingText", clearable: ["clearable", "clearable", booleanAttribute], resizable: "resizable", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], maxlength: "maxlength", size: "size", plain: ["plain", "plain", booleanAttribute], autocapitalize: "autocapitalize", autocorrect: ["autocorrect", "autocorrect", booleanAttribute], autocomplete: "autocomplete", autofocus: ["autofocus", "autofocus", booleanAttribute], spellcheck: ["spellcheck", "spellcheck", booleanAttribute], wrap: "wrap", enterkeyhint: "enterkeyhint", inputmode: "inputmode", charCounterCallback: "charCounterCallback", selectionStart: "selectionStart", selectionEnd: "selectionEnd", selectionDirection: "selectionDirection", value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsInputCleared: "gdsInputCleared" }, providers: [
6068
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsTextareaComponent, isStandalone: true, selector: "gds-textarea", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", rows: "rows", supportingText: "supportingText", clearable: ["clearable", "clearable", booleanAttribute], resizable: "resizable", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], maxlength: "maxlength", size: "size", plain: ["plain", "plain", booleanAttribute], autocapitalize: "autocapitalize", autocorrect: ["autocorrect", "autocorrect", booleanAttribute], autocomplete: "autocomplete", autofocus: ["autofocus", "autofocus", booleanAttribute], spellcheck: ["spellcheck", "spellcheck", booleanAttribute], wrap: "wrap", enterkeyhint: "enterkeyhint", inputmode: "inputmode", charCounterCallback: "charCounterCallback", selectionStart: "selectionStart", selectionEnd: "selectionEnd", selectionDirection: "selectionDirection", value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsInputCleared: "gdsInputCleared", gdsUiState: "gdsUiState" }, providers: [
6049
6069
  {
6050
6070
  provide: NG_VALUE_ACCESSOR,
6051
6071
  useExisting: forwardRef(() => GdsTextareaComponent),
@@ -6174,6 +6194,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
6174
6194
  args: [{ transform: booleanAttribute }]
6175
6195
  }], gdsInputCleared: [{
6176
6196
  type: Output
6197
+ }], gdsUiState: [{
6198
+ type: Output
6177
6199
  }] } });
6178
6200
 
6179
6201
  /**
@@ -6829,6 +6851,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
6829
6851
  *
6830
6852
  */
6831
6853
  let GdsCheckboxGroupComponent = class GdsCheckboxGroupComponent extends GdsFormControlBase {
6854
+ constructor() {
6855
+ super(...arguments);
6856
+ /** Fired when the extended supporting text is opened or closed by the user. Can be cancelled to prevent it from opening or closing. */
6857
+ this.gdsUiState = new EventEmitter();
6858
+ }
6832
6859
  get element() {
6833
6860
  return this.elementRef.nativeElement;
6834
6861
  }
@@ -6842,6 +6869,10 @@ let GdsCheckboxGroupComponent = class GdsCheckboxGroupComponent extends GdsFormC
6842
6869
  // Component may not be available in this version of green-core
6843
6870
  console.warn('Failed to define gds-checkbox-group:', e);
6844
6871
  }
6872
+ // Set up event listeners
6873
+ this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
6874
+ this.gdsUiState.emit(event);
6875
+ });
6845
6876
  }
6846
6877
  ngOnChanges(changes) {
6847
6878
  // Implementation added by @ProxyInputs decorator
@@ -6850,7 +6881,7 @@ let GdsCheckboxGroupComponent = class GdsCheckboxGroupComponent extends GdsFormC
6850
6881
  super.ngAfterViewInit();
6851
6882
  }
6852
6883
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsCheckboxGroupComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6853
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsCheckboxGroupComponent, isStandalone: true, selector: "gds-checkbox-group", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", size: "size", flexDirection: "flexDirection", hideLabel: ["hideLabel", "hideLabel", booleanAttribute], supportingText: "supportingText", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, providers: [
6884
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsCheckboxGroupComponent, isStandalone: true, selector: "gds-checkbox-group", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", size: "size", flexDirection: "flexDirection", hideLabel: ["hideLabel", "hideLabel", booleanAttribute], supportingText: "supportingText", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsUiState: "gdsUiState" }, providers: [
6854
6885
  {
6855
6886
  provide: NG_VALUE_ACCESSOR,
6856
6887
  useExisting: forwardRef(() => GdsCheckboxGroupComponent),
@@ -6943,6 +6974,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
6943
6974
  }], syncFirstRender: [{
6944
6975
  type: Input,
6945
6976
  args: [{ transform: booleanAttribute }]
6977
+ }], gdsUiState: [{
6978
+ type: Output
6946
6979
  }] } });
6947
6980
 
6948
6981
  /**
@@ -7012,70 +7045,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7012
7045
  * Auto-generated from Custom Elements Manifest
7013
7046
  */
7014
7047
 
7015
- /**
7016
- * Angular wrapper for the gds-filter-chip web component
7017
- *
7018
- */
7019
- let GdsFilterChipComponent = class GdsFilterChipComponent {
7020
- get element() {
7021
- return this.elementRef.nativeElement;
7022
- }
7023
- constructor() {
7024
- this.elementRef = inject((ElementRef));
7025
- this.zone = inject(NgZone);
7026
- this.cdr = inject(ChangeDetectorRef);
7027
- this.cdr.detach();
7028
- }
7029
- ngOnInit() {
7030
- // Define the custom element
7031
- try {
7032
- GdsFilterChip.define();
7033
- }
7034
- catch (e) {
7035
- // Component may not be available in this version of green-core
7036
- console.warn('Failed to define gds-filter-chip:', e);
7037
- }
7038
- }
7039
- ngOnChanges(changes) {
7040
- // Implementation added by @ProxyInputs decorator
7041
- }
7042
- ngAfterViewInit() {
7043
- // Implementation added by @ProxyInputs decorator
7044
- }
7045
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7046
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsFilterChipComponent, isStandalone: true, selector: "gds-filter-chip", inputs: { selected: ["selected", "selected", booleanAttribute], value: "value", size: "size", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7047
- };
7048
- GdsFilterChipComponent = __decorate([
7049
- ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
7050
- __metadata("design:paramtypes", [])
7051
- ], GdsFilterChipComponent);
7052
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
7053
- type: Component,
7054
- args: [{
7055
- selector: 'gds-filter-chip',
7056
- standalone: true,
7057
- changeDetection: ChangeDetectionStrategy.OnPush,
7058
- template: `<ng-content></ng-content>`
7059
- }]
7060
- }], ctorParameters: () => [], propDecorators: { selected: [{
7061
- type: Input,
7062
- args: [{ transform: booleanAttribute }]
7063
- }], value: [{
7064
- type: Input
7065
- }], size: [{
7066
- type: Input
7067
- }], syncFirstRender: [{
7068
- type: Input,
7069
- args: [{ transform: booleanAttribute }]
7070
- }] } });
7071
-
7072
- /**
7073
- * GdsFilterChipComponent - Angular wrapper for gds-filter-chip
7074
- *
7075
- *
7076
- * Auto-generated from Custom Elements Manifest
7077
- */
7078
-
7079
7048
  /**
7080
7049
  * Angular wrapper for the gds-formatted-account web component
7081
7050
  *
@@ -7265,6 +7234,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7265
7234
  * Auto-generated from Custom Elements Manifest
7266
7235
  */
7267
7236
 
7237
+ /**
7238
+ * Angular wrapper for the gds-filter-chip web component
7239
+ *
7240
+ */
7241
+ let GdsFilterChipComponent = class GdsFilterChipComponent {
7242
+ get element() {
7243
+ return this.elementRef.nativeElement;
7244
+ }
7245
+ constructor() {
7246
+ this.elementRef = inject((ElementRef));
7247
+ this.zone = inject(NgZone);
7248
+ this.cdr = inject(ChangeDetectorRef);
7249
+ this.cdr.detach();
7250
+ }
7251
+ ngOnInit() {
7252
+ // Define the custom element
7253
+ try {
7254
+ GdsFilterChip.define();
7255
+ }
7256
+ catch (e) {
7257
+ // Component may not be available in this version of green-core
7258
+ console.warn('Failed to define gds-filter-chip:', e);
7259
+ }
7260
+ }
7261
+ ngOnChanges(changes) {
7262
+ // Implementation added by @ProxyInputs decorator
7263
+ }
7264
+ ngAfterViewInit() {
7265
+ // Implementation added by @ProxyInputs decorator
7266
+ }
7267
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7268
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsFilterChipComponent, isStandalone: true, selector: "gds-filter-chip", inputs: { selected: ["selected", "selected", booleanAttribute], value: "value", size: "size", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7269
+ };
7270
+ GdsFilterChipComponent = __decorate([
7271
+ ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
7272
+ __metadata("design:paramtypes", [])
7273
+ ], GdsFilterChipComponent);
7274
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
7275
+ type: Component,
7276
+ args: [{
7277
+ selector: 'gds-filter-chip',
7278
+ standalone: true,
7279
+ changeDetection: ChangeDetectionStrategy.OnPush,
7280
+ template: `<ng-content></ng-content>`
7281
+ }]
7282
+ }], ctorParameters: () => [], propDecorators: { selected: [{
7283
+ type: Input,
7284
+ args: [{ transform: booleanAttribute }]
7285
+ }], value: [{
7286
+ type: Input
7287
+ }], size: [{
7288
+ type: Input
7289
+ }], syncFirstRender: [{
7290
+ type: Input,
7291
+ args: [{ transform: booleanAttribute }]
7292
+ }] } });
7293
+
7294
+ /**
7295
+ * GdsFilterChipComponent - Angular wrapper for gds-filter-chip
7296
+ *
7297
+ *
7298
+ * Auto-generated from Custom Elements Manifest
7299
+ */
7300
+
7268
7301
  /**
7269
7302
  * Angular wrapper for the gds-formatted-date web component
7270
7303
  *
@@ -7664,6 +7697,8 @@ let GdsRadioGroupComponent = class GdsRadioGroupComponent extends GdsFormControl
7664
7697
  this.change = new EventEmitter();
7665
7698
  /** Fired when a radio button selection changes */
7666
7699
  this.input = new EventEmitter();
7700
+ /** Fired when the extended supporting text is opened or closed by the user. Can be cancelled to prevent it from opening or closing. */
7701
+ this.gdsUiState = new EventEmitter();
7667
7702
  }
7668
7703
  get element() {
7669
7704
  return this.elementRef.nativeElement;
@@ -7678,6 +7713,10 @@ let GdsRadioGroupComponent = class GdsRadioGroupComponent extends GdsFormControl
7678
7713
  // Component may not be available in this version of green-core
7679
7714
  console.warn('Failed to define gds-radio-group:', e);
7680
7715
  }
7716
+ // Set up event listeners
7717
+ this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
7718
+ this.gdsUiState.emit(event);
7719
+ });
7681
7720
  }
7682
7721
  ngOnChanges(changes) {
7683
7722
  // Implementation added by @ProxyInputs decorator
@@ -7686,7 +7725,7 @@ let GdsRadioGroupComponent = class GdsRadioGroupComponent extends GdsFormControl
7686
7725
  super.ngAfterViewInit();
7687
7726
  }
7688
7727
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsRadioGroupComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7689
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsRadioGroupComponent, isStandalone: true, selector: "gds-radio-group", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", size: "size", flexDirection: "flexDirection", supportingText: "supportingText", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", value: "value", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { change: "change", input: "input" }, providers: [
7728
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsRadioGroupComponent, isStandalone: true, selector: "gds-radio-group", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", size: "size", flexDirection: "flexDirection", supportingText: "supportingText", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", value: "value", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { change: "change", input: "input", gdsUiState: "gdsUiState" }, providers: [
7690
7729
  {
7691
7730
  provide: NG_VALUE_ACCESSOR,
7692
7731
  useExisting: forwardRef(() => GdsRadioGroupComponent),
@@ -7780,6 +7819,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7780
7819
  type: Output
7781
7820
  }], input: [{
7782
7821
  type: Output
7822
+ }], gdsUiState: [{
7823
+ type: Output
7783
7824
  }] } });
7784
7825
 
7785
7826
  /**
@@ -7870,10 +7911,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7870
7911
  */
7871
7912
 
7872
7913
  /**
7873
- * Angular wrapper for the gds-sensitive-account web component
7914
+ * Angular wrapper for the gds-sensitive-date web component
7874
7915
  *
7875
7916
  */
7876
- let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
7917
+ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
7877
7918
  get element() {
7878
7919
  return this.elementRef.nativeElement;
7879
7920
  }
@@ -7886,11 +7927,11 @@ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
7886
7927
  ngOnInit() {
7887
7928
  // Define the custom element
7888
7929
  try {
7889
- GdsSensitiveAccount.define();
7930
+ GdsSensitiveDate.define();
7890
7931
  }
7891
7932
  catch (e) {
7892
7933
  // Component may not be available in this version of green-core
7893
- console.warn('Failed to define gds-sensitive-account:', e);
7934
+ console.warn('Failed to define gds-sensitive-date:', e);
7894
7935
  }
7895
7936
  }
7896
7937
  ngOnChanges(changes) {
@@ -7899,17 +7940,17 @@ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
7899
7940
  ngAfterViewInit() {
7900
7941
  // Implementation added by @ProxyInputs decorator
7901
7942
  }
7902
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7903
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveAccountComponent, isStandalone: true, selector: "gds-sensitive-account", inputs: { hide: ["hide", "hide", booleanAttribute], account: "account", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7943
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7944
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveDateComponent, isStandalone: true, selector: "gds-sensitive-date", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", format: "format", locale: "locale", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7904
7945
  };
7905
- GdsSensitiveAccountComponent = __decorate([
7906
- ProxyInputs(['hide', 'account', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
7946
+ GdsSensitiveDateComponent = __decorate([
7947
+ ProxyInputs(['hide', 'value', 'format', 'locale', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
7907
7948
  __metadata("design:paramtypes", [])
7908
- ], GdsSensitiveAccountComponent);
7909
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, decorators: [{
7949
+ ], GdsSensitiveDateComponent);
7950
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
7910
7951
  type: Component,
7911
7952
  args: [{
7912
- selector: 'gds-sensitive-account',
7953
+ selector: 'gds-sensitive-date',
7913
7954
  standalone: true,
7914
7955
  changeDetection: ChangeDetectionStrategy.OnPush,
7915
7956
  template: `<ng-content></ng-content>`
@@ -7917,7 +7958,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7917
7958
  }], ctorParameters: () => [], propDecorators: { hide: [{
7918
7959
  type: Input,
7919
7960
  args: [{ transform: booleanAttribute }]
7920
- }], account: [{
7961
+ }], value: [{
7962
+ type: Input
7963
+ }], format: [{
7964
+ type: Input
7965
+ }], locale: [{
7921
7966
  type: Input
7922
7967
  }], tag: [{
7923
7968
  type: Input
@@ -8055,17 +8100,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
8055
8100
  }] } });
8056
8101
 
8057
8102
  /**
8058
- * GdsSensitiveAccountComponent - Angular wrapper for gds-sensitive-account
8103
+ * GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
8059
8104
  *
8060
8105
  *
8061
8106
  * Auto-generated from Custom Elements Manifest
8062
8107
  */
8063
8108
 
8064
8109
  /**
8065
- * Angular wrapper for the gds-sensitive-date web component
8110
+ * Angular wrapper for the gds-sensitive-account web component
8066
8111
  *
8067
8112
  */
8068
- let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
8113
+ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
8069
8114
  get element() {
8070
8115
  return this.elementRef.nativeElement;
8071
8116
  }
@@ -8078,11 +8123,11 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
8078
8123
  ngOnInit() {
8079
8124
  // Define the custom element
8080
8125
  try {
8081
- GdsSensitiveDate.define();
8126
+ GdsSensitiveAccount.define();
8082
8127
  }
8083
8128
  catch (e) {
8084
8129
  // Component may not be available in this version of green-core
8085
- console.warn('Failed to define gds-sensitive-date:', e);
8130
+ console.warn('Failed to define gds-sensitive-account:', e);
8086
8131
  }
8087
8132
  }
8088
8133
  ngOnChanges(changes) {
@@ -8091,17 +8136,17 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
8091
8136
  ngAfterViewInit() {
8092
8137
  // Implementation added by @ProxyInputs decorator
8093
8138
  }
8094
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8095
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveDateComponent, isStandalone: true, selector: "gds-sensitive-date", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", format: "format", locale: "locale", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8139
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8140
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveAccountComponent, isStandalone: true, selector: "gds-sensitive-account", inputs: { hide: ["hide", "hide", booleanAttribute], account: "account", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8096
8141
  };
8097
- GdsSensitiveDateComponent = __decorate([
8098
- ProxyInputs(['hide', 'value', 'format', 'locale', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
8142
+ GdsSensitiveAccountComponent = __decorate([
8143
+ ProxyInputs(['hide', 'account', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
8099
8144
  __metadata("design:paramtypes", [])
8100
- ], GdsSensitiveDateComponent);
8101
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
8145
+ ], GdsSensitiveAccountComponent);
8146
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, decorators: [{
8102
8147
  type: Component,
8103
8148
  args: [{
8104
- selector: 'gds-sensitive-date',
8149
+ selector: 'gds-sensitive-account',
8105
8150
  standalone: true,
8106
8151
  changeDetection: ChangeDetectionStrategy.OnPush,
8107
8152
  template: `<ng-content></ng-content>`
@@ -8109,11 +8154,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
8109
8154
  }], ctorParameters: () => [], propDecorators: { hide: [{
8110
8155
  type: Input,
8111
8156
  args: [{ transform: booleanAttribute }]
8112
- }], value: [{
8113
- type: Input
8114
- }], format: [{
8115
- type: Input
8116
- }], locale: [{
8157
+ }], account: [{
8117
8158
  type: Input
8118
8159
  }], tag: [{
8119
8160
  type: Input
@@ -8251,7 +8292,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
8251
8292
  }] } });
8252
8293
 
8253
8294
  /**
8254
- * GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
8295
+ * GdsSensitiveAccountComponent - Angular wrapper for gds-sensitive-account
8255
8296
  *
8256
8297
  *
8257
8298
  * Auto-generated from Custom Elements Manifest
@@ -37280,12 +37321,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37280
37321
  */
37281
37322
  class GreenCoreNgModule {
37282
37323
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
37283
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAlertComponent,
37284
- GdsAvatarComponent,
37285
- GdsBadgeComponent,
37286
- GdsBlurComponent,
37324
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAvatarComponent,
37325
+ GdsAlertComponent,
37287
37326
  GdsBreadcrumbsComponent,
37327
+ GdsBadgeComponent,
37288
37328
  GdsButtonComponent,
37329
+ GdsBlurComponent,
37289
37330
  GdsCalendarComponent,
37290
37331
  GdsCardComponent,
37291
37332
  GdsCardLinkedComponent,
@@ -37330,14 +37371,14 @@ class GreenCoreNgModule {
37330
37371
  GdsBreadcrumbComponent,
37331
37372
  GdsCheckboxGroupComponent,
37332
37373
  GdsIconDetailsComponent,
37333
- GdsFilterChipComponent,
37334
37374
  GdsFormattedAccountComponent,
37375
+ GdsFilterChipComponent,
37335
37376
  GdsFormattedDateComponent,
37336
37377
  GdsFormattedNumberComponent,
37337
37378
  GdsRadioGroupComponent,
37338
37379
  GdsSegmentComponent,
37339
- GdsSensitiveAccountComponent,
37340
37380
  GdsSensitiveDateComponent,
37381
+ GdsSensitiveAccountComponent,
37341
37382
  GdsSensitiveNumberComponent,
37342
37383
  IconAiComponent,
37343
37384
  IconAirplaneUpComponent,
@@ -37652,12 +37693,12 @@ class GreenCoreNgModule {
37652
37693
  IconZoomOutComponent,
37653
37694
  GdsMenuItemComponent,
37654
37695
  GdsMenuHeadingComponent,
37655
- GdsOptionComponent], exports: [GdsAlertComponent,
37656
- GdsAvatarComponent,
37657
- GdsBadgeComponent,
37658
- GdsBlurComponent,
37696
+ GdsOptionComponent], exports: [GdsAvatarComponent,
37697
+ GdsAlertComponent,
37659
37698
  GdsBreadcrumbsComponent,
37699
+ GdsBadgeComponent,
37660
37700
  GdsButtonComponent,
37701
+ GdsBlurComponent,
37661
37702
  GdsCalendarComponent,
37662
37703
  GdsCardComponent,
37663
37704
  GdsCardLinkedComponent,
@@ -37702,14 +37743,14 @@ class GreenCoreNgModule {
37702
37743
  GdsBreadcrumbComponent,
37703
37744
  GdsCheckboxGroupComponent,
37704
37745
  GdsIconDetailsComponent,
37705
- GdsFilterChipComponent,
37706
37746
  GdsFormattedAccountComponent,
37747
+ GdsFilterChipComponent,
37707
37748
  GdsFormattedDateComponent,
37708
37749
  GdsFormattedNumberComponent,
37709
37750
  GdsRadioGroupComponent,
37710
37751
  GdsSegmentComponent,
37711
- GdsSensitiveAccountComponent,
37712
37752
  GdsSensitiveDateComponent,
37753
+ GdsSensitiveAccountComponent,
37713
37754
  GdsSensitiveNumberComponent,
37714
37755
  IconAiComponent,
37715
37756
  IconAirplaneUpComponent,
@@ -38031,12 +38072,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
38031
38072
  type: NgModule,
38032
38073
  args: [{
38033
38074
  imports: [
38034
- GdsAlertComponent,
38035
38075
  GdsAvatarComponent,
38036
- GdsBadgeComponent,
38037
- GdsBlurComponent,
38076
+ GdsAlertComponent,
38038
38077
  GdsBreadcrumbsComponent,
38078
+ GdsBadgeComponent,
38039
38079
  GdsButtonComponent,
38080
+ GdsBlurComponent,
38040
38081
  GdsCalendarComponent,
38041
38082
  GdsCardComponent,
38042
38083
  GdsCardLinkedComponent,
@@ -38081,14 +38122,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
38081
38122
  GdsBreadcrumbComponent,
38082
38123
  GdsCheckboxGroupComponent,
38083
38124
  GdsIconDetailsComponent,
38084
- GdsFilterChipComponent,
38085
38125
  GdsFormattedAccountComponent,
38126
+ GdsFilterChipComponent,
38086
38127
  GdsFormattedDateComponent,
38087
38128
  GdsFormattedNumberComponent,
38088
38129
  GdsRadioGroupComponent,
38089
38130
  GdsSegmentComponent,
38090
- GdsSensitiveAccountComponent,
38091
38131
  GdsSensitiveDateComponent,
38132
+ GdsSensitiveAccountComponent,
38092
38133
  GdsSensitiveNumberComponent,
38093
38134
  IconAiComponent,
38094
38135
  IconAirplaneUpComponent,
@@ -38406,12 +38447,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
38406
38447
  GdsOptionComponent,
38407
38448
  ],
38408
38449
  exports: [
38409
- GdsAlertComponent,
38410
38450
  GdsAvatarComponent,
38411
- GdsBadgeComponent,
38412
- GdsBlurComponent,
38451
+ GdsAlertComponent,
38413
38452
  GdsBreadcrumbsComponent,
38453
+ GdsBadgeComponent,
38414
38454
  GdsButtonComponent,
38455
+ GdsBlurComponent,
38415
38456
  GdsCalendarComponent,
38416
38457
  GdsCardComponent,
38417
38458
  GdsCardLinkedComponent,
@@ -38456,14 +38497,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
38456
38497
  GdsBreadcrumbComponent,
38457
38498
  GdsCheckboxGroupComponent,
38458
38499
  GdsIconDetailsComponent,
38459
- GdsFilterChipComponent,
38460
38500
  GdsFormattedAccountComponent,
38501
+ GdsFilterChipComponent,
38461
38502
  GdsFormattedDateComponent,
38462
38503
  GdsFormattedNumberComponent,
38463
38504
  GdsRadioGroupComponent,
38464
38505
  GdsSegmentComponent,
38465
- GdsSensitiveAccountComponent,
38466
38506
  GdsSensitiveDateComponent,
38507
+ GdsSensitiveAccountComponent,
38467
38508
  GdsSensitiveNumberComponent,
38468
38509
  IconAiComponent,
38469
38510
  IconAirplaneUpComponent,