@sebgroup/green-core-ng 3.5.1 → 3.6.2

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.
@@ -42,6 +42,7 @@ import { GdsSegmentedControl } from '@sebgroup/green-core/components/segmented-c
42
42
  import { GdsSelect } from '@sebgroup/green-core/components/select/select.component.js';
43
43
  import { GdsSignal } from '@sebgroup/green-core/components/signal/signal.component.js';
44
44
  import { GdsSpinner } from '@sebgroup/green-core/components/spinner/spinner.component.js';
45
+ import { GdsSwitch } from '@sebgroup/green-core/components/switch/switch.component.js';
45
46
  import { GdsTable } from '@sebgroup/green-core/components/table/table.component.js';
46
47
  import { GdsText } from '@sebgroup/green-core/components/text/text.component.js';
47
48
  import { GdsTextarea } from '@sebgroup/green-core/components/textarea/textarea.component.js';
@@ -51,15 +52,15 @@ import { GdsCardPattern01 } from '@sebgroup/green-core/patterns/card-pattern-01/
51
52
  import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
52
53
  import { GdsCheckboxGroup } from '@sebgroup/green-core/components/checkbox/checkbox-group/checkbox-group.component.js';
53
54
  import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
55
+ import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
54
56
  import { GdsFormattedAccount } from '@sebgroup/green-core/components/formatted-text/account/formatted-account.component.js';
55
57
  import { GdsFormattedDate } from '@sebgroup/green-core/components/formatted-text/date/formatted-date.component.js';
56
- import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
57
58
  import { GdsFormattedNumber } from '@sebgroup/green-core/components/formatted-text/number/formatted-number.component.js';
58
59
  import { GdsRadioGroup } from '@sebgroup/green-core/components/radio/radio-group/radio-group.component.js';
59
60
  import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
60
61
  import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
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
+ import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
63
64
  import { IconAi } from '@sebgroup/green-core/components/icon/icons/ai.component.js';
64
65
  import { IconAirplaneUp } from '@sebgroup/green-core/components/icon/icons/airplane-up.component.js';
65
66
  import { IconArchive } from '@sebgroup/green-core/components/icon/icons/archive.component.js';
@@ -5415,6 +5416,142 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
5415
5416
  * Auto-generated from Custom Elements Manifest
5416
5417
  */
5417
5418
 
