@sebgroup/green-core-ng 3.18.1 → 3.20.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.
- package/fesm2022/sebgroup-green-core-ng.mjs +160 -142
- package/fesm2022/sebgroup-green-core-ng.mjs.map +1 -1
- package/index.d.ts +96 -77
- package/package.json +2 -2
|
@@ -66,8 +66,6 @@ import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/se
|
|
|
66
66
|
import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
|
|
67
67
|
import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
|
|
68
68
|
import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
|
|
69
|
-
import { GdsTab } from '@sebgroup/green-core/components/tabs/tab/tab.component.js';
|
|
70
|
-
import { GdsTabPanel } from '@sebgroup/green-core/components/tabs/tab-panel/tab-panel.component.js';
|
|
71
69
|
import { IconAi } from '@sebgroup/green-core/components/icon/icons/ai.component.js';
|
|
72
70
|
import { IconAirplaneUp } from '@sebgroup/green-core/components/icon/icons/airplane-up.component.js';
|
|
73
71
|
import { IconArchive } from '@sebgroup/green-core/components/icon/icons/archive.component.js';
|
|
@@ -379,6 +377,8 @@ import { IconYoutube } from '@sebgroup/green-core/components/icon/icons/youtube.
|
|
|
379
377
|
import { IconZap } from '@sebgroup/green-core/components/icon/icons/zap.component.js';
|
|
380
378
|
import { IconZoomIn } from '@sebgroup/green-core/components/icon/icons/zoom-in.component.js';
|
|
381
379
|
import { IconZoomOut } from '@sebgroup/green-core/components/icon/icons/zoom-out.component.js';
|
|
380
|
+
import { GdsTab } from '@sebgroup/green-core/components/tabs/tab/tab.component.js';
|
|
381
|
+
import { GdsTabPanel } from '@sebgroup/green-core/components/tabs/tab-panel/tab-panel.component.js';
|
|
382
382
|
import { getScopedTagName } from '@sebgroup/green-core/scoping';
|
|
383
383
|
import { ɵAnimationRendererFactory as _AnimationRendererFactory, ɵAnimationEngine as _AnimationEngine } from '@angular/animations/browser';
|
|
384
384
|
import * as i1 from '@angular/platform-browser';
|
|
@@ -458,6 +458,8 @@ let GdsAlertComponent = class GdsAlertComponent {
|
|
|
458
458
|
this.gdsClose = new EventEmitter();
|
|
459
459
|
/** Fired when action button is clicked */
|
|
460
460
|
this.gdsAction = new EventEmitter();
|
|
461
|
+
/** Fired when the alert is closed internally */
|
|
462
|
+
this.gdsUiState = new EventEmitter();
|
|
461
463
|
this.cdr.detach();
|
|
462
464
|
}
|
|
463
465
|
ngOnInit() {
|
|
@@ -476,6 +478,9 @@ let GdsAlertComponent = class GdsAlertComponent {
|
|
|
476
478
|
this.elementRef.nativeElement.addEventListener('gds-action', (event) => {
|
|
477
479
|
this.gdsAction.emit(event);
|
|
478
480
|
});
|
|
481
|
+
this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
|
|
482
|
+
this.gdsUiState.emit(event);
|
|
483
|
+
});
|
|
479
484
|
}
|
|
480
485
|
ngOnChanges(changes) {
|
|
481
486
|
// Implementation added by @ProxyInputs decorator
|
|
@@ -484,10 +489,10 @@ let GdsAlertComponent = class GdsAlertComponent {
|
|
|
484
489
|
// Implementation added by @ProxyInputs decorator
|
|
485
490
|
}
|
|
486
491
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
487
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", 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 }); }
|
|
492
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsAlertComponent, isStandalone: true, selector: "gds-alert", inputs: { variant: "variant", label: "label", alertRole: "alertRole", role: "role", closed: ["closed", "closed", booleanAttribute], dismissible: ["dismissible", "dismissible", booleanAttribute], timeout: "timeout", buttonLabel: "buttonLabel", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsClose: "gdsClose", gdsAction: "gdsAction", gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
488
493
|
};
|
|
489
494
|
GdsAlertComponent = __decorate([
|
|
490
|
-
ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
|
|
495
|
+
ProxyInputs(['variant', 'label', 'alertRole', 'role', 'closed', 'dismissible', 'timeout', 'buttonLabel', 'margin', 'margin-inline', 'margin-block', 'syncFirstRender']),
|
|
491
496
|
__metadata("design:paramtypes", [])
|
|
492
497
|
], GdsAlertComponent);
|
|
493
498
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsAlertComponent, decorators: [{
|
|
@@ -502,8 +507,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
502
507
|
type: Input
|
|
503
508
|
}], label: [{
|
|
504
509
|
type: Input
|
|
510
|
+
}], alertRole: [{
|
|
511
|
+
type: Input
|
|
505
512
|
}], role: [{
|
|
506
513
|
type: Input
|
|
514
|
+
}], closed: [{
|
|
515
|
+
type: Input,
|
|
516
|
+
args: [{ transform: booleanAttribute }]
|
|
507
517
|
}], dismissible: [{
|
|
508
518
|
type: Input,
|
|
509
519
|
args: [{ transform: booleanAttribute }]
|
|
@@ -511,6 +521,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
511
521
|
type: Input
|
|
512
522
|
}], buttonLabel: [{
|
|
513
523
|
type: Input
|
|
524
|
+
}], margin: [{
|
|
525
|
+
type: Input
|
|
526
|
+
}], marginInline: [{
|
|
527
|
+
type: Input
|
|
528
|
+
}], marginBlock: [{
|
|
529
|
+
type: Input
|
|
514
530
|
}], syncFirstRender: [{
|
|
515
531
|
type: Input,
|
|
516
532
|
args: [{ transform: booleanAttribute }]
|
|
@@ -518,6 +534,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
518
534
|
type: Output
|
|
519
535
|
}], gdsAction: [{
|
|
520
536
|
type: Output
|
|
537
|
+
}], gdsUiState: [{
|
|
538
|
+
type: Output
|
|
521
539
|
}] } });
|
|
522
540
|
|
|
523
541
|
/**
|
|
@@ -9050,136 +9068,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
9050
9068
|
* Auto-generated from Custom Elements Manifest
|
|
9051
9069
|
*/
|
|
9052
9070
|
|
|
9053
|
-
/**
|
|
9054
|
-
* Angular wrapper for the gds-tab web component
|
|
9055
|
-
*
|
|
9056
|
-
*/
|
|
9057
|
-
let GdsTabComponent = class GdsTabComponent {
|
|
9058
|
-
get element() {
|
|
9059
|
-
return this.elementRef.nativeElement;
|
|
9060
|
-
}
|
|
9061
|
-
constructor() {
|
|
9062
|
-
this.elementRef = inject((ElementRef));
|
|
9063
|
-
this.zone = inject(NgZone);
|
|
9064
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
9065
|
-
/** Fired when the tab is clicked. Note that clicks on disabled tabs are ignored. */
|
|
9066
|
-
this.click = new EventEmitter();
|
|
9067
|
-
this.cdr.detach();
|
|
9068
|
-
}
|
|
9069
|
-
ngOnInit() {
|
|
9070
|
-
// Define the custom element
|
|
9071
|
-
try {
|
|
9072
|
-
GdsTab.define();
|
|
9073
|
-
}
|
|
9074
|
-
catch (e) {
|
|
9075
|
-
// Component may not be available in this version of green-core
|
|
9076
|
-
console.warn('Failed to define gds-tab:', e);
|
|
9077
|
-
}
|
|
9078
|
-
}
|
|
9079
|
-
ngOnChanges(changes) {
|
|
9080
|
-
// Implementation added by @ProxyInputs decorator
|
|
9081
|
-
}
|
|
9082
|
-
ngAfterViewInit() {
|
|
9083
|
-
// Implementation added by @ProxyInputs decorator
|
|
9084
|
-
}
|
|
9085
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsTabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9086
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsTabComponent, isStandalone: true, selector: "gds-tab", inputs: { size: "size", disabled: ["disabled", "disabled", booleanAttribute], selected: ["selected", "selected", booleanAttribute], panel: "panel", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { click: "click" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
9087
|
-
};
|
|
9088
|
-
GdsTabComponent = __decorate([
|
|
9089
|
-
ProxyInputs(['size', 'disabled', 'selected', 'panel', 'syncFirstRender']),
|
|
9090
|
-
__metadata("design:paramtypes", [])
|
|
9091
|
-
], GdsTabComponent);
|
|
9092
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsTabComponent, decorators: [{
|
|
9093
|
-
type: Component,
|
|
9094
|
-
args: [{
|
|
9095
|
-
selector: 'gds-tab',
|
|
9096
|
-
standalone: true,
|
|
9097
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9098
|
-
template: `<ng-content></ng-content>`
|
|
9099
|
-
}]
|
|
9100
|
-
}], ctorParameters: () => [], propDecorators: { size: [{
|
|
9101
|
-
type: Input
|
|
9102
|
-
}], disabled: [{
|
|
9103
|
-
type: Input,
|
|
9104
|
-
args: [{ transform: booleanAttribute }]
|
|
9105
|
-
}], selected: [{
|
|
9106
|
-
type: Input,
|
|
9107
|
-
args: [{ transform: booleanAttribute }]
|
|
9108
|
-
}], panel: [{
|
|
9109
|
-
type: Input
|
|
9110
|
-
}], syncFirstRender: [{
|
|
9111
|
-
type: Input,
|
|
9112
|
-
args: [{ transform: booleanAttribute }]
|
|
9113
|
-
}], click: [{
|
|
9114
|
-
type: Output
|
|
9115
|
-
}] } });
|
|
9116
|
-
|
|
9117
|
-
/**
|
|
9118
|
-
* GdsTabComponent - Angular wrapper for gds-tab
|
|
9119
|
-
*
|
|
9120
|
-
*
|
|
9121
|
-
* Auto-generated from Custom Elements Manifest
|
|
9122
|
-
*/
|
|
9123
|
-
|
|
9124
|
-
/**
|
|
9125
|
-
* Angular wrapper for the gds-tab-panel web component
|
|
9126
|
-
*
|
|
9127
|
-
*/
|
|
9128
|
-
let GdsTabPanelComponent = class GdsTabPanelComponent {
|
|
9129
|
-
get element() {
|
|
9130
|
-
return this.elementRef.nativeElement;
|
|
9131
|
-
}
|
|
9132
|
-
constructor() {
|
|
9133
|
-
this.elementRef = inject((ElementRef));
|
|
9134
|
-
this.zone = inject(NgZone);
|
|
9135
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
9136
|
-
this.cdr.detach();
|
|
9137
|
-
}
|
|
9138
|
-
ngOnInit() {
|
|
9139
|
-
// Define the custom element
|
|
9140
|
-
try {
|
|
9141
|
-
GdsTabPanel.define();
|
|
9142
|
-
}
|
|
9143
|
-
catch (e) {
|
|
9144
|
-
// Component may not be available in this version of green-core
|
|
9145
|
-
console.warn('Failed to define gds-tab-panel:', e);
|
|
9146
|
-
}
|
|
9147
|
-
}
|
|
9148
|
-
ngOnChanges(changes) {
|
|
9149
|
-
// Implementation added by @ProxyInputs decorator
|
|
9150
|
-
}
|
|
9151
|
-
ngAfterViewInit() {
|
|
9152
|
-
// Implementation added by @ProxyInputs decorator
|
|
9153
|
-
}
|
|
9154
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsTabPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9155
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsTabPanelComponent, isStandalone: true, selector: "gds-tab-panel", inputs: { name: "name", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
9156
|
-
};
|
|
9157
|
-
GdsTabPanelComponent = __decorate([
|
|
9158
|
-
ProxyInputs(['name', 'syncFirstRender']),
|
|
9159
|
-
__metadata("design:paramtypes", [])
|
|
9160
|
-
], GdsTabPanelComponent);
|
|
9161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsTabPanelComponent, decorators: [{
|
|
9162
|
-
type: Component,
|
|
9163
|
-
args: [{
|
|
9164
|
-
selector: 'gds-tab-panel',
|
|
9165
|
-
standalone: true,
|
|
9166
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9167
|
-
template: `<ng-content></ng-content>`
|
|
9168
|
-
}]
|
|
9169
|
-
}], ctorParameters: () => [], propDecorators: { name: [{
|
|
9170
|
-
type: Input
|
|
9171
|
-
}], syncFirstRender: [{
|
|
9172
|
-
type: Input,
|
|
9173
|
-
args: [{ transform: booleanAttribute }]
|
|
9174
|
-
}] } });
|
|
9175
|
-
|
|
9176
|
-
/**
|
|
9177
|
-
* GdsTabPanelComponent - Angular wrapper for gds-tab-panel
|
|
9178
|
-
*
|
|
9179
|
-
*
|
|
9180
|
-
* Auto-generated from Custom Elements Manifest
|
|
9181
|
-
*/
|
|
9182
|
-
|
|
9183
9071
|
/**
|
|
9184
9072
|
* Angular wrapper for the gds-icon-ai web component
|
|
9185
9073
|
*
|
|
@@ -37792,6 +37680,136 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
37792
37680
|
* Auto-generated from Custom Elements Manifest
|
|
37793
37681
|
*/
|
|
37794
37682
|
|
|
37683
|
+
/**
|
|
37684
|
+
* Angular wrapper for the gds-tab web component
|
|
37685
|
+
*
|
|
37686
|
+
*/
|
|
37687
|
+
let GdsTabComponent = class GdsTabComponent {
|
|
37688
|
+
get element() {
|
|
37689
|
+
return this.elementRef.nativeElement;
|
|
37690
|
+
}
|
|
37691
|
+
constructor() {
|
|
37692
|
+
this.elementRef = inject((ElementRef));
|
|
37693
|
+
this.zone = inject(NgZone);
|
|
37694
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
37695
|
+
/** Fired when the tab is clicked. Note that clicks on disabled tabs are ignored. */
|
|
37696
|
+
this.click = new EventEmitter();
|
|
37697
|
+
this.cdr.detach();
|
|
37698
|
+
}
|
|
37699
|
+
ngOnInit() {
|
|
37700
|
+
// Define the custom element
|
|
37701
|
+
try {
|
|
37702
|
+
GdsTab.define();
|
|
37703
|
+
}
|
|
37704
|
+
catch (e) {
|
|
37705
|
+
// Component may not be available in this version of green-core
|
|
37706
|
+
console.warn('Failed to define gds-tab:', e);
|
|
37707
|
+
}
|
|
37708
|
+
}
|
|
37709
|
+
ngOnChanges(changes) {
|
|
37710
|
+
// Implementation added by @ProxyInputs decorator
|
|
37711
|
+
}
|
|
37712
|
+
ngAfterViewInit() {
|
|
37713
|
+
// Implementation added by @ProxyInputs decorator
|
|
37714
|
+
}
|
|
37715
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsTabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
37716
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsTabComponent, isStandalone: true, selector: "gds-tab", inputs: { size: "size", disabled: ["disabled", "disabled", booleanAttribute], selected: ["selected", "selected", booleanAttribute], panel: "panel", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { click: "click" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
37717
|
+
};
|
|
37718
|
+
GdsTabComponent = __decorate([
|
|
37719
|
+
ProxyInputs(['size', 'disabled', 'selected', 'panel', 'syncFirstRender']),
|
|
37720
|
+
__metadata("design:paramtypes", [])
|
|
37721
|
+
], GdsTabComponent);
|
|
37722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsTabComponent, decorators: [{
|
|
37723
|
+
type: Component,
|
|
37724
|
+
args: [{
|
|
37725
|
+
selector: 'gds-tab',
|
|
37726
|
+
standalone: true,
|
|
37727
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
37728
|
+
template: `<ng-content></ng-content>`
|
|
37729
|
+
}]
|
|
37730
|
+
}], ctorParameters: () => [], propDecorators: { size: [{
|
|
37731
|
+
type: Input
|
|
37732
|
+
}], disabled: [{
|
|
37733
|
+
type: Input,
|
|
37734
|
+
args: [{ transform: booleanAttribute }]
|
|
37735
|
+
}], selected: [{
|
|
37736
|
+
type: Input,
|
|
37737
|
+
args: [{ transform: booleanAttribute }]
|
|
37738
|
+
}], panel: [{
|
|
37739
|
+
type: Input
|
|
37740
|
+
}], syncFirstRender: [{
|
|
37741
|
+
type: Input,
|
|
37742
|
+
args: [{ transform: booleanAttribute }]
|
|
37743
|
+
}], click: [{
|
|
37744
|
+
type: Output
|
|
37745
|
+
}] } });
|
|
37746
|
+
|
|
37747
|
+
/**
|
|
37748
|
+
* GdsTabComponent - Angular wrapper for gds-tab
|
|
37749
|
+
*
|
|
37750
|
+
*
|
|
37751
|
+
* Auto-generated from Custom Elements Manifest
|
|
37752
|
+
*/
|
|
37753
|
+
|
|
37754
|
+
/**
|
|
37755
|
+
* Angular wrapper for the gds-tab-panel web component
|
|
37756
|
+
*
|
|
37757
|
+
*/
|
|
37758
|
+
let GdsTabPanelComponent = class GdsTabPanelComponent {
|
|
37759
|
+
get element() {
|
|
37760
|
+
return this.elementRef.nativeElement;
|
|
37761
|
+
}
|
|
37762
|
+
constructor() {
|
|
37763
|
+
this.elementRef = inject((ElementRef));
|
|
37764
|
+
this.zone = inject(NgZone);
|
|
37765
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
37766
|
+
this.cdr.detach();
|
|
37767
|
+
}
|
|
37768
|
+
ngOnInit() {
|
|
37769
|
+
// Define the custom element
|
|
37770
|
+
try {
|
|
37771
|
+
GdsTabPanel.define();
|
|
37772
|
+
}
|
|
37773
|
+
catch (e) {
|
|
37774
|
+
// Component may not be available in this version of green-core
|
|
37775
|
+
console.warn('Failed to define gds-tab-panel:', e);
|
|
37776
|
+
}
|
|
37777
|
+
}
|
|
37778
|
+
ngOnChanges(changes) {
|
|
37779
|
+
// Implementation added by @ProxyInputs decorator
|
|
37780
|
+
}
|
|
37781
|
+
ngAfterViewInit() {
|
|
37782
|
+
// Implementation added by @ProxyInputs decorator
|
|
37783
|
+
}
|
|
37784
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsTabPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
37785
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: GdsTabPanelComponent, isStandalone: true, selector: "gds-tab-panel", inputs: { name: "name", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
37786
|
+
};
|
|
37787
|
+
GdsTabPanelComponent = __decorate([
|
|
37788
|
+
ProxyInputs(['name', 'syncFirstRender']),
|
|
37789
|
+
__metadata("design:paramtypes", [])
|
|
37790
|
+
], GdsTabPanelComponent);
|
|
37791
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: GdsTabPanelComponent, decorators: [{
|
|
37792
|
+
type: Component,
|
|
37793
|
+
args: [{
|
|
37794
|
+
selector: 'gds-tab-panel',
|
|
37795
|
+
standalone: true,
|
|
37796
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
37797
|
+
template: `<ng-content></ng-content>`
|
|
37798
|
+
}]
|
|
37799
|
+
}], ctorParameters: () => [], propDecorators: { name: [{
|
|
37800
|
+
type: Input
|
|
37801
|
+
}], syncFirstRender: [{
|
|
37802
|
+
type: Input,
|
|
37803
|
+
args: [{ transform: booleanAttribute }]
|
|
37804
|
+
}] } });
|
|
37805
|
+
|
|
37806
|
+
/**
|
|
37807
|
+
* GdsTabPanelComponent - Angular wrapper for gds-tab-panel
|
|
37808
|
+
*
|
|
37809
|
+
*
|
|
37810
|
+
* Auto-generated from Custom Elements Manifest
|
|
37811
|
+
*/
|
|
37812
|
+
|
|
37795
37813
|
/**
|
|
37796
37814
|
* Angular wrapper for the gds-menu-item web component
|
|
37797
37815
|
*
|
|
@@ -38067,8 +38085,6 @@ class GreenCoreNgModule {
|
|
|
38067
38085
|
GdsSensitiveAccountComponent,
|
|
38068
38086
|
GdsSensitiveDateComponent,
|
|
38069
38087
|
GdsSensitiveNumberComponent,
|
|
38070
|
-
GdsTabComponent,
|
|
38071
|
-
GdsTabPanelComponent,
|
|
38072
38088
|
IconAiComponent,
|
|
38073
38089
|
IconAirplaneUpComponent,
|
|
38074
38090
|
IconArchiveComponent,
|
|
@@ -38380,6 +38396,8 @@ class GreenCoreNgModule {
|
|
|
38380
38396
|
IconZapComponent,
|
|
38381
38397
|
IconZoomInComponent,
|
|
38382
38398
|
IconZoomOutComponent,
|
|
38399
|
+
GdsTabComponent,
|
|
38400
|
+
GdsTabPanelComponent,
|
|
38383
38401
|
GdsMenuItemComponent,
|
|
38384
38402
|
GdsMenuHeadingComponent,
|
|
38385
38403
|
GdsOptionComponent], exports: [GdsAlertComponent,
|
|
@@ -38444,8 +38462,6 @@ class GreenCoreNgModule {
|
|
|
38444
38462
|
GdsSensitiveAccountComponent,
|
|
38445
38463
|
GdsSensitiveDateComponent,
|
|
38446
38464
|
GdsSensitiveNumberComponent,
|
|
38447
|
-
GdsTabComponent,
|
|
38448
|
-
GdsTabPanelComponent,
|
|
38449
38465
|
IconAiComponent,
|
|
38450
38466
|
IconAirplaneUpComponent,
|
|
38451
38467
|
IconArchiveComponent,
|
|
@@ -38757,6 +38773,8 @@ class GreenCoreNgModule {
|
|
|
38757
38773
|
IconZapComponent,
|
|
38758
38774
|
IconZoomInComponent,
|
|
38759
38775
|
IconZoomOutComponent,
|
|
38776
|
+
GdsTabComponent,
|
|
38777
|
+
GdsTabPanelComponent,
|
|
38760
38778
|
GdsMenuItemComponent,
|
|
38761
38779
|
GdsMenuHeadingComponent,
|
|
38762
38780
|
GdsOptionComponent] }); }
|
|
@@ -38828,8 +38846,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
38828
38846
|
GdsSensitiveAccountComponent,
|
|
38829
38847
|
GdsSensitiveDateComponent,
|
|
38830
38848
|
GdsSensitiveNumberComponent,
|
|
38831
|
-
GdsTabComponent,
|
|
38832
|
-
GdsTabPanelComponent,
|
|
38833
38849
|
IconAiComponent,
|
|
38834
38850
|
IconAirplaneUpComponent,
|
|
38835
38851
|
IconArchiveComponent,
|
|
@@ -39141,6 +39157,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
39141
39157
|
IconZapComponent,
|
|
39142
39158
|
IconZoomInComponent,
|
|
39143
39159
|
IconZoomOutComponent,
|
|
39160
|
+
GdsTabComponent,
|
|
39161
|
+
GdsTabPanelComponent,
|
|
39144
39162
|
GdsMenuItemComponent,
|
|
39145
39163
|
GdsMenuHeadingComponent,
|
|
39146
39164
|
GdsOptionComponent,
|
|
@@ -39208,8 +39226,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
39208
39226
|
GdsSensitiveAccountComponent,
|
|
39209
39227
|
GdsSensitiveDateComponent,
|
|
39210
39228
|
GdsSensitiveNumberComponent,
|
|
39211
|
-
GdsTabComponent,
|
|
39212
|
-
GdsTabPanelComponent,
|
|
39213
39229
|
IconAiComponent,
|
|
39214
39230
|
IconAirplaneUpComponent,
|
|
39215
39231
|
IconArchiveComponent,
|
|
@@ -39521,6 +39537,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
39521
39537
|
IconZapComponent,
|
|
39522
39538
|
IconZoomInComponent,
|
|
39523
39539
|
IconZoomOutComponent,
|
|
39540
|
+
GdsTabComponent,
|
|
39541
|
+
GdsTabPanelComponent,
|
|
39524
39542
|
GdsMenuItemComponent,
|
|
39525
39543
|
GdsMenuHeadingComponent,
|
|
39526
39544
|
GdsOptionComponent,
|