@sebgroup/green-core-ng 3.12.0 → 3.12.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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { __decorate, __metadata } from 'tslib';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { inject, ElementRef, NgZone, ChangeDetectorRef,
|
|
4
|
-
import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
|
|
3
|
+
import { inject, ElementRef, NgZone, ChangeDetectorRef, booleanAttribute, Input, ChangeDetectionStrategy, Component, EventEmitter, Output, Renderer2, Injector, Directive, DestroyRef, forwardRef, NgModule, InjectionToken, ViewContainerRef, TemplateRef, Injectable, RendererFactory2 } from '@angular/core';
|
|
5
4
|
import { GdsAvatar } from '@sebgroup/green-core/components/avatar/avatar.component.js';
|
|
5
|
+
import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
|
|
6
6
|
import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
|
|
7
7
|
import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
|
|
8
8
|
import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
|
|
@@ -59,8 +59,8 @@ import { GdsFormattedAccount } from '@sebgroup/green-core/components/formatted-t
|
|
|
59
59
|
import { GdsFormattedDate } from '@sebgroup/green-core/components/formatted-text/date/formatted-date.component.js';
|
|
60
60
|
import { GdsFormattedNumber } from '@sebgroup/green-core/components/formatted-text/number/formatted-number.component.js';
|
|
61
61
|
import { GdsRadioGroup } from '@sebgroup/green-core/components/radio/radio-group/radio-group.component.js';
|
|
62
|
-
import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
|
|
63
62
|
import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
|
|
63
|
+
import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
|
|
64
64
|
import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
|
|
65
65
|
import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
|
|
66
66
|
import { IconAi } from '@sebgroup/green-core/components/icon/icons/ai.component.js';
|
|
@@ -437,91 +437,6 @@ function ProxyInputs(inputNames) {
|
|
|
437
437
|
};
|
|
438
438
|
}
|
|
439
439
|
|
|
440
|
-
/**
|
|
441
|
-
* Angular wrapper for the gds-alert web component
|
|
442
|
-
*
|
|
443
|
-
*/
|
|
444
|
-
let GdsAlertComponent = class GdsAlertComponent {
|
|
445
|
-
get element() {
|
|
446
|
-
return this.elementRef.nativeElement;
|
|
447
|
-
}
|
|
448
|
-
constructor() {
|
|
449
|
-
this.elementRef = inject((ElementRef));
|
|
450
|
-
this.zone = inject(NgZone);
|
|
451
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
452
|
-
/** Fired when alert is dismissed */
|
|
453
|
-
this.gdsClose = new EventEmitter();
|
|
454
|
-
/** Fired when action button is clicked */
|
|
455
|
-
this.gdsAction = new EventEmitter();
|
|
456
|
-
this.cdr.detach();
|
|
457
|
-
}
|
|
458
|
-
ngOnInit() {
|
|
459
|
-
// Define the custom element
|
|
460
|
-
try {
|
|
461
|
-
GdsAlert.define();
|
|
462
|
-
}
|
|
463
|
-
catch (e) {
|
|
464
|
-
// Component may not be available in this version of green-core
|
|
465
|
-
console.warn('Failed to define gds-alert:', e);
|
|
466
|
-
}
|
|
467
|
-
// Set up event listeners
|
|
468
|
-
this.elementRef.nativeElement.addEventListener('gds-close', (event) => {
|
|
469
|
-
this.gdsClose.emit(event);
|
|
470
|
-
});
|
|
471
|
-
this.elementRef.nativeElement.addEventListener('gds-action', (event) => {
|
|
472
|
-
this.gdsAction.emit(event);
|
|
473
|
-
});
|
|
474
|
-
}
|
|
475
|
-
ngOnChanges(changes) {
|
|
476
|
-
// Implementation added by @ProxyInputs decorator
|
|
477
|
-
}
|
|
478
|
-
ngAfterViewInit() {
|
|
479
|
-
// Implementation added by @ProxyInputs decorator
|
|
480
|
-
}
|
|
481
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
482
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsAlertComponent, isStandalone: true, selector: "gds-alert", inputs: { variant: "variant", label: "label", role: "role", dismissible: ["dismissible", "dismissible", booleanAttribute], timeout: "timeout", buttonLabel: "buttonLabel", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsClose: "gdsClose", gdsAction: "gdsAction" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
483
|
-
};
|
|
484
|
-
GdsAlertComponent = __decorate([
|
|
485
|
-
ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
|
|
486
|
-
__metadata("design:paramtypes", [])
|
|
487
|
-
], GdsAlertComponent);
|
|
488
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, decorators: [{
|
|
489
|
-
type: Component,
|
|
490
|
-
args: [{
|
|
491
|
-
selector: 'gds-alert',
|
|
492
|
-
standalone: true,
|
|
493
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
494
|
-
template: `<ng-content></ng-content>`
|
|
495
|
-
}]
|
|
496
|
-
}], ctorParameters: () => [], propDecorators: { variant: [{
|
|
497
|
-
type: Input
|
|
498
|
-
}], label: [{
|
|
499
|
-
type: Input
|
|
500
|
-
}], role: [{
|
|
501
|
-
type: Input
|
|
502
|
-
}], dismissible: [{
|
|
503
|
-
type: Input,
|
|
504
|
-
args: [{ transform: booleanAttribute }]
|
|
505
|
-
}], timeout: [{
|
|
506
|
-
type: Input
|
|
507
|
-
}], buttonLabel: [{
|
|
508
|
-
type: Input
|
|
509
|
-
}], syncFirstRender: [{
|
|
510
|
-
type: Input,
|
|
511
|
-
args: [{ transform: booleanAttribute }]
|
|
512
|
-
}], gdsClose: [{
|
|
513
|
-
type: Output
|
|
514
|
-
}], gdsAction: [{
|
|
515
|
-
type: Output
|
|
516
|
-
}] } });
|
|
517
|
-
|
|
518
|
-
/**
|
|
519
|
-
* GdsAlertComponent - Angular wrapper for gds-alert
|
|
520
|
-
*
|
|
521
|
-
*
|
|
522
|
-
* Auto-generated from Custom Elements Manifest
|
|
523
|
-
*/
|
|
524
|
-
|
|
525
440
|
/**
|
|
526
441
|
* Angular wrapper for the gds-avatar web component
|
|
527
442
|
* `gds-avatar` is a visual element used to represent a user or entity.
|
|
@@ -629,6 +544,91 @@ It supports displaying an image, slotted text content, or a fallback icon.
|
|
|
629
544
|
* Auto-generated from Custom Elements Manifest
|
|
630
545
|
*/
|
|
631
546
|
|
|
547
|
+
/**
|
|
548
|
+
* Angular wrapper for the gds-alert web component
|
|
549
|
+
*
|
|
550
|
+
*/
|
|
551
|
+
let GdsAlertComponent = class GdsAlertComponent {
|
|
552
|
+
get element() {
|
|
553
|
+
return this.elementRef.nativeElement;
|
|
554
|
+
}
|
|
555
|
+
constructor() {
|
|
556
|
+
this.elementRef = inject((ElementRef));
|
|
557
|
+
this.zone = inject(NgZone);
|
|
558
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
559
|
+
/** Fired when alert is dismissed */
|
|
560
|
+
this.gdsClose = new EventEmitter();
|
|
561
|
+
/** Fired when action button is clicked */
|
|
562
|
+
this.gdsAction = new EventEmitter();
|
|
563
|
+
this.cdr.detach();
|
|
564
|
+
}
|
|
565
|
+
ngOnInit() {
|
|
566
|
+
// Define the custom element
|
|
567
|
+
try {
|
|
568
|
+
GdsAlert.define();
|
|
569
|
+
}
|
|
570
|
+
catch (e) {
|
|
571
|
+
// Component may not be available in this version of green-core
|
|
572
|
+
console.warn('Failed to define gds-alert:', e);
|
|
573
|
+
}
|
|
574
|
+
// Set up event listeners
|
|
575
|
+
this.elementRef.nativeElement.addEventListener('gds-close', (event) => {
|
|
576
|
+
this.gdsClose.emit(event);
|
|
577
|
+
});
|
|
578
|
+
this.elementRef.nativeElement.addEventListener('gds-action', (event) => {
|
|
579
|
+
this.gdsAction.emit(event);
|
|
580
|
+
});
|
|
581
|
+
}
|
|
582
|
+
ngOnChanges(changes) {
|
|
583
|
+
// Implementation added by @ProxyInputs decorator
|
|
584
|
+
}
|
|
585
|
+
ngAfterViewInit() {
|
|
586
|
+
// Implementation added by @ProxyInputs decorator
|
|
587
|
+
}
|
|
588
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
589
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsAlertComponent, isStandalone: true, selector: "gds-alert", inputs: { variant: "variant", label: "label", role: "role", dismissible: ["dismissible", "dismissible", booleanAttribute], timeout: "timeout", buttonLabel: "buttonLabel", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsClose: "gdsClose", gdsAction: "gdsAction" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
590
|
+
};
|
|
591
|
+
GdsAlertComponent = __decorate([
|
|
592
|
+
ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
|
|
593
|
+
__metadata("design:paramtypes", [])
|
|
594
|
+
], GdsAlertComponent);
|
|
595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, decorators: [{
|
|
596
|
+
type: Component,
|
|
597
|
+
args: [{
|
|
598
|
+
selector: 'gds-alert',
|
|
599
|
+
standalone: true,
|
|
600
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
601
|
+
template: `<ng-content></ng-content>`
|
|
602
|
+
}]
|
|
603
|
+
}], ctorParameters: () => [], propDecorators: { variant: [{
|
|
604
|
+
type: Input
|
|
605
|
+
}], label: [{
|
|
606
|
+
type: Input
|
|
607
|
+
}], role: [{
|
|
608
|
+
type: Input
|
|
609
|
+
}], dismissible: [{
|
|
610
|
+
type: Input,
|
|
611
|
+
args: [{ transform: booleanAttribute }]
|
|
612
|
+
}], timeout: [{
|
|
613
|
+
type: Input
|
|
614
|
+
}], buttonLabel: [{
|
|
615
|
+
type: Input
|
|
616
|
+
}], syncFirstRender: [{
|
|
617
|
+
type: Input,
|
|
618
|
+
args: [{ transform: booleanAttribute }]
|
|
619
|
+
}], gdsClose: [{
|
|
620
|
+
type: Output
|
|
621
|
+
}], gdsAction: [{
|
|
622
|
+
type: Output
|
|
623
|
+
}] } });
|
|
624
|
+
|
|
625
|
+
/**
|
|
626
|
+
* GdsAlertComponent - Angular wrapper for gds-alert
|
|
627
|
+
*
|
|
628
|
+
*
|
|
629
|
+
* Auto-generated from Custom Elements Manifest
|
|
630
|
+
*/
|
|
631
|
+
|
|
632
632
|
/**
|
|
633
633
|
* Angular wrapper for the gds-badge web component
|
|
634
634
|
* `gds-badge`
|
|
@@ -7830,86 +7830,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
7830
7830
|
* Auto-generated from Custom Elements Manifest
|
|
7831
7831
|
*/
|
|
7832
7832
|
|
|
7833
|
-
/**
|
|
7834
|
-
* Angular wrapper for the gds-segment web component
|
|
7835
|
-
*
|
|
7836
|
-
*/
|
|
7837
|
-
let GdsSegmentComponent = class GdsSegmentComponent {
|
|
7838
|
-
get element() {
|
|
7839
|
-
return this.elementRef.nativeElement;
|
|
7840
|
-
}
|
|
7841
|
-
constructor() {
|
|
7842
|
-
this.elementRef = inject((ElementRef));
|
|
7843
|
-
this.zone = inject(NgZone);
|
|
7844
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
7845
|
-
this.cdr.detach();
|
|
7846
|
-
}
|
|
7847
|
-
ngOnInit() {
|
|
7848
|
-
// Define the custom element
|
|
7849
|
-
try {
|
|
7850
|
-
GdsSegment.define();
|
|
7851
|
-
}
|
|
7852
|
-
catch (e) {
|
|
7853
|
-
// Component may not be available in this version of green-core
|
|
7854
|
-
console.warn('Failed to define gds-segment:', e);
|
|
7855
|
-
}
|
|
7856
|
-
}
|
|
7857
|
-
ngOnChanges(changes) {
|
|
7858
|
-
// Implementation added by @ProxyInputs decorator
|
|
7859
|
-
}
|
|
7860
|
-
ngAfterViewInit() {
|
|
7861
|
-
// Implementation added by @ProxyInputs decorator
|
|
7862
|
-
}
|
|
7863
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSegmentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7864
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSegmentComponent, isStandalone: true, selector: "gds-segment", inputs: { selected: ["selected", "selected", booleanAttribute], value: "value", disabled: ["disabled", "disabled", booleanAttribute], _isVisible: ["_isVisible", "_isVisible", booleanAttribute], width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7865
|
-
};
|
|
7866
|
-
GdsSegmentComponent = __decorate([
|
|
7867
|
-
ProxyInputs(['selected', 'value', 'disabled', '_isVisible', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'syncFirstRender']),
|
|
7868
|
-
__metadata("design:paramtypes", [])
|
|
7869
|
-
], GdsSegmentComponent);
|
|
7870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSegmentComponent, decorators: [{
|
|
7871
|
-
type: Component,
|
|
7872
|
-
args: [{
|
|
7873
|
-
selector: 'gds-segment',
|
|
7874
|
-
standalone: true,
|
|
7875
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7876
|
-
template: `<ng-content></ng-content>`
|
|
7877
|
-
}]
|
|
7878
|
-
}], ctorParameters: () => [], propDecorators: { selected: [{
|
|
7879
|
-
type: Input,
|
|
7880
|
-
args: [{ transform: booleanAttribute }]
|
|
7881
|
-
}], value: [{
|
|
7882
|
-
type: Input
|
|
7883
|
-
}], disabled: [{
|
|
7884
|
-
type: Input,
|
|
7885
|
-
args: [{ transform: booleanAttribute }]
|
|
7886
|
-
}], _isVisible: [{
|
|
7887
|
-
type: Input,
|
|
7888
|
-
args: [{ transform: booleanAttribute }]
|
|
7889
|
-
}], width: [{
|
|
7890
|
-
type: Input
|
|
7891
|
-
}], minWidth: [{
|
|
7892
|
-
type: Input
|
|
7893
|
-
}], maxWidth: [{
|
|
7894
|
-
type: Input
|
|
7895
|
-
}], inlineSize: [{
|
|
7896
|
-
type: Input
|
|
7897
|
-
}], minInlineSize: [{
|
|
7898
|
-
type: Input
|
|
7899
|
-
}], maxInlineSize: [{
|
|
7900
|
-
type: Input
|
|
7901
|
-
}], syncFirstRender: [{
|
|
7902
|
-
type: Input,
|
|
7903
|
-
args: [{ transform: booleanAttribute }]
|
|
7904
|
-
}] } });
|
|
7905
|
-
|
|
7906
|
-
/**
|
|
7907
|
-
* GdsSegmentComponent - Angular wrapper for gds-segment
|
|
7908
|
-
*
|
|
7909
|
-
*
|
|
7910
|
-
* Auto-generated from Custom Elements Manifest
|
|
7911
|
-
*/
|
|
7912
|
-
|
|
7913
7833
|
/**
|
|
7914
7834
|
* Angular wrapper for the gds-sensitive-account web component
|
|
7915
7835
|
*
|
|
@@ -8102,6 +8022,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
8102
8022
|
* Auto-generated from Custom Elements Manifest
|
|
8103
8023
|
*/
|
|
8104
8024
|
|
|
8025
|
+
/**
|
|
8026
|
+
* Angular wrapper for the gds-segment web component
|
|
8027
|
+
*
|
|
8028
|
+
*/
|
|
8029
|
+
let GdsSegmentComponent = class GdsSegmentComponent {
|
|
8030
|
+
get element() {
|
|
8031
|
+
return this.elementRef.nativeElement;
|
|
8032
|
+
}
|
|
8033
|
+
constructor() {
|
|
8034
|
+
this.elementRef = inject((ElementRef));
|
|
8035
|
+
this.zone = inject(NgZone);
|
|
8036
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
8037
|
+
this.cdr.detach();
|
|
8038
|
+
}
|
|
8039
|
+
ngOnInit() {
|
|
8040
|
+
// Define the custom element
|
|
8041
|
+
try {
|
|
8042
|
+
GdsSegment.define();
|
|
8043
|
+
}
|
|
8044
|
+
catch (e) {
|
|
8045
|
+
// Component may not be available in this version of green-core
|
|
8046
|
+
console.warn('Failed to define gds-segment:', e);
|
|
8047
|
+
}
|
|
8048
|
+
}
|
|
8049
|
+
ngOnChanges(changes) {
|
|
8050
|
+
// Implementation added by @ProxyInputs decorator
|
|
8051
|
+
}
|
|
8052
|
+
ngAfterViewInit() {
|
|
8053
|
+
// Implementation added by @ProxyInputs decorator
|
|
8054
|
+
}
|
|
8055
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSegmentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8056
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSegmentComponent, isStandalone: true, selector: "gds-segment", inputs: { selected: ["selected", "selected", booleanAttribute], value: "value", disabled: ["disabled", "disabled", booleanAttribute], _isVisible: ["_isVisible", "_isVisible", booleanAttribute], width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8057
|
+
};
|
|
8058
|
+
GdsSegmentComponent = __decorate([
|
|
8059
|
+
ProxyInputs(['selected', 'value', 'disabled', '_isVisible', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'syncFirstRender']),
|
|
8060
|
+
__metadata("design:paramtypes", [])
|
|
8061
|
+
], GdsSegmentComponent);
|
|
8062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSegmentComponent, decorators: [{
|
|
8063
|
+
type: Component,
|
|
8064
|
+
args: [{
|
|
8065
|
+
selector: 'gds-segment',
|
|
8066
|
+
standalone: true,
|
|
8067
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8068
|
+
template: `<ng-content></ng-content>`
|
|
8069
|
+
}]
|
|
8070
|
+
}], ctorParameters: () => [], propDecorators: { selected: [{
|
|
8071
|
+
type: Input,
|
|
8072
|
+
args: [{ transform: booleanAttribute }]
|
|
8073
|
+
}], value: [{
|
|
8074
|
+
type: Input
|
|
8075
|
+
}], disabled: [{
|
|
8076
|
+
type: Input,
|
|
8077
|
+
args: [{ transform: booleanAttribute }]
|
|
8078
|
+
}], _isVisible: [{
|
|
8079
|
+
type: Input,
|
|
8080
|
+
args: [{ transform: booleanAttribute }]
|
|
8081
|
+
}], width: [{
|
|
8082
|
+
type: Input
|
|
8083
|
+
}], minWidth: [{
|
|
8084
|
+
type: Input
|
|
8085
|
+
}], maxWidth: [{
|
|
8086
|
+
type: Input
|
|
8087
|
+
}], inlineSize: [{
|
|
8088
|
+
type: Input
|
|
8089
|
+
}], minInlineSize: [{
|
|
8090
|
+
type: Input
|
|
8091
|
+
}], maxInlineSize: [{
|
|
8092
|
+
type: Input
|
|
8093
|
+
}], syncFirstRender: [{
|
|
8094
|
+
type: Input,
|
|
8095
|
+
args: [{ transform: booleanAttribute }]
|
|
8096
|
+
}] } });
|
|
8097
|
+
|
|
8098
|
+
/**
|
|
8099
|
+
* GdsSegmentComponent - Angular wrapper for gds-segment
|
|
8100
|
+
*
|
|
8101
|
+
*
|
|
8102
|
+
* Auto-generated from Custom Elements Manifest
|
|
8103
|
+
*/
|
|
8104
|
+
|
|
8105
8105
|
/**
|
|
8106
8106
|
* Angular wrapper for the gds-sensitive-date web component
|
|
8107
8107
|
*
|
|
@@ -37321,8 +37321,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37321
37321
|
*/
|
|
37322
37322
|
class GreenCoreNgModule {
|
|
37323
37323
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
37324
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [
|
|
37325
|
-
|
|
37324
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAvatarComponent,
|
|
37325
|
+
GdsAlertComponent,
|
|
37326
37326
|
GdsBadgeComponent,
|
|
37327
37327
|
GdsBlurComponent,
|
|
37328
37328
|
GdsBreadcrumbsComponent,
|
|
@@ -37376,8 +37376,8 @@ class GreenCoreNgModule {
|
|
|
37376
37376
|
GdsFormattedDateComponent,
|
|
37377
37377
|
GdsFormattedNumberComponent,
|
|
37378
37378
|
GdsRadioGroupComponent,
|
|
37379
|
-
GdsSegmentComponent,
|
|
37380
37379
|
GdsSensitiveAccountComponent,
|
|
37380
|
+
GdsSegmentComponent,
|
|
37381
37381
|
GdsSensitiveDateComponent,
|
|
37382
37382
|
GdsSensitiveNumberComponent,
|
|
37383
37383
|
IconAiComponent,
|
|
@@ -37693,8 +37693,8 @@ class GreenCoreNgModule {
|
|
|
37693
37693
|
IconZoomOutComponent,
|
|
37694
37694
|
GdsMenuItemComponent,
|
|
37695
37695
|
GdsMenuHeadingComponent,
|
|
37696
|
-
GdsOptionComponent], exports: [
|
|
37697
|
-
|
|
37696
|
+
GdsOptionComponent], exports: [GdsAvatarComponent,
|
|
37697
|
+
GdsAlertComponent,
|
|
37698
37698
|
GdsBadgeComponent,
|
|
37699
37699
|
GdsBlurComponent,
|
|
37700
37700
|
GdsBreadcrumbsComponent,
|
|
@@ -37748,8 +37748,8 @@ class GreenCoreNgModule {
|
|
|
37748
37748
|
GdsFormattedDateComponent,
|
|
37749
37749
|
GdsFormattedNumberComponent,
|
|
37750
37750
|
GdsRadioGroupComponent,
|
|
37751
|
-
GdsSegmentComponent,
|
|
37752
37751
|
GdsSensitiveAccountComponent,
|
|
37752
|
+
GdsSegmentComponent,
|
|
37753
37753
|
GdsSensitiveDateComponent,
|
|
37754
37754
|
GdsSensitiveNumberComponent,
|
|
37755
37755
|
IconAiComponent,
|
|
@@ -38072,8 +38072,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38072
38072
|
type: NgModule,
|
|
38073
38073
|
args: [{
|
|
38074
38074
|
imports: [
|
|
38075
|
-
GdsAlertComponent,
|
|
38076
38075
|
GdsAvatarComponent,
|
|
38076
|
+
GdsAlertComponent,
|
|
38077
38077
|
GdsBadgeComponent,
|
|
38078
38078
|
GdsBlurComponent,
|
|
38079
38079
|
GdsBreadcrumbsComponent,
|
|
@@ -38127,8 +38127,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38127
38127
|
GdsFormattedDateComponent,
|
|
38128
38128
|
GdsFormattedNumberComponent,
|
|
38129
38129
|
GdsRadioGroupComponent,
|
|
38130
|
-
GdsSegmentComponent,
|
|
38131
38130
|
GdsSensitiveAccountComponent,
|
|
38131
|
+
GdsSegmentComponent,
|
|
38132
38132
|
GdsSensitiveDateComponent,
|
|
38133
38133
|
GdsSensitiveNumberComponent,
|
|
38134
38134
|
IconAiComponent,
|
|
@@ -38447,8 +38447,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38447
38447
|
GdsOptionComponent,
|
|
38448
38448
|
],
|
|
38449
38449
|
exports: [
|
|
38450
|
-
GdsAlertComponent,
|
|
38451
38450
|
GdsAvatarComponent,
|
|
38451
|
+
GdsAlertComponent,
|
|
38452
38452
|
GdsBadgeComponent,
|
|
38453
38453
|
GdsBlurComponent,
|
|
38454
38454
|
GdsBreadcrumbsComponent,
|
|
@@ -38502,8 +38502,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38502
38502
|
GdsFormattedDateComponent,
|
|
38503
38503
|
GdsFormattedNumberComponent,
|
|
38504
38504
|
GdsRadioGroupComponent,
|
|
38505
|
-
GdsSegmentComponent,
|
|
38506
38505
|
GdsSensitiveAccountComponent,
|
|
38506
|
+
GdsSegmentComponent,
|
|
38507
38507
|
GdsSensitiveDateComponent,
|
|
38508
38508
|
GdsSensitiveNumberComponent,
|
|
38509
38509
|
IconAiComponent,
|