5419
+ /**
5420
+ * Angular wrapper for the gds-switch web component
5421
+ *
5422
+ */
5423
+ let GdsSwitchComponent = class GdsSwitchComponent extends GdsCheckboxFormControlBase {
5424
+ constructor() {
5425
+ super(...arguments);
5426
+ /** Dispatched when the checked state changes. */
5427
+ this.input = new EventEmitter();
5428
+ /** Dispatched when the checked state changes. */
5429
+ this.change = new EventEmitter();
5430
+ }
5431
+ get element() {
5432
+ return this.elementRef.nativeElement;
5433
+ }
5434
+ ngOnInit() {
5435
+ super.ngOnInit();
5436
+ // Define the custom element
5437
+ try {
5438
+ GdsSwitch.define();
5439
+ }
5440
+ catch (e) {
5441
+ // Component may not be available in this version of green-core
5442
+ console.warn('Failed to define gds-switch:', e);
5443
+ }
5444
+ }
5445
+ ngOnChanges(changes) {
5446
+ // Implementation added by @ProxyInputs decorator
5447
+ }
5448
+ ngAfterViewInit() {
5449
+ super.ngAfterViewInit();
5450
+ }
5451
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSwitchComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5452
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSwitchComponent, isStandalone: true, selector: "gds-switch", inputs: { alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", checked: ["checked", "checked", booleanAttribute], controlPlacement: "controlPlacement", size: "size", justifyContent: "justifyContent", value: "value", validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", label: "label", name: "name", disabled: ["disabled", "disabled", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { input: "input", change: "change" }, providers: [
5453
+ {
5454
+ provide: NG_VALUE_ACCESSOR,
5455
+ useExisting: forwardRef(() => GdsSwitchComponent),
5456
+ multi: true,
5457
+ },
5458
+ ], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5459
+ };
5460
+ GdsSwitchComponent = __decorate([
5461
+ ProxyInputs(['align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'margin', 'margin-inline', 'margin-block', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'checked', 'controlPlacement', 'size', 'justify-content', 'value', 'validator', 'required', 'errorMessage', 'invalid', 'label', 'name', 'disabled', 'syncFirstRender'])
5462
+ ], GdsSwitchComponent);
5463
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSwitchComponent, decorators: [{
5464
+ type: Component,
5465
+ args: [{
5466
+ selector: 'gds-switch',
5467
+ standalone: true,
5468
+ changeDetection: ChangeDetectionStrategy.OnPush,
5469
+ template: `<ng-content></ng-content>`,
5470
+ providers: [
5471
+ {
5472
+ provide: NG_VALUE_ACCESSOR,
5473
+ useExisting: forwardRef(() => GdsSwitchComponent),
5474
+ multi: true,
5475
+ },
5476
+ ]
5477
+ }]
5478
+ }], propDecorators: { alignSelf: [{
5479
+ type: Input
5480
+ }], justifySelf: [{
5481
+ type: Input
5482
+ }], placeSelf: [{
5483
+ type: Input
5484
+ }], gridColumn: [{
5485
+ type: Input
5486
+ }], gridRow: [{
5487
+ type: Input
5488
+ }], gridArea: [{
5489
+ type: Input
5490
+ }], flex: [{
5491
+ type: Input
5492
+ }], order: [{
5493
+ type: Input
5494
+ }], margin: [{
5495
+ type: Input
5496
+ }], marginInline: [{
5497
+ type: Input
5498
+ }], marginBlock: [{
5499
+ type: Input
5500
+ }], width: [{
5501
+ type: Input
5502
+ }], minWidth: [{
5503
+ type: Input
5504
+ }], maxWidth: [{
5505
+ type: Input
5506
+ }], inlineSize: [{
5507
+ type: Input
5508
+ }], minInlineSize: [{
5509
+ type: Input
5510
+ }], maxInlineSize: [{
5511
+ type: Input
5512
+ }], checked: [{
5513
+ type: Input,
5514
+ args: [{ transform: booleanAttribute }]
5515
+ }], controlPlacement: [{
5516
+ type: Input
5517
+ }], size: [{
5518
+ type: Input
5519
+ }], justifyContent: [{
5520
+ type: Input
5521
+ }], value: [{
5522
+ type: Input
5523
+ }], validator: [{
5524
+ type: Input
5525
+ }], required: [{
5526
+ type: Input,
5527
+ args: [{ transform: booleanAttribute }]
5528
+ }], errorMessage: [{
5529
+ type: Input
5530
+ }], invalid: [{
5531
+ type: Input
5532
+ }], label: [{
5533
+ type: Input
5534
+ }], name: [{
5535
+ type: Input
5536
+ }], disabled: [{
5537
+ type: Input,
5538
+ args: [{ transform: booleanAttribute }]
5539
+ }], syncFirstRender: [{
5540
+ type: Input,
5541
+ args: [{ transform: booleanAttribute }]
5542
+ }], input: [{
5543
+ type: Output
5544
+ }], change: [{
5545
+ type: Output
5546
+ }] } });
5547
+
5548
+ /**
5549
+ * GdsSwitchComponent - Angular wrapper for gds-switch
5550
+ *
5551
+ *
5552
+ * Auto-generated from Custom Elements Manifest
5553
+ */
5554
+
5418
5555
  /**
5419
5556
  * Angular wrapper for the gds-table web component
5420
5557
  *
@@ -6671,6 +6808,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
6671
6808
  * Auto-generated from Custom Elements Manifest
6672
6809
  */
6673
6810
 
6811
+ /**
6812
+ * Angular wrapper for the gds-filter-chip web component
6813
+ *
6814
+ */
6815
+ let GdsFilterChipComponent = class GdsFilterChipComponent {
6816
+ get element() {
6817
+ return this.elementRef.nativeElement;
6818
+ }
6819
+ constructor() {
6820
+ this.elementRef = inject((ElementRef));
6821
+ this.zone = inject(NgZone);
6822
+ this.cdr = inject(ChangeDetectorRef);
6823
+ this.cdr.detach();
6824
+ }
6825
+ ngOnInit() {
6826
+ // Define the custom element
6827
+ try {
6828
+ GdsFilterChip.define();
6829
+ }
6830
+ catch (e) {
6831
+ // Component may not be available in this version of green-core
6832
+ console.warn('Failed to define gds-filter-chip:', e);
6833
+ }
6834
+ }
6835
+ ngOnChanges(changes) {
6836
+ // Implementation added by @ProxyInputs decorator
6837
+ }
6838
+ ngAfterViewInit() {
6839
+ // Implementation added by @ProxyInputs decorator
6840
+ }
6841
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6842
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsFilterChipComponent, isStandalone: true, selector: "gds-filter-chip", inputs: { selected: ["selected", "selected", booleanAttribute], value: "value", size: "size", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6843
+ };
6844
+ GdsFilterChipComponent = __decorate([
6845
+ ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
6846
+ __metadata("design:paramtypes", [])
6847
+ ], GdsFilterChipComponent);
6848
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
6849
+ type: Component,
6850
+ args: [{
6851
+ selector: 'gds-filter-chip',
6852
+ standalone: true,
6853
+ changeDetection: ChangeDetectionStrategy.OnPush,
6854
+ template: `<ng-content></ng-content>`
6855
+ }]
6856
+ }], ctorParameters: () => [], propDecorators: { selected: [{
6857
+ type: Input,
6858
+ args: [{ transform: booleanAttribute }]
6859
+ }], value: [{
6860
+ type: Input
6861
+ }], size: [{
6862
+ type: Input
6863
+ }], syncFirstRender: [{
6864
+ type: Input,
6865
+ args: [{ transform: booleanAttribute }]
6866
+ }] } });
6867
+
6868
+ /**
6869
+ * GdsFilterChipComponent - Angular wrapper for gds-filter-chip
6870
+ *
6871
+ *
6872
+ * Auto-generated from Custom Elements Manifest
6873
+ */
6874
+
6674
6875
  /**
6675
6876
  * Angular wrapper for the gds-formatted-account web component
6676
6877
  *
@@ -7053,70 +7254,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7053
7254
  * Auto-generated from Custom Elements Manifest
7054
7255
  */
