@sebgroup/green-core-ng 3.17.3 → 3.17.4

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.
@@ -13,8 +13,8 @@ import { GdsButton } from '@sebgroup/green-core/components/button/button.compone
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';
16
- import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.component.js';
17
16
  import { GdsCoachmark } from '@sebgroup/green-core/components/coachmark/coachmark.component.js';
17
+ import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.component.js';
18
18
  import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
19
19
  import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
20
20
  import { GdsDetails } from '@sebgroup/green-core/components/details/details.component.js';
@@ -52,8 +52,8 @@ import { GdsTheme } from '@sebgroup/green-core/components/theme/theme.component.
52
52
  import { GdsVideo } from '@sebgroup/green-core/components/video/video.component.js';
53
53
  import { GdsCardPattern01 } from '@sebgroup/green-core/patterns/card-pattern-01/card-pattern-01.component.js';
54
54
  import { GdsListItemPattern01 } from '@sebgroup/green-core/patterns/list-item-pattern-01/list-item-pattern-01.component.js';
55
- import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-group/avatar-group.component.js';
56
55
  import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
56
+ import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-group/avatar-group.component.js';
57
57
  import { GdsCheckboxGroup } from '@sebgroup/green-core/components/checkbox/checkbox-group/checkbox-group.component.js';
58
58
  import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
59
59
  import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
@@ -1761,6 +1761,89 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
1761
1761
  * Auto-generated from Custom Elements Manifest
1762
1762
  */
1763
1763
 
1764
+ /**
1765
+ * Angular wrapper for the gds-coachmark web component
1766
+ *
1767
+ */
1768
+ let GdsCoachmarkComponent = class GdsCoachmarkComponent {
1769
+ get element() {
1770
+ return this.elementRef.nativeElement;
1771
+ }
1772
+ constructor() {
1773
+ this.elementRef = inject((ElementRef));
1774
+ this.zone = inject(NgZone);
1775
+ this.cdr = inject(ChangeDetectorRef);
1776
+ /** dispatched when the tooltip is about to be closed. Can be cancelled to prevent closing. */
1777
+ this.gdsUiState = new EventEmitter();
1778
+ this.cdr.detach();
1779
+ }
1780
+ ngOnInit() {
1781
+ // Define the custom element
1782
+ try {
1783
+ GdsCoachmark.define();
1784
+ }
1785
+ catch (e) {
1786
+ // Component may not be available in this version of green-core
1787
+ console.warn('Failed to define gds-coachmark:', e);
1788
+ }
1789
+ // Set up event listeners
1790
+ this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
1791
+ this.gdsUiState.emit(event);
1792
+ });
1793
+ }
1794
+ ngOnChanges(changes) {
1795
+ // Implementation added by @ProxyInputs decorator
1796
+ }
1797
+ ngAfterViewInit() {
1798
+ // Implementation added by @ProxyInputs decorator
1799
+ }
1800
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsCoachmarkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1801
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsCoachmarkComponent, isStandalone: true, selector: "gds-coachmark", inputs: { placement: "placement", overlappedBy: "overlappedBy", target: "target", label: "label", computeVisibility: "computeVisibility", targetElement: "targetElement", _isVisible: ["_isVisible", "_isVisible", booleanAttribute], _preventClose: ["_preventClose", "_preventClose", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1802
+ };
1803
+ GdsCoachmarkComponent = __decorate([
1804
+ ProxyInputs(['placement', 'overlappedBy', 'target', 'label', 'computeVisibility', 'targetElement', '_isVisible', '_preventClose', 'syncFirstRender']),
1805
+ __metadata("design:paramtypes", [])
1806
+ ], GdsCoachmarkComponent);
1807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsCoachmarkComponent, decorators: [{
1808
+ type: Component,
1809
+ args: [{
1810
+ selector: 'gds-coachmark',
1811
+ standalone: true,
1812
+ changeDetection: ChangeDetectionStrategy.OnPush,
1813
+ template: `<ng-content></ng-content>`
1814
+ }]
1815
+ }], ctorParameters: () => [], propDecorators: { placement: [{
1816
+ type: Input
1817
+ }], overlappedBy: [{
1818
+ type: Input
1819
+ }], target: [{
1820
+ type: Input
1821
+ }], label: [{
1822
+ type: Input
1823
+ }], computeVisibility: [{
1824
+ type: Input
1825
+ }], targetElement: [{
1826
+ type: Input
1827
+ }], _isVisible: [{
1828
+ type: Input,
1829
+ args: [{ transform: booleanAttribute }]
1830
+ }], _preventClose: [{
1831
+ type: Input,
1832
+ args: [{ transform: booleanAttribute }]
1833
+ }], syncFirstRender: [{
1834
+ type: Input,
1835
+ args: [{ transform: booleanAttribute }]
1836
+ }], gdsUiState: [{
1837
+ type: Output
1838
+ }] } });
1839
+
1840
+ /**
1841
+ * GdsCoachmarkComponent - Angular wrapper for gds-coachmark
1842
+ *
1843
+ *
1844
+ * Auto-generated from Custom Elements Manifest
1845
+ */
1846
+
1764
1847
  /**
1765
1848
  * Base class for checkbox form controls that work with boolean checked state
1766
1849
  * instead of string values.
@@ -1933,89 +2016,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
1933
2016
  * Auto-generated from Custom Elements Manifest
1934
2017
  */
