@sebgroup/green-core-ng 3.12.0 → 3.12.1
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,15 +1,15 @@
|
|
|
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';
|
|
6
|
-
import {
|
|
7
|
-
import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
|
|
5
|
+
import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
|
|
8
6
|
import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
|
|
7
|
+
import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
|
|
9
8
|
import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
10
9
|
import { LocationStrategy, DOCUMENT, CommonModule } from '@angular/common';
|
|
11
10
|
import { Router, RouterLink, RouterLinkActive, NavigationEnd } from '@angular/router';
|
|
12
11
|
import { GdsButton } from '@sebgroup/green-core/components/button/button.component.js';
|
|
12
|
+
import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
|
|
13
13
|
import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
|
|
14
14
|
import { GdsCard } from '@sebgroup/green-core/components/card/card.component.js';
|
|
15
15
|
import { GdsCardLinked } from '@sebgroup/green-core/components/card-linked/card-linked.component.js';
|
|
@@ -54,14 +54,14 @@ import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-gr
|
|
|
54
54
|
import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
|
|
55
55
|
import { GdsCheckboxGroup } from '@sebgroup/green-core/components/checkbox/checkbox-group/checkbox-group.component.js';
|
|
56
56
|
import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
|
|
57
|
-
import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.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';
|
|
62
62
|
import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
|
|
63
|
-
import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
|
|
64
63
|
import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
|
|
64
|
+
import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.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';
|
|
67
67
|
import { IconAirplaneUp } from '@sebgroup/green-core/components/icon/icons/airplane-up.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.
|
|
@@ -630,10 +545,10 @@ It supports displaying an image, slotted text content, or a fallback icon.
|
|
|
630
545
|
*/
|
|
631
546
|
|
|
632
547
|
/**
|
|
633
|
-
* Angular wrapper for the gds-
|
|
634
|
-
*
|
|
548
|
+
* Angular wrapper for the gds-alert web component
|
|
549
|
+
*
|
|
635
550
|
*/
|
|
636
|
-
let
|
|
551
|
+
let GdsAlertComponent = class GdsAlertComponent {
|
|
637
552
|
get element() {
|
|
638
553
|
return this.elementRef.nativeElement;
|
|
639
554
|
}
|
|
@@ -641,17 +556,28 @@ let GdsBadgeComponent = class GdsBadgeComponent {
|
|
|
641
556
|
this.elementRef = inject((ElementRef));
|
|
642
557
|
this.zone = inject(NgZone);
|
|
643
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();
|
|
644
563
|
this.cdr.detach();
|
|
645
564
|
}
|
|
646
565
|
ngOnInit() {
|
|
647
566
|
// Define the custom element
|
|
648
567
|
try {
|
|
649
|
-
|
|
568
|
+
GdsAlert.define();
|
|
650
569
|
}
|
|
651
570
|
catch (e) {
|
|
652
571
|
// Component may not be available in this version of green-core
|
|
653
|
-
console.warn('Failed to define gds-
|
|
572
|
+
console.warn('Failed to define gds-alert:', e);
|
|
654
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
|
+
});
|
|
655
581
|
}
|
|
656
582
|
ngOnChanges(changes) {
|
|
657
583
|
// Implementation added by @ProxyInputs decorator
|
|
@@ -659,88 +585,55 @@ let GdsBadgeComponent = class GdsBadgeComponent {
|
|
|
659
585
|
ngAfterViewInit() {
|
|
660
586
|
// Implementation added by @ProxyInputs decorator
|
|
661
587
|
}
|
|
662
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
663
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type:
|
|
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 }); }
|
|
664
590
|
};
|
|
665
|
-
|
|
666
|
-
ProxyInputs(['variant', '
|
|
591
|
+
GdsAlertComponent = __decorate([
|
|
592
|
+
ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
|
|
667
593
|
__metadata("design:paramtypes", [])
|
|
668
|
-
],
|
|
669
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
594
|
+
], GdsAlertComponent);
|
|
595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, decorators: [{
|
|
670
596
|
type: Component,
|
|
671
597
|
args: [{
|
|
672
|
-
selector: 'gds-
|
|
598
|
+
selector: 'gds-alert',
|
|
673
599
|
standalone: true,
|
|
674
600
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
675
601
|
template: `<ng-content></ng-content>`
|
|
676
602
|
}]
|
|
677
603
|
}], ctorParameters: () => [], propDecorators: { variant: [{
|
|
678
604
|
type: Input
|
|
679
|
-
}],
|
|
605
|
+
}], label: [{
|
|
680
606
|
type: Input
|
|
681
|
-
}],
|
|
682
|
-
type: Input
|
|
683
|
-
|
|
684
|
-
}], rounded: [{
|
|
685
|
-
type: Input,
|
|
686
|
-
args: [{ transform: booleanAttribute }]
|
|
687
|
-
}], mainSlotOccupied: [{
|
|
688
|
-
type: Input,
|
|
689
|
-
args: [{ transform: booleanAttribute }]
|
|
690
|
-
}], leadSlotOccupied: [{
|
|
607
|
+
}], role: [{
|
|
608
|
+
type: Input
|
|
609
|
+
}], dismissible: [{
|
|
691
610
|
type: Input,
|
|
692
611
|
args: [{ transform: booleanAttribute }]
|
|
693
|
-
}],
|
|
694
|
-
type: Input
|
|
695
|
-
}], minWidth: [{
|
|
696
|
-
type: Input
|
|
697
|
-
}], maxWidth: [{
|
|
698
|
-
type: Input
|
|
699
|
-
}], inlineSize: [{
|
|
700
|
-
type: Input
|
|
701
|
-
}], minInlineSize: [{
|
|
702
|
-
type: Input
|
|
703
|
-
}], maxInlineSize: [{
|
|
704
|
-
type: Input
|
|
705
|
-
}], margin: [{
|
|
706
|
-
type: Input
|
|
707
|
-
}], marginInline: [{
|
|
708
|
-
type: Input
|
|
709
|
-
}], marginBlock: [{
|
|
710
|
-
type: Input
|
|
711
|
-
}], alignSelf: [{
|
|
712
|
-
type: Input
|
|
713
|
-
}], justifySelf: [{
|
|
714
|
-
type: Input
|
|
715
|
-
}], placeSelf: [{
|
|
716
|
-
type: Input
|
|
717
|
-
}], gridColumn: [{
|
|
718
|
-
type: Input
|
|
719
|
-
}], gridRow: [{
|
|
720
|
-
type: Input
|
|
721
|
-
}], gridArea: [{
|
|
722
|
-
type: Input
|
|
723
|
-
}], flex: [{
|
|
612
|
+
}], timeout: [{
|
|
724
613
|
type: Input
|
|
725
|
-
}],
|
|
614
|
+
}], buttonLabel: [{
|
|
726
615
|
type: Input
|
|
727
616
|
}], syncFirstRender: [{
|
|
728
617
|
type: Input,
|
|
729
618
|
args: [{ transform: booleanAttribute }]
|
|
619
|
+
}], gdsClose: [{
|
|
620
|
+
type: Output
|
|
621
|
+
}], gdsAction: [{
|
|
622
|
+
type: Output
|
|
730
623
|
}] } });
|
|
731
624
|
|
|
732
625
|
/**
|
|
733
|
-
*
|
|
734
|
-
*
|
|
626
|
+
* GdsAlertComponent - Angular wrapper for gds-alert
|
|
627
|
+
*
|
|
735
628
|
*
|
|
736
629
|
* Auto-generated from Custom Elements Manifest
|
|
737
630
|
*/
|
|
738
631
|
|
|
739
632
|
/**
|
|
740
|
-
* Angular wrapper for the gds-
|
|
633
|
+
* Angular wrapper for the gds-breadcrumbs web component
|
|
741
634
|
*
|
|
742
635
|
*/
|
|
743
|
-
let
|
|
636
|
+
let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
|
|
744
637
|
get element() {
|
|
745
638
|
return this.elementRef.nativeElement;
|
|
746
639
|
}
|
|
@@ -753,11 +646,11 @@ let GdsBlurComponent = class GdsBlurComponent {
|
|
|
753
646
|
ngOnInit() {
|
|
754
647
|
// Define the custom element
|
|
755
648
|
try {
|
|
756
|
-
|
|
649
|
+
GdsBreadcrumbs.define();
|
|
757
650
|
}
|
|
758
651
|
catch (e) {
|
|
759
652
|
// Component may not be available in this version of green-core
|
|
760
|
-
console.warn('Failed to define gds-
|
|
653
|
+
console.warn('Failed to define gds-breadcrumbs:', e);
|
|
761
654
|
}
|
|
762
655
|
}
|
|
763
656
|
ngOnChanges(changes) {
|
|
@@ -766,38 +659,76 @@ let GdsBlurComponent = class GdsBlurComponent {
|
|
|
766
659
|
ngAfterViewInit() {
|
|
767
660
|
// Implementation added by @ProxyInputs decorator
|
|
768
661
|
}
|
|
769
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
770
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type:
|
|
662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
663
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBreadcrumbsComponent, isStandalone: true, selector: "gds-breadcrumbs", inputs: { size: "size", label: "label", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
771
664
|
};
|
|
772
|
-
|
|
773
|
-
ProxyInputs(['syncFirstRender']),
|
|
665
|
+
GdsBreadcrumbsComponent = __decorate([
|
|
666
|
+
ProxyInputs(['size', 'label', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'margin', 'margin-inline', 'margin-block', 'syncFirstRender']),
|
|
774
667
|
__metadata("design:paramtypes", [])
|
|
775
|
-
],
|
|
776
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
668
|
+
], GdsBreadcrumbsComponent);
|
|
669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, decorators: [{
|
|
777
670
|
type: Component,
|
|
778
671
|
args: [{
|
|
779
|
-
selector: 'gds-
|
|
672
|
+
selector: 'gds-breadcrumbs',
|
|
780
673
|
standalone: true,
|
|
781
674
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
782
675
|
template: `<ng-content></ng-content>`
|
|
783
676
|
}]
|
|
784
|
-
}], ctorParameters: () => [], propDecorators: {
|
|
677
|
+
}], ctorParameters: () => [], propDecorators: { size: [{
|
|
678
|
+
type: Input
|
|
679
|
+
}], label: [{
|
|
680
|
+
type: Input
|
|
681
|
+
}], alignSelf: [{
|
|
682
|
+
type: Input
|
|
683
|
+
}], justifySelf: [{
|
|
684
|
+
type: Input
|
|
685
|
+
}], placeSelf: [{
|
|
686
|
+
type: Input
|
|
687
|
+
}], gridColumn: [{
|
|
688
|
+
type: Input
|
|
689
|
+
}], gridRow: [{
|
|
690
|
+
type: Input
|
|
691
|
+
}], gridArea: [{
|
|
692
|
+
type: Input
|
|
693
|
+
}], flex: [{
|
|
694
|
+
type: Input
|
|
695
|
+
}], order: [{
|
|
696
|
+
type: Input
|
|
697
|
+
}], width: [{
|
|
698
|
+
type: Input
|
|
699
|
+
}], minWidth: [{
|
|
700
|
+
type: Input
|
|
701
|
+
}], maxWidth: [{
|
|
702
|
+
type: Input
|
|
703
|
+
}], inlineSize: [{
|
|
704
|
+
type: Input
|
|
705
|
+
}], minInlineSize: [{
|
|
706
|
+
type: Input
|
|
707
|
+
}], maxInlineSize: [{
|
|
708
|
+
type: Input
|
|
709
|
+
}], margin: [{
|
|
710
|
+
type: Input
|
|
711
|
+
}], marginInline: [{
|
|
712
|
+
type: Input
|
|
713
|
+
}], marginBlock: [{
|
|
714
|
+
type: Input
|
|
715
|
+
}], syncFirstRender: [{
|
|
785
716
|
type: Input,
|
|
786
717
|
args: [{ transform: booleanAttribute }]
|
|
787
718
|
}] } });
|
|
788
719
|
|
|
789
720
|
/**
|
|
790
|
-
*
|
|
721
|
+
* GdsBreadcrumbsComponent - Angular wrapper for gds-breadcrumbs
|
|
791
722
|
*
|
|
792
723
|
*
|
|
793
724
|
* Auto-generated from Custom Elements Manifest
|
|
794
725
|
*/
|
|
795
726
|
|
|
796
727
|
/**
|
|
797
|
-
* Angular wrapper for the gds-
|
|
798
|
-
*
|
|
728
|
+
* Angular wrapper for the gds-badge web component
|
|
729
|
+
* `gds-badge`
|
|
799
730
|
*/
|
|
800
|
-
let
|
|
731
|
+
let GdsBadgeComponent = class GdsBadgeComponent {
|
|
801
732
|
get element() {
|
|
802
733
|
return this.elementRef.nativeElement;
|
|
803
734
|
}
|
|
@@ -810,11 +741,11 @@ let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
|
|
|
810
741
|
ngOnInit() {
|
|
811
742
|
// Define the custom element
|
|
812
743
|
try {
|
|
813
|
-
|
|
744
|
+
GdsBadge.define();
|
|
814
745
|
}
|
|
815
746
|
catch (e) {
|
|
816
747
|
// Component may not be available in this version of green-core
|
|
817
|
-
console.warn('Failed to define gds-
|
|
748
|
+
console.warn('Failed to define gds-badge:', e);
|
|
818
749
|
}
|
|
819
750
|
}
|
|
820
751
|
ngOnChanges(changes) {
|
|
@@ -823,41 +754,37 @@ let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
|
|
|
823
754
|
ngAfterViewInit() {
|
|
824
755
|
// Implementation added by @ProxyInputs decorator
|
|
825
756
|
}
|
|
826
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
827
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type:
|
|
757
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
758
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBadgeComponent, isStandalone: true, selector: "gds-badge", inputs: { variant: "variant", size: "size", notification: ["notification", "notification", booleanAttribute], rounded: ["rounded", "rounded", booleanAttribute], mainSlotOccupied: ["mainSlotOccupied", "mainSlotOccupied", booleanAttribute], leadSlotOccupied: ["leadSlotOccupied", "leadSlotOccupied", booleanAttribute], width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
828
759
|
};
|
|
829
|
-
|
|
830
|
-
ProxyInputs(['
|
|
760
|
+
GdsBadgeComponent = __decorate([
|
|
761
|
+
ProxyInputs(['variant', 'size', 'notification', 'rounded', 'mainSlotOccupied', 'leadSlotOccupied', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
|
|
831
762
|
__metadata("design:paramtypes", [])
|
|
832
|
-
],
|
|
833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
763
|
+
], GdsBadgeComponent);
|
|
764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, decorators: [{
|
|
834
765
|
type: Component,
|
|
835
766
|
args: [{
|
|
836
|
-
selector: 'gds-
|
|
767
|
+
selector: 'gds-badge',
|
|
837
768
|
standalone: true,
|
|
838
769
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
839
770
|
template: `<ng-content></ng-content>`
|
|
840
771
|
}]
|
|
841
|
-
}], ctorParameters: () => [], propDecorators: {
|
|
842
|
-
type: Input
|
|
843
|
-
}], label: [{
|
|
844
|
-
type: Input
|
|
845
|
-
}], alignSelf: [{
|
|
846
|
-
type: Input
|
|
847
|
-
}], justifySelf: [{
|
|
848
|
-
type: Input
|
|
849
|
-
}], placeSelf: [{
|
|
850
|
-
type: Input
|
|
851
|
-
}], gridColumn: [{
|
|
852
|
-
type: Input
|
|
853
|
-
}], gridRow: [{
|
|
854
|
-
type: Input
|
|
855
|
-
}], gridArea: [{
|
|
856
|
-
type: Input
|
|
857
|
-
}], flex: [{
|
|
772
|
+
}], ctorParameters: () => [], propDecorators: { variant: [{
|
|
858
773
|
type: Input
|
|
859
|
-
}],
|
|
774
|
+
}], size: [{
|
|
860
775
|
type: Input
|
|
776
|
+
}], notification: [{
|
|
777
|
+
type: Input,
|
|
778
|
+
args: [{ transform: booleanAttribute }]
|
|
779
|
+
}], rounded: [{
|
|
780
|
+
type: Input,
|
|
781
|
+
args: [{ transform: booleanAttribute }]
|
|
782
|
+
}], mainSlotOccupied: [{
|
|
783
|
+
type: Input,
|
|
784
|
+
args: [{ transform: booleanAttribute }]
|
|
785
|
+
}], leadSlotOccupied: [{
|
|
786
|
+
type: Input,
|
|
787
|
+
args: [{ transform: booleanAttribute }]
|
|
861
788
|
}], width: [{
|
|
862
789
|
type: Input
|
|
863
790
|
}], minWidth: [{
|
|
@@ -876,14 +803,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
876
803
|
type: Input
|
|
877
804
|
}], marginBlock: [{
|
|
878
805
|
type: Input
|
|
806
|
+
}], alignSelf: [{
|
|
807
|
+
type: Input
|
|
808
|
+
}], justifySelf: [{
|
|
809
|
+
type: Input
|
|
810
|
+
}], placeSelf: [{
|
|
811
|
+
type: Input
|
|
812
|
+
}], gridColumn: [{
|
|
813
|
+
type: Input
|
|
814
|
+
}], gridRow: [{
|
|
815
|
+
type: Input
|
|
816
|
+
}], gridArea: [{
|
|
817
|
+
type: Input
|
|
818
|
+
}], flex: [{
|
|
819
|
+
type: Input
|
|
820
|
+
}], order: [{
|
|
821
|
+
type: Input
|
|
879
822
|
}], syncFirstRender: [{
|
|
880
823
|
type: Input,
|
|
881
824
|
args: [{ transform: booleanAttribute }]
|
|
882
825
|
}] } });
|
|
883
826
|
|
|
884
827
|
/**
|
|
885
|
-
*
|
|
886
|
-
*
|
|
828
|
+
* GdsBadgeComponent - Angular wrapper for gds-badge
|
|
829
|
+
* `gds-badge`
|
|
887
830
|
*
|
|
888
831
|
* Auto-generated from Custom Elements Manifest
|
|
889
832
|
*/
|
|
@@ -1205,6 +1148,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
1205
1148
|
* Auto-generated from Custom Elements Manifest
|
|
1206
1149
|
*/
|
|
1207
1150
|
|
|
1151
|
+
/**
|
|
1152
|
+
* Angular wrapper for the gds-blur web component
|
|
1153
|
+
*
|
|
1154
|
+
*/
|
|
1155
|
+
let GdsBlurComponent = class GdsBlurComponent {
|
|
1156
|
+
get element() {
|
|
1157
|
+
return this.elementRef.nativeElement;
|
|
1158
|
+
}
|
|
1159
|
+
constructor() {
|
|
1160
|
+
this.elementRef = inject((ElementRef));
|
|
1161
|
+
this.zone = inject(NgZone);
|
|
1162
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1163
|
+
this.cdr.detach();
|
|
1164
|
+
}
|
|
1165
|
+
ngOnInit() {
|
|
1166
|
+
// Define the custom element
|
|
1167
|
+
try {
|
|
1168
|
+
GdsBlur.define();
|
|
1169
|
+
}
|
|
1170
|
+
catch (e) {
|
|
1171
|
+
// Component may not be available in this version of green-core
|
|
1172
|
+
console.warn('Failed to define gds-blur:', e);
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
ngOnChanges(changes) {
|
|
1176
|
+
// Implementation added by @ProxyInputs decorator
|
|
1177
|
+
}
|
|
1178
|
+
ngAfterViewInit() {
|
|
1179
|
+
// Implementation added by @ProxyInputs decorator
|
|
1180
|
+
}
|
|
1181
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBlurComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1182
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsBlurComponent, isStandalone: true, selector: "gds-blur", inputs: { syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1183
|
+
};
|
|
1184
|
+
GdsBlurComponent = __decorate([
|
|
1185
|
+
ProxyInputs(['syncFirstRender']),
|
|
1186
|
+
__metadata("design:paramtypes", [])
|
|
1187
|
+
], GdsBlurComponent);
|
|
1188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBlurComponent, decorators: [{
|
|
1189
|
+
type: Component,
|
|
1190
|
+
args: [{
|
|
1191
|
+
selector: 'gds-blur',
|
|
1192
|
+
standalone: true,
|
|
1193
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1194
|
+
template: `<ng-content></ng-content>`
|
|
1195
|
+
}]
|
|
1196
|
+
}], ctorParameters: () => [], propDecorators: { syncFirstRender: [{
|
|
1197
|
+
type: Input,
|
|
1198
|
+
args: [{ transform: booleanAttribute }]
|
|
1199
|
+
}] } });
|
|
1200
|
+
|
|
1201
|
+
/**
|
|
1202
|
+
* GdsBlurComponent - Angular wrapper for gds-blur
|
|
1203
|
+
*
|
|
1204
|
+
*
|
|
1205
|
+
* Auto-generated from Custom Elements Manifest
|
|
1206
|
+
*/
|
|
1207
|
+
|
|
1208
1208
|
/**
|
|
1209
1209
|
* Angular wrapper for the gds-calendar web component
|
|
1210
1210
|
*
|
|
@@ -7045,70 +7045,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
7045
7045
|
* Auto-generated from Custom Elements Manifest
|
|
7046
7046
|
*/
|
|
7047
7047
|
|
|
7048
|
-
/**
|
|
7049
|
-
* Angular wrapper for the gds-filter-chip web component
|
|
7050
|
-
*
|
|
7051
|
-
*/
|
|
7052
|
-
let GdsFilterChipComponent = class GdsFilterChipComponent {
|
|
7053
|
-
get element() {
|
|
7054
|
-
return this.elementRef.nativeElement;
|
|
7055
|
-
}
|
|
7056
|
-
constructor() {
|
|
7057
|
-
this.elementRef = inject((ElementRef));
|
|
7058
|
-
this.zone = inject(NgZone);
|
|
7059
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
7060
|
-
this.cdr.detach();
|
|
7061
|
-
}
|
|
7062
|
-
ngOnInit() {
|
|
7063
|
-
// Define the custom element
|
|
7064
|
-
try {
|
|
7065
|
-
GdsFilterChip.define();
|
|
7066
|
-
}
|
|
7067
|
-
catch (e) {
|
|
7068
|
-
// Component may not be available in this version of green-core
|
|
7069
|
-
console.warn('Failed to define gds-filter-chip:', e);
|
|
7070
|
-
}
|
|
7071
|
-
}
|
|
7072
|
-
ngOnChanges(changes) {
|
|
7073
|
-
// Implementation added by @ProxyInputs decorator
|
|
7074
|
-
}
|
|
7075
|
-
ngAfterViewInit() {
|
|
7076
|
-
// Implementation added by @ProxyInputs decorator
|
|
7077
|
-
}
|
|
7078
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7079
|
-
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 }); }
|
|
7080
|
-
};
|
|
7081
|
-
GdsFilterChipComponent = __decorate([
|
|
7082
|
-
ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
|
|
7083
|
-
__metadata("design:paramtypes", [])
|
|
7084
|
-
], GdsFilterChipComponent);
|
|
7085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
|
|
7086
|
-
type: Component,
|
|
7087
|
-
args: [{
|
|
7088
|
-
selector: 'gds-filter-chip',
|
|
7089
|
-
standalone: true,
|
|
7090
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7091
|
-
template: `<ng-content></ng-content>`
|
|
7092
|
-
}]
|
|
7093
|
-
}], ctorParameters: () => [], propDecorators: { selected: [{
|
|
7094
|
-
type: Input,
|
|
7095
|
-
args: [{ transform: booleanAttribute }]
|
|
7096
|
-
}], value: [{
|
|
7097
|
-
type: Input
|
|
7098
|
-
}], size: [{
|
|
7099
|
-
type: Input
|
|
7100
|
-
}], syncFirstRender: [{
|
|
7101
|
-
type: Input,
|
|
7102
|
-
args: [{ transform: booleanAttribute }]
|
|
7103
|
-
}] } });
|
|
7104
|
-
|
|
7105
|
-
/**
|
|
7106
|
-
* GdsFilterChipComponent - Angular wrapper for gds-filter-chip
|
|
7107
|
-
*
|
|
7108
|
-
*
|
|
7109
|
-
* Auto-generated from Custom Elements Manifest
|
|
7110
|
-
*/
|
|
7111
|
-
|
|
7112
7048
|
/**
|
|
7113
7049
|
* Angular wrapper for the gds-formatted-account web component
|
|
7114
7050
|
*
|
|
@@ -7298,6 +7234,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
7298
7234
|
* Auto-generated from Custom Elements Manifest
|
|
7299
7235
|
*/
|
|
7300
7236
|
|
|
7237
|
+
/**
|
|
7238
|
+
* Angular wrapper for the gds-filter-chip web component
|
|
7239
|
+
*
|
|
7240
|
+
*/
|
|
7241
|
+
let GdsFilterChipComponent = class GdsFilterChipComponent {
|
|
7242
|
+
get element() {
|
|
7243
|
+
return this.elementRef.nativeElement;
|
|
7244
|
+
}
|
|
7245
|
+
constructor() {
|
|
7246
|
+
this.elementRef = inject((ElementRef));
|
|
7247
|
+
this.zone = inject(NgZone);
|
|
7248
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
7249
|
+
this.cdr.detach();
|
|
7250
|
+
}
|
|
7251
|
+
ngOnInit() {
|
|
7252
|
+
// Define the custom element
|
|
7253
|
+
try {
|
|
7254
|
+
GdsFilterChip.define();
|
|
7255
|
+
}
|
|
7256
|
+
catch (e) {
|
|
7257
|
+
// Component may not be available in this version of green-core
|
|
7258
|
+
console.warn('Failed to define gds-filter-chip:', e);
|
|
7259
|
+
}
|
|
7260
|
+
}
|
|
7261
|
+
ngOnChanges(changes) {
|
|
7262
|
+
// Implementation added by @ProxyInputs decorator
|
|
7263
|
+
}
|
|
7264
|
+
ngAfterViewInit() {
|
|
7265
|
+
// Implementation added by @ProxyInputs decorator
|
|
7266
|
+
}
|
|
7267
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7268
|
+
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 }); }
|
|
7269
|
+
};
|
|
7270
|
+
GdsFilterChipComponent = __decorate([
|
|
7271
|
+
ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
|
|
7272
|
+
__metadata("design:paramtypes", [])
|
|
7273
|
+
], GdsFilterChipComponent);
|
|
7274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
|
|
7275
|
+
type: Component,
|
|
7276
|
+
args: [{
|
|
7277
|
+
selector: 'gds-filter-chip',
|
|
7278
|
+
standalone: true,
|
|
7279
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7280
|
+
template: `<ng-content></ng-content>`
|
|
7281
|
+
}]
|
|
7282
|
+
}], ctorParameters: () => [], propDecorators: { selected: [{
|
|
7283
|
+
type: Input,
|
|
7284
|
+
args: [{ transform: booleanAttribute }]
|
|
7285
|
+
}], value: [{
|
|
7286
|
+
type: Input
|
|
7287
|
+
}], size: [{
|
|
7288
|
+
type: Input
|
|
7289
|
+
}], syncFirstRender: [{
|
|
7290
|
+
type: Input,
|
|
7291
|
+
args: [{ transform: booleanAttribute }]
|
|
7292
|
+
}] } });
|
|
7293
|
+
|
|
7294
|
+
/**
|
|
7295
|
+
* GdsFilterChipComponent - Angular wrapper for gds-filter-chip
|
|
7296
|
+
*
|
|
7297
|
+
*
|
|
7298
|
+
* Auto-generated from Custom Elements Manifest
|
|
7299
|
+
*/
|
|
7300
|
+
|
|
7301
7301
|
/**
|
|
7302
7302
|
* Angular wrapper for the gds-formatted-date web component
|
|
7303
7303
|
*
|
|
@@ -7911,10 +7911,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
7911
7911
|
*/
|
|
7912
7912
|
|
|
7913
7913
|
/**
|
|
7914
|
-
* Angular wrapper for the gds-sensitive-
|
|
7914
|
+
* Angular wrapper for the gds-sensitive-date web component
|
|
7915
7915
|
*
|
|
7916
7916
|
*/
|
|
7917
|
-
let
|
|
7917
|
+
let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
7918
7918
|
get element() {
|
|
7919
7919
|
return this.elementRef.nativeElement;
|
|
7920
7920
|
}
|
|
@@ -7927,11 +7927,11 @@ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
|
|
|
7927
7927
|
ngOnInit() {
|
|
7928
7928
|
// Define the custom element
|
|
7929
7929
|
try {
|
|
7930
|
-
|
|
7930
|
+
GdsSensitiveDate.define();
|
|
7931
7931
|
}
|
|
7932
7932
|
catch (e) {
|
|
7933
7933
|
// Component may not be available in this version of green-core
|
|
7934
|
-
console.warn('Failed to define gds-sensitive-
|
|
7934
|
+
console.warn('Failed to define gds-sensitive-date:', e);
|
|
7935
7935
|
}
|
|
7936
7936
|
}
|
|
7937
7937
|
ngOnChanges(changes) {
|
|
@@ -7940,17 +7940,17 @@ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
|
|
|
7940
7940
|
ngAfterViewInit() {
|
|
7941
7941
|
// Implementation added by @ProxyInputs decorator
|
|
7942
7942
|
}
|
|
7943
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
7944
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type:
|
|
7943
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7944
|
+
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 }); }
|
|
7945
7945
|
};
|
|
7946
|
-
|
|
7947
|
-
ProxyInputs(['hide', '
|
|
7946
|
+
GdsSensitiveDateComponent = __decorate([
|
|
7947
|
+
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']),
|
|
7948
7948
|
__metadata("design:paramtypes", [])
|
|
7949
|
-
],
|
|
7950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
7949
|
+
], GdsSensitiveDateComponent);
|
|
7950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
|
|
7951
7951
|
type: Component,
|
|
7952
7952
|
args: [{
|
|
7953
|
-
selector: 'gds-sensitive-
|
|
7953
|
+
selector: 'gds-sensitive-date',
|
|
7954
7954
|
standalone: true,
|
|
7955
7955
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7956
7956
|
template: `<ng-content></ng-content>`
|
|
@@ -7958,7 +7958,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
7958
7958
|
}], ctorParameters: () => [], propDecorators: { hide: [{
|
|
7959
7959
|
type: Input,
|
|
7960
7960
|
args: [{ transform: booleanAttribute }]
|
|
7961
|
-
}],
|
|
7961
|
+
}], value: [{
|
|
7962
|
+
type: Input
|
|
7963
|
+
}], format: [{
|
|
7964
|
+
type: Input
|
|
7965
|
+
}], locale: [{
|
|
7962
7966
|
type: Input
|
|
7963
7967
|
}], tag: [{
|
|
7964
7968
|
type: Input
|
|
@@ -8096,17 +8100,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
8096
8100
|
}] } });
|
|
8097
8101
|
|
|
8098
8102
|
/**
|
|
8099
|
-
*
|
|
8103
|
+
* GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
|
|
8100
8104
|
*
|
|
8101
8105
|
*
|
|
8102
8106
|
* Auto-generated from Custom Elements Manifest
|
|
8103
8107
|
*/
|
|
8104
8108
|
|
|
8105
8109
|
/**
|
|
8106
|
-
* Angular wrapper for the gds-sensitive-
|
|
8110
|
+
* Angular wrapper for the gds-sensitive-account web component
|
|
8107
8111
|
*
|
|
8108
8112
|
*/
|
|
8109
|
-
let
|
|
8113
|
+
let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
|
|
8110
8114
|
get element() {
|
|
8111
8115
|
return this.elementRef.nativeElement;
|
|
8112
8116
|
}
|
|
@@ -8119,11 +8123,11 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
|
8119
8123
|
ngOnInit() {
|
|
8120
8124
|
// Define the custom element
|
|
8121
8125
|
try {
|
|
8122
|
-
|
|
8126
|
+
GdsSensitiveAccount.define();
|
|
8123
8127
|
}
|
|
8124
8128
|
catch (e) {
|
|
8125
8129
|
// Component may not be available in this version of green-core
|
|
8126
|
-
console.warn('Failed to define gds-sensitive-
|
|
8130
|
+
console.warn('Failed to define gds-sensitive-account:', e);
|
|
8127
8131
|
}
|
|
8128
8132
|
}
|
|
8129
8133
|
ngOnChanges(changes) {
|
|
@@ -8132,17 +8136,17 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
|
8132
8136
|
ngAfterViewInit() {
|
|
8133
8137
|
// Implementation added by @ProxyInputs decorator
|
|
8134
8138
|
}
|
|
8135
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
8136
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type:
|
|
8139
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8140
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsSensitiveAccountComponent, isStandalone: true, selector: "gds-sensitive-account", inputs: { hide: ["hide", "hide", booleanAttribute], account: "account", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8137
8141
|
};
|
|
8138
|
-
|
|
8139
|
-
ProxyInputs(['hide', '
|
|
8142
|
+
GdsSensitiveAccountComponent = __decorate([
|
|
8143
|
+
ProxyInputs(['hide', 'account', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events', 'syncFirstRender']),
|
|
8140
8144
|
__metadata("design:paramtypes", [])
|
|
8141
|
-
],
|
|
8142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
8145
|
+
], GdsSensitiveAccountComponent);
|
|
8146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsSensitiveAccountComponent, decorators: [{
|
|
8143
8147
|
type: Component,
|
|
8144
8148
|
args: [{
|
|
8145
|
-
selector: 'gds-sensitive-
|
|
8149
|
+
selector: 'gds-sensitive-account',
|
|
8146
8150
|
standalone: true,
|
|
8147
8151
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8148
8152
|
template: `<ng-content></ng-content>`
|
|
@@ -8150,11 +8154,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
8150
8154
|
}], ctorParameters: () => [], propDecorators: { hide: [{
|
|
8151
8155
|
type: Input,
|
|
8152
8156
|
args: [{ transform: booleanAttribute }]
|
|
8153
|
-
}],
|
|
8154
|
-
type: Input
|
|
8155
|
-
}], format: [{
|
|
8156
|
-
type: Input
|
|
8157
|
-
}], locale: [{
|
|
8157
|
+
}], account: [{
|
|
8158
8158
|
type: Input
|
|
8159
8159
|
}], tag: [{
|
|
8160
8160
|
type: Input
|
|
@@ -8292,7 +8292,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
8292
8292
|
}] } });
|
|
8293
8293
|
|
|
8294
8294
|
/**
|
|
8295
|
-
*
|
|
8295
|
+
* GdsSensitiveAccountComponent - Angular wrapper for gds-sensitive-account
|
|
8296
8296
|
*
|
|
8297
8297
|
*
|
|
8298
8298
|
* Auto-generated from Custom Elements Manifest
|
|
@@ -37321,12 +37321,12 @@ 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
|
-
|
|
37326
|
-
GdsBadgeComponent,
|
|
37327
|
-
GdsBlurComponent,
|
|
37324
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAvatarComponent,
|
|
37325
|
+
GdsAlertComponent,
|
|
37328
37326
|
GdsBreadcrumbsComponent,
|
|
37327
|
+
GdsBadgeComponent,
|
|
37329
37328
|
GdsButtonComponent,
|
|
37329
|
+
GdsBlurComponent,
|
|
37330
37330
|
GdsCalendarComponent,
|
|
37331
37331
|
GdsCardComponent,
|
|
37332
37332
|
GdsCardLinkedComponent,
|
|
@@ -37371,14 +37371,14 @@ class GreenCoreNgModule {
|
|
|
37371
37371
|
GdsBreadcrumbComponent,
|
|
37372
37372
|
GdsCheckboxGroupComponent,
|
|
37373
37373
|
GdsIconDetailsComponent,
|
|
37374
|
-
GdsFilterChipComponent,
|
|
37375
37374
|
GdsFormattedAccountComponent,
|
|
37375
|
+
GdsFilterChipComponent,
|
|
37376
37376
|
GdsFormattedDateComponent,
|
|
37377
37377
|
GdsFormattedNumberComponent,
|
|
37378
37378
|
GdsRadioGroupComponent,
|
|
37379
37379
|
GdsSegmentComponent,
|
|
37380
|
-
GdsSensitiveAccountComponent,
|
|
37381
37380
|
GdsSensitiveDateComponent,
|
|
37381
|
+
GdsSensitiveAccountComponent,
|
|
37382
37382
|
GdsSensitiveNumberComponent,
|
|
37383
37383
|
IconAiComponent,
|
|
37384
37384
|
IconAirplaneUpComponent,
|
|
@@ -37693,12 +37693,12 @@ class GreenCoreNgModule {
|
|
|
37693
37693
|
IconZoomOutComponent,
|
|
37694
37694
|
GdsMenuItemComponent,
|
|
37695
37695
|
GdsMenuHeadingComponent,
|
|
37696
|
-
GdsOptionComponent], exports: [
|
|
37697
|
-
|
|
37698
|
-
GdsBadgeComponent,
|
|
37699
|
-
GdsBlurComponent,
|
|
37696
|
+
GdsOptionComponent], exports: [GdsAvatarComponent,
|
|
37697
|
+
GdsAlertComponent,
|
|
37700
37698
|
GdsBreadcrumbsComponent,
|
|
37699
|
+
GdsBadgeComponent,
|
|
37701
37700
|
GdsButtonComponent,
|
|
37701
|
+
GdsBlurComponent,
|
|
37702
37702
|
GdsCalendarComponent,
|
|
37703
37703
|
GdsCardComponent,
|
|
37704
37704
|
GdsCardLinkedComponent,
|
|
@@ -37743,14 +37743,14 @@ class GreenCoreNgModule {
|
|
|
37743
37743
|
GdsBreadcrumbComponent,
|
|
37744
37744
|
GdsCheckboxGroupComponent,
|
|
37745
37745
|
GdsIconDetailsComponent,
|
|
37746
|
-
GdsFilterChipComponent,
|
|
37747
37746
|
GdsFormattedAccountComponent,
|
|
37747
|
+
GdsFilterChipComponent,
|
|
37748
37748
|
GdsFormattedDateComponent,
|
|
37749
37749
|
GdsFormattedNumberComponent,
|
|
37750
37750
|
GdsRadioGroupComponent,
|
|
37751
37751
|
GdsSegmentComponent,
|
|
37752
|
-
GdsSensitiveAccountComponent,
|
|
37753
37752
|
GdsSensitiveDateComponent,
|
|
37753
|
+
GdsSensitiveAccountComponent,
|
|
37754
37754
|
GdsSensitiveNumberComponent,
|
|
37755
37755
|
IconAiComponent,
|
|
37756
37756
|
IconAirplaneUpComponent,
|
|
@@ -38072,12 +38072,12 @@ 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,
|
|
38077
|
-
|
|
38078
|
-
GdsBlurComponent,
|
|
38076
|
+
GdsAlertComponent,
|
|
38079
38077
|
GdsBreadcrumbsComponent,
|
|
38078
|
+
GdsBadgeComponent,
|
|
38080
38079
|
GdsButtonComponent,
|
|
38080
|
+
GdsBlurComponent,
|
|
38081
38081
|
GdsCalendarComponent,
|
|
38082
38082
|
GdsCardComponent,
|
|
38083
38083
|
GdsCardLinkedComponent,
|
|
@@ -38122,14 +38122,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38122
38122
|
GdsBreadcrumbComponent,
|
|
38123
38123
|
GdsCheckboxGroupComponent,
|
|
38124
38124
|
GdsIconDetailsComponent,
|
|
38125
|
-
GdsFilterChipComponent,
|
|
38126
38125
|
GdsFormattedAccountComponent,
|
|
38126
|
+
GdsFilterChipComponent,
|
|
38127
38127
|
GdsFormattedDateComponent,
|
|
38128
38128
|
GdsFormattedNumberComponent,
|
|
38129
38129
|
GdsRadioGroupComponent,
|
|
38130
38130
|
GdsSegmentComponent,
|
|
38131
|
-
GdsSensitiveAccountComponent,
|
|
38132
38131
|
GdsSensitiveDateComponent,
|
|
38132
|
+
GdsSensitiveAccountComponent,
|
|
38133
38133
|
GdsSensitiveNumberComponent,
|
|
38134
38134
|
IconAiComponent,
|
|
38135
38135
|
IconAirplaneUpComponent,
|
|
@@ -38447,12 +38447,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38447
38447
|
GdsOptionComponent,
|
|
38448
38448
|
],
|
|
38449
38449
|
exports: [
|
|
38450
|
-
GdsAlertComponent,
|
|
38451
38450
|
GdsAvatarComponent,
|
|
38452
|
-
|
|
38453
|
-
GdsBlurComponent,
|
|
38451
|
+
GdsAlertComponent,
|
|
38454
38452
|
GdsBreadcrumbsComponent,
|
|
38453
|
+
GdsBadgeComponent,
|
|
38455
38454
|
GdsButtonComponent,
|
|
38455
|
+
GdsBlurComponent,
|
|
38456
38456
|
GdsCalendarComponent,
|
|
38457
38457
|
GdsCardComponent,
|
|
38458
38458
|
GdsCardLinkedComponent,
|
|
@@ -38497,14 +38497,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38497
38497
|
GdsBreadcrumbComponent,
|
|
38498
38498
|
GdsCheckboxGroupComponent,
|
|
38499
38499
|
GdsIconDetailsComponent,
|
|
38500
|
-
GdsFilterChipComponent,
|
|
38501
38500
|
GdsFormattedAccountComponent,
|
|
38501
|
+
GdsFilterChipComponent,
|
|
38502
38502
|
GdsFormattedDateComponent,
|
|
38503
38503
|
GdsFormattedNumberComponent,
|
|
38504
38504
|
GdsRadioGroupComponent,
|
|
38505
38505
|
GdsSegmentComponent,
|
|
38506
|
-
GdsSensitiveAccountComponent,
|
|
38507
38506
|
GdsSensitiveDateComponent,
|
|
38507
|
+
GdsSensitiveAccountComponent,
|
|
38508
38508
|
GdsSensitiveNumberComponent,
|
|
38509
38509
|
IconAiComponent,
|
|
38510
38510
|
IconAirplaneUpComponent,
|