7055
7256
 
7056
- /**
7057
- * Angular wrapper for the gds-filter-chip web component
7058
- *
7059
- */
7060
- let GdsFilterChipComponent = class GdsFilterChipComponent {
7061
- get element() {
7062
- return this.elementRef.nativeElement;
7063
- }
7064
- constructor() {
7065
- this.elementRef = inject((ElementRef));
7066
- this.zone = inject(NgZone);
7067
- this.cdr = inject(ChangeDetectorRef);
7068
- this.cdr.detach();
7069
- }
7070
- ngOnInit() {
7071
- // Define the custom element
7072
- try {
7073
- GdsFilterChip.define();
7074
- }
7075
- catch (e) {
7076
- // Component may not be available in this version of green-core
7077
- console.warn('Failed to define gds-filter-chip:', e);
7078
- }
7079
- }
7080
- ngOnChanges(changes) {
7081
- // Implementation added by @ProxyInputs decorator
7082
- }
7083
- ngAfterViewInit() {
7084
- // Implementation added by @ProxyInputs decorator
7085
- }
7086
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7087
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsFilterChipComponent, isStandalone: true, selector: "gds-filter-chip", inputs: { selected: ["selected", "selected", booleanAttribute], value: "value", size: "size", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7088
- };
7089
- GdsFilterChipComponent = __decorate([
7090
- ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
7091
- __metadata("design:paramtypes", [])
7092
- ], GdsFilterChipComponent);
7093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
7094
- type: Component,
7095
- args: [{
7096
- selector: 'gds-filter-chip',
7097
- standalone: true,
7098
- changeDetection: ChangeDetectionStrategy.OnPush,
7099
- template: `<ng-content></ng-content>`
7100
- }]
7101
- }], ctorParameters: () => [], propDecorators: { selected: [{
7102
- type: Input,
7103
- args: [{ transform: booleanAttribute }]
7104
- }], value: [{
7105
- type: Input
7106
- }], size: [{
7107
- type: Input
7108
- }], syncFirstRender: [{
7109
- type: Input,
7110
- args: [{ transform: booleanAttribute }]
7111
- }] } });
7112
-
7113
- /**
7114
- * GdsFilterChipComponent - Angular wrapper for gds-filter-chip
7115
- *
7116
- *
7117
- * Auto-generated from Custom Elements Manifest
7118
- */
7119
-
7120
7257
  /**
7121
7258
  * Angular wrapper for the gds-formatted-number web component
7122
7259
  *
@@ -7721,10 +7858,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7721
7858
  */
7722
7859
 
