@sebgroup/green-core-ng 3.9.0 → 3.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,11 @@
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';
5
+ import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
7
6
  import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
8
7
  import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
8
+ import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
9
9
  import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
10
10
  import { LocationStrategy, DOCUMENT, CommonModule } from '@angular/common';
11
11
  import { Router, RouterLink, RouterLinkActive, NavigationEnd } from '@angular/router';
@@ -50,12 +50,12 @@ import { GdsTextarea } from '@sebgroup/green-core/components/textarea/textarea.c
50
50
  import { GdsTheme } from '@sebgroup/green-core/components/theme/theme.component.js';
51
51
  import { GdsVideo } from '@sebgroup/green-core/components/video/video.component.js';
52
52
  import { GdsCardPattern01 } from '@sebgroup/green-core/patterns/card-pattern-01/card-pattern-01.component.js';
53
+ import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
53
54
  import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-group/avatar-group.component.js';
54
55
  import { GdsCheckboxGroup } from '@sebgroup/green-core/components/checkbox/checkbox-group/checkbox-group.component.js';
55
- import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
56
56
  import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
57
- import { GdsFormattedAccount } from '@sebgroup/green-core/components/formatted-text/account/formatted-account.component.js';
58
57
  import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
58
+ import { GdsFormattedAccount } from '@sebgroup/green-core/components/formatted-text/account/formatted-account.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';
@@ -266,6 +266,7 @@ import { IconMoneyHand } from '@sebgroup/green-core/components/icon/icons/money-
266
266
  import { IconMoneybag } from '@sebgroup/green-core/components/icon/icons/moneybag.component.js';
267
267
  import { IconMoon } from '@sebgroup/green-core/components/icon/icons/moon.component.js';
268
268
  import { IconMute } from '@sebgroup/green-core/components/icon/icons/mute.component.js';
269
+ import { IconNewspaper } from '@sebgroup/green-core/components/icon/icons/newspaper.component.js';
269
270
  import { IconOffice } from '@sebgroup/green-core/components/icon/icons/office.component.js';
270
271
  import { IconPageAdd } from '@sebgroup/green-core/components/icon/icons/page-add.component.js';
271
272
  import { IconPaperPlaneTopRight } from '@sebgroup/green-core/components/icon/icons/paper-plane-top-right.component.js';
@@ -436,91 +437,6 @@ function ProxyInputs(inputNames) {
436
437
  };
437
438
  }
438
439
 
439
- /**
440
- * Angular wrapper for the gds-alert web component
441
- *
442
- */
443
- let GdsAlertComponent = class GdsAlertComponent {
444
- get element() {
445
- return this.elementRef.nativeElement;
446
- }
447
- constructor() {
448
- this.elementRef = inject((ElementRef));
449
- this.zone = inject(NgZone);
450
- this.cdr = inject(ChangeDetectorRef);
451
- /** Fired when alert is dismissed */
452
- this.gdsClose = new EventEmitter();
453
- /** Fired when action button is clicked */
454
- this.gdsAction = new EventEmitter();
455
- this.cdr.detach();
456
- }
457
- ngOnInit() {
458
- // Define the custom element
459
- try {
460
- GdsAlert.define();
461
- }
462
- catch (e) {
463
- // Component may not be available in this version of green-core
464
- console.warn('Failed to define gds-alert:', e);
465
- }
466
- // Set up event listeners
467
- this.elementRef.nativeElement.addEventListener('gds-close', (event) => {
468
- this.gdsClose.emit(event);
469
- });
470
- this.elementRef.nativeElement.addEventListener('gds-action', (event) => {
471
- this.gdsAction.emit(event);
472
- });
473
- }
474
- ngOnChanges(changes) {
475
- // Implementation added by @ProxyInputs decorator
476
- }
477
- ngAfterViewInit() {
478
- // Implementation added by @ProxyInputs decorator
479
- }
480
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
481
- 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 }); }
482
- };
483
- GdsAlertComponent = __decorate([
484
- ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
485
- __metadata("design:paramtypes", [])
486
- ], GdsAlertComponent);
487
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, decorators: [{
488
- type: Component,
489
- args: [{
490
- selector: 'gds-alert',
491
- standalone: true,
492
- changeDetection: ChangeDetectionStrategy.OnPush,
493
- template: `<ng-content></ng-content>`
494
- }]
495
- }], ctorParameters: () => [], propDecorators: { variant: [{
496
- type: Input
497
- }], label: [{
498
- type: Input
499
- }], role: [{
500
- type: Input
501
- }], dismissible: [{
502
- type: Input,
503
- args: [{ transform: booleanAttribute }]
504
- }], timeout: [{
505
- type: Input
506
- }], buttonLabel: [{
507
- type: Input
508
- }], syncFirstRender: [{
509
- type: Input,
510
- args: [{ transform: booleanAttribute }]
511
- }], gdsClose: [{
512
- type: Output
513
- }], gdsAction: [{
514
- type: Output
515
- }] } });
516
-
517
- /**
518
- * GdsAlertComponent - Angular wrapper for gds-alert
519
- *
520
- *
521
- * Auto-generated from Custom Elements Manifest
522
- */
523
-
524
440
  /**
525
441
  * Angular wrapper for the gds-avatar web component
526
442
  * `gds-avatar` is a visual element used to represent a user or entity.
@@ -629,10 +545,10 @@ It supports displaying an image, slotted text content, or a fallback icon.
629
545
  */
630
546
 
631
547
  /**
632
- * Angular wrapper for the gds-badge web component
633
- * `gds-badge`
548
+ * Angular wrapper for the gds-alert web component
549
+ *
634
550
  */
635
- let GdsBadgeComponent = class GdsBadgeComponent {
551
+ let GdsAlertComponent = class GdsAlertComponent {
636
552
  get element() {
637
553
  return this.elementRef.nativeElement;
638
554
  }
@@ -640,17 +556,28 @@ let GdsBadgeComponent = class GdsBadgeComponent {
640
556
  this.elementRef = inject((ElementRef));
641
557
  this.zone = inject(NgZone);
642
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();
643
563
  this.cdr.detach();
644
564
  }
645
565
  ngOnInit() {
646
566
  // Define the custom element
647
567
  try {
648
- GdsBadge.define();
568
+ GdsAlert.define();
649
569
  }
650
570
  catch (e) {
651
571
  // Component may not be available in this version of green-core
652
- console.warn('Failed to define gds-badge:', e);
572
+ console.warn('Failed to define gds-alert:', e);
653
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
+ });
654
581
  }
655
582
  ngOnChanges(changes) {
656
583
  // Implementation added by @ProxyInputs decorator
@@ -658,79 +585,46 @@ let GdsBadgeComponent = class GdsBadgeComponent {
658
585
  ngAfterViewInit() {
659
586
  // Implementation added by @ProxyInputs decorator
660
587
  }
661
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
662
- 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 }); }
663
590
  };
664
- GdsBadgeComponent = __decorate([
665
- 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']),
666
593
  __metadata("design:paramtypes", [])
667
- ], GdsBadgeComponent);
668
- 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: [{
669
596
  type: Component,
670
597
  args: [{
671
- selector: 'gds-badge',
598
+ selector: 'gds-alert',
672
599
  standalone: true,
673
600
  changeDetection: ChangeDetectionStrategy.OnPush,
674
601
  template: `<ng-content></ng-content>`
675
602
  }]
676
603
  }], ctorParameters: () => [], propDecorators: { variant: [{
677
604
  type: Input
678
- }], size: [{
605
+ }], label: [{
679
606
  type: Input
680
- }], notification: [{
681
- type: Input,
682
- args: [{ transform: booleanAttribute }]
683
- }], rounded: [{
684
- type: Input,
685
- args: [{ transform: booleanAttribute }]
686
- }], mainSlotOccupied: [{
687
- type: Input,
688
- args: [{ transform: booleanAttribute }]
689
- }], leadSlotOccupied: [{
607
+ }], role: [{
608
+ type: Input
609
+ }], dismissible: [{
690
610
  type: Input,
691
611
  args: [{ transform: booleanAttribute }]
692
- }], width: [{
693
- type: Input
694
- }], minWidth: [{
695
- type: Input
696
- }], maxWidth: [{
697
- type: Input
698
- }], inlineSize: [{
699
- type: Input
700
- }], minInlineSize: [{
701
- type: Input
702
- }], maxInlineSize: [{
703
- type: Input
704
- }], margin: [{
705
- type: Input
706
- }], marginInline: [{
707
- type: Input
708
- }], marginBlock: [{
709
- type: Input
710
- }], alignSelf: [{
711
- type: Input
712
- }], justifySelf: [{
713
- type: Input
714
- }], placeSelf: [{
715
- type: Input
716
- }], gridColumn: [{
717
- type: Input
718
- }], gridRow: [{
719
- type: Input
720
- }], gridArea: [{
721
- type: Input
722
- }], flex: [{
612
+ }], timeout: [{
723
613
  type: Input
724
- }], order: [{
614
+ }], buttonLabel: [{
725
615
  type: Input
726
616
  }], syncFirstRender: [{
727
617
  type: Input,
728
618
  args: [{ transform: booleanAttribute }]
619
+ }], gdsClose: [{
620
+ type: Output
621
+ }], gdsAction: [{
622
+ type: Output
729
623
  }] } });
