@sebgroup/green-core-ng 3.8.0 → 3.9.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.
|
@@ -42,8 +42,8 @@ import { GdsRichText } from '@sebgroup/green-core/components/rich-text/rich-text
|
|
|
42
42
|
import { GdsSegmentedControl } from '@sebgroup/green-core/components/segmented-control/segmented-control.component.js';
|
|
43
43
|
import { GdsSelect } from '@sebgroup/green-core/components/select/select.component.js';
|
|
44
44
|
import { GdsSignal } from '@sebgroup/green-core/components/signal/signal.component.js';
|
|
45
|
-
import { GdsSwitch } from '@sebgroup/green-core/components/switch/switch.component.js';
|
|
46
45
|
import { GdsSpinner } from '@sebgroup/green-core/components/spinner/spinner.component.js';
|
|
46
|
+
import { GdsSwitch } from '@sebgroup/green-core/components/switch/switch.component.js';
|
|
47
47
|
import { GdsTable } from '@sebgroup/green-core/components/table/table.component.js';
|
|
48
48
|
import { GdsText } from '@sebgroup/green-core/components/text/text.component.js';
|
|
49
49
|
import { GdsTextarea } from '@sebgroup/green-core/components/textarea/textarea.component.js';
|
|
@@ -52,10 +52,10 @@ import { GdsVideo } from '@sebgroup/green-core/components/video/video.component.
|
|
|
52
52
|
import { GdsCardPattern01 } from '@sebgroup/green-core/patterns/card-pattern-01/card-pattern-01.component.js';
|
|
53
53
|
import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-group/avatar-group.component.js';
|
|
54
54
|
import { GdsCheckboxGroup } from '@sebgroup/green-core/components/checkbox/checkbox-group/checkbox-group.component.js';
|
|
55
|
-
import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
|
|
56
55
|
import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
|
|
57
|
-
import {
|
|
56
|
+
import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
|
|
58
57
|
import { GdsFormattedAccount } from '@sebgroup/green-core/components/formatted-text/account/formatted-account.component.js';
|
|
58
|
+
import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
|
|
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';
|
|
@@ -5419,6 +5419,114 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
5419
5419
|
* Auto-generated from Custom Elements Manifest
|
|
5420
5420
|
*/
|
|
5421
5421
|
|
|
5422
|
+
/**
|
|
5423
|
+
* Angular wrapper for the gds-spinner web component
|
|
5424
|
+
*
|
|
5425
|
+
*/
|
|
5426
|
+
let GdsSpinnerComponent = class GdsSpinnerComponent {
|
|
5427
|
+
get element() {
|
|
5428
|
+
return this.elementRef.nativeElement;
|
|
5429
|
+
}
|
|
5430
|
+
constructor() {
|
|
5431
|
+
this.elementRef = inject((ElementRef));
|
|
5432
|
+
this.zone = inject(NgZone);
|
|
5433
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5434
|
+
/** When the spinner is connected and visible */
|
|
5435
|
+
this.gdsSpinnerConnected = new EventEmitter();
|
|
5436
|
+
this.cdr.detach();
|
|
5437
|
+
}
|
|
5438
|
+
ngOnInit() {
|
|
5439
|
+
// Define the custom element
|
|
5440
|
+
try {
|
|
5441
|
+
GdsSpinner.define();
|
|
5442
|
+
}
|
|
5443
|
+
catch (e) {
|
|
5444
|
+
// Component may not be available in this version of green-core
|
|
5445
|
+
console.warn('Failed to define gds-spinner:', e);
|
|
5446
|
+
}
|
|
5447
|
+
// Set up event listeners
|
|
5448
|
+
this.elementRef.nativeElement.addEventListener('gds-spinner-connected', (event) => {
|
|
5449
|
+
this.gdsSpinnerConnected.emit(event);
|
|
5450
|
+
});
|
|
5451
|
+
}
|
|
5452
|
+
ngOnChanges(changes) {
|
|
5453
|
+
// Implementation added by @ProxyInputs decorator
|
|
5454
|
+
}
|
|
5455
|
+
ngAfterViewInit() {
|
|
5456
|
+
// Implementation added by @ProxyInputs decorator
|
|
5457
|
+
}
|
|
5458
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5459
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSpinnerComponent, isStandalone: true, selector: "gds-spinner", inputs: { label: "label", labelPosition: "labelPosition", showLabel: ["showLabel", "showLabel", booleanAttribute], cover: ["cover", "cover", booleanAttribute], fullscreen: ["fullscreen", "fullscreen", booleanAttribute], size: "size", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", position: "position", transform: "transform", inset: "inset", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsSpinnerConnected: "gdsSpinnerConnected" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5460
|
+
};
|
|
5461
|
+
GdsSpinnerComponent = __decorate([
|
|
5462
|
+
ProxyInputs(['label', 'labelPosition', 'showLabel', 'cover', 'fullscreen', 'size', 'margin', 'margin-inline', 'margin-block', 'position', 'transform', 'inset', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
|
|
5463
|
+
__metadata("design:paramtypes", [])
|
|
5464
|
+
], GdsSpinnerComponent);
|
|
5465
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSpinnerComponent, decorators: [{
|
|
5466
|
+
type: Component,
|
|
5467
|
+
args: [{
|
|
5468
|
+
selector: 'gds-spinner',
|
|
5469
|
+
standalone: true,
|
|
5470
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5471
|
+
template: `<ng-content></ng-content>`
|
|
5472
|
+
}]
|
|
5473
|
+
}], ctorParameters: () => [], propDecorators: { label: [{
|
|
5474
|
+
type: Input
|
|
5475
|
+
}], labelPosition: [{
|
|
5476
|
+
type: Input
|
|
5477
|
+
}], showLabel: [{
|
|
5478
|
+
type: Input,
|
|
5479
|
+
args: [{ transform: booleanAttribute }]
|
|
5480
|
+
}], cover: [{
|
|
5481
|
+
type: Input,
|
|
5482
|
+
args: [{ transform: booleanAttribute }]
|
|
5483
|
+
}], fullscreen: [{
|
|
5484
|
+
type: Input,
|
|
5485
|
+
args: [{ transform: booleanAttribute }]
|
|
5486
|
+
}], size: [{
|
|
5487
|
+
type: Input
|
|
5488
|
+
}], margin: [{
|
|
5489
|
+
type: Input
|
|
5490
|
+
}], marginInline: [{
|
|
5491
|
+
type: Input
|
|
5492
|
+
}], marginBlock: [{
|
|
5493
|
+
type: Input
|
|
5494
|
+
}], position: [{
|
|
5495
|
+
type: Input
|
|
5496
|
+
}], transform: [{
|
|
5497
|
+
type: Input
|
|
5498
|
+
}], inset: [{
|
|
5499
|
+
type: Input
|
|
5500
|
+
}], alignSelf: [{
|
|
5501
|
+
type: Input
|
|
5502
|
+
}], justifySelf: [{
|
|
5503
|
+
type: Input
|
|
5504
|
+
}], placeSelf: [{
|
|
5505
|
+
type: Input
|
|
5506
|
+
}], gridColumn: [{
|
|
5507
|
+
type: Input
|
|
5508
|
+
}], gridRow: [{
|
|
5509
|
+
type: Input
|
|
5510
|
+
}], gridArea: [{
|
|
5511
|
+
type: Input
|
|
5512
|
+
}], flex: [{
|
|
5513
|
+
type: Input
|
|
5514
|
+
}], order: [{
|
|
5515
|
+
type: Input
|
|
5516
|
+
}], syncFirstRender: [{
|
|
5517
|
+
type: Input,
|
|
5518
|
+
args: [{ transform: booleanAttribute }]
|
|
5519
|
+
}], gdsSpinnerConnected: [{
|
|
5520
|
+
type: Output
|
|
5521
|
+
}] } });
|
|
5522
|
+
|
|
5523
|
+
/**
|
|
5524
|
+
* GdsSpinnerComponent - Angular wrapper for gds-spinner
|
|
5525
|
+
*
|
|
5526
|
+
*
|
|
5527
|
+
* Auto-generated from Custom Elements Manifest
|
|
5528
|
+
*/
|
|
5529
|
+
|
|
5422
5530
|
/**
|
|
5423
5531
|
* Angular wrapper for the gds-switch web component
|
|
5424
5532
|
*
|
|
@@ -5555,114 +5663,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
5555
5663
|
* Auto-generated from Custom Elements Manifest
|
|
5556
5664
|
*/
|
|
5557
5665
|
|
|
5558
|
-
/**
|
|
5559
|
-
* Angular wrapper for the gds-spinner web component
|
|
5560
|
-
*
|
|
5561
|
-
*/
|
|
5562
|
-
let GdsSpinnerComponent = class GdsSpinnerComponent {
|
|
5563
|
-
get element() {
|
|
5564
|
-
return this.elementRef.nativeElement;
|
|
5565
|
-
}
|
|
5566
|
-
constructor() {
|
|
5567
|
-
this.elementRef = inject((ElementRef));
|
|
5568
|
-
this.zone = inject(NgZone);
|
|
5569
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
5570
|
-
/** When the spinner is connected and visible */
|
|
5571
|
-
this.gdsSpinnerConnected = new EventEmitter();
|
|
5572
|
-
this.cdr.detach();
|
|
5573
|
-
}
|
|
5574
|
-
ngOnInit() {
|
|
5575
|
-
// Define the custom element
|
|
5576
|
-
try {
|
|
5577
|
-
GdsSpinner.define();
|
|
5578
|
-
}
|
|
5579
|
-
catch (e) {
|
|
5580
|
-
// Component may not be available in this version of green-core
|
|
5581
|
-
console.warn('Failed to define gds-spinner:', e);
|
|
5582
|
-
}
|
|
5583
|
-
// Set up event listeners
|
|
5584
|
-
this.elementRef.nativeElement.addEventListener('gds-spinner-connected', (event) => {
|
|
5585
|
-
this.gdsSpinnerConnected.emit(event);
|
|
5586
|
-
});
|
|
5587
|
-
}
|
|
5588
|
-
ngOnChanges(changes) {
|
|
5589
|
-
// Implementation added by @ProxyInputs decorator
|
|
5590
|
-
}
|
|
5591
|
-
ngAfterViewInit() {
|
|
5592
|
-
// Implementation added by @ProxyInputs decorator
|
|
5593
|
-
}
|
|
5594
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5595
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSpinnerComponent, isStandalone: true, selector: "gds-spinner", inputs: { label: "label", labelPosition: "labelPosition", showLabel: ["showLabel", "showLabel", booleanAttribute], cover: ["cover", "cover", booleanAttribute], fullscreen: ["fullscreen", "fullscreen", booleanAttribute], size: "size", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", position: "position", transform: "transform", inset: "inset", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, outputs: { gdsSpinnerConnected: "gdsSpinnerConnected" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5596
|
-
};
|
|
5597
|
-
GdsSpinnerComponent = __decorate([
|
|
5598
|
-
ProxyInputs(['label', 'labelPosition', 'showLabel', 'cover', 'fullscreen', 'size', 'margin', 'margin-inline', 'margin-block', 'position', 'transform', 'inset', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
|
|
5599
|
-
__metadata("design:paramtypes", [])
|
|
5600
|
-
], GdsSpinnerComponent);
|
|
5601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSpinnerComponent, decorators: [{
|
|
5602
|
-
type: Component,
|
|
5603
|
-
args: [{
|
|
5604
|
-
selector: 'gds-spinner',
|
|
5605
|
-
standalone: true,
|
|
5606
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5607
|
-
template: `<ng-content></ng-content>`
|
|
5608
|
-
}]
|
|
5609
|
-
}], ctorParameters: () => [], propDecorators: { label: [{
|
|
5610
|
-
type: Input
|
|
5611
|
-
}], labelPosition: [{
|
|
5612
|
-
type: Input
|
|
5613
|
-
}], showLabel: [{
|
|
5614
|
-
type: Input,
|
|
5615
|
-
args: [{ transform: booleanAttribute }]
|
|
5616
|
-
}], cover: [{
|
|
5617
|
-
type: Input,
|
|
5618
|
-
args: [{ transform: booleanAttribute }]
|
|
5619
|
-
}], fullscreen: [{
|
|
5620
|
-
type: Input,
|
|
5621
|
-
args: [{ transform: booleanAttribute }]
|
|
5622
|
-
}], size: [{
|
|
5623
|
-
type: Input
|
|
5624
|
-
}], margin: [{
|
|
5625
|
-
type: Input
|
|
5626
|
-
}], marginInline: [{
|
|
5627
|
-
type: Input
|
|
5628
|
-
}], marginBlock: [{
|
|
5629
|
-
type: Input
|
|
5630
|
-
}], position: [{
|
|
5631
|
-
type: Input
|
|
5632
|
-
}], transform: [{
|
|
5633
|
-
type: Input
|
|
5634
|
-
}], inset: [{
|
|
5635
|
-
type: Input
|
|
5636
|
-
}], alignSelf: [{
|
|
5637
|
-
type: Input
|
|
5638
|
-
}], justifySelf: [{
|
|
5639
|
-
type: Input
|
|
5640
|
-
}], placeSelf: [{
|
|
5641
|
-
type: Input
|
|
5642
|
-
}], gridColumn: [{
|
|
5643
|
-
type: Input
|
|
5644
|
-
}], gridRow: [{
|
|
5645
|
-
type: Input
|
|
5646
|
-
}], gridArea: [{
|
|
5647
|
-
type: Input
|
|
5648
|
-
}], flex: [{
|
|
5649
|
-
type: Input
|
|
5650
|
-
}], order: [{
|
|
5651
|
-
type: Input
|
|
5652
|
-
}], syncFirstRender: [{
|
|
5653
|
-
type: Input,
|
|
5654
|
-
args: [{ transform: booleanAttribute }]
|
|
5655
|
-
}], gdsSpinnerConnected: [{
|
|
5656
|
-
type: Output
|
|
5657
|
-
}] } });
|
|
5658
|
-
|
|
5659
|
-
/**
|
|
5660
|
-
* GdsSpinnerComponent - Angular wrapper for gds-spinner
|
|
5661
|
-
*
|
|
5662
|
-
*
|
|
5663
|
-
* Auto-generated from Custom Elements Manifest
|
|
5664
|
-
*/
|
|
5665
|
-
|
|
5666
5666
|
/**
|
|
5667
5667
|
* Angular wrapper for the gds-table web component
|
|
5668
5668
|
*
|
|
@@ -6808,66 +6808,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
6808
6808
|
* Auto-generated from Custom Elements Manifest
|
|
6809
6809
|
*/
|
|
6810
6810
|
|
|
6811
|
-
/**
|
|
6812
|
-
* Angular wrapper for the gds-icon-details web component
|
|
6813
|
-
*
|
|
6814
|
-
*/
|
|
6815
|
-
let GdsIconDetailsComponent = class GdsIconDetailsComponent {
|
|
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
|
-
GdsIconDetails.define();
|
|
6829
|
-
}
|
|
6830
|
-
catch (e) {
|
|
6831
|
-
// Component may not be available in this version of green-core
|
|
6832
|
-
console.warn('Failed to define gds-icon-details:', 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: GdsIconDetailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6842
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsIconDetailsComponent, isStandalone: true, selector: "gds-icon-details", inputs: { open: ["open", "open", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6843
|
-
};
|
|
6844
|
-
GdsIconDetailsComponent = __decorate([
|
|
6845
|
-
ProxyInputs(['open', 'syncFirstRender']),
|
|
6846
|
-
__metadata("design:paramtypes", [])
|
|
6847
|
-
], GdsIconDetailsComponent);
|
|
6848
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsIconDetailsComponent, decorators: [{
|
|
6849
|
-
type: Component,
|
|
6850
|
-
args: [{
|
|
6851
|
-
selector: 'gds-icon-details',
|
|
6852
|
-
standalone: true,
|
|
6853
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6854
|
-
template: `<ng-content></ng-content>`
|
|
6855
|
-
}]
|
|
6856
|
-
}], ctorParameters: () => [], propDecorators: { open: [{
|
|
6857
|
-
type: Input,
|
|
6858
|
-
args: [{ transform: booleanAttribute }]
|
|
6859
|
-
}], syncFirstRender: [{
|
|
6860
|
-
type: Input,
|
|
6861
|
-
args: [{ transform: booleanAttribute }]
|
|
6862
|
-
}] } });
|
|
6863
|
-
|
|
6864
|
-
/**
|
|
6865
|
-
* GdsIconDetailsComponent - Angular wrapper for gds-icon-details
|
|
6866
|
-
*
|
|
6867
|
-
*
|
|
6868
|
-
* Auto-generated from Custom Elements Manifest
|
|
6869
|
-
*/
|
|
6870
|
-
|
|
6871
6811
|
/**
|
|
6872
6812
|
* Angular wrapper for the gds-breadcrumb web component
|
|
6873
6813
|
*
|
|
@@ -7007,10 +6947,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
7007
6947
|
*/
|
|
7008
6948
|
|
|
7009
6949
|
/**
|
|
7010
|
-
* Angular wrapper for the gds-
|
|
6950
|
+
* Angular wrapper for the gds-icon-details web component
|
|
7011
6951
|
*
|
|
7012
6952
|
*/
|
|
7013
|
-
let
|
|
6953
|
+
let GdsIconDetailsComponent = class GdsIconDetailsComponent {
|
|
7014
6954
|
get element() {
|
|
7015
6955
|
return this.elementRef.nativeElement;
|
|
7016
6956
|
}
|
|
@@ -7023,11 +6963,11 @@ let GdsFilterChipComponent = class GdsFilterChipComponent {
|
|
|
7023
6963
|
ngOnInit() {
|
|
7024
6964
|
// Define the custom element
|
|
7025
6965
|
try {
|
|
7026
|
-
|
|
6966
|
+
GdsIconDetails.define();
|
|
7027
6967
|
}
|
|
7028
6968
|
catch (e) {
|
|
7029
6969
|
// Component may not be available in this version of green-core
|
|
7030
|
-
console.warn('Failed to define gds-
|
|
6970
|
+
console.warn('Failed to define gds-icon-details:', e);
|
|
7031
6971
|
}
|
|
7032
6972
|
}
|
|
7033
6973
|
ngOnChanges(changes) {
|
|
@@ -7036,35 +6976,31 @@ let GdsFilterChipComponent = class GdsFilterChipComponent {
|
|
|
7036
6976
|
ngAfterViewInit() {
|
|
7037
6977
|
// Implementation added by @ProxyInputs decorator
|
|
7038
6978
|
}
|
|
7039
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
7040
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type:
|
|
6979
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsIconDetailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6980
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsIconDetailsComponent, isStandalone: true, selector: "gds-icon-details", inputs: { open: ["open", "open", booleanAttribute], syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7041
6981
|
};
|
|
7042
|
-
|
|
7043
|
-
ProxyInputs(['
|
|
6982
|
+
GdsIconDetailsComponent = __decorate([
|
|
6983
|
+
ProxyInputs(['open', 'syncFirstRender']),
|
|
7044
6984
|
__metadata("design:paramtypes", [])
|
|
7045
|
-
],
|
|
7046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
6985
|
+
], GdsIconDetailsComponent);
|
|
6986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsIconDetailsComponent, decorators: [{
|
|
7047
6987
|
type: Component,
|
|
7048
6988
|
args: [{
|
|
7049
|
-
selector: 'gds-
|
|
6989
|
+
selector: 'gds-icon-details',
|
|
7050
6990
|
standalone: true,
|
|
7051
6991
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7052
6992
|
template: `<ng-content></ng-content>`
|
|
7053
6993
|
}]
|
|
7054
|
-
}], ctorParameters: () => [], propDecorators: {
|
|
6994
|
+
}], ctorParameters: () => [], propDecorators: { open: [{
|
|
7055
6995
|
type: Input,
|
|
7056
6996
|
args: [{ transform: booleanAttribute }]
|
|
7057
|
-
}], value: [{
|
|
7058
|
-
type: Input
|
|
7059
|
-
}], size: [{
|
|
7060
|
-
type: Input
|
|
7061
6997
|
}], syncFirstRender: [{
|
|
7062
6998
|
type: Input,
|
|
7063
6999
|
args: [{ transform: booleanAttribute }]
|
|
7064
7000
|
}] } });
|
|
7065
7001
|
|
|
7066
7002
|
/**
|
|
7067
|
-
*
|
|
7003
|
+
* GdsIconDetailsComponent - Angular wrapper for gds-icon-details
|
|
7068
7004
|
*
|
|
7069
7005
|
*
|
|
7070
7006
|
* Auto-generated from Custom Elements Manifest
|
|
@@ -7259,6 +7195,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
7259
7195
|
* Auto-generated from Custom Elements Manifest
|
|
7260
7196
|
*/
|
|
7261
7197
|
|
|
7198
|
+
/**
|
|
7199
|
+
* Angular wrapper for the gds-filter-chip web component
|
|
7200
|
+
*
|
|
7201
|
+
*/
|
|
7202
|
+
let GdsFilterChipComponent = class GdsFilterChipComponent {
|
|
7203
|
+
get element() {
|
|
7204
|
+
return this.elementRef.nativeElement;
|
|
7205
|
+
}
|
|
7206
|
+
constructor() {
|
|
7207
|
+
this.elementRef = inject((ElementRef));
|
|
7208
|
+
this.zone = inject(NgZone);
|
|
7209
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
7210
|
+
this.cdr.detach();
|
|
7211
|
+
}
|
|
7212
|
+
ngOnInit() {
|
|
7213
|
+
// Define the custom element
|
|
7214
|
+
try {
|
|
7215
|
+
GdsFilterChip.define();
|
|
7216
|
+
}
|
|
7217
|
+
catch (e) {
|
|
7218
|
+
// Component may not be available in this version of green-core
|
|
7219
|
+
console.warn('Failed to define gds-filter-chip:', e);
|
|
7220
|
+
}
|
|
7221
|
+
}
|
|
7222
|
+
ngOnChanges(changes) {
|
|
7223
|
+
// Implementation added by @ProxyInputs decorator
|
|
7224
|
+
}
|
|
7225
|
+
ngAfterViewInit() {
|
|
7226
|
+
// Implementation added by @ProxyInputs decorator
|
|
7227
|
+
}
|
|
7228
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7229
|
+
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 }); }
|
|
7230
|
+
};
|
|
7231
|
+
GdsFilterChipComponent = __decorate([
|
|
7232
|
+
ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
|
|
7233
|
+
__metadata("design:paramtypes", [])
|
|
7234
|
+
], GdsFilterChipComponent);
|
|
7235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
|
|
7236
|
+
type: Component,
|
|
7237
|
+
args: [{
|
|
7238
|
+
selector: 'gds-filter-chip',
|
|
7239
|
+
standalone: true,
|
|
7240
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7241
|
+
template: `<ng-content></ng-content>`
|
|
7242
|
+
}]
|
|
7243
|
+
}], ctorParameters: () => [], propDecorators: { selected: [{
|
|
7244
|
+
type: Input,
|
|
7245
|
+
args: [{ transform: booleanAttribute }]
|
|
7246
|
+
}], value: [{
|
|
7247
|
+
type: Input
|
|
7248
|
+
}], size: [{
|
|
7249
|
+
type: Input
|
|
7250
|
+
}], syncFirstRender: [{
|
|
7251
|
+
type: Input,
|
|
7252
|
+
args: [{ transform: booleanAttribute }]
|
|
7253
|
+
}] } });
|
|
7254
|
+
|
|
7255
|
+
/**
|
|
7256
|
+
* GdsFilterChipComponent - Angular wrapper for gds-filter-chip
|
|
7257
|
+
*
|
|
7258
|
+
*
|
|
7259
|
+
* Auto-generated from Custom Elements Manifest
|
|
7260
|
+
*/
|
|
7261
|
+
|
|
7262
7262
|
/**
|
|
7263
7263
|
* Angular wrapper for the gds-formatted-date web component
|
|
7264
7264
|
*
|
|
@@ -37220,8 +37220,8 @@ class GreenCoreNgModule {
|
|
|
37220
37220
|
GdsSegmentedControlComponent,
|
|
37221
37221
|
GdsSelectComponent,
|
|
37222
37222
|
GdsSignalComponent,
|
|
37223
|
-
GdsSwitchComponent,
|
|
37224
37223
|
GdsSpinnerComponent,
|
|
37224
|
+
GdsSwitchComponent,
|
|
37225
37225
|
GdsTableComponent,
|
|
37226
37226
|
GdsTextComponent,
|
|
37227
37227
|
GdsTextareaComponent,
|
|
@@ -37230,10 +37230,10 @@ class GreenCoreNgModule {
|
|
|
37230
37230
|
GdsCardPattern01Component,
|
|
37231
37231
|
GdsAvatarGroupComponent,
|
|
37232
37232
|
GdsCheckboxGroupComponent,
|
|
37233
|
-
GdsIconDetailsComponent,
|
|
37234
37233
|
GdsBreadcrumbComponent,
|
|
37235
|
-
|
|
37234
|
+
GdsIconDetailsComponent,
|
|
37236
37235
|
GdsFormattedAccountComponent,
|
|
37236
|
+
GdsFilterChipComponent,
|
|
37237
37237
|
GdsFormattedDateComponent,
|
|
37238
37238
|
GdsFormattedNumberComponent,
|
|
37239
37239
|
GdsRadioGroupComponent,
|
|
@@ -37591,8 +37591,8 @@ class GreenCoreNgModule {
|
|
|
37591
37591
|
GdsSegmentedControlComponent,
|
|
37592
37592
|
GdsSelectComponent,
|
|
37593
37593
|
GdsSignalComponent,
|
|
37594
|
-
GdsSwitchComponent,
|
|
37595
37594
|
GdsSpinnerComponent,
|
|
37595
|
+
GdsSwitchComponent,
|
|
37596
37596
|
GdsTableComponent,
|
|
37597
37597
|
GdsTextComponent,
|
|
37598
37598
|
GdsTextareaComponent,
|
|
@@ -37601,10 +37601,10 @@ class GreenCoreNgModule {
|
|
|
37601
37601
|
GdsCardPattern01Component,
|
|
37602
37602
|
GdsAvatarGroupComponent,
|
|
37603
37603
|
GdsCheckboxGroupComponent,
|
|
37604
|
-
GdsIconDetailsComponent,
|
|
37605
37604
|
GdsBreadcrumbComponent,
|
|
37606
|
-
|
|
37605
|
+
GdsIconDetailsComponent,
|
|
37607
37606
|
GdsFormattedAccountComponent,
|
|
37607
|
+
GdsFilterChipComponent,
|
|
37608
37608
|
GdsFormattedDateComponent,
|
|
37609
37609
|
GdsFormattedNumberComponent,
|
|
37610
37610
|
GdsRadioGroupComponent,
|
|
@@ -37969,8 +37969,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37969
37969
|
GdsSegmentedControlComponent,
|
|
37970
37970
|
GdsSelectComponent,
|
|
37971
37971
|
GdsSignalComponent,
|
|
37972
|
-
GdsSwitchComponent,
|
|
37973
37972
|
GdsSpinnerComponent,
|
|
37973
|
+
GdsSwitchComponent,
|
|
37974
37974
|
GdsTableComponent,
|
|
37975
37975
|
GdsTextComponent,
|
|
37976
37976
|
GdsTextareaComponent,
|
|
@@ -37979,10 +37979,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37979
37979
|
GdsCardPattern01Component,
|
|
37980
37980
|
GdsAvatarGroupComponent,
|
|
37981
37981
|
GdsCheckboxGroupComponent,
|
|
37982
|
-
GdsIconDetailsComponent,
|
|
37983
37982
|
GdsBreadcrumbComponent,
|
|
37984
|
-
|
|
37983
|
+
GdsIconDetailsComponent,
|
|
37985
37984
|
GdsFormattedAccountComponent,
|
|
37985
|
+
GdsFilterChipComponent,
|
|
37986
37986
|
GdsFormattedDateComponent,
|
|
37987
37987
|
GdsFormattedNumberComponent,
|
|
37988
37988
|
GdsRadioGroupComponent,
|
|
@@ -38343,8 +38343,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38343
38343
|
GdsSegmentedControlComponent,
|
|
38344
38344
|
GdsSelectComponent,
|
|
38345
38345
|
GdsSignalComponent,
|
|
38346
|
-
GdsSwitchComponent,
|
|
38347
38346
|
GdsSpinnerComponent,
|
|
38347
|
+
GdsSwitchComponent,
|
|
38348
38348
|
GdsTableComponent,
|
|
38349
38349
|
GdsTextComponent,
|
|
38350
38350
|
GdsTextareaComponent,
|
|
@@ -38353,10 +38353,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38353
38353
|
GdsCardPattern01Component,
|
|
38354
38354
|
GdsAvatarGroupComponent,
|
|
38355
38355
|
GdsCheckboxGroupComponent,
|
|
38356
|
-
GdsIconDetailsComponent,
|
|
38357
38356
|
GdsBreadcrumbComponent,
|
|
38358
|
-
|
|
38357
|
+
GdsIconDetailsComponent,
|
|
38359
38358
|
GdsFormattedAccountComponent,
|
|
38359
|
+
GdsFilterChipComponent,
|
|
38360
38360
|
GdsFormattedDateComponent,
|
|
38361
38361
|
GdsFormattedNumberComponent,
|
|
38362
38362
|
GdsRadioGroupComponent,
|