7723
7860
  /**
7724
- * Angular wrapper for the gds-sensitive-date web component
7861
+ * Angular wrapper for the gds-sensitive-number web component
7725
7862
  *
7726
7863
  */
7727
- let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
7864
+ let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
7728
7865
  get element() {
7729
7866
  return this.elementRef.nativeElement;
7730
7867
  }
@@ -7737,11 +7874,11 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
7737
7874
  ngOnInit() {
7738
7875
  // Define the custom element
7739
7876
  try {
7740
- GdsSensitiveDate.define();
7877
+ GdsSensitiveNumber.define();
7741
7878
  }
7742
7879
  catch (e) {
7743
7880
  // Component may not be available in this version of green-core
7744
- console.warn('Failed to define gds-sensitive-date:', e);
7881
+ console.warn('Failed to define gds-sensitive-number:', e);
7745
7882
  }
7746
7883
  }
7747
7884
  ngOnChanges(changes) {
@@ -7750,17 +7887,17 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
7750
7887
  ngAfterViewInit() {
7751
7888
  // Implementation added by @ProxyInputs decorator
7752
7889
  }
7753
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7754
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveDateComponent, isStandalone: true, selector: "gds-sensitive-date", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", format: "format", locale: "locale", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7890
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveNumberComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7891
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveNumberComponent, isStandalone: true, selector: "gds-sensitive-number", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", locale: "locale", currency: "currency", decimals: "decimals", 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 }); }
7755
7892
  };