730
624
 
731
625
  /**
732
- * GdsBadgeComponent - Angular wrapper for gds-badge
733
- * `gds-badge`
626
+ * GdsAlertComponent - Angular wrapper for gds-alert
627
+ *
734
628
  *
735
629
  * Auto-generated from Custom Elements Manifest
736
630
  */
@@ -887,6 +781,113 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
887
781
  * Auto-generated from Custom Elements Manifest
888
782
  */
889
783
 
784
+ /**
785
+ * Angular wrapper for the gds-badge web component
786
+ * `gds-badge`
787
+ */
788
+ let GdsBadgeComponent = class GdsBadgeComponent {
789
+ get element() {
790
+ return this.elementRef.nativeElement;
791
+ }
792
+ constructor() {
793
+ this.elementRef = inject((ElementRef));
794
+ this.zone = inject(NgZone);
795
+ this.cdr = inject(ChangeDetectorRef);
796
+ this.cdr.detach();
797
+ }
798
+ ngOnInit() {
799
+ // Define the custom element
800
+ try {
801
+ GdsBadge.define();
802
+ }
803
+ catch (e) {
804
+ // Component may not be available in this version of green-core
805
+ console.warn('Failed to define gds-badge:', e);
806
+ }
807
+ }
808
+ ngOnChanges(changes) {
809
+ // Implementation added by @ProxyInputs decorator
810
+ }
811
+ ngAfterViewInit() {
812
+ // Implementation added by @ProxyInputs decorator
813
+ }
814
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
815
+ 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 }); }
816
+ };
817
+ GdsBadgeComponent = __decorate([
818
+ 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']),
819
+ __metadata("design:paramtypes", [])
820
+ ], GdsBadgeComponent);
821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, decorators: [{
822
+ type: Component,
823
+ args: [{
824
+ selector: 'gds-badge',
825
+ standalone: true,
826
+ changeDetection: ChangeDetectionStrategy.OnPush,
827
+ template: `<ng-content></ng-content>`
828
+ }]
829
+ }], ctorParameters: () => [], propDecorators: { variant: [{
830
+ type: Input
831
+ }], size: [{
832
+ type: Input
833
+ }], notification: [{
834
+ type: Input,
835
+ args: [{ transform: booleanAttribute }]
836
+ }], rounded: [{
837
+ type: Input,
838
+ args: [{ transform: booleanAttribute }]
839
+ }], mainSlotOccupied: [{
840
+ type: Input,
841
+ args: [{ transform: booleanAttribute }]
842
+ }], leadSlotOccupied: [{
843
+ type: Input,
844
+ args: [{ transform: booleanAttribute }]
845
+ }], width: [{
846
+ type: Input
847
+ }], minWidth: [{
848
+ type: Input
849
+ }], maxWidth: [{
850
+ type: Input
851
+ }], inlineSize: [{
852
+ type: Input
853
+ }], minInlineSize: [{
854
+ type: Input
855
+ }], maxInlineSize: [{
856
+ type: Input
857
+ }], margin: [{
858
+ type: Input
859
+ }], marginInline: [{
860
+ type: Input
861
+ }], marginBlock: [{
862
+ type: Input
863
+ }], alignSelf: [{
864
+ type: Input
865
+ }], justifySelf: [{
866
+ type: Input
867
+ }], placeSelf: [{
868
+ type: Input
869
+ }], gridColumn: [{
870
+ type: Input
871
+ }], gridRow: [{
872
+ type: Input
873
+ }], gridArea: [{
874
+ type: Input
875
+ }], flex: [{
876
+ type: Input
877
+ }], order: [{
878
+ type: Input
879
+ }], syncFirstRender: [{
880
+ type: Input,
881
+ args: [{ transform: booleanAttribute }]
882
+ }] } });
883
+
884
+ /**
885
+ * GdsBadgeComponent - Angular wrapper for gds-badge
886
+ * `gds-badge`
887
+ *
888
+ * Auto-generated from Custom Elements Manifest
889
+ */
890
+
890
891
  /**
891
892
  * Base class for Angular wrapper components that wrap Green Core form controls.
892
893
  *
@@ -5687,6 +5688,8 @@ let GdsTableComponent = class GdsTableComponent {
5687
5688
  this.gdsTableDataError = new EventEmitter();
5688
5689
  /** Fired when row selection changes. */
5689
5690
  this.gdsTableSelection = new EventEmitter();
5691
+ /** Fired when row expansion changes. Detail: `{ index: number, row: T, expanded: boolean, expandedIndices: number[] }` */
5692
+ this.gdsTableExpandChange = new EventEmitter();
5690
5693
  this.cdr.detach();
5691
5694
  }
5692
5695
  ngOnInit() {
@@ -5717,6 +5720,9 @@ let GdsTableComponent = class GdsTableComponent {
5717
5720
  this.elementRef.nativeElement.addEventListener('gds-table-selection', (event) => {
5718
5721
  this.gdsTableSelection.emit(event);
5719
5722
  });
5723
+ this.elementRef.nativeElement.addEventListener('gds-table-expand-change', (event) => {
5724
+ this.gdsTableExpandChange.emit(event);
5725
+ });
5720
5726
  }
5721
5727
  ngOnChanges(changes) {
5722
5728
  // Implementation added by @ProxyInputs decorator
@@ -5725,10 +5731,10 @@ let GdsTableComponent = class GdsTableComponent {
5725
5731
  // Implementation added by @ProxyInputs decorator
5726
5732
  }
5727
5733
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5728
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsTableComponent, isStandalone: true, selector: "gds-table", inputs: { headline: "headline", headlineTag: "headlineTag", summary: "summary", searchLabel: "searchLabel", options: "options", page: "page", rows: "rows", columns: "columns", data: "data", density: "density", selectable: ["selectable", "selectable", booleanAttribute], disableSelectAll: ["disableSelectAll", "disableSelectAll", booleanAttribute], responsive: ["responsive", "responsive", booleanAttribute], plain: ["plain", "plain", booleanAttribute], searchable: ["searchable", "searchable", booleanAttribute], settings: ["settings", "settings", booleanAttribute], striped: ["striped", "striped", booleanAttribute], actions: "actions", nocache: ["nocache", "nocache", booleanAttribute], tfoot: "tfoot", dataLoadKey: "dataLoadKey", height: "height", variant: "variant", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsPageChange: "gdsPageChange", gdsRowsChange: "gdsRowsChange", gdsSortChange: "gdsSortChange", gdsTableDataLoaded: "gdsTableDataLoaded", gdsTableDataError: "gdsTableDataError", gdsTableSelection: "gdsTableSelection" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5734
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsTableComponent, isStandalone: true, selector: "gds-table", inputs: { headline: "headline", headlineTag: "headlineTag", summary: "summary", searchLabel: "searchLabel", options: "options", page: "page", rows: "rows", columns: "columns", data: "data", density: "density", selectable: ["selectable", "selectable", booleanAttribute], disableSelectAll: ["disableSelectAll", "disableSelectAll", booleanAttribute], responsive: ["responsive", "responsive", booleanAttribute], plain: ["plain", "plain", booleanAttribute], searchable: ["searchable", "searchable", booleanAttribute], settings: ["settings", "settings", booleanAttribute], striped: ["striped", "striped", booleanAttribute], nocache: ["nocache", "nocache", booleanAttribute], tfoot: "tfoot", dataLoadKey: "dataLoadKey", height: "height", variant: "variant", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsPageChange: "gdsPageChange", gdsRowsChange: "gdsRowsChange", gdsSortChange: "gdsSortChange", gdsTableDataLoaded: "gdsTableDataLoaded", gdsTableDataError: "gdsTableDataError", gdsTableSelection: "gdsTableSelection", gdsTableExpandChange: "gdsTableExpandChange" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5729
5735
  };
5730
5736
  GdsTableComponent = __decorate([
5731
- ProxyInputs(['headline', 'headlineTag', 'summary', 'searchLabel', 'options', 'page', 'rows', 'columns', 'data', 'density', 'selectable', 'disableSelectAll', 'responsive', 'plain', 'searchable', 'settings', 'striped', 'actions', 'nocache', 'tfoot', 'dataLoadKey', 'height', 'variant', 'syncFirstRender']),
5737
+ ProxyInputs(['headline', 'headlineTag', 'summary', 'searchLabel', 'options', 'page', 'rows', 'columns', 'data', 'density', 'selectable', 'disableSelectAll', 'responsive', 'plain', 'searchable', 'settings', 'striped', 'nocache', 'tfoot', 'dataLoadKey', 'height', 'variant', 'syncFirstRender']),
5732
5738
  __metadata("design:paramtypes", [])
5733
5739
  ], GdsTableComponent);
5734
5740
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsTableComponent, decorators: [{
@@ -5780,8 +5786,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
5780
5786
  }], striped: [{
5781
5787
  type: Input,
5782
5788
  args: [{ transform: booleanAttribute }]
5783
- }], actions: [{
5784
- type: Input
5785
5789
  }], nocache: [{
5786
5790
  type: Input,
5787
5791
  args: [{ transform: booleanAttribute }]
@@ -5808,6 +5812,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
5808
5812
  type: Output
5809
5813
  }], gdsTableSelection: [{
5810
5814
  type: Output
5815
+ }], gdsTableExpandChange: [{
5816
+ type: Output
5811
5817
  }] } });