1935
2018
 
1936
- /**
1937
- * Angular wrapper for the gds-coachmark web component
1938
- *
1939
- */
1940
- let GdsCoachmarkComponent = class GdsCoachmarkComponent {
1941
- get element() {
1942
- return this.elementRef.nativeElement;
1943
- }
1944
- constructor() {
1945
- this.elementRef = inject((ElementRef));
1946
- this.zone = inject(NgZone);
1947
- this.cdr = inject(ChangeDetectorRef);
1948
- /** dispatched when the tooltip is about to be closed. Can be cancelled to prevent closing. */
1949
- this.gdsUiState = new EventEmitter();
1950
- this.cdr.detach();
1951
- }
1952
- ngOnInit() {
1953
- // Define the custom element
1954
- try {
1955
- GdsCoachmark.define();
1956
- }
1957
- catch (e) {
1958
- // Component may not be available in this version of green-core
1959
- console.warn('Failed to define gds-coachmark:', e);
1960
- }
1961
- // Set up event listeners
1962
- this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
1963
- this.gdsUiState.emit(event);
1964
- });
1965
- }
1966
- ngOnChanges(changes) {
1967
- // Implementation added by @ProxyInputs decorator
1968
- }
1969
- ngAfterViewInit() {
1970
- // Implementation added by @ProxyInputs decorator
1971
- }
1972
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsCoachmarkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1973
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsCoachmarkComponent, isStandalone: true, selector: "gds-coachmark", inputs: { placement: "placement", overlappedBy: "overlappedBy", target: "target", label: "label", computeVisibility: "computeVisibility", targetElement: "targetElement", _isVisible: ["_isVisible", "_isVisible", booleanAttribute], _preventClose: ["_preventClose", "_preventClose", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1974
- };
1975
- GdsCoachmarkComponent = __decorate([
1976
- ProxyInputs(['placement', 'overlappedBy', 'target', 'label', 'computeVisibility', 'targetElement', '_isVisible', '_preventClose', 'syncFirstRender']),
1977
- __metadata("design:paramtypes", [])
1978
- ], GdsCoachmarkComponent);
1979
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsCoachmarkComponent, decorators: [{
1980
- type: Component,
1981
- args: [{
1982
- selector: 'gds-coachmark',
1983
- standalone: true,
1984
- changeDetection: ChangeDetectionStrategy.OnPush,
1985
- template: `<ng-content></ng-content>`
1986
- }]
1987
- }], ctorParameters: () => [], propDecorators: { placement: [{
1988
- type: Input
1989
- }], overlappedBy: [{
1990
- type: Input
1991
- }], target: [{
1992
- type: Input
1993
- }], label: [{
1994
- type: Input
1995
- }], computeVisibility: [{
1996
- type: Input
1997
- }], targetElement: [{
1998
- type: Input
1999
- }], _isVisible: [{
2000
- type: Input,
2001
- args: [{ transform: booleanAttribute }]
2002
- }], _preventClose: [{
2003
- type: Input,
2004
- args: [{ transform: booleanAttribute }]
2005
- }], syncFirstRender: [{
2006
- type: Input,
2007
- args: [{ transform: booleanAttribute }]
2008
- }], gdsUiState: [{
2009
- type: Output
2010
- }] } });
2011
-
2012
- /**
2013
- * GdsCoachmarkComponent - Angular wrapper for gds-coachmark
2014
- *
2015
- *
2016
- * Auto-generated from Custom Elements Manifest
2017
- */
2018
-
2019
2019
  /**
2020
2020
  * Angular wrapper for the gds-context-menu web component
2021
2021
  *
@@ -7087,93 +7087,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
7087
7087
  * Auto-generated from Custom Elements Manifest
7088
7088
  */