7756
- GdsSensitiveDateComponent = __decorate([
7757
- ProxyInputs(['hide', 'value', 'format', 'locale', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
7893
+ GdsSensitiveNumberComponent = __decorate([
7894
+ ProxyInputs(['hide', 'value', 'locale', 'currency', 'decimals', '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']),
7758
7895
  __metadata("design:paramtypes", [])
7759
- ], GdsSensitiveDateComponent);
7760
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
7896
+ ], GdsSensitiveNumberComponent);
7897
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveNumberComponent, decorators: [{
7761
7898
  type: Component,
7762
7899
  args: [{
7763
- selector: 'gds-sensitive-date',
7900
+ selector: 'gds-sensitive-number',
7764
7901
  standalone: true,
7765
7902
  changeDetection: ChangeDetectionStrategy.OnPush,
7766
7903
  template: `<ng-content></ng-content>`
@@ -7770,10 +7907,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7770
7907
  args: [{ transform: booleanAttribute }]
7771
7908
  }], value: [{
7772
7909
  type: Input
7773
- }], format: [{
7774
- type: Input
7775
7910
  }], locale: [{
7776
7911
  type: Input
7912
+ }], currency: [{
7913
+ type: Input
7914
+ }], decimals: [{
7915
+ type: Input
7777
7916
  }], tag: [{
7778
7917
  type: Input
7779
7918
  }], font: [{
@@ -7910,17 +8049,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7910
8049
  }] } });
7911
8050
 
7912
8051
  /**
7913
- * GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
8052
+ * GdsSensitiveNumberComponent - Angular wrapper for gds-sensitive-number
7914
8053
  *
7915
8054
  *
7916
8055
  * Auto-generated from Custom Elements Manifest
7917
8056
  */
7918
8057
 
7919
8058
  /**
7920
- * Angular wrapper for the gds-sensitive-number web component
8059
+ * Angular wrapper for the gds-sensitive-date web component
7921
8060
  *
7922
8061
  */
7923
- let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
8062
+ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
7924
8063
  get element() {
7925
8064
  return this.elementRef.nativeElement;
7926
8065
  }
@@ -7933,11 +8072,11 @@ let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
7933
8072
  ngOnInit() {
7934
8073
  // Define the custom element
7935
8074
  try {
7936
- GdsSensitiveNumber.define();
8075
+ GdsSensitiveDate.define();
7937
8076
  }
7938
8077
  catch (e) {
7939
8078
  // Component may not be available in this version of green-core
7940
- console.warn('Failed to define gds-sensitive-number:', e);
8079
+ console.warn('Failed to define gds-sensitive-date:', e);
7941
8080
  }
7942
8081
  }
7943
8082
  ngOnChanges(changes) {
@@ -7946,17 +8085,17 @@ let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
7946
8085
  ngAfterViewInit() {
7947
8086
  // Implementation added by @ProxyInputs decorator
7948
8087
  }
7949
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveNumberComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7950
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveNumberComponent, isStandalone: true, selector: "gds-sensitive-number", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", locale: "locale", currency: "currency", decimals: "decimals", 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 }); }
8088
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8089
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveDateComponent, isStandalone: true, selector: "gds-sensitive-date", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", format: "format", locale: "locale", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7951
8090
  };
7952
- GdsSensitiveNumberComponent = __decorate([
7953
- ProxyInputs(['hide', 'value', 'locale', 'currency', 'decimals', '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']),
8091
+ GdsSensitiveDateComponent = __decorate([
8092
+ ProxyInputs(['hide', 'value', 'format', 'locale', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
7954
8093
  __metadata("design:paramtypes", [])
7955
- ], GdsSensitiveNumberComponent);
7956
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveNumberComponent, decorators: [{
8094
+ ], GdsSensitiveDateComponent);
8095
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
7957
8096
  type: Component,
7958
8097
  args: [{
7959
- selector: 'gds-sensitive-number',
8098
+ selector: 'gds-sensitive-date',
7960
8099
  standalone: true,
7961
8100
  changeDetection: ChangeDetectionStrategy.OnPush,
7962
8101
  template: `<ng-content></ng-content>`
@@ -7966,11 +8105,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
7966
8105
  args: [{ transform: booleanAttribute }]
7967
8106
  }], value: [{
7968
8107
  type: Input
7969
- }], locale: [{
7970
- type: Input
7971
- }], currency: [{
8108
+ }], format: [{
7972
8109
  type: Input
7973
- }], decimals: [{
8110
+ }], locale: [{
7974
8111
  type: Input
7975
8112
  }], tag: [{
7976
8113
  type: Input
@@ -8108,7 +8245,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
8108
8245
  }] } });
8109
8246
 
8110
8247
  /**
8111
- * GdsSensitiveNumberComponent - Angular wrapper for gds-sensitive-number
8248
+ * GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
8112
8249
  *
8113
8250
  *
8114
8251
  * Auto-generated from Custom Elements Manifest
@@ -36701,6 +36838,7 @@ class GreenCoreNgModule {
36701
36838
  GdsSelectComponent,
36702
36839
  GdsSignalComponent,
36703
36840
  GdsSpinnerComponent,
36841
+ GdsSwitchComponent,
36704
36842
  GdsTableComponent,
36705
36843
  GdsTextComponent,
36706
36844
  GdsTextareaComponent,
@@ -36710,15 +36848,15 @@ class GreenCoreNgModule {
36710
36848
  GdsBreadcrumbComponent,
36711
36849
  GdsCheckboxGroupComponent,
36712
36850
  GdsIconDetailsComponent,
36851
+ GdsFilterChipComponent,
36713
36852
  GdsFormattedAccountComponent,
36714
36853
  GdsFormattedDateComponent,
36715
- GdsFilterChipComponent,
36716
36854
  GdsFormattedNumberComponent,
36717
36855
  GdsRadioGroupComponent,
36718
36856
  GdsSegmentComponent,
36719
36857
  GdsSensitiveAccountComponent,
36720
- GdsSensitiveDateComponent,
36721
36858
  GdsSensitiveNumberComponent,
36859
+ GdsSensitiveDateComponent,
36722
36860
  IconAiComponent,
36723
36861
  IconAirplaneUpComponent,
36724
36862
  IconArchiveComponent,
@@ -37067,6 +37205,7 @@ class GreenCoreNgModule {
37067
37205
  GdsSelectComponent,
37068
37206
  GdsSignalComponent,
37069
37207
  GdsSpinnerComponent,
37208
+ GdsSwitchComponent,
37070
37209
  GdsTableComponent,
37071
37210
  GdsTextComponent,
37072
37211
  GdsTextareaComponent,
@@ -37076,15 +37215,15 @@ class GreenCoreNgModule {
37076
37215
  GdsBreadcrumbComponent,
37077
37216
  GdsCheckboxGroupComponent,
37078
37217
  GdsIconDetailsComponent,
37218
+ GdsFilterChipComponent,
37079
37219
  GdsFormattedAccountComponent,
37080
37220
  GdsFormattedDateComponent,
37081
- GdsFilterChipComponent,
37082
37221
  GdsFormattedNumberComponent,
37083
37222
  GdsRadioGroupComponent,
37084
37223
  GdsSegmentComponent,
37085
37224
  GdsSensitiveAccountComponent,
37086
- GdsSensitiveDateComponent,
37087
37225
  GdsSensitiveNumberComponent,
37226
+ GdsSensitiveDateComponent,
37088
37227
  IconAiComponent,
37089
37228
  IconAirplaneUpComponent,
37090
37229
  IconArchiveComponent,
@@ -37440,6 +37579,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37440
37579
  GdsSelectComponent,
37441
37580
  GdsSignalComponent,
37442
37581
  GdsSpinnerComponent,
37582
+ GdsSwitchComponent,
37443
37583
  GdsTableComponent,
37444
37584
  GdsTextComponent,
37445
37585
  GdsTextareaComponent,
@@ -37449,15 +37589,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37449
37589
  GdsBreadcrumbComponent,
37450
37590
  GdsCheckboxGroupComponent,
37451
37591
  GdsIconDetailsComponent,
37592
+ GdsFilterChipComponent,
37452
37593
  GdsFormattedAccountComponent,
37453
37594
  GdsFormattedDateComponent,
37454
- GdsFilterChipComponent,
37455
37595
  GdsFormattedNumberComponent,
37456
37596
  GdsRadioGroupComponent,
37457
37597
  GdsSegmentComponent,
37458
37598
  GdsSensitiveAccountComponent,
37459
- GdsSensitiveDateComponent,
37460
37599
  GdsSensitiveNumberComponent,
37600
+ GdsSensitiveDateComponent,
37461
37601
  IconAiComponent,
37462
37602
  IconAirplaneUpComponent,
37463
37603
  IconArchiveComponent,
@@ -37809,6 +37949,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37809
37949
  GdsSelectComponent,
37810
37950
  GdsSignalComponent,
37811
37951
  GdsSpinnerComponent,
37952
+ GdsSwitchComponent,
37812
37953
  GdsTableComponent,
37813
37954
  GdsTextComponent,
37814
37955
  GdsTextareaComponent,
@@ -37818,15 +37959,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
37818
37959
  GdsBreadcrumbComponent,
37819
37960
  GdsCheckboxGroupComponent,
37820
37961
  GdsIconDetailsComponent,
37962
+ GdsFilterChipComponent,
37821
37963
  GdsFormattedAccountComponent,
37822
37964
  GdsFormattedDateComponent,
37823
- GdsFilterChipComponent,
37824
37965
  GdsFormattedNumberComponent,
37825
37966
  GdsRadioGroupComponent,
37826
37967
  GdsSegmentComponent,
37827
37968
  GdsSensitiveAccountComponent,
37828
- GdsSensitiveDateComponent,
37829
37969
  GdsSensitiveNumberComponent,
37970
+ GdsSensitiveDateComponent,
37830
37971
  IconAiComponent,
37831
37972
  IconAirplaneUpComponent,
37832
37973
  IconArchiveComponent,
@@ -38348,5 +38489,5 @@ const provideCoreRendererWithAnimations = (resolver = getScopedTagName) => [
38348
38489
  * Generated bundle index. Do not edit.
38349
38490
  */
38350
38491
 
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 };
38492
+ 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, GdsSwitchComponent, GdsTableComponent, GdsTextComponent, GdsTextareaComponent, GdsThemeComponent, GdsVideoComponent, GreenCoreNgModule, IconAiComponent, IconAirplaneUpComponent, IconArchiveComponent, IconArrowBottomTopComponent, IconArrowBoxLeftAltComponent, IconArrowBoxLeftComponent, IconArrowBoxRightComponent, IconArrowComponent, IconArrowDownComponent, IconArrowInboxComponent, IconArrowLeftComponent, IconArrowLeftRightComponent, IconArrowOutOfBoxComponent, IconArrowRightCircleComponent, IconArrowRightComponent, IconArrowRightDownCircleComponent, IconArrowRightUpCircleComponent, IconArrowRotateClockwiseComponent, IconArrowRotateCounterClockwiseComponent, IconArrowRotateLeftRightComponent, IconArrowRotateRightLeftComponent, IconArrowShareLeftComponent, IconArrowShareRightComponent, IconArrowSplitComponent, IconArrowUpComponent, IconArrowWallDownComponent, IconArrowWallLeftComponent, IconArrowWallRightComponent, IconArrowWallUpComponent, 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 };
38352
38493
  //# sourceMappingURL=sebgroup-green-core-ng.mjs.map