5812
5818
 
5813
5819
  /**
@@ -6593,6 +6599,144 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
6593
6599
  * Auto-generated from Custom Elements Manifest
6594
6600
  */
6595
6601
 
6602
+ /**
6603
+ * Angular wrapper for the gds-breadcrumb web component
6604
+ *
6605
+ */
6606
+ let GdsBreadcrumbComponent = class GdsBreadcrumbComponent {
6607
+ get element() {
6608
+ return this.elementRef.nativeElement;
6609
+ }
6610
+ constructor() {
6611
+ this.elementRef = inject((ElementRef));
6612
+ this.zone = inject(NgZone);
6613
+ this.cdr = inject(ChangeDetectorRef);
6614
+ this.renderer = inject(Renderer2);
6615
+ this.router = inject(Router);
6616
+ this.locationStrategy = inject(LocationStrategy);
6617
+ this.destroyRef = inject(DestroyRef);
6618
+ this.routerLink = inject(RouterLink, { optional: true, self: true });
6619
+ this.routerLinkActive = inject(RouterLinkActive, { optional: true, self: true });
6620
+ this.cdr.detach();
6621
+ if (this.routerLink) {
6622
+ // Prevent the browser from following the href on click – RouterLink
6623
+ // handles navigation via Router.navigateByUrl() but only calls
6624
+ // preventDefault() for native <a> elements.
6625
+ this.preventNativeNavigation();
6626
+ // Keep href in sync after client-side navigations (RouterLink only
6627
+ // does this for native <a> elements).
6628
+ const sub = this.router.events.subscribe((event) => {
6629
+ if (event instanceof NavigationEnd)
6630
+ this.updateHref();
6631
+ });
6632
+ this.destroyRef.onDestroy(() => sub.unsubscribe());
6633
+ }
6634
+ }
6635
+ /**
6636
+ * Prevent the browser from following the href when RouterLink handles
6637
+ * navigation. RouterLink calls Router.navigateByUrl() for all elements,
6638
+ * but only calls preventDefault() for native <a> tags. For custom
6639
+ * elements we must do it ourselves, respecting modifier-key and
6640
+ * target-attribute semantics so that ctrl-click / cmd-click / target=_blank
6641
+ * still open a new tab.
6642
+ * @internal
6643
+ */
6644
+ preventNativeNavigation() {
6645
+ // Use capture phase so this runs before Angular's RouterLink host listener.
6646
+ this.elementRef.nativeElement.addEventListener('click', (event) => {
6647
+ if (!this.routerLink?.urlTree)
6648
+ return;
6649
+ // When modifier keys are pressed or target is not _self, stop
6650
+ // RouterLink from navigating (it skips these checks for non-anchor
6651
+ // elements) and let the browser handle the click natively (new tab etc.)
6652
+ if (event.button !== 0 || event.ctrlKey || event.shiftKey || event.altKey || event.metaKey) {
6653
+ event.stopImmediatePropagation();
6654
+ return;
6655
+ }
6656
+ const target = this.elementRef.nativeElement.getAttribute('target');
6657
+ if (target && target !== '_self') {
6658
+ event.stopImmediatePropagation();
6659
+ return;
6660
+ }
6661
+ // Normal left-click: let RouterLink handle navigation via
6662
+ // Router.navigateByUrl(), but prevent the browser from also
6663
+ // following the shadow DOM anchor's href.
6664
+ event.preventDefault();
6665
+ }, true);
6666
+ }
6667
+ /**
6668
+ * Updates the href attribute from RouterLink using only public Angular APIs.
6669
+ * @internal
6670
+ */
6671
+ updateHref() {
6672
+ if (!this.routerLink)
6673
+ return;
6674
+ const urlTree = this.routerLink.urlTree;
6675
+ const href = urlTree
6676
+ ? this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(urlTree))
6677
+ : null;
6678
+ if (href) {
6679
+ this.renderer.setAttribute(this.elementRef.nativeElement, 'href', href);
6680
+ }
6681
+ }
6682
+ ngOnInit() {
6683
+ // Define the custom element
6684
+ try {
6685
+ GdsBreadcrumb.define();
6686
+ }
6687
+ catch (e) {
6688
+ // Component may not be available in this version of green-core
6689
+ console.warn('Failed to define gds-breadcrumb:', e);
6690
+ }
6691
+ }
6692
+ ngOnChanges(changes) {
6693
+ // Implementation added by @ProxyInputs decorator
6694
+ if (changes['routerLink']) {
6695
+ this.updateHref();
6696
+ }
6697
+ }
6698
+ ngAfterViewInit() {
6699
+ // Implementation added by @ProxyInputs decorator
6700
+ this.updateHref();
6701
+ }
6702
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6703
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBreadcrumbComponent, isStandalone: true, selector: "gds-breadcrumb", inputs: { href: "href", target: "target", rel: "rel", label: "label", overflow: ["overflow", "overflow", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6704
+ };
6705
+ GdsBreadcrumbComponent = __decorate([
6706
+ ProxyInputs(['href', 'target', 'rel', 'label', 'overflow', 'syncFirstRender']),
6707
+ __metadata("design:paramtypes", [])
6708
+ ], GdsBreadcrumbComponent);
6709
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbComponent, decorators: [{
6710
+ type: Component,
6711
+ args: [{
6712
+ selector: 'gds-breadcrumb',
6713
+ standalone: true,
6714
+ changeDetection: ChangeDetectionStrategy.OnPush,
6715
+ template: `<ng-content></ng-content>`
6716
+ }]
6717
+ }], ctorParameters: () => [], propDecorators: { href: [{
6718
+ type: Input
6719
+ }], target: [{
6720
+ type: Input
6721
+ }], rel: [{
6722
+ type: Input
6723
+ }], label: [{
6724
+ type: Input
6725
+ }], overflow: [{
6726
+ type: Input,
6727
+ args: [{ transform: booleanAttribute }]
6728
+ }], syncFirstRender: [{
6729
+ type: Input,
6730
+ args: [{ transform: booleanAttribute }]
6731
+ }] } });
6732
+
6733
+ /**
6734
+ * GdsBreadcrumbComponent - Angular wrapper for gds-breadcrumb
6735
+ *
6736
+ *
6737
+ * Auto-generated from Custom Elements Manifest
6738
+ */
6739
+
6596
6740
  /**
6597
6741
  * Angular wrapper for the gds-avatar-group web component
6598
6742
  * `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
@@ -6809,10 +6953,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
6809
6953
  */
6810
6954
 
6811
6955
  /**
6812
- * Angular wrapper for the gds-breadcrumb web component
6956
+ * Angular wrapper for the gds-icon-details web component
6813
6957
  *
6814
6958
  */