7089
7089
 
7090
- /**
7091
- * Angular wrapper for the gds-avatar-group web component
7092
- * `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
7093
-
7094
- Accessibility:
7095
- - Exposes `role="group"` by default.
7096
- - Provide an `aria-label` (for example `aria-label="Authors"`) to describe the group context.
7097
- */
7098
- let GdsAvatarGroupComponent = class GdsAvatarGroupComponent {
7099
- get element() {
7100
- return this.elementRef.nativeElement;
7101
- }
7102
- constructor() {
7103
- this.elementRef = inject((ElementRef));
7104
- this.zone = inject(NgZone);
7105
- this.cdr = inject(ChangeDetectorRef);
7106
- this.cdr.detach();
7107
- }
7108
- ngOnInit() {
7109
- // Define the custom element
7110
- try {
7111
- GdsAvatarGroup.define();
7112
- }
7113
- catch (e) {
7114
- // Component may not be available in this version of green-core
7115
- console.warn('Failed to define gds-avatar-group:', e);
7116
- }
7117
- }
7118
- ngOnChanges(changes) {
7119
- // Implementation added by @ProxyInputs decorator
7120
- }
7121
- ngAfterViewInit() {
7122
- // Implementation added by @ProxyInputs decorator
7123
- }
7124
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsAvatarGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7125
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsAvatarGroupComponent, isStandalone: true, selector: "gds-avatar-group", inputs: { 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 }); }
7126
- };
7127
- GdsAvatarGroupComponent = __decorate([
7128
- ProxyInputs(['margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
7129
- __metadata("design:paramtypes", [])
7130
- ], GdsAvatarGroupComponent);
7131
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsAvatarGroupComponent, decorators: [{
7132
- type: Component,
7133
- args: [{
7134
- selector: 'gds-avatar-group',
7135
- standalone: true,
7136
- changeDetection: ChangeDetectionStrategy.OnPush,
7137
- template: `<ng-content></ng-content>`
7138
- }]
7139
- }], ctorParameters: () => [], propDecorators: { margin: [{
7140
- type: Input
7141
- }], marginInline: [{
7142
- type: Input
7143
- }], marginBlock: [{
7144
- type: Input
7145
- }], alignSelf: [{
7146
- type: Input
7147
- }], justifySelf: [{
7148
- type: Input
7149
- }], placeSelf: [{
7150
- type: Input
7151
- }], gridColumn: [{
7152
- type: Input
7153
- }], gridRow: [{
7154
- type: Input
7155
- }], gridArea: [{
7156
- type: Input
7157
- }], flex: [{
7158
- type: Input
7159
- }], order: [{
7160
- type: Input
7161
- }], syncFirstRender: [{
7162
- type: Input,
7163
- args: [{ transform: booleanAttribute }]
7164
- }] } });
7165
-
7166
- /**
7167
- * GdsAvatarGroupComponent - Angular wrapper for gds-avatar-group
7168
- * `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
7169
-
7170
- Accessibility:
7171
- - Exposes `role="group"` by default.
7172
- - Provide an `aria-label` (for example `aria-label="Authors"`) to describe the group context.
7173
- *
7174
- * Auto-generated from Custom Elements Manifest
7175
- */
7176
-
7177
7090
  /**
7178
7091
  * Angular wrapper for the gds-breadcrumb web component
7179
7092
  *
@@ -7312,6 +7225,93 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
7312
7225
  * Auto-generated from Custom Elements Manifest
7313
7226
  */
7314
7227
 
7228
+ /**
7229
+ * Angular wrapper for the gds-avatar-group web component
7230
+ * `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
7231
+
7232
+ Accessibility:
7233
+ - Exposes `role="group"` by default.
7234
+ - Provide an `aria-label` (for example `aria-label="Authors"`) to describe the group context.
7235
+ */
7236
+ let GdsAvatarGroupComponent = class GdsAvatarGroupComponent {
7237
+ get element() {
7238
+ return this.elementRef.nativeElement;
7239
+ }
7240
+ constructor() {
7241
+ this.elementRef = inject((ElementRef));
7242
+ this.zone = inject(NgZone);
7243
+ this.cdr = inject(ChangeDetectorRef);
7244
+ this.cdr.detach();
7245
+ }
7246
+ ngOnInit() {
7247
+ // Define the custom element
7248
+ try {
7249
+ GdsAvatarGroup.define();
7250
+ }
7251
+ catch (e) {
7252
+ // Component may not be available in this version of green-core
7253
+ console.warn('Failed to define gds-avatar-group:', e);
7254
+ }
7255
+ }
7256
+ ngOnChanges(changes) {
7257
+ // Implementation added by @ProxyInputs decorator
7258
+ }
7259
+ ngAfterViewInit() {
7260
+ // Implementation added by @ProxyInputs decorator
7261
+ }
7262
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsAvatarGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7263
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsAvatarGroupComponent, isStandalone: true, selector: "gds-avatar-group", inputs: { 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 }); }
7264
+ };
7265
+ GdsAvatarGroupComponent = __decorate([
7266
+ ProxyInputs(['margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
7267
+ __metadata("design:paramtypes", [])
7268
+ ], GdsAvatarGroupComponent);
7269
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsAvatarGroupComponent, decorators: [{
7270
+ type: Component,
7271
+ args: [{
7272
+ selector: 'gds-avatar-group',
7273
+ standalone: true,
7274
+ changeDetection: ChangeDetectionStrategy.OnPush,
7275
+ template: `<ng-content></ng-content>`
7276
+ }]
7277
+ }], ctorParameters: () => [], propDecorators: { margin: [{
7278
+ type: Input
7279
+ }], marginInline: [{
7280
+ type: Input
7281
+ }], marginBlock: [{
7282
+ type: Input
7283
+ }], alignSelf: [{
7284
+ type: Input
7285
+ }], justifySelf: [{
7286
+ type: Input
7287
+ }], placeSelf: [{
7288
+ type: Input
7289
+ }], gridColumn: [{
7290
+ type: Input
7291
+ }], gridRow: [{
7292
+ type: Input
7293
+ }], gridArea: [{
7294
+ type: Input
7295
+ }], flex: [{
7296
+ type: Input
7297
+ }], order: [{
7298
+ type: Input
7299
+ }], syncFirstRender: [{
7300
+ type: Input,
7301
+ args: [{ transform: booleanAttribute }]
7302
+ }] } });
7303
+
7304
+ /**
7305
+ * GdsAvatarGroupComponent - Angular wrapper for gds-avatar-group
7306
+ * `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
7307
+
7308
+ Accessibility:
7309
+ - Exposes `role="group"` by default.
7310
+ - Provide an `aria-label` (for example `aria-label="Authors"`) to describe the group context.
7311
+ *
7312
+ * Auto-generated from Custom Elements Manifest
7313
+ */
7314
+
7315
7315
  /**
7316
7316
  * Angular wrapper for the gds-checkbox-group web component
7317
7317
  *
@@ -37999,8 +37999,8 @@ class GreenCoreNgModule {
37999
37999
  GdsCalendarComponent,
38000
38000
  GdsCardComponent,
38001
38001
  GdsCardLinkedComponent,
38002
- GdsCheckboxComponent,
38003
38002
  GdsCoachmarkComponent,
38003
+ GdsCheckboxComponent,
38004
38004
  GdsContextMenuComponent,
38005
38005
  GdsDatepickerComponent,
38006
38006
  GdsDetailsComponent,
@@ -38038,8 +38038,8 @@ class GreenCoreNgModule {
38038
38038
  GdsVideoComponent,
38039
38039
  GdsCardPattern01Component,
38040
38040
  GdsListItemPattern01Component,
38041
- GdsAvatarGroupComponent,
38042
38041
  GdsBreadcrumbComponent,
38042
+ GdsAvatarGroupComponent,
38043
38043
  GdsCheckboxGroupComponent,
38044
38044
  GdsIconDetailsComponent,
38045
38045
  GdsFilterChipComponent,
@@ -38376,8 +38376,8 @@ class GreenCoreNgModule {
38376
38376
  GdsCalendarComponent,
38377
38377
  GdsCardComponent,
38378
38378
  GdsCardLinkedComponent,
38379
- GdsCheckboxComponent,
38380
38379
  GdsCoachmarkComponent,
38380
+ GdsCheckboxComponent,
38381
38381
  GdsContextMenuComponent,
38382
38382
  GdsDatepickerComponent,
38383
38383
  GdsDetailsComponent,
@@ -38415,8 +38415,8 @@ class GreenCoreNgModule {
38415
38415
  GdsVideoComponent,
38416
38416
  GdsCardPattern01Component,
38417
38417
  GdsListItemPattern01Component,
38418
- GdsAvatarGroupComponent,
38419
38418
  GdsBreadcrumbComponent,
38419
+ GdsAvatarGroupComponent,
38420
38420
  GdsCheckboxGroupComponent,
38421
38421
  GdsIconDetailsComponent,
38422
38422
  GdsFilterChipComponent,
@@ -38760,8 +38760,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
38760
38760
  GdsCalendarComponent,
38761
38761
  GdsCardComponent,
38762
38762
  GdsCardLinkedComponent,
38763
- GdsCheckboxComponent,
38764
38763
  GdsCoachmarkComponent,
38764
+ GdsCheckboxComponent,
38765
38765
  GdsContextMenuComponent,
38766
38766
  GdsDatepickerComponent,
38767
38767
  GdsDetailsComponent,
@@ -38799,8 +38799,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
38799
38799
  GdsVideoComponent,
38800
38800
  GdsCardPattern01Component,
38801
38801
  GdsListItemPattern01Component,
38802
- GdsAvatarGroupComponent,
38803
38802
  GdsBreadcrumbComponent,
38803
+ GdsAvatarGroupComponent,
38804
38804
  GdsCheckboxGroupComponent,
38805
38805
  GdsIconDetailsComponent,
38806
38806
  GdsFilterChipComponent,
@@ -39140,8 +39140,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
39140
39140
  GdsCalendarComponent,
39141
39141
  GdsCardComponent,
39142
39142
  GdsCardLinkedComponent,
39143
- GdsCheckboxComponent,
39144
39143
  GdsCoachmarkComponent,
39144
+ GdsCheckboxComponent,
39145
39145
  GdsContextMenuComponent,
39146
39146
  GdsDatepickerComponent,
39147
39147
  GdsDetailsComponent,
@@ -39179,8 +39179,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
39179
39179
  GdsVideoComponent,
39180
39180
  GdsCardPattern01Component,
39181
39181
  GdsListItemPattern01Component,
39182
- GdsAvatarGroupComponent,
39183
39182
  GdsBreadcrumbComponent,
39183
+ GdsAvatarGroupComponent,
39184
39184
  GdsCheckboxGroupComponent,
39185
39185
  GdsIconDetailsComponent,
39186
39186
  GdsFilterChipComponent,