@sebgroup/green-core-ng 3.1.0 → 3.5.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.
@@ -4,18 +4,18 @@ import { inject, ElementRef, NgZone, ChangeDetectorRef, EventEmitter, booleanAtt
4
4
  import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
5
5
  import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
6
6
  import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
7
- import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
8
7
  import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
9
8
  import { LocationStrategy, DOCUMENT, CommonModule } from '@angular/common';
10
9
  import { Router, RouterLink, RouterLinkActive, NavigationEnd } from '@angular/router';
11
10
  import { GdsButton } from '@sebgroup/green-core/components/button/button.component.js';
12
11
  import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
12
+ import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
13
13
  import { GdsCard } from '@sebgroup/green-core/components/card/card.component.js';
14
14
  import { GdsCardLinked } from '@sebgroup/green-core/components/card-linked/card-linked.component.js';
15
15
  import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.component.js';
16
16
  import { GdsCoachmark } from '@sebgroup/green-core/components/coachmark/coachmark.component.js';
17
- import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
18
17
  import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
18
+ import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
19
19
  import { GdsDetails } from '@sebgroup/green-core/components/details/details.component.js';
20
20
  import { GdsDialog } from '@sebgroup/green-core/components/dialog/dialog.component.js';
21
21
  import { GdsDiv } from '@sebgroup/green-core/components/div/div.component.js';
@@ -55,9 +55,9 @@ import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filt
55
55
  import { GdsFormattedAccount } from '@sebgroup/green-core/components/formatted-text/account/formatted-account.component.js';
56
56
  import { GdsFormattedDate } from '@sebgroup/green-core/components/formatted-text/date/formatted-date.component.js';
57
57
  import { GdsFormattedNumber } from '@sebgroup/green-core/components/formatted-text/number/formatted-number.component.js';
58
- import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
59
58
  import { GdsRadioGroup } from '@sebgroup/green-core/components/radio/radio-group/radio-group.component.js';
60
59
  import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
60
+ import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
61
61
  import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
62
62
  import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
63
63
  import { IconAi } from '@sebgroup/green-core/components/icon/icons/ai.component.js';
@@ -152,6 +152,7 @@ import { IconChevronDoubleLeft } from '@sebgroup/green-core/components/icon/icon
152
152
  import { IconChevronDoubleRight } from '@sebgroup/green-core/components/icon/icons/chevron-double-right.component.js';
153
153
  import { IconChevronDoubleUp } from '@sebgroup/green-core/components/icon/icons/chevron-double-up.component.js';
154
154
  import { IconChevronDownSmall } from '@sebgroup/green-core/components/icon/icons/chevron-down-small.component.js';
155
+ import { IconChevronGrabberVerticalReversed } from '@sebgroup/green-core/components/icon/icons/chevron-grabber-vertical-reversed.component.js';
155
156
  import { IconChevronGrabberVertical } from '@sebgroup/green-core/components/icon/icons/chevron-grabber-vertical.component.js';
156
157
  import { IconChevronLeftSmall } from '@sebgroup/green-core/components/icon/icons/chevron-left-small.component.js';
157
158
  import { IconChevronLeft } from '@sebgroup/green-core/components/icon/icons/chevron-left.component.js';
@@ -679,109 +680,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
679
680
  * Auto-generated from Custom Elements Manifest
680
681
  */
681
682
 
682
- /**
683
- * Angular wrapper for the gds-calendar web component
684
- *
685
- */
686
- let GdsCalendarComponent = class GdsCalendarComponent {
687
- get element() {
688
- return this.elementRef.nativeElement;
689
- }
690
- constructor() {
691
- this.elementRef = inject((ElementRef));
692
- this.zone = inject(NgZone);
693
- this.cdr = inject(ChangeDetectorRef);
694
- /** Fired when a date is selected. */
695
- this.change = new EventEmitter();
696
- /** Fired when focus is changed. Can be cancelled using `event.preventDefault()`. */
697
- this.gdsDateFocused = new EventEmitter();
698
- this.cdr.detach();
699
- }
700
- ngOnInit() {
701
- // Define the custom element
702
- try {
703
- GdsCalendar.define();
704
- }
705
- catch (e) {
706
- // Component may not be available in this version of green-core
707
- console.warn('Failed to define gds-calendar:', e);
708
- }
709
- // Set up event listeners
710
- this.elementRef.nativeElement.addEventListener('gds-date-focused', (event) => {
711
- this.gdsDateFocused.emit(event);
712
- });
713
- }
714
- ngOnChanges(changes) {
715
- // Implementation added by @ProxyInputs decorator
716
- }
717
- ngAfterViewInit() {
718
- // Implementation added by @ProxyInputs decorator
719
- }
720
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsCalendarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
721
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsCalendarComponent, isStandalone: true, selector: "gds-calendar", inputs: { value: "value", min: "min", max: "max", focusedDate: "focusedDate", disabledWeekends: ["disabledWeekends", "disabledWeekends", booleanAttribute], disabledDates: "disabledDates", focusedMonth: "focusedMonth", focusedYear: "focusedYear", size: "size", showWeekNumbers: ["showWeekNumbers", "showWeekNumbers", booleanAttribute], hideExtraneousDays: ["hideExtraneousDays", "hideExtraneousDays", booleanAttribute], hideDayNames: ["hideDayNames", "hideDayNames", booleanAttribute], customizedDates: "customizedDates", label: "label", dateLabelTemplate: "dateLabelTemplate", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { change: "change", gdsDateFocused: "gdsDateFocused" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
722
- };
723
- GdsCalendarComponent = __decorate([
724
- ProxyInputs(['value', 'min', 'max', 'focusedDate', 'disabledWeekends', 'disabledDates', 'focusedMonth', 'focusedYear', 'size', 'showWeekNumbers', 'hideExtraneousDays', 'hideDayNames', 'customizedDates', 'label', 'dateLabelTemplate', 'syncFirstRender']),
725
- __metadata("design:paramtypes", [])
726
- ], GdsCalendarComponent);
727
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsCalendarComponent, decorators: [{
728
- type: Component,
729
- args: [{
730
- selector: 'gds-calendar',
731
- standalone: true,
732
- changeDetection: ChangeDetectionStrategy.OnPush,
733
- template: `<ng-content></ng-content>`
734
- }]
735
- }], ctorParameters: () => [], propDecorators: { value: [{
736
- type: Input
737
- }], min: [{
738
- type: Input
739
- }], max: [{
740
- type: Input
741
- }], focusedDate: [{
742
- type: Input
743
- }], disabledWeekends: [{
744
- type: Input,
745
- args: [{ transform: booleanAttribute }]
746
- }], disabledDates: [{
747
- type: Input
748
- }], focusedMonth: [{
749
- type: Input
750
- }], focusedYear: [{
751
- type: Input
752
- }], size: [{
753
- type: Input
754
- }], showWeekNumbers: [{
755
- type: Input,
756
- args: [{ transform: booleanAttribute }]
757
- }], hideExtraneousDays: [{
758
- type: Input,
759
- args: [{ transform: booleanAttribute }]
760
- }], hideDayNames: [{
761
- type: Input,
762
- args: [{ transform: booleanAttribute }]
763
- }], customizedDates: [{
764
- type: Input
765
- }], label: [{
766
- type: Input
767
- }], dateLabelTemplate: [{
768
- type: Input
769
- }], syncFirstRender: [{
770
- type: Input,
771
- args: [{ transform: booleanAttribute }]
772
- }], change: [{
773
- type: Output
774
- }], gdsDateFocused: [{
775
- type: Output
776
- }] } });
777
-
778
- /**
779
- * GdsCalendarComponent - Angular wrapper for gds-calendar
780
- *
781
- *
782
- * Auto-generated from Custom Elements Manifest
783
- */
784
-
785
683
  /**
786
684
  * Base class for Angular wrapper components that wrap Green Core form controls.
787
685
  *
@@ -1194,6 +1092,109 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
1194
1092
  * Auto-generated from Custom Elements Manifest
1195
1093
  */
1196
1094
 
1095
+ /**
1096
+ * Angular wrapper for the gds-calendar web component
1097
+ *
1098
+ */
1099
+ let GdsCalendarComponent = class GdsCalendarComponent {
1100
+ get element() {
1101
+ return this.elementRef.nativeElement;
1102
+ }
1103
+ constructor() {
1104
+ this.elementRef = inject((ElementRef));
1105
+ this.zone = inject(NgZone);
1106
+ this.cdr = inject(ChangeDetectorRef);
1107
+ /** Fired when a date is selected. */
1108
+ this.change = new EventEmitter();
1109
+ /** Fired when focus is changed. Can be cancelled using `event.preventDefault()`. */
1110
+ this.gdsDateFocused = new EventEmitter();
1111
+ this.cdr.detach();
1112
+ }
1113
+ ngOnInit() {
1114
+ // Define the custom element
1115
+ try {
1116
+ GdsCalendar.define();
1117
+ }
1118
+ catch (e) {
1119
+ // Component may not be available in this version of green-core
1120
+ console.warn('Failed to define gds-calendar:', e);
1121
+ }
1122
+ // Set up event listeners
1123
+ this.elementRef.nativeElement.addEventListener('gds-date-focused', (event) => {
1124
+ this.gdsDateFocused.emit(event);
1125
+ });
1126
+ }
1127
+ ngOnChanges(changes) {
1128
+ // Implementation added by @ProxyInputs decorator
1129
+ }
1130
+ ngAfterViewInit() {
1131
+ // Implementation added by @ProxyInputs decorator
1132
+ }
1133
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsCalendarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1134
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsCalendarComponent, isStandalone: true, selector: "gds-calendar", inputs: { value: "value", min: "min", max: "max", focusedDate: "focusedDate", disabledWeekends: ["disabledWeekends", "disabledWeekends", booleanAttribute], disabledDates: "disabledDates", focusedMonth: "focusedMonth", focusedYear: "focusedYear", size: "size", showWeekNumbers: ["showWeekNumbers", "showWeekNumbers", booleanAttribute], hideExtraneousDays: ["hideExtraneousDays", "hideExtraneousDays", booleanAttribute], hideDayNames: ["hideDayNames", "hideDayNames", booleanAttribute], customizedDates: "customizedDates", label: "label", dateLabelTemplate: "dateLabelTemplate", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { change: "change", gdsDateFocused: "gdsDateFocused" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1135
+ };
1136
+ GdsCalendarComponent = __decorate([
1137
+ ProxyInputs(['value', 'min', 'max', 'focusedDate', 'disabledWeekends', 'disabledDates', 'focusedMonth', 'focusedYear', 'size', 'showWeekNumbers', 'hideExtraneousDays', 'hideDayNames', 'customizedDates', 'label', 'dateLabelTemplate', 'syncFirstRender']),
1138
+ __metadata("design:paramtypes", [])
1139
+ ], GdsCalendarComponent);
1140
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsCalendarComponent, decorators: [{
1141
+ type: Component,
1142
+ args: [{
1143
+ selector: 'gds-calendar',
1144
+ standalone: true,
1145
+ changeDetection: ChangeDetectionStrategy.OnPush,
1146
+ template: `<ng-content></ng-content>`
1147
+ }]
1148
+ }], ctorParameters: () => [], propDecorators: { value: [{
1149
+ type: Input
1150
+ }], min: [{
1151
+ type: Input
1152
+ }], max: [{
1153
+ type: Input
1154
+ }], focusedDate: [{
1155
+ type: Input
1156
+ }], disabledWeekends: [{
1157
+ type: Input,
1158
+ args: [{ transform: booleanAttribute }]
1159
+ }], disabledDates: [{
1160
+ type: Input
1161
+ }], focusedMonth: [{
1162
+ type: Input
1163
+ }], focusedYear: [{
1164
+ type: Input
1165
+ }], size: [{
1166
+ type: Input
1167
+ }], showWeekNumbers: [{
1168
+ type: Input,
1169
+ args: [{ transform: booleanAttribute }]
1170
+ }], hideExtraneousDays: [{
1171
+ type: Input,
1172
+ args: [{ transform: booleanAttribute }]
1173
+ }], hideDayNames: [{
1174
+ type: Input,
1175
+ args: [{ transform: booleanAttribute }]
1176
+ }], customizedDates: [{
1177
+ type: Input
1178
+ }], label: [{
1179
+ type: Input
1180
+ }], dateLabelTemplate: [{
1181
+ type: Input
1182
+ }], syncFirstRender: [{
1183
+ type: Input,
1184
+ args: [{ transform: booleanAttribute }]
1185
+ }], change: [{
1186
+ type: Output
1187
+ }], gdsDateFocused: [{
1188
+ type: Output
1189
+ }] } });
1190
+
1191
+ /**
1192
+ * GdsCalendarComponent - Angular wrapper for gds-calendar
1193
+ *
1194
+ *
1195
+ * Auto-generated from Custom Elements Manifest
1196
+ */
1197
+
1197
1198
  /**
1198
1199
  * Angular wrapper for the gds-card web component
1199
1200
  * A container for content representing a single entity. e.g. a contact, article, or task.
@@ -1898,36 +1899,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
1898
1899
  */
1899
1900
 
1900
1901
  /**
1901
- * Angular wrapper for the gds-context-menu web component
1902
+ * Angular wrapper for the gds-datepicker web component
1902
1903
  *
1903
1904
  */
1904
- let GdsContextMenuComponent = class GdsContextMenuComponent {
1905
- get element() {
1906
- return this.elementRef.nativeElement;
1907
- }
1905
+ let GdsDatepickerComponent = class GdsDatepickerComponent extends GdsFormControlBase {
1908
1906
  constructor() {
1909
- this.elementRef = inject((ElementRef));
1910
- this.zone = inject(NgZone);
1911
- this.cdr = inject(ChangeDetectorRef);
1912
- /** Fired when a menu item is clicked. */
1913
- this.gdsMenuItemClick = new EventEmitter();
1914
- /** Fired when the menu is opened or closed. */
1907
+ super(...arguments);
1908
+ /** Fired when the value of the dropdown is changed through user interaction (not when value prop is set programatically). */
1909
+ this.change = new EventEmitter();
1910
+ /** Fired when the dropdown is opened or closed. */
1915
1911
  this.gdsUiState = new EventEmitter();
1916
- this.cdr.detach();
1912
+ }
1913
+ get element() {
1914
+ return this.elementRef.nativeElement;
1917
1915
  }
1918
1916
  ngOnInit() {
1917
+ super.ngOnInit();
1919
1918
  // Define the custom element
1920
1919
  try {
1921
- GdsContextMenu.define();
1920
+ GdsDatepicker.define();
1922
1921
  }
1923
1922
  catch (e) {
1924
1923
  // Component may not be available in this version of green-core
1925
- console.warn('Failed to define gds-context-menu:', e);
1924
+ console.warn('Failed to define gds-datepicker:', e);
1926
1925
  }
1927
1926
  // Set up event listeners
1928
- this.elementRef.nativeElement.addEventListener('gds-menu-item-click', (event) => {
1929
- this.gdsMenuItemClick.emit(event);
1930
- });
1931
1927
  this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
1932
1928
  this.gdsUiState.emit(event);
1933
1929
  });
@@ -1936,34 +1932,46 @@ let GdsContextMenuComponent = class GdsContextMenuComponent {
1936
1932
  // Implementation added by @ProxyInputs decorator
1937
1933
  }
1938
1934
  ngAfterViewInit() {
1939
- // Implementation added by @ProxyInputs decorator
1935
+ super.ngAfterViewInit();
1940
1936
  }
1941
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1942
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsContextMenuComponent, isStandalone: true, selector: "gds-context-menu", inputs: { open: ["open", "open", booleanAttribute], buttonLabel: "buttonLabel", showLabel: ["showLabel", "showLabel", booleanAttribute], label: "label", placement: "placement", 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] }, outputs: { gdsMenuItemClick: "gdsMenuItemClick", gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1937
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsDatepickerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1938
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsDatepickerComponent, isStandalone: true, selector: "gds-datepicker", inputs: { width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", value: "value", min: "min", max: "max", open: ["open", "open", booleanAttribute], supportingText: "supportingText", size: "size", plain: ["plain", "plain", booleanAttribute], showWeekNumbers: ["showWeekNumbers", "showWeekNumbers", booleanAttribute], hideLabel: ["hideLabel", "hideLabel", booleanAttribute], clearable: ["clearable", "clearable", booleanAttribute], hideTodayButton: ["hideTodayButton", "hideTodayButton", booleanAttribute], utcHours: "utcHours", dateformat: "dateformat", disabledWeekends: ["disabledWeekends", "disabledWeekends", booleanAttribute], disabledDates: "disabledDates", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], test_calendarButton: "test_calendarButton", test_clearButton: "test_clearButton", test_todayButton: "test_todayButton", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { change: "change", gdsUiState: "gdsUiState" }, providers: [
1939
+ {
1940
+ provide: NG_VALUE_ACCESSOR,
1941
+ useExisting: forwardRef(() => GdsDatepickerComponent),
1942
+ multi: true,
1943
+ },
1944
+ ], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1943
1945
  };
1944
- GdsContextMenuComponent = __decorate([
1945
- ProxyInputs(['open', 'buttonLabel', 'showLabel', 'label', 'placement', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
1946
- __metadata("design:paramtypes", [])
1947
- ], GdsContextMenuComponent);
1948
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsContextMenuComponent, decorators: [{
1946
+ GdsDatepickerComponent = __decorate([
1947
+ ProxyInputs(['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', 'value', 'min', 'max', 'open', 'supportingText', 'size', 'plain', 'showWeekNumbers', 'hideLabel', 'clearable', 'hideTodayButton', 'utcHours', 'dateformat', 'disabledWeekends', 'disabledDates', 'showExtendedSupportingText', 'test_calendarButton', 'test_clearButton', 'test_todayButton', 'validator', 'required', 'errorMessage', 'invalid', 'label', 'name', 'disabled', 'syncFirstRender'])
1948
+ ], GdsDatepickerComponent);
1949
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsDatepickerComponent, decorators: [{
1949
1950
  type: Component,
1950
1951
  args: [{
1951
- selector: 'gds-context-menu',
1952
+ selector: 'gds-datepicker',
1952
1953
  standalone: true,
1953
1954
  changeDetection: ChangeDetectionStrategy.OnPush,
1954
- template: `<ng-content></ng-content>`
1955
+ template: `<ng-content></ng-content>`,
1956
+ providers: [
1957
+ {
1958
+ provide: NG_VALUE_ACCESSOR,
1959
+ useExisting: forwardRef(() => GdsDatepickerComponent),
1960
+ multi: true,
1961
+ },
1962
+ ]
1955
1963
  }]
1956
- }], ctorParameters: () => [], propDecorators: { open: [{
1957
- type: Input,
1958
- args: [{ transform: booleanAttribute }]
1959
- }], buttonLabel: [{
1964
+ }], propDecorators: { width: [{
1960
1965
  type: Input
1961
- }], showLabel: [{
1962
- type: Input,
1963
- args: [{ transform: booleanAttribute }]
1964
- }], label: [{
1966
+ }], minWidth: [{
1965
1967
  type: Input
1966
- }], placement: [{
1968
+ }], maxWidth: [{
1969
+ type: Input
1970
+ }], inlineSize: [{
1971
+ type: Input
1972
+ }], minInlineSize: [{
1973
+ type: Input
1974
+ }], maxInlineSize: [{
1967
1975
  type: Input
1968
1976
  }], margin: [{
1969
1977
  type: Input
@@ -1987,48 +1995,115 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
1987
1995
  type: Input
1988
1996
  }], order: [{
1989
1997
  type: Input
1998
+ }], value: [{
1999
+ type: Input
2000
+ }], min: [{
2001
+ type: Input
2002
+ }], max: [{
2003
+ type: Input
2004
+ }], open: [{
2005
+ type: Input,
2006
+ args: [{ transform: booleanAttribute }]
2007
+ }], supportingText: [{
2008
+ type: Input
2009
+ }], size: [{
2010
+ type: Input
2011
+ }], plain: [{
2012
+ type: Input,
2013
+ args: [{ transform: booleanAttribute }]
2014
+ }], showWeekNumbers: [{
2015
+ type: Input,
2016
+ args: [{ transform: booleanAttribute }]
2017
+ }], hideLabel: [{
2018
+ type: Input,
2019
+ args: [{ transform: booleanAttribute }]
2020
+ }], clearable: [{
2021
+ type: Input,
2022
+ args: [{ transform: booleanAttribute }]
2023
+ }], hideTodayButton: [{
2024
+ type: Input,
2025
+ args: [{ transform: booleanAttribute }]
2026
+ }], utcHours: [{
2027
+ type: Input
2028
+ }], dateformat: [{
2029
+ type: Input
2030
+ }], disabledWeekends: [{
2031
+ type: Input,
2032
+ args: [{ transform: booleanAttribute }]
2033
+ }], disabledDates: [{
2034
+ type: Input
2035
+ }], showExtendedSupportingText: [{
2036
+ type: Input,
2037
+ args: [{ transform: booleanAttribute }]
2038
+ }], test_calendarButton: [{
2039
+ type: Input
2040
+ }], test_clearButton: [{
2041
+ type: Input
2042
+ }], test_todayButton: [{
2043
+ type: Input
2044
+ }], validator: [{
2045
+ type: Input
2046
+ }], required: [{
2047
+ type: Input,
2048
+ args: [{ transform: booleanAttribute }]
2049
+ }], errorMessage: [{
2050
+ type: Input
2051
+ }], invalid: [{
2052
+ type: Input
2053
+ }], label: [{
2054
+ type: Input
2055
+ }], name: [{
2056
+ type: Input
2057
+ }], disabled: [{
2058
+ type: Input,
2059
+ args: [{ transform: booleanAttribute }]
1990
2060
  }], syncFirstRender: [{
1991
2061
  type: Input,
1992
2062
  args: [{ transform: booleanAttribute }]
1993
- }], gdsMenuItemClick: [{
2063
+ }], change: [{
1994
2064
  type: Output
1995
2065
  }], gdsUiState: [{
1996
2066
  type: Output
1997
2067
  }] } });
1998
2068
 
1999
2069
  /**
2000
- * GdsContextMenuComponent - Angular wrapper for gds-context-menu
2070
+ * GdsDatepickerComponent - Angular wrapper for gds-datepicker
2001
2071
  *
2002
2072
  *
2003
2073
  * Auto-generated from Custom Elements Manifest
2004
2074
  */
2005
2075
 
2006
2076
  /**
2007
- * Angular wrapper for the gds-datepicker web component
2077
+ * Angular wrapper for the gds-context-menu web component
2008
2078
  *
2009
2079
  */
2010
- let GdsDatepickerComponent = class GdsDatepickerComponent extends GdsFormControlBase {
2011
- constructor() {
2012
- super(...arguments);
2013
- /** Fired when the value of the dropdown is changed through user interaction (not when value prop is set programatically). */
2014
- this.change = new EventEmitter();
2015
- /** Fired when the dropdown is opened or closed. */
2016
- this.gdsUiState = new EventEmitter();
2017
- }
2080
+ let GdsContextMenuComponent = class GdsContextMenuComponent {
2018
2081
  get element() {
2019
2082
  return this.elementRef.nativeElement;
2020
2083
  }
2084
+ constructor() {
2085
+ this.elementRef = inject((ElementRef));
2086
+ this.zone = inject(NgZone);
2087
+ this.cdr = inject(ChangeDetectorRef);
2088
+ /** Fired when a menu item is clicked. */
2089
+ this.gdsMenuItemClick = new EventEmitter();
2090
+ /** Fired when the menu is opened or closed. */
2091
+ this.gdsUiState = new EventEmitter();
2092
+ this.cdr.detach();
2093
+ }
2021
2094
  ngOnInit() {
2022
- super.ngOnInit();
2023
2095
  // Define the custom element
2024
2096
  try {
2025
- GdsDatepicker.define();
2097
+ GdsContextMenu.define();
2026
2098
  }
2027
2099
  catch (e) {
2028
2100
  // Component may not be available in this version of green-core
2029
- console.warn('Failed to define gds-datepicker:', e);
2101
+ console.warn('Failed to define gds-context-menu:', e);
2030
2102
  }
2031
2103
  // Set up event listeners
2104
+ this.elementRef.nativeElement.addEventListener('gds-menu-item-click', (event) => {
2105
+ this.gdsMenuItemClick.emit(event);
2106
+ });
2032
2107
  this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
2033
2108
  this.gdsUiState.emit(event);
2034
2109
  });
@@ -2037,46 +2112,36 @@ let GdsDatepickerComponent = class GdsDatepickerComponent extends GdsFormControl
2037
2112
  // Implementation added by @ProxyInputs decorator
2038
2113
  }
2039
2114
  ngAfterViewInit() {
2040
- super.ngAfterViewInit();
2115
+ // Implementation added by @ProxyInputs decorator
2041
2116
  }
2042
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsDatepickerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2043
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsDatepickerComponent, isStandalone: true, selector: "gds-datepicker", inputs: { width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", value: "value", min: "min", max: "max", open: ["open", "open", booleanAttribute], supportingText: "supportingText", size: "size", plain: ["plain", "plain", booleanAttribute], showWeekNumbers: ["showWeekNumbers", "showWeekNumbers", booleanAttribute], hideLabel: ["hideLabel", "hideLabel", booleanAttribute], clearable: ["clearable", "clearable", booleanAttribute], hideTodayButton: ["hideTodayButton", "hideTodayButton", booleanAttribute], utcHours: "utcHours", dateformat: "dateformat", disabledWeekends: ["disabledWeekends", "disabledWeekends", booleanAttribute], disabledDates: "disabledDates", showExtendedSupportingText: ["showExtendedSupportingText", "showExtendedSupportingText", booleanAttribute], test_calendarButton: "test_calendarButton", test_clearButton: "test_clearButton", test_todayButton: "test_todayButton", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { change: "change", gdsUiState: "gdsUiState" }, providers: [
2044
- {
2045
- provide: NG_VALUE_ACCESSOR,
2046
- useExisting: forwardRef(() => GdsDatepickerComponent),
2047
- multi: true,
2048
- },
2049
- ], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2117
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2118
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsContextMenuComponent, isStandalone: true, selector: "gds-context-menu", inputs: { open: ["open", "open", booleanAttribute], buttonLabel: "buttonLabel", showLabel: ["showLabel", "showLabel", booleanAttribute], label: "label", maxHeight: "maxHeight", placement: "placement", 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] }, outputs: { gdsMenuItemClick: "gdsMenuItemClick", gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2050
2119
  };
2051
- GdsDatepickerComponent = __decorate([
2052
- ProxyInputs(['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', 'value', 'min', 'max', 'open', 'supportingText', 'size', 'plain', 'showWeekNumbers', 'hideLabel', 'clearable', 'hideTodayButton', 'utcHours', 'dateformat', 'disabledWeekends', 'disabledDates', 'showExtendedSupportingText', 'test_calendarButton', 'test_clearButton', 'test_todayButton', 'validator', 'required', 'errorMessage', 'invalid', 'label', 'name', 'disabled', 'syncFirstRender'])
2053
- ], GdsDatepickerComponent);
2054
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsDatepickerComponent, decorators: [{
2120
+ GdsContextMenuComponent = __decorate([
2121
+ ProxyInputs(['open', 'buttonLabel', 'showLabel', 'label', 'maxHeight', 'placement', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
2122
+ __metadata("design:paramtypes", [])
2123
+ ], GdsContextMenuComponent);
2124
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsContextMenuComponent, decorators: [{
2055
2125
  type: Component,
2056
2126
  args: [{
2057
- selector: 'gds-datepicker',
2127
+ selector: 'gds-context-menu',
2058
2128
  standalone: true,
2059
2129
  changeDetection: ChangeDetectionStrategy.OnPush,
2060
- template: `<ng-content></ng-content>`,
2061
- providers: [
2062
- {
2063
- provide: NG_VALUE_ACCESSOR,
2064
- useExisting: forwardRef(() => GdsDatepickerComponent),
2065
- multi: true,
2066
- },
2067
- ]
2130
+ template: `<ng-content></ng-content>`
2068
2131
  }]
2069
- }], propDecorators: { width: [{
2070
- type: Input
2071
- }], minWidth: [{
2072
- type: Input
2073
- }], maxWidth: [{
2132
+ }], ctorParameters: () => [], propDecorators: { open: [{
2133
+ type: Input,
2134
+ args: [{ transform: booleanAttribute }]
2135
+ }], buttonLabel: [{
2074
2136
  type: Input
2075
- }], inlineSize: [{
2137
+ }], showLabel: [{
2138
+ type: Input,
2139
+ args: [{ transform: booleanAttribute }]
2140
+ }], label: [{
2076
2141
  type: Input
2077
- }], minInlineSize: [{
2142
+ }], maxHeight: [{
2078
2143
  type: Input
2079
- }], maxInlineSize: [{
2144
+ }], placement: [{
2080
2145
  type: Input
2081
2146
  }], margin: [{
2082
2147
  type: Input
@@ -2100,79 +2165,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
2100
2165
  type: Input
2101
2166
  }], order: [{
2102
2167
  type: Input
2103
- }], value: [{
2104
- type: Input
2105
- }], min: [{
2106
- type: Input
2107
- }], max: [{
2108
- type: Input
2109
- }], open: [{
2110
- type: Input,
2111
- args: [{ transform: booleanAttribute }]
2112
- }], supportingText: [{
2113
- type: Input
2114
- }], size: [{
2115
- type: Input
2116
- }], plain: [{
2117
- type: Input,
2118
- args: [{ transform: booleanAttribute }]
2119
- }], showWeekNumbers: [{
2120
- type: Input,
2121
- args: [{ transform: booleanAttribute }]
2122
- }], hideLabel: [{
2123
- type: Input,
2124
- args: [{ transform: booleanAttribute }]
2125
- }], clearable: [{
2126
- type: Input,
2127
- args: [{ transform: booleanAttribute }]
2128
- }], hideTodayButton: [{
2129
- type: Input,
2130
- args: [{ transform: booleanAttribute }]
2131
- }], utcHours: [{
2132
- type: Input
2133
- }], dateformat: [{
2134
- type: Input
2135
- }], disabledWeekends: [{
2136
- type: Input,
2137
- args: [{ transform: booleanAttribute }]
2138
- }], disabledDates: [{
2139
- type: Input
2140
- }], showExtendedSupportingText: [{
2141
- type: Input,
2142
- args: [{ transform: booleanAttribute }]
2143
- }], test_calendarButton: [{
2144
- type: Input
2145
- }], test_clearButton: [{
2146
- type: Input
2147
- }], test_todayButton: [{
2148
- type: Input
2149
- }], validator: [{
2150
- type: Input
2151
- }], required: [{
2152
- type: Input,
2153
- args: [{ transform: booleanAttribute }]
2154
- }], errorMessage: [{
2155
- type: Input
2156
- }], invalid: [{
2157
- type: Input
2158
- }], label: [{
2159
- type: Input
2160
- }], name: [{
2161
- type: Input
2162
- }], disabled: [{
2163
- type: Input,
2164
- args: [{ transform: booleanAttribute }]
2165
2168
  }], syncFirstRender: [{
2166
2169
  type: Input,
2167
2170
  args: [{ transform: booleanAttribute }]
2168
- }], change: [{
2171
+ }], gdsMenuItemClick: [{
2169
2172
  type: Output
2170
2173
  }], gdsUiState: [{
2171
2174
  type: Output
2172
2175
  }] } });
2173
2176
 
2174
2177
  /**
2175
- * GdsDatepickerComponent - Angular wrapper for gds-datepicker
2178
+ * GdsContextMenuComponent - Angular wrapper for gds-context-menu
2176
2179
  *
2177
2180
  *
2178
2181
  * Auto-generated from Custom Elements Manifest
@@ -7309,198 +7312,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7309
7312
  * Auto-generated from Custom Elements Manifest
7310
7313
  */
7311
7314
 
7312
- /**
7313
- * Angular wrapper for the gds-sensitive-account web component
7314
- *
7315
- */
7316
- let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
7317
- get element() {
7318
- return this.elementRef.nativeElement;
7319
- }
7320
- constructor() {
7321
- this.elementRef = inject((ElementRef));
7322
- this.zone = inject(NgZone);
7323
- this.cdr = inject(ChangeDetectorRef);
7324
- this.cdr.detach();
7325
- }
7326
- ngOnInit() {
7327
- // Define the custom element
7328
- try {
7329
- GdsSensitiveAccount.define();
7330
- }
7331
- catch (e) {
7332
- // Component may not be available in this version of green-core
7333
- console.warn('Failed to define gds-sensitive-account:', e);
7334
- }
7335
- }
7336
- ngOnChanges(changes) {
7337
- // Implementation added by @ProxyInputs decorator
7338
- }
7339
- ngAfterViewInit() {
7340
- // Implementation added by @ProxyInputs decorator
7341
- }
7342
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7343
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveAccountComponent, isStandalone: true, selector: "gds-sensitive-account", inputs: { hide: ["hide", "hide", booleanAttribute], account: "account", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7344
- };
7345
- GdsSensitiveAccountComponent = __decorate([
7346
- ProxyInputs(['hide', 'account', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
7347
- __metadata("design:paramtypes", [])
7348
- ], GdsSensitiveAccountComponent);
7349
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, decorators: [{
7350
- type: Component,
7351
- args: [{
7352
- selector: 'gds-sensitive-account',
7353
- standalone: true,
7354
- changeDetection: ChangeDetectionStrategy.OnPush,
7355
- template: `<ng-content></ng-content>`
7356
- }]
7357
- }], ctorParameters: () => [], propDecorators: { hide: [{
7358
- type: Input,
7359
- args: [{ transform: booleanAttribute }]
7360
- }], account: [{
7361
- type: Input
7362
- }], tag: [{
7363
- type: Input
7364
- }], font: [{
7365
- type: Input
7366
- }], fontWeight: [{
7367
- type: Input
7368
- }], textTransform: [{
7369
- type: Input
7370
- }], textDecoration: [{
7371
- type: Input
7372
- }], lines: [{
7373
- type: Input
7374
- }], width: [{
7375
- type: Input
7376
- }], minWidth: [{
7377
- type: Input
7378
- }], maxWidth: [{
7379
- type: Input
7380
- }], inlineSize: [{
7381
- type: Input
7382
- }], minInlineSize: [{
7383
- type: Input
7384
- }], maxInlineSize: [{
7385
- type: Input
7386
- }], height: [{
7387
- type: Input
7388
- }], minHeight: [{
7389
- type: Input
7390
- }], maxHeight: [{
7391
- type: Input
7392
- }], blockSize: [{
7393
- type: Input
7394
- }], minBlockSize: [{
7395
- type: Input
7396
- }], maxBlockSize: [{
7397
- type: Input
7398
- }], margin: [{
7399
- type: Input
7400
- }], marginInline: [{
7401
- type: Input
7402
- }], marginBlock: [{
7403
- type: Input
7404
- }], padding: [{
7405
- type: Input
7406
- }], paddingInline: [{
7407
- type: Input
7408
- }], paddingBlock: [{
7409
- type: Input
7410
- }], alignSelf: [{
7411
- type: Input
7412
- }], justifySelf: [{
7413
- type: Input
7414
- }], placeSelf: [{
7415
- type: Input
7416
- }], gridColumn: [{
7417
- type: Input
7418
- }], gridRow: [{
7419
- type: Input
7420
- }], gridArea: [{
7421
- type: Input
7422
- }], flex: [{
7423
- type: Input
7424
- }], order: [{
7425
- type: Input
7426
- }], position: [{
7427
- type: Input
7428
- }], transform: [{
7429
- type: Input
7430
- }], inset: [{
7431
- type: Input
7432
- }], display: [{
7433
- type: Input
7434
- }], level: [{
7435
- type: Input
7436
- }], color: [{
7437
- type: Input
7438
- }], background: [{
7439
- type: Input
7440
- }], border: [{
7441
- type: Input
7442
- }], borderColor: [{
7443
- type: Input
7444
- }], borderWidth: [{
7445
- type: Input
7446
- }], borderStyle: [{
7447
- type: Input
7448
- }], borderRadius: [{
7449
- type: Input
7450
- }], boxShadow: [{
7451
- type: Input
7452
- }], opacity: [{
7453
- type: Input
7454
- }], overflow: [{
7455
- type: Input
7456
- }], boxSizing: [{
7457
- type: Input
7458
- }], zIndex: [{
7459
- type: Input
7460
- }], textAlign: [{
7461
- type: Input
7462
- }], textWrap: [{
7463
- type: Input
7464
- }], overflowWrap: [{
7465
- type: Input
7466
- }], whiteSpace: [{
7467
- type: Input
7468
- }], gap: [{
7469
- type: Input
7470
- }], alignItems: [{
7471
- type: Input
7472
- }], alignContent: [{
7473
- type: Input
7474
- }], justifyContent: [{
7475
- type: Input
7476
- }], justifyItems: [{
7477
- type: Input
7478
- }], flexDirection: [{
7479
- type: Input
7480
- }], flexWrap: [{
7481
- type: Input
7482
- }], placeItems: [{
7483
- type: Input
7484
- }], placeContent: [{
7485
- type: Input
7486
- }], aspectRatio: [{
7487
- type: Input
7488
- }], cursor: [{
7489
- type: Input
7490
- }], pointerEvents: [{
7491
- type: Input
7492
- }], syncFirstRender: [{
7493
- type: Input,
7494
- args: [{ transform: booleanAttribute }]
7495
- }] } });
7496
-
7497
- /**
7498
- * GdsSensitiveAccountComponent - Angular wrapper for gds-sensitive-account
7499
- *
7500
- *
7501
- * Auto-generated from Custom Elements Manifest
7502
- */
7503
-
7504
7315
  /**
7505
7316
  * Angular wrapper for the gds-radio-group web component
7506
7317
  *
@@ -7717,6 +7528,198 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7717
7528
  * Auto-generated from Custom Elements Manifest
7718
7529
  */
7719
7530
 
7531
+ /**
7532
+ * Angular wrapper for the gds-sensitive-account web component
7533
+ *
7534
+ */
7535
+ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
7536
+ get element() {
7537
+ return this.elementRef.nativeElement;
7538
+ }
7539
+ constructor() {
7540
+ this.elementRef = inject((ElementRef));
7541
+ this.zone = inject(NgZone);
7542
+ this.cdr = inject(ChangeDetectorRef);
7543
+ this.cdr.detach();
7544
+ }
7545
+ ngOnInit() {
7546
+ // Define the custom element
7547
+ try {
7548
+ GdsSensitiveAccount.define();
7549
+ }
7550
+ catch (e) {
7551
+ // Component may not be available in this version of green-core
7552
+ console.warn('Failed to define gds-sensitive-account:', e);
7553
+ }
7554
+ }
7555
+ ngOnChanges(changes) {
7556
+ // Implementation added by @ProxyInputs decorator
7557
+ }
7558
+ ngAfterViewInit() {
7559
+ // Implementation added by @ProxyInputs decorator
7560
+ }
7561
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7562
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveAccountComponent, isStandalone: true, selector: "gds-sensitive-account", inputs: { hide: ["hide", "hide", booleanAttribute], account: "account", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7563
+ };
7564
+ GdsSensitiveAccountComponent = __decorate([
7565
+ ProxyInputs(['hide', 'account', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
7566
+ __metadata("design:paramtypes", [])
7567
+ ], GdsSensitiveAccountComponent);
7568
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, decorators: [{
7569
+ type: Component,
7570
+ args: [{
7571
+ selector: 'gds-sensitive-account',
7572
+ standalone: true,
7573
+ changeDetection: ChangeDetectionStrategy.OnPush,
7574
+ template: `<ng-content></ng-content>`
7575
+ }]
7576
+ }], ctorParameters: () => [], propDecorators: { hide: [{
7577
+ type: Input,
7578
+ args: [{ transform: booleanAttribute }]
7579
+ }], account: [{
7580
+ type: Input
7581
+ }], tag: [{
7582
+ type: Input
7583
+ }], font: [{
7584
+ type: Input
7585
+ }], fontWeight: [{
7586
+ type: Input
7587
+ }], textTransform: [{
7588
+ type: Input
7589
+ }], textDecoration: [{
7590
+ type: Input
7591
+ }], lines: [{
7592
+ type: Input
7593
+ }], width: [{
7594
+ type: Input
7595
+ }], minWidth: [{
7596
+ type: Input
7597
+ }], maxWidth: [{
7598
+ type: Input
7599
+ }], inlineSize: [{
7600
+ type: Input
7601
+ }], minInlineSize: [{
7602
+ type: Input
7603
+ }], maxInlineSize: [{
7604
+ type: Input
7605
+ }], height: [{
7606
+ type: Input
7607
+ }], minHeight: [{
7608
+ type: Input
7609
+ }], maxHeight: [{
7610
+ type: Input
7611
+ }], blockSize: [{
7612
+ type: Input
7613
+ }], minBlockSize: [{
7614
+ type: Input
7615
+ }], maxBlockSize: [{
7616
+ type: Input
7617
+ }], margin: [{
7618
+ type: Input
7619
+ }], marginInline: [{
7620
+ type: Input
7621
+ }], marginBlock: [{
7622
+ type: Input
7623
+ }], padding: [{
7624
+ type: Input
7625
+ }], paddingInline: [{
7626
+ type: Input
7627
+ }], paddingBlock: [{
7628
+ type: Input
7629
+ }], alignSelf: [{
7630
+ type: Input
7631
+ }], justifySelf: [{
7632
+ type: Input
7633
+ }], placeSelf: [{
7634
+ type: Input
7635
+ }], gridColumn: [{
7636
+ type: Input
7637
+ }], gridRow: [{
7638
+ type: Input
7639
+ }], gridArea: [{
7640
+ type: Input
7641
+ }], flex: [{
7642
+ type: Input
7643
+ }], order: [{
7644
+ type: Input
7645
+ }], position: [{
7646
+ type: Input
7647
+ }], transform: [{
7648
+ type: Input
7649
+ }], inset: [{
7650
+ type: Input
7651
+ }], display: [{
7652
+ type: Input
7653
+ }], level: [{
7654
+ type: Input
7655
+ }], color: [{
7656
+ type: Input
7657
+ }], background: [{
7658
+ type: Input
7659
+ }], border: [{
7660
+ type: Input
7661
+ }], borderColor: [{
7662
+ type: Input
7663
+ }], borderWidth: [{
7664
+ type: Input
7665
+ }], borderStyle: [{
7666
+ type: Input
7667
+ }], borderRadius: [{
7668
+ type: Input
7669
+ }], boxShadow: [{
7670
+ type: Input
7671
+ }], opacity: [{
7672
+ type: Input
7673
+ }], overflow: [{
7674
+ type: Input
7675
+ }], boxSizing: [{
7676
+ type: Input
7677
+ }], zIndex: [{
7678
+ type: Input
7679
+ }], textAlign: [{
7680
+ type: Input
7681
+ }], textWrap: [{
7682
+ type: Input
7683
+ }], overflowWrap: [{
7684
+ type: Input
7685
+ }], whiteSpace: [{
7686
+ type: Input
7687
+ }], gap: [{
7688
+ type: Input
7689
+ }], alignItems: [{
7690
+ type: Input
7691
+ }], alignContent: [{
7692
+ type: Input
7693
+ }], justifyContent: [{
7694
+ type: Input
7695
+ }], justifyItems: [{
7696
+ type: Input
7697
+ }], flexDirection: [{
7698
+ type: Input
7699
+ }], flexWrap: [{
7700
+ type: Input
7701
+ }], placeItems: [{
7702
+ type: Input
7703
+ }], placeContent: [{
7704
+ type: Input
7705
+ }], aspectRatio: [{
7706
+ type: Input
7707
+ }], cursor: [{
7708
+ type: Input
7709
+ }], pointerEvents: [{
7710
+ type: Input
7711
+ }], syncFirstRender: [{
7712
+ type: Input,
7713
+ args: [{ transform: booleanAttribute }]
7714
+ }] } });
7715
+
7716
+ /**
7717
+ * GdsSensitiveAccountComponent - Angular wrapper for gds-sensitive-account
7718
+ *
7719
+ *
7720
+ * Auto-generated from Custom Elements Manifest
7721
+ */
7722
+
7720
7723
  /**
7721
7724
  * Angular wrapper for the gds-sensitive-date web component
7722
7725
  *
@@ -16575,6 +16578,98 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
16575
16578
  * Auto-generated from Custom Elements Manifest
16576
16579
  */
16577
16580
 
16581
+ /**
16582
+ * Angular wrapper for the gds-icon-chevron-grabber-vertical-reversed web component
16583
+ *
16584
+ */
16585
+ let IconChevronGrabberVerticalReversedComponent = class IconChevronGrabberVerticalReversedComponent {
16586
+ get element() {
16587
+ return this.elementRef.nativeElement;
16588
+ }
16589
+ constructor() {
16590
+ this.elementRef = inject((ElementRef));
16591
+ this.zone = inject(NgZone);
16592
+ this.cdr = inject(ChangeDetectorRef);
16593
+ this.cdr.detach();
16594
+ }
16595
+ ngOnInit() {
16596
+ // Define the custom element
16597
+ try {
16598
+ IconChevronGrabberVerticalReversed.define();
16599
+ }
16600
+ catch (e) {
16601
+ // Component may not be available in this version of green-core
16602
+ console.warn('Failed to define gds-icon-chevron-grabber-vertical-reversed:', e);
16603
+ }
16604
+ }
16605
+ ngOnChanges(changes) {
16606
+ // Implementation added by @ProxyInputs decorator
16607
+ }
16608
+ ngAfterViewInit() {
16609
+ // Implementation added by @ProxyInputs decorator
16610
+ }
16611
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: IconChevronGrabberVerticalReversedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
16612
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: IconChevronGrabberVerticalReversedComponent, isStandalone: true, selector: "gds-icon-chevron-grabber-vertical-reversed", 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 }); }
16613
+ };
16614
+ IconChevronGrabberVerticalReversedComponent = __decorate([
16615
+ 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']),
16616
+ __metadata("design:paramtypes", [])
16617
+ ], IconChevronGrabberVerticalReversedComponent);
16618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: IconChevronGrabberVerticalReversedComponent, decorators: [{
16619
+ type: Component,
16620
+ args: [{
16621
+ selector: 'gds-icon-chevron-grabber-vertical-reversed',
16622
+ standalone: true,
16623
+ changeDetection: ChangeDetectionStrategy.OnPush,
16624
+ template: `<ng-content></ng-content>`
16625
+ }]
16626
+ }], ctorParameters: () => [], propDecorators: { margin: [{
16627
+ type: Input
16628
+ }], marginInline: [{
16629
+ type: Input
16630
+ }], marginBlock: [{
16631
+ type: Input
16632
+ }], alignSelf: [{
16633
+ type: Input
16634
+ }], justifySelf: [{
16635
+ type: Input
16636
+ }], placeSelf: [{
16637
+ type: Input
16638
+ }], gridColumn: [{
16639
+ type: Input
16640
+ }], gridRow: [{
16641
+ type: Input
16642
+ }], gridArea: [{
16643
+ type: Input
16644
+ }], flex: [{
16645
+ type: Input
16646
+ }], order: [{
16647
+ type: Input
16648
+ }], size: [{
16649
+ type: Input
16650
+ }], solid: [{
16651
+ type: Input,
16652
+ args: [{ transform: booleanAttribute }]
16653
+ }], stroke: [{
16654
+ type: Input
16655
+ }], level: [{
16656
+ type: Input
16657
+ }], color: [{
16658
+ type: Input
16659
+ }], label: [{
16660
+ type: Input
16661
+ }], syncFirstRender: [{
16662
+ type: Input,
16663
+ args: [{ transform: booleanAttribute }]
16664
+ }] } });
16665
+
16666
+ /**
16667
+ * IconChevronGrabberVerticalReversedComponent - Angular wrapper for gds-icon-chevron-grabber-vertical-reversed
16668
+ *
16669
+ *
16670
+ * Auto-generated from Custom Elements Manifest
16671
+ */
16672
+
16578
16673
  /**
16579
16674
  * Angular wrapper for the gds-icon-chevron-grabber-vertical web component
16580
16675
  *
@@ -36571,15 +36666,15 @@ class GreenCoreNgModule {
36571
36666
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAlertComponent,
36572
36667
  GdsBadgeComponent,
36573
36668
  GdsBlurComponent,
36574
- GdsCalendarComponent,
36575
36669
  GdsButtonComponent,
36576
36670
  GdsBreadcrumbsComponent,
36671
+ GdsCalendarComponent,
36577
36672
  GdsCardComponent,
36578
36673
  GdsCardLinkedComponent,
36579
36674
  GdsCheckboxComponent,
36580
36675
  GdsCoachmarkComponent,
36581
- GdsContextMenuComponent,
36582
36676
  GdsDatepickerComponent,
36677
+ GdsContextMenuComponent,
36583
36678
  GdsDetailsComponent,
36584
36679
  GdsDialogComponent,
36585
36680
  GdsDivComponent,
@@ -36619,9 +36714,9 @@ class GreenCoreNgModule {
36619
36714
  GdsFormattedAccountComponent,
36620
36715
  GdsFormattedDateComponent,
36621
36716
  GdsFormattedNumberComponent,
36622
- GdsSensitiveAccountComponent,
36623
36717
  GdsRadioGroupComponent,
36624
36718
  GdsSegmentComponent,
36719
+ GdsSensitiveAccountComponent,
36625
36720
  GdsSensitiveDateComponent,
36626
36721
  GdsSensitiveNumberComponent,
36627
36722
  IconAiComponent,
@@ -36716,6 +36811,7 @@ class GreenCoreNgModule {
36716
36811
  IconChevronDoubleRightComponent,
36717
36812
  IconChevronDoubleUpComponent,
36718
36813
  IconChevronDownSmallComponent,
36814
+ IconChevronGrabberVerticalReversedComponent,
36719
36815
  IconChevronGrabberVerticalComponent,
36720
36816
  IconChevronLeftSmallComponent,
36721
36817
  IconChevronLeftComponent,
@@ -36936,15 +37032,15 @@ class GreenCoreNgModule {
36936
37032
  GdsOptionComponent], exports: [GdsAlertComponent,
36937
37033
  GdsBadgeComponent,
36938
37034
  GdsBlurComponent,
36939
- GdsCalendarComponent,
36940
37035
  GdsButtonComponent,
36941
37036
  GdsBreadcrumbsComponent,
37037
+ GdsCalendarComponent,
36942
37038
  GdsCardComponent,
36943
37039
  GdsCardLinkedComponent,
36944
37040
  GdsCheckboxComponent,
36945
37041
  GdsCoachmarkComponent,
36946
- GdsContextMenuComponent,
36947
37042
  GdsDatepickerComponent,
37043
+ GdsContextMenuComponent,
36948
37044
  GdsDetailsComponent,
36949
37045
  GdsDialogComponent,
36950
37046
  GdsDivComponent,
@@ -36984,9 +37080,9 @@ class GreenCoreNgModule {
36984
37080
  GdsFormattedAccountComponent,
36985
37081
  GdsFormattedDateComponent,
36986
37082
  GdsFormattedNumberComponent,
36987
- GdsSensitiveAccountComponent,
36988
37083
  GdsRadioGroupComponent,
36989
37084
  GdsSegmentComponent,
37085
+ GdsSensitiveAccountComponent,
36990
37086
  GdsSensitiveDateComponent,
36991
37087
  GdsSensitiveNumberComponent,
36992
37088
  IconAiComponent,
@@ -37081,6 +37177,7 @@ class GreenCoreNgModule {
37081
37177
  IconChevronDoubleRightComponent,
37082
37178
  IconChevronDoubleUpComponent,
37083
37179
  IconChevronDownSmallComponent,
37180
+ IconChevronGrabberVerticalReversedComponent,
37084
37181
  IconChevronGrabberVerticalComponent,
37085
37182
  IconChevronLeftSmallComponent,
37086
37183
  IconChevronLeftComponent,
@@ -37308,15 +37405,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37308
37405
  GdsAlertComponent,
37309
37406
  GdsBadgeComponent,
37310
37407
  GdsBlurComponent,
37311
- GdsCalendarComponent,
37312
37408
  GdsButtonComponent,
37313
37409
  GdsBreadcrumbsComponent,
37410
+ GdsCalendarComponent,
37314
37411
  GdsCardComponent,
37315
37412
  GdsCardLinkedComponent,
37316
37413
  GdsCheckboxComponent,
37317
37414
  GdsCoachmarkComponent,
37318
- GdsContextMenuComponent,
37319
37415
  GdsDatepickerComponent,
37416
+ GdsContextMenuComponent,
37320
37417
  GdsDetailsComponent,
37321
37418
  GdsDialogComponent,
37322
37419
  GdsDivComponent,
@@ -37356,9 +37453,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37356
37453
  GdsFormattedAccountComponent,
37357
37454
  GdsFormattedDateComponent,
37358
37455
  GdsFormattedNumberComponent,
37359
- GdsSensitiveAccountComponent,
37360
37456
  GdsRadioGroupComponent,
37361
37457
  GdsSegmentComponent,
37458
+ GdsSensitiveAccountComponent,
37362
37459
  GdsSensitiveDateComponent,
37363
37460
  GdsSensitiveNumberComponent,
37364
37461
  IconAiComponent,
@@ -37453,6 +37550,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37453
37550
  IconChevronDoubleRightComponent,
37454
37551
  IconChevronDoubleUpComponent,
37455
37552
  IconChevronDownSmallComponent,
37553
+ IconChevronGrabberVerticalReversedComponent,
37456
37554
  IconChevronGrabberVerticalComponent,
37457
37555
  IconChevronLeftSmallComponent,
37458
37556
  IconChevronLeftComponent,
@@ -37676,15 +37774,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37676
37774
  GdsAlertComponent,
37677
37775
  GdsBadgeComponent,
37678
37776
  GdsBlurComponent,
37679
- GdsCalendarComponent,
37680
37777
  GdsButtonComponent,
37681
37778
  GdsBreadcrumbsComponent,
37779
+ GdsCalendarComponent,
37682
37780
  GdsCardComponent,
37683
37781
  GdsCardLinkedComponent,
37684
37782
  GdsCheckboxComponent,
37685
37783
  GdsCoachmarkComponent,
37686
- GdsContextMenuComponent,
37687
37784
  GdsDatepickerComponent,
37785
+ GdsContextMenuComponent,
37688
37786
  GdsDetailsComponent,
37689
37787
  GdsDialogComponent,
37690
37788
  GdsDivComponent,
@@ -37724,9 +37822,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37724
37822
  GdsFormattedAccountComponent,
37725
37823
  GdsFormattedDateComponent,
37726
37824
  GdsFormattedNumberComponent,
37727
- GdsSensitiveAccountComponent,
37728
37825
  GdsRadioGroupComponent,
37729
37826
  GdsSegmentComponent,
37827
+ GdsSensitiveAccountComponent,
37730
37828
  GdsSensitiveDateComponent,
37731
37829
  GdsSensitiveNumberComponent,
37732
37830
  IconAiComponent,
@@ -37821,6 +37919,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37821
37919
  IconChevronDoubleRightComponent,
37822
37920
  IconChevronDoubleUpComponent,
37823
37921
  IconChevronDownSmallComponent,
37922
+ IconChevronGrabberVerticalReversedComponent,
37824
37923
  IconChevronGrabberVerticalComponent,
37825
37924
  IconChevronLeftSmallComponent,
37826
37925
  IconChevronLeftComponent,
@@ -38249,5 +38348,5 @@ const provideCoreRendererWithAnimations = (resolver = getScopedTagName) => [
38249
38348
  * Generated bundle index. Do not edit.
38250
38349
  */
38251
38350
 
38252
- export { GdsAlertComponent, 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, 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, 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, IconCalenderAddComponent, IconCallComponent, IconCarComponent, IconCarusselComponent, IconChainLinkBrokenComponent, IconChainLinkComponent, IconChartTwoComponent, IconChecklistComponent, IconCheckmarkComponent, IconChevronBottomComponent, IconChevronDoubleDownComponent, IconChevronDoubleLeftComponent, IconChevronDoubleRightComponent, IconChevronDoubleUpComponent, IconChevronDownSmallComponent, IconChevronGrabberVerticalComponent, 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 };
38351
+ export { GdsAlertComponent, 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, 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, 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, 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 };
38253
38352
  //# sourceMappingURL=sebgroup-green-core-ng.mjs.map