6815
- let GdsBreadcrumbComponent = class GdsBreadcrumbComponent {
6959
+ let GdsIconDetailsComponent = class GdsIconDetailsComponent {
6816
6960
  get element() {
6817
6961
  return this.elementRef.nativeElement;
6818
6962
  }
@@ -6820,118 +6964,40 @@ let GdsBreadcrumbComponent = class GdsBreadcrumbComponent {
6820
6964
  this.elementRef = inject((ElementRef));
6821
6965
  this.zone = inject(NgZone);
6822
6966
  this.cdr = inject(ChangeDetectorRef);
6823
- this.renderer = inject(Renderer2);
6824
- this.router = inject(Router);
6825
- this.locationStrategy = inject(LocationStrategy);
6826
- this.destroyRef = inject(DestroyRef);
6827
- this.routerLink = inject(RouterLink, { optional: true, self: true });
6828
- this.routerLinkActive = inject(RouterLinkActive, { optional: true, self: true });
6829
6967
  this.cdr.detach();
6830
- if (this.routerLink) {
6831
- // Prevent the browser from following the href on click – RouterLink
6832
- // handles navigation via Router.navigateByUrl() but only calls
6833
- // preventDefault() for native <a> elements.
6834
- this.preventNativeNavigation();
6835
- // Keep href in sync after client-side navigations (RouterLink only
6836
- // does this for native <a> elements).
6837
- const sub = this.router.events.subscribe((event) => {
6838
- if (event instanceof NavigationEnd)
6839
- this.updateHref();
6840
- });
6841
- this.destroyRef.onDestroy(() => sub.unsubscribe());
6842
- }
6843
- }
6844
- /**
6845
- * Prevent the browser from following the href when RouterLink handles
6846
- * navigation. RouterLink calls Router.navigateByUrl() for all elements,
6847
- * but only calls preventDefault() for native <a> tags. For custom
6848
- * elements we must do it ourselves, respecting modifier-key and
6849
- * target-attribute semantics so that ctrl-click / cmd-click / target=_blank
6850
- * still open a new tab.
6851
- * @internal
6852
- */
6853
- preventNativeNavigation() {
6854
- // Use capture phase so this runs before Angular's RouterLink host listener.
6855
- this.elementRef.nativeElement.addEventListener('click', (event) => {
6856
- if (!this.routerLink?.urlTree)
6857
- return;
6858
- // When modifier keys are pressed or target is not _self, stop
6859
- // RouterLink from navigating (it skips these checks for non-anchor
6860
- // elements) and let the browser handle the click natively (new tab etc.)
6861
- if (event.button !== 0 || event.ctrlKey || event.shiftKey || event.altKey || event.metaKey) {
6862
- event.stopImmediatePropagation();
6863
- return;
6864
- }
6865
- const target = this.elementRef.nativeElement.getAttribute('target');
6866
- if (target && target !== '_self') {
6867
- event.stopImmediatePropagation();
6868
- return;
6869
- }
6870
- // Normal left-click: let RouterLink handle navigation via
6871
- // Router.navigateByUrl(), but prevent the browser from also
6872
- // following the shadow DOM anchor's href.
6873
- event.preventDefault();
6874
- }, true);
6875
- }
6876
- /**
6877
- * Updates the href attribute from RouterLink using only public Angular APIs.
6878
- * @internal
6879
- */
6880
- updateHref() {
6881
- if (!this.routerLink)
6882
- return;
6883
- const urlTree = this.routerLink.urlTree;
6884
- const href = urlTree
6885
- ? this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(urlTree))
6886
- : null;
6887
- if (href) {
6888
- this.renderer.setAttribute(this.elementRef.nativeElement, 'href', href);
6889
- }
6890
6968
  }
6891
6969
  ngOnInit() {
6892
6970
  // Define the custom element
6893
6971
  try {
6894
- GdsBreadcrumb.define();
6972
+ GdsIconDetails.define();
6895
6973
  }
6896
6974
  catch (e) {
6897
6975
  // Component may not be available in this version of green-core
6898
- console.warn('Failed to define gds-breadcrumb:', e);
6976
+ console.warn('Failed to define gds-icon-details:', e);
6899
6977
  }
6900
6978
  }
6901
6979
  ngOnChanges(changes) {
6902
6980
  // Implementation added by @ProxyInputs decorator
6903
- if (changes['routerLink']) {
6904
- this.updateHref();
6905
- }
6906
6981
  }
6907
6982
  ngAfterViewInit() {
6908
6983
  // Implementation added by @ProxyInputs decorator
6909
- this.updateHref();
6910
6984
  }
6911
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6912
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBreadcrumbComponent, isStandalone: true, selector: "gds-breadcrumb", inputs: { href: "href", target: "target", rel: "rel", label: "label", overflow: ["overflow", "overflow", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6985
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsIconDetailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6986
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsIconDetailsComponent, isStandalone: true, selector: "gds-icon-details", inputs: { open: ["open", "open", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6913
6987
  };
6914
- GdsBreadcrumbComponent = __decorate([
6915
- ProxyInputs(['href', 'target', 'rel', 'label', 'overflow', 'syncFirstRender']),
6988
+ GdsIconDetailsComponent = __decorate([
6989
+ ProxyInputs(['open', 'syncFirstRender']),
6916
6990
  __metadata("design:paramtypes", [])
6917
- ], GdsBreadcrumbComponent);
6918
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbComponent, decorators: [{
6991
+ ], GdsIconDetailsComponent);
6992
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsIconDetailsComponent, decorators: [{
6919
6993
  type: Component,
6920
6994
  args: [{
6921
- selector: 'gds-breadcrumb',
6995
+ selector: 'gds-icon-details',
6922
6996
  standalone: true,
6923
6997
  changeDetection: ChangeDetectionStrategy.OnPush,
6924
6998
  template: `<ng-content></ng-content>`
6925
6999
  }]
6926
- }], ctorParameters: () => [], propDecorators: { href: [{
6927
- type: Input
6928
- }], target: [{
6929
- type: Input
6930
- }], rel: [{
6931
- type: Input
6932
- }], label: [{
6933
- type: Input
6934
- }], overflow: [{
7000
+ }], ctorParameters: () => [], propDecorators: { open: [{
6935
7001
  type: Input,
6936
7002
  args: [{ transform: booleanAttribute }]
6937
7003
  }], syncFirstRender: [{
@@ -6940,17 +7006,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
6940
7006
  }] } });
6941
7007
 
6942
7008
  /**
6943
- * GdsBreadcrumbComponent - Angular wrapper for gds-breadcrumb
7009
+ * GdsIconDetailsComponent - Angular wrapper for gds-icon-details
6944
7010
  *
6945
7011
  *
6946
7012
  * Auto-generated from Custom Elements Manifest
6947
7013
  */
6948
7014
 
6949
7015
  /**
6950
- * Angular wrapper for the gds-icon-details web component
7016
+ * Angular wrapper for the gds-filter-chip web component
6951
7017
  *
6952
7018
  */
6953
- let GdsIconDetailsComponent = class GdsIconDetailsComponent {
7019
+ let GdsFilterChipComponent = class GdsFilterChipComponent {
6954
7020
  get element() {
6955
7021
  return this.elementRef.nativeElement;
6956
7022
  }
@@ -6963,11 +7029,11 @@ let GdsIconDetailsComponent = class GdsIconDetailsComponent {
6963
7029
  ngOnInit() {
6964
7030
  // Define the custom element
6965
7031
  try {
6966
- GdsIconDetails.define();
7032
+ GdsFilterChip.define();
6967
7033
  }
6968
7034
  catch (e) {
6969
7035
  // Component may not be available in this version of green-core
6970
- console.warn('Failed to define gds-icon-details:', e);
7036
+ console.warn('Failed to define gds-filter-chip:', e);
6971
7037
  }
6972
7038
  }
6973
7039
  ngOnChanges(changes) {
@@ -6976,31 +7042,35 @@ let GdsIconDetailsComponent = class GdsIconDetailsComponent {
6976
7042
  ngAfterViewInit() {
6977
7043
  // Implementation added by @ProxyInputs decorator
6978
7044
  }
6979
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsIconDetailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6980
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsIconDetailsComponent, isStandalone: true, selector: "gds-icon-details", inputs: { open: ["open", "open", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
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 }); }
6981
7047
  };
6982
- GdsIconDetailsComponent = __decorate([
6983
- ProxyInputs(['open', 'syncFirstRender']),
7048
+ GdsFilterChipComponent = __decorate([
7049
+ ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
6984
7050
  __metadata("design:paramtypes", [])
6985
- ], GdsIconDetailsComponent);
6986
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsIconDetailsComponent, decorators: [{
7051
+ ], GdsFilterChipComponent);
7052
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
6987
7053
  type: Component,
6988
7054
  args: [{
6989
- selector: 'gds-icon-details',
7055
+ selector: 'gds-filter-chip',
6990
7056
  standalone: true,
6991
7057
  changeDetection: ChangeDetectionStrategy.OnPush,
6992
7058
  template: `<ng-content></ng-content>`
6993
7059
  }]
6994
- }], ctorParameters: () => [], propDecorators: { open: [{
7060
+ }], ctorParameters: () => [], propDecorators: { selected: [{
6995
7061
  type: Input,
6996
7062
  args: [{ transform: booleanAttribute }]
7063
+ }], value: [{
7064
+ type: Input
7065
+ }], size: [{
7066
+ type: Input
6997
7067
  }], syncFirstRender: [{
6998
7068
  type: Input,
6999
7069
  args: [{ transform: booleanAttribute }]
7000
7070
  }] } });
7001
7071
 
7002
7072
  /**
7003
- * GdsIconDetailsComponent - Angular wrapper for gds-icon-details
7073
+ * GdsFilterChipComponent - Angular wrapper for gds-filter-chip
7004
7074
  *
7005
7075
  *
7006
7076
  * Auto-generated from Custom Elements Manifest
@@ -7195,70 +7265,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7195
7265
  * Auto-generated from Custom Elements Manifest
7196
7266
  */
7197
7267
 
7198
- /**
7199
- * Angular wrapper for the gds-filter-chip web component
7200
- *
7201
- */
7202
- let GdsFilterChipComponent = class GdsFilterChipComponent {
7203
- get element() {
7204
- return this.elementRef.nativeElement;
7205
- }
7206
- constructor() {
7207
- this.elementRef = inject((ElementRef));
7208
- this.zone = inject(NgZone);
7209
- this.cdr = inject(ChangeDetectorRef);
7210
- this.cdr.detach();
7211
- }
7212
- ngOnInit() {
7213
- // Define the custom element
7214
- try {
7215
- GdsFilterChip.define();
7216
- }
7217
- catch (e) {
7218
- // Component may not be available in this version of green-core
7219
- console.warn('Failed to define gds-filter-chip:', e);
7220
- }
7221
- }
7222
- ngOnChanges(changes) {
7223
- // Implementation added by @ProxyInputs decorator
7224
- }
7225
- ngAfterViewInit() {
7226
- // Implementation added by @ProxyInputs decorator
7227
- }
7228
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7229
- 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 }); }
7230
- };
7231
- GdsFilterChipComponent = __decorate([
7232
- ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
7233
- __metadata("design:paramtypes", [])
7234
- ], GdsFilterChipComponent);
7235
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
7236
- type: Component,
7237
- args: [{
7238
- selector: 'gds-filter-chip',
7239
- standalone: true,
7240
- changeDetection: ChangeDetectionStrategy.OnPush,
7241
- template: `<ng-content></ng-content>`
7242
- }]
7243
- }], ctorParameters: () => [], propDecorators: { selected: [{
7244
- type: Input,
7245
- args: [{ transform: booleanAttribute }]
7246
- }], value: [{
7247
- type: Input
7248
- }], size: [{
7249
- type: Input
7250
- }], syncFirstRender: [{
7251
- type: Input,
7252
- args: [{ transform: booleanAttribute }]
7253
- }] } });
7254
-
7255
- /**
7256
- * GdsFilterChipComponent - Angular wrapper for gds-filter-chip
7257
- *
7258
- *
7259
- * Auto-generated from Custom Elements Manifest
7260
- */
7261
-
7262
7268
  /**
7263
7269
  * Angular wrapper for the gds-formatted-date web component
7264
7270
  *
@@ -27125,6 +27131,98 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
27125
27131
  * Auto-generated from Custom Elements Manifest
27126
27132
  */
27127
27133
 
27134
+ /**
27135
+ * Angular wrapper for the gds-icon-newspaper web component
27136
+ *
27137
+ */
27138
+ let IconNewspaperComponent = class IconNewspaperComponent {
27139
+ get element() {
27140
+ return this.elementRef.nativeElement;
27141
+ }
27142
+ constructor() {
27143
+ this.elementRef = inject((ElementRef));
27144
+ this.zone = inject(NgZone);
27145
+ this.cdr = inject(ChangeDetectorRef);
27146
+ this.cdr.detach();
27147
+ }
27148
+ ngOnInit() {
27149
+ // Define the custom element
27150
+ try {
27151
+ IconNewspaper.define();
27152
+ }
27153
+ catch (e) {
27154
+ // Component may not be available in this version of green-core
27155
+ console.warn('Failed to define gds-icon-newspaper:', e);
27156
+ }
27157
+ }
27158
+ ngOnChanges(changes) {
27159
+ // Implementation added by @ProxyInputs decorator
27160
+ }
27161
+ ngAfterViewInit() {
27162
+ // Implementation added by @ProxyInputs decorator
27163
+ }
27164
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: IconNewspaperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
27165
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: IconNewspaperComponent, isStandalone: true, selector: "gds-icon-newspaper", inputs: { margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", size: "size", solid: ["solid", "solid", booleanAttribute], stroke: "stroke", level: "level", color: "color", label: "label", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
27166
+ };
27167
+ IconNewspaperComponent = __decorate([
27168
+ ProxyInputs(['margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'size', 'solid', 'stroke', 'level', 'color', 'label', 'syncFirstRender']),
27169
+ __metadata("design:paramtypes", [])
27170
+ ], IconNewspaperComponent);
27171
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: IconNewspaperComponent, decorators: [{
27172
+ type: Component,
27173
+ args: [{
27174
+ selector: 'gds-icon-newspaper',
27175
+ standalone: true,
27176
+ changeDetection: ChangeDetectionStrategy.OnPush,
27177
+ template: `<ng-content></ng-content>`
27178
+ }]
27179
+ }], ctorParameters: () => [], propDecorators: { margin: [{
27180
+ type: Input
27181
+ }], marginInline: [{
27182
+ type: Input
27183
+ }], marginBlock: [{
27184
+ type: Input
27185
+ }], alignSelf: [{
27186
+ type: Input
27187
+ }], justifySelf: [{
27188
+ type: Input
27189
+ }], placeSelf: [{
27190
+ type: Input
27191
+ }], gridColumn: [{
27192
+ type: Input
27193
+ }], gridRow: [{
27194
+ type: Input
27195
+ }], gridArea: [{
27196
+ type: Input
27197
+ }], flex: [{
27198
+ type: Input
27199
+ }], order: [{
27200
+ type: Input
27201
+ }], size: [{
27202
+ type: Input
27203
+ }], solid: [{
27204
+ type: Input,
27205
+ args: [{ transform: booleanAttribute }]
27206
+ }], stroke: [{
27207
+ type: Input
27208
+ }], level: [{
27209
+ type: Input
27210
+ }], color: [{
27211
+ type: Input
27212
+ }], label: [{
27213
+ type: Input
27214
+ }], syncFirstRender: [{
27215
+ type: Input,
27216
+ args: [{ transform: booleanAttribute }]
27217
+ }] } });
27218
+
27219
+ /**
27220
+ * IconNewspaperComponent - Angular wrapper for gds-icon-newspaper
27221
+ *
27222
+ *
27223
+ * Auto-generated from Custom Elements Manifest
27224
+ */
27225
+
27128
27226
  /**
27129
27227
  * Angular wrapper for the gds-icon-office web component
27130
27228
  *
@@ -37182,11 +37280,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37182
37280
  */
37183
37281
  class GreenCoreNgModule {
37184
37282
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
37185
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAlertComponent,
37186
- GdsAvatarComponent,
37187
- GdsBadgeComponent,
37283
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAvatarComponent,
37284
+ GdsAlertComponent,
37188
37285
  GdsBlurComponent,
37189
37286
  GdsBreadcrumbsComponent,
37287
+ GdsBadgeComponent,
37190
37288
  GdsButtonComponent,
37191
37289
  GdsCalendarComponent,
37192
37290
  GdsCardComponent,
@@ -37228,12 +37326,12 @@ class GreenCoreNgModule {
37228
37326
  GdsThemeComponent,
37229
37327
  GdsVideoComponent,
37230
37328
  GdsCardPattern01Component,
37329
+ GdsBreadcrumbComponent,
37231
37330
  GdsAvatarGroupComponent,
37232
37331
  GdsCheckboxGroupComponent,
37233
- GdsBreadcrumbComponent,
37234
37332
  GdsIconDetailsComponent,
37235
- GdsFormattedAccountComponent,
37236
37333
  GdsFilterChipComponent,
37334
+ GdsFormattedAccountComponent,
37237
37335
  GdsFormattedDateComponent,
37238
37336
  GdsFormattedNumberComponent,
37239
37337
  GdsRadioGroupComponent,
@@ -37444,6 +37542,7 @@ class GreenCoreNgModule {
37444
37542
  IconMoneybagComponent,
37445
37543
  IconMoonComponent,
37446
37544
  IconMuteComponent,
37545
+ IconNewspaperComponent,
37447
37546
  IconOfficeComponent,
37448
37547
  IconPageAddComponent,
37449
37548
  IconPaperPlaneTopRightComponent,
@@ -37553,11 +37652,11 @@ class GreenCoreNgModule {
37553
37652
  IconZoomOutComponent,
37554
37653
  GdsMenuItemComponent,
37555
37654
  GdsMenuHeadingComponent,
37556
- GdsOptionComponent], exports: [GdsAlertComponent,
37557
- GdsAvatarComponent,
37558
- GdsBadgeComponent,
37655
+ GdsOptionComponent], exports: [GdsAvatarComponent,
37656
+ GdsAlertComponent,
37559
37657
  GdsBlurComponent,
37560
37658
  GdsBreadcrumbsComponent,
37659
+ GdsBadgeComponent,
37561
37660
  GdsButtonComponent,
37562
37661
  GdsCalendarComponent,
37563
37662
  GdsCardComponent,
@@ -37599,12 +37698,12 @@ class GreenCoreNgModule {
37599
37698
  GdsThemeComponent,
37600
37699
  GdsVideoComponent,
37601
37700
  GdsCardPattern01Component,
37701
+ GdsBreadcrumbComponent,
37602
37702
  GdsAvatarGroupComponent,
37603
37703
  GdsCheckboxGroupComponent,
37604
- GdsBreadcrumbComponent,
37605
37704
  GdsIconDetailsComponent,
37606
- GdsFormattedAccountComponent,
37607
37705
  GdsFilterChipComponent,
37706
+ GdsFormattedAccountComponent,
37608
37707
  GdsFormattedDateComponent,
37609
37708
  GdsFormattedNumberComponent,
37610
37709
  GdsRadioGroupComponent,
@@ -37815,6 +37914,7 @@ class GreenCoreNgModule {
37815
37914
  IconMoneybagComponent,
37816
37915
  IconMoonComponent,
37817
37916
  IconMuteComponent,
37917
+ IconNewspaperComponent,
37818
37918
  IconOfficeComponent,
37819
37919
  IconPageAddComponent,
37820
37920
  IconPaperPlaneTopRightComponent,
@@ -37931,11 +38031,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37931
38031
  type: NgModule,
37932
38032
  args: [{
37933
38033
  imports: [
37934
- GdsAlertComponent,
37935
38034
  GdsAvatarComponent,
37936
- GdsBadgeComponent,
38035
+ GdsAlertComponent,
37937
38036
  GdsBlurComponent,
37938
38037
  GdsBreadcrumbsComponent,
38038
+ GdsBadgeComponent,
37939
38039
  GdsButtonComponent,
37940
38040
  GdsCalendarComponent,
37941
38041
  GdsCardComponent,
@@ -37977,12 +38077,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37977
38077
  GdsThemeComponent,
37978
38078
  GdsVideoComponent,
37979
38079
  GdsCardPattern01Component,
38080
+ GdsBreadcrumbComponent,
37980
38081
  GdsAvatarGroupComponent,
37981
38082
  GdsCheckboxGroupComponent,
37982
- GdsBreadcrumbComponent,
37983
38083
  GdsIconDetailsComponent,
37984
- GdsFormattedAccountComponent,
37985
38084
  GdsFilterChipComponent,
38085
+ GdsFormattedAccountComponent,
37986
38086
  GdsFormattedDateComponent,
37987
38087
  GdsFormattedNumberComponent,
37988
38088
  GdsRadioGroupComponent,
@@ -38193,6 +38293,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
38193
38293
  IconMoneybagComponent,
38194
38294
  IconMoonComponent,
38195
38295
  IconMuteComponent,
38296
+ IconNewspaperComponent,
38196
38297
  IconOfficeComponent,
38197
38298
  IconPageAddComponent,
38198
38299
  IconPaperPlaneTopRightComponent,
@@ -38305,11 +38406,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
38305
38406
  GdsOptionComponent,
38306
38407
  ],
38307
38408
  exports: [
38308
- GdsAlertComponent,
38309
38409
  GdsAvatarComponent,
38310
- GdsBadgeComponent,
38410
+ GdsAlertComponent,
38311
38411
  GdsBlurComponent,
38312
38412
  GdsBreadcrumbsComponent,
38413
+ GdsBadgeComponent,
38313
38414
  GdsButtonComponent,
38314
38415
  GdsCalendarComponent,
38315
38416
  GdsCardComponent,
@@ -38351,12 +38452,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
38351
38452
  GdsThemeComponent,
38352
38453
  GdsVideoComponent,
38353
38454
  GdsCardPattern01Component,
38455
+ GdsBreadcrumbComponent,
38354
38456
  GdsAvatarGroupComponent,
38355
38457
  GdsCheckboxGroupComponent,
38356
- GdsBreadcrumbComponent,
38357
38458
  GdsIconDetailsComponent,
38358
- GdsFormattedAccountComponent,
38359
38459
  GdsFilterChipComponent,
38460
+ GdsFormattedAccountComponent,
38360
38461
  GdsFormattedDateComponent,
38361
38462
  GdsFormattedNumberComponent,
38362
38463
  GdsRadioGroupComponent,
@@ -38567,6 +38668,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
38567
38668
  IconMoneybagComponent,
38568
38669
  IconMoonComponent,
38569
38670
  IconMuteComponent,
38671
+ IconNewspaperComponent,
38570
38672
  IconOfficeComponent,
38571
38673
  IconPageAddComponent,
38572
38674
  IconPaperPlaneTopRightComponent,
@@ -38887,5 +38989,5 @@ const provideCoreRendererWithAnimations = (resolver = getScopedTagName) => [
38887
38989
  * Generated bundle index. Do not edit.
38888
38990
  */
38889
38991
 
38890
- export { GdsAlertComponent, GdsAvatarComponent, GdsAvatarGroupComponent, GdsBackdropComponent, GdsBadgeComponent, GdsBlurComponent, GdsBreadcrumbComponent, GdsBreadcrumbsComponent, GdsButtonComponent, GdsCalendarComponent, GdsCardComponent, GdsCardLinkedComponent, GdsCardPattern01Component, GdsCheckboxComponent, GdsCheckboxFormControlBase, GdsCheckboxGroupComponent, GdsCoachmarkComponent, GdsContextMenuComponent, GdsCoreRenderer, GdsCoreRendererFactory, GdsCoreScopeDirective, GdsCoreScopeModule, GdsDatepickerComponent, GdsDetailsComponent, GdsDialogComponent, GdsDivComponent, GdsDividerComponent, GdsDropdownComponent, GdsFabComponent, GdsFilterChipComponent, GdsFilterChipsComponent, GdsFlexComponent, GdsFormControlBase, GdsFormSummaryComponent, GdsFormattedAccountComponent, GdsFormattedDateComponent, GdsFormattedNumberComponent, GdsGridComponent, GdsGroupedListComponent, GdsIconDetailsComponent, GdsImgComponent, GdsInputComponent, GdsLinkComponent, GdsListItemComponent, GdsMaskComponent, GdsMenuButtonComponent, GdsMenuHeadingComponent, GdsMenuItemComponent, GdsOptionComponent, GdsPaginationComponent, GdsPopoverComponent, GdsRadioComponent, GdsRadioGroupComponent, GdsRichTextComponent, GdsSegmentComponent, GdsSegmentedControlComponent, GdsSelectComponent, GdsSensitiveAccountComponent, GdsSensitiveDateComponent, GdsSensitiveNumberComponent, GdsSignalComponent, GdsSpinnerComponent, GdsSwitchComponent, GdsTableComponent, GdsTextComponent, GdsTextareaComponent, GdsThemeComponent, GdsVideoComponent, GreenCoreNgModule, IconAiComponent, IconAirplaneUpComponent, IconArchiveComponent, IconArrowBottomTopComponent, IconArrowBoxLeftAltComponent, IconArrowBoxLeftComponent, IconArrowBoxRightComponent, IconArrowComponent, IconArrowDownComponent, IconArrowInboxComponent, IconArrowLeftComponent, IconArrowLeftRightComponent, IconArrowOutOfBoxComponent, IconArrowRightCircleComponent, IconArrowRightComponent, IconArrowRightDownCircleComponent, IconArrowRightUpCircleComponent, IconArrowRotateClockwiseComponent, IconArrowRotateCounterClockwiseComponent, IconArrowRotateLeftRightComponent, IconArrowRotateRightLeftComponent, IconArrowShareLeftComponent, IconArrowShareRightComponent, IconArrowSplitComponent, IconArrowUpComponent, IconArrowWallDownComponent, IconArrowWallLeftComponent, IconArrowWallRightComponent, IconArrowWallUpComponent, IconArrowsRepeatRightComponent, IconAsteriskComponent, IconAtComponent, IconBackComponent, IconBackwardComponent, IconBagComponent, IconBankComponent, IconBanknote2Component, IconBanknoteComponent, IconBarcodeComponent, IconBarsThreeComponent, IconBarsTwoComponent, IconBasketComponent, IconBatteryLoadingComponent, IconBellComponent, IconBlockComponent, IconBookComponent, IconBookmarkCheckComponent, IconBookmarkComponent, IconBookmarkDeleteComponent, IconBookmarkPlusComponent, IconBookmarkRemoveComponent, IconBooksComponent, IconBrandAppStoreComponent, IconBrandAppleMusicComponent, IconBrandBankidComponent, IconBrandChromeComponent, IconBrandFacebookComponent, IconBrandFigmaComponent, IconBrandFirefoxComponent, IconBrandGithubComponent, IconBrandGreenComponent, IconBrandInstagramComponent, IconBrandLinkedinComponent, IconBrandPlayStoreComponent, IconBrandRssFeedComponent, IconBrandSebComponent, IconBrandSpotifyComponent, IconBrandStorybookComponent, IconBrandSwishWordComponent, IconBrandXComponent, IconBrushComponent, IconBubbleAnnotationComponent, IconBubblesComponent, IconBuildingsComponent, IconBulletListComponent, IconCalculatorComponent, IconCalendarCheckComponent, IconCalendarComponent, IconCalendarRepeatComponent, IconCalenderAddComponent, IconCallComponent, IconCarComponent, IconCarusselComponent, IconChainLinkBrokenComponent, IconChainLinkComponent, IconChartTwoComponent, IconChecklistComponent, IconCheckmarkComponent, IconChevronBottomComponent, IconChevronDoubleDownComponent, IconChevronDoubleLeftComponent, IconChevronDoubleRightComponent, IconChevronDoubleUpComponent, IconChevronDownSmallComponent, IconChevronGrabberVerticalComponent, IconChevronGrabberVerticalReversedComponent, IconChevronLeftComponent, IconChevronLeftSmallComponent, IconChevronRightComponent, IconChevronRightSmallComponent, IconChevronTopComponent, IconChevronTopSmallComponent, IconCircleBanComponent, IconCircleCheckComponent, IconCircleDotsComponent, IconCircleInfoComponent, IconCircleMinusComponent, IconCirclePlaceholderOnComponent, IconCirclePlusComponent, IconCircleQuestionmarkComponent, IconCircleXComponent, IconCirclesThreeComponent, IconClockComponent, IconCloudDownloadComponent, IconCloudUploadComponent, IconCloudySunComponent, IconCodeBracketsComponent, IconCodeComponent, IconCompassRoundComponent, IconCookiesComponent, IconCopyComponent, IconCreditCardAddComponent, IconCreditCardComponent, IconCrossLargeComponent, IconCrossSmallComponent, IconCupHotComponent, IconCursorComponent, IconDevicesComponent, IconDirectionComponent, IconDollarComponent, IconDotGridOneHorizontalComponent, IconDotGridOneVerticalComponent, IconDotGridThreeComponent, IconDotGridTwoComponent, IconEmailComponent, IconEmojiAngryComponent, IconEmojiNeutralComponent, IconEmojiSadComponent, IconEmojiSmileComponent, IconEmojiSmileyComponent, IconEuroComponent, IconExpandComponent, IconEyeOpenComponent, IconEyeSlashComponent, IconFashionComponent, IconFastForwardComponent, IconFileBendComponent, IconFileChartComponent, IconFileTextComponent, IconFilesComponent, IconFilterComponent, IconFlagComponent, IconFloppyDiskComponent, IconFocusComponent, IconFolderAddRightComponent, IconFolderComponent, IconFullscreenComponent, IconGiftComponent, IconGlobusComponent, IconGraduateCapComponent, IconGreenPowerComponent, IconGroupComponent, IconGrowthComponent, IconHeadphonesComponent, IconHeartBeatComponent, IconHeartComponent, IconHistoryComponent, IconHomeEnergyOneComponent, IconHomeEnergyTwoComponent, IconHomeOpenComponent, IconHomeRoofComponent, IconHorizontalAlignmentBottomComponent, IconHourglassComponent, IconImagesComponent, IconInboxEmptyComponent, IconIndustryComponent, IconJpgComponent, IconKeyComponent, IconKnifeSpoonComponent, IconLabComponent, IconLawComponent, IconLeisureComponent, IconLightBulbSimpleComponent, IconLightningComponent, IconLineChartFourComponent, IconLineChartOneComponent, IconLineChartThreeComponent, IconLineChartTwoComponent, IconLockComponent, IconMacbookAirComponent, IconMagnifyingGlassComponent, IconMapPinComponent, IconMegaphoneComponent, IconMenuSidebarComponent, IconMicOffComponent, IconMicOnComponent, IconMinimizeComponent, IconMinusLargeComponent, IconMinusSmallComponent, IconMoneyHandComponent, IconMoneybagComponent, IconMoonComponent, IconMuteComponent, IconOfficeComponent, IconPageAddComponent, IconPaperPlaneTopRightComponent, IconPaperclipComponent, IconPauseComponent, IconPdfComponent, IconPencilSignComponent, IconPencilSparkleComponent, IconPencilWaveComponent, IconPensionComponent, IconPeopleA11yComponent, IconPeopleAddComponent, IconPeopleAddedComponent, IconPeopleCircleComponent, IconPeopleComponent, IconPeopleCopyComponent, IconPeopleProfileComponent, IconPeopleRemoveComponent, IconPercentComponent, IconPhoneComponent, IconPieChartComponent, IconPiggyBankComponent, IconPinComponent, IconPinchComponent, IconPlayCircleComponent, IconPlayComponent, IconPlusLargeComponent, IconPlusSmallComponent, IconPngComponent, IconPoopComponent, IconPostcardComponent, IconPoundComponent, IconPowerComponent, IconPowerPlantComponent, IconPrinterComponent, IconPushComponent, IconQrCodeComponent, IconRainyComponent, IconRaisingHandComponent, IconReadingListComponent, IconReceiptBillComponent, IconReceiptionBellComponent, IconRecordComponent, IconRefundComponent, IconRobotComponent, IconRocketComponent, IconRunShortcutComponent, IconSafariComponent, IconSchoolComponent, IconScissorsComponent, IconSearchMenuComponent, IconSettingsGearComponent, IconSettingsSliderHorComponent, IconSettingsSliderVerComponent, IconShapesComponent, IconShareComponent, IconShieldCheckedComponent, IconShieldComponent, IconShieldCrossedComponent, IconShoppingBagComponent, IconSignatureComponent, IconSmartwatchComponent, IconSolarComponent, IconSortAscendingComponent, IconSortComponent, IconSortDescendingComponent, IconSortDownComponent, IconSortUpComponent, IconSquareArrowTopRightComponent, IconSquareBehindSquareComponent, IconSquareGridCircleComponent, IconSquarePlaceholderComponent, IconStarComponent, IconStoreComponent, IconSunComponent, IconSunsetArrowDownComponent, IconTagComponent, IconTargetArrowComponent, IconTelevisionComponent, IconTennisComponent, IconTextEditComponent, IconThermostatComponent, IconThumbsDownComponent, IconThumbsUpComponent, IconTicketComponent, IconTradingViewCandlesComponent, IconTrashCanComponent, IconTreeComponent, IconTrendingFiveComponent, IconTrendingFourComponent, IconTrendingOneComponent, IconTrendingThreeComponent, IconTrendingTwoComponent, IconTriangleExclamationComponent, IconTruckComponent, IconUmbrellaSecurityComponent, IconUnlockedComponent, IconVolumeFullComponent, IconVolumeHalfComponent, IconVolumeOffComponent, IconWalletComponent, IconWarningSignComponent, IconWifiFullComponent, IconYoutubeComponent, IconZapComponent, IconZoomInComponent, IconZoomOutComponent, SCOPE_RESOLVER, animationsCoreRendererFactory, provideCoreRenderer, provideCoreRendererWithAnimations };
38992
+ export { GdsAlertComponent, GdsAvatarComponent, GdsAvatarGroupComponent, GdsBackdropComponent, GdsBadgeComponent, GdsBlurComponent, GdsBreadcrumbComponent, GdsBreadcrumbsComponent, GdsButtonComponent, GdsCalendarComponent, GdsCardComponent, GdsCardLinkedComponent, GdsCardPattern01Component, GdsCheckboxComponent, GdsCheckboxFormControlBase, GdsCheckboxGroupComponent, GdsCoachmarkComponent, GdsContextMenuComponent, GdsCoreRenderer, GdsCoreRendererFactory, GdsCoreScopeDirective, GdsCoreScopeModule, GdsDatepickerComponent, GdsDetailsComponent, GdsDialogComponent, GdsDivComponent, GdsDividerComponent, GdsDropdownComponent, GdsFabComponent, GdsFilterChipComponent, GdsFilterChipsComponent, GdsFlexComponent, GdsFormControlBase, GdsFormSummaryComponent, GdsFormattedAccountComponent, GdsFormattedDateComponent, GdsFormattedNumberComponent, GdsGridComponent, GdsGroupedListComponent, GdsIconDetailsComponent, GdsImgComponent, GdsInputComponent, GdsLinkComponent, GdsListItemComponent, GdsMaskComponent, GdsMenuButtonComponent, GdsMenuHeadingComponent, GdsMenuItemComponent, GdsOptionComponent, GdsPaginationComponent, GdsPopoverComponent, GdsRadioComponent, GdsRadioGroupComponent, GdsRichTextComponent, GdsSegmentComponent, GdsSegmentedControlComponent, GdsSelectComponent, GdsSensitiveAccountComponent, GdsSensitiveDateComponent, GdsSensitiveNumberComponent, GdsSignalComponent, GdsSpinnerComponent, GdsSwitchComponent, GdsTableComponent, GdsTextComponent, GdsTextareaComponent, GdsThemeComponent, GdsVideoComponent, GreenCoreNgModule, IconAiComponent, IconAirplaneUpComponent, IconArchiveComponent, IconArrowBottomTopComponent, IconArrowBoxLeftAltComponent, IconArrowBoxLeftComponent, IconArrowBoxRightComponent, IconArrowComponent, IconArrowDownComponent, IconArrowInboxComponent, IconArrowLeftComponent, IconArrowLeftRightComponent, IconArrowOutOfBoxComponent, IconArrowRightCircleComponent, IconArrowRightComponent, IconArrowRightDownCircleComponent, IconArrowRightUpCircleComponent, IconArrowRotateClockwiseComponent, IconArrowRotateCounterClockwiseComponent, IconArrowRotateLeftRightComponent, IconArrowRotateRightLeftComponent, IconArrowShareLeftComponent, IconArrowShareRightComponent, IconArrowSplitComponent, IconArrowUpComponent, IconArrowWallDownComponent, IconArrowWallLeftComponent, IconArrowWallRightComponent, IconArrowWallUpComponent, IconArrowsRepeatRightComponent, IconAsteriskComponent, IconAtComponent, IconBackComponent, IconBackwardComponent, IconBagComponent, IconBankComponent, IconBanknote2Component, IconBanknoteComponent, IconBarcodeComponent, IconBarsThreeComponent, IconBarsTwoComponent, IconBasketComponent, IconBatteryLoadingComponent, IconBellComponent, IconBlockComponent, IconBookComponent, IconBookmarkCheckComponent, IconBookmarkComponent, IconBookmarkDeleteComponent, IconBookmarkPlusComponent, IconBookmarkRemoveComponent, IconBooksComponent, IconBrandAppStoreComponent, IconBrandAppleMusicComponent, IconBrandBankidComponent, IconBrandChromeComponent, IconBrandFacebookComponent, IconBrandFigmaComponent, IconBrandFirefoxComponent, IconBrandGithubComponent, IconBrandGreenComponent, IconBrandInstagramComponent, IconBrandLinkedinComponent, IconBrandPlayStoreComponent, IconBrandRssFeedComponent, IconBrandSebComponent, IconBrandSpotifyComponent, IconBrandStorybookComponent, IconBrandSwishWordComponent, IconBrandXComponent, IconBrushComponent, IconBubbleAnnotationComponent, IconBubblesComponent, IconBuildingsComponent, IconBulletListComponent, IconCalculatorComponent, IconCalendarCheckComponent, IconCalendarComponent, IconCalendarRepeatComponent, IconCalenderAddComponent, IconCallComponent, IconCarComponent, IconCarusselComponent, IconChainLinkBrokenComponent, IconChainLinkComponent, IconChartTwoComponent, IconChecklistComponent, IconCheckmarkComponent, IconChevronBottomComponent, IconChevronDoubleDownComponent, IconChevronDoubleLeftComponent, IconChevronDoubleRightComponent, IconChevronDoubleUpComponent, IconChevronDownSmallComponent, IconChevronGrabberVerticalComponent, IconChevronGrabberVerticalReversedComponent, IconChevronLeftComponent, IconChevronLeftSmallComponent, IconChevronRightComponent, IconChevronRightSmallComponent, IconChevronTopComponent, IconChevronTopSmallComponent, IconCircleBanComponent, IconCircleCheckComponent, IconCircleDotsComponent, IconCircleInfoComponent, IconCircleMinusComponent, IconCirclePlaceholderOnComponent, IconCirclePlusComponent, IconCircleQuestionmarkComponent, IconCircleXComponent, IconCirclesThreeComponent, IconClockComponent, IconCloudDownloadComponent, IconCloudUploadComponent, IconCloudySunComponent, IconCodeBracketsComponent, IconCodeComponent, IconCompassRoundComponent, IconCookiesComponent, IconCopyComponent, IconCreditCardAddComponent, IconCreditCardComponent, IconCrossLargeComponent, IconCrossSmallComponent, IconCupHotComponent, IconCursorComponent, IconDevicesComponent, IconDirectionComponent, IconDollarComponent, IconDotGridOneHorizontalComponent, IconDotGridOneVerticalComponent, IconDotGridThreeComponent, IconDotGridTwoComponent, IconEmailComponent, IconEmojiAngryComponent, IconEmojiNeutralComponent, IconEmojiSadComponent, IconEmojiSmileComponent, IconEmojiSmileyComponent, IconEuroComponent, IconExpandComponent, IconEyeOpenComponent, IconEyeSlashComponent, IconFashionComponent, IconFastForwardComponent, IconFileBendComponent, IconFileChartComponent, IconFileTextComponent, IconFilesComponent, IconFilterComponent, IconFlagComponent, IconFloppyDiskComponent, IconFocusComponent, IconFolderAddRightComponent, IconFolderComponent, IconFullscreenComponent, IconGiftComponent, IconGlobusComponent, IconGraduateCapComponent, IconGreenPowerComponent, IconGroupComponent, IconGrowthComponent, IconHeadphonesComponent, IconHeartBeatComponent, IconHeartComponent, IconHistoryComponent, IconHomeEnergyOneComponent, IconHomeEnergyTwoComponent, IconHomeOpenComponent, IconHomeRoofComponent, IconHorizontalAlignmentBottomComponent, IconHourglassComponent, IconImagesComponent, IconInboxEmptyComponent, IconIndustryComponent, IconJpgComponent, IconKeyComponent, IconKnifeSpoonComponent, IconLabComponent, IconLawComponent, IconLeisureComponent, IconLightBulbSimpleComponent, IconLightningComponent, IconLineChartFourComponent, IconLineChartOneComponent, IconLineChartThreeComponent, IconLineChartTwoComponent, IconLockComponent, IconMacbookAirComponent, IconMagnifyingGlassComponent, IconMapPinComponent, IconMegaphoneComponent, IconMenuSidebarComponent, IconMicOffComponent, IconMicOnComponent, IconMinimizeComponent, IconMinusLargeComponent, IconMinusSmallComponent, IconMoneyHandComponent, IconMoneybagComponent, IconMoonComponent, IconMuteComponent, IconNewspaperComponent, IconOfficeComponent, IconPageAddComponent, IconPaperPlaneTopRightComponent, IconPaperclipComponent, IconPauseComponent, IconPdfComponent, IconPencilSignComponent, IconPencilSparkleComponent, IconPencilWaveComponent, IconPensionComponent, IconPeopleA11yComponent, IconPeopleAddComponent, IconPeopleAddedComponent, IconPeopleCircleComponent, IconPeopleComponent, IconPeopleCopyComponent, IconPeopleProfileComponent, IconPeopleRemoveComponent, IconPercentComponent, IconPhoneComponent, IconPieChartComponent, IconPiggyBankComponent, IconPinComponent, IconPinchComponent, IconPlayCircleComponent, IconPlayComponent, IconPlusLargeComponent, IconPlusSmallComponent, IconPngComponent, IconPoopComponent, IconPostcardComponent, IconPoundComponent, IconPowerComponent, IconPowerPlantComponent, IconPrinterComponent, IconPushComponent, IconQrCodeComponent, IconRainyComponent, IconRaisingHandComponent, IconReadingListComponent, IconReceiptBillComponent, IconReceiptionBellComponent, IconRecordComponent, IconRefundComponent, IconRobotComponent, IconRocketComponent, IconRunShortcutComponent, IconSafariComponent, IconSchoolComponent, IconScissorsComponent, IconSearchMenuComponent, IconSettingsGearComponent, IconSettingsSliderHorComponent, IconSettingsSliderVerComponent, IconShapesComponent, IconShareComponent, IconShieldCheckedComponent, IconShieldComponent, IconShieldCrossedComponent, IconShoppingBagComponent, IconSignatureComponent, IconSmartwatchComponent, IconSolarComponent, IconSortAscendingComponent, IconSortComponent, IconSortDescendingComponent, IconSortDownComponent, IconSortUpComponent, IconSquareArrowTopRightComponent, IconSquareBehindSquareComponent, IconSquareGridCircleComponent, IconSquarePlaceholderComponent, IconStarComponent, IconStoreComponent, IconSunComponent, IconSunsetArrowDownComponent, IconTagComponent, IconTargetArrowComponent, IconTelevisionComponent, IconTennisComponent, IconTextEditComponent, IconThermostatComponent, IconThumbsDownComponent, IconThumbsUpComponent, IconTicketComponent, IconTradingViewCandlesComponent, IconTrashCanComponent, IconTreeComponent, IconTrendingFiveComponent, IconTrendingFourComponent, IconTrendingOneComponent, IconTrendingThreeComponent, IconTrendingTwoComponent, IconTriangleExclamationComponent, IconTruckComponent, IconUmbrellaSecurityComponent, IconUnlockedComponent, IconVolumeFullComponent, IconVolumeHalfComponent, IconVolumeOffComponent, IconWalletComponent, IconWarningSignComponent, IconWifiFullComponent, IconYoutubeComponent, IconZapComponent, IconZoomInComponent, IconZoomOutComponent, SCOPE_RESOLVER, animationsCoreRendererFactory, provideCoreRenderer, provideCoreRendererWithAnimations };
38891
38993
  //# sourceMappingURL=sebgroup-green-core-ng.mjs.map