@sebgroup/green-core-ng 3.10.0 → 3.11.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 +345 -248
- package/fesm2022/sebgroup-green-core-ng.mjs.map +1 -1
- package/generated/green-core-ng.module.d.ts +119 -118
- package/generated/icon-newspaper/icon-newspaper.component.d.ts +89 -0
- package/generated/icon-newspaper/index.d.ts +7 -0
- package/generated/index.d.ts +4 -3
- package/package.json +2 -2
|
@@ -1,11 +1,11 @@
|
|
|
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 {
|
|
5
|
+
import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
|
|
7
6
|
import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
|
|
8
7
|
import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
|
|
8
|
+
import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
|
|
9
9
|
import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
10
10
|
import { LocationStrategy, DOCUMENT, CommonModule } from '@angular/common';
|
|
11
11
|
import { Router, RouterLink, RouterLinkActive, NavigationEnd } from '@angular/router';
|
|
@@ -50,8 +50,8 @@ import { GdsTextarea } from '@sebgroup/green-core/components/textarea/textarea.c
|
|
|
50
50
|
import { GdsTheme } from '@sebgroup/green-core/components/theme/theme.component.js';
|
|
51
51
|
import { GdsVideo } from '@sebgroup/green-core/components/video/video.component.js';
|
|
52
52
|
import { GdsCardPattern01 } from '@sebgroup/green-core/patterns/card-pattern-01/card-pattern-01.component.js';
|
|
53
|
-
import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-group/avatar-group.component.js';
|
|
54
53
|
import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
|
|
54
|
+
import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-group/avatar-group.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
57
|
import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
|
|
@@ -266,6 +266,7 @@ import { IconMoneyHand } from '@sebgroup/green-core/components/icon/icons/money-
|
|
|
266
266
|
import { IconMoneybag } from '@sebgroup/green-core/components/icon/icons/moneybag.component.js';
|
|
267
267
|
import { IconMoon } from '@sebgroup/green-core/components/icon/icons/moon.component.js';
|
|
268
268
|
import { IconMute } from '@sebgroup/green-core/components/icon/icons/mute.component.js';
|
|
269
|
+
import { IconNewspaper } from '@sebgroup/green-core/components/icon/icons/newspaper.component.js';
|
|
269
270
|
import { IconOffice } from '@sebgroup/green-core/components/icon/icons/office.component.js';
|
|
270
271
|
import { IconPageAdd } from '@sebgroup/green-core/components/icon/icons/page-add.component.js';
|
|
271
272
|
import { IconPaperPlaneTopRight } from '@sebgroup/green-core/components/icon/icons/paper-plane-top-right.component.js';
|
|
@@ -436,91 +437,6 @@ function ProxyInputs(inputNames) {
|
|
|
436
437
|
};
|
|
437
438
|
}
|
|
438
439
|
|
|
439
|
-
/**
|
|
440
|
-
* Angular wrapper for the gds-alert web component
|
|
441
|
-
*
|
|
442
|
-
*/
|
|
443
|
-
let GdsAlertComponent = class GdsAlertComponent {
|
|
444
|
-
get element() {
|
|
445
|
-
return this.elementRef.nativeElement;
|
|
446
|
-
}
|
|
447
|
-
constructor() {
|
|
448
|
-
this.elementRef = inject((ElementRef));
|
|
449
|
-
this.zone = inject(NgZone);
|
|
450
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
451
|
-
/** Fired when alert is dismissed */
|
|
452
|
-
this.gdsClose = new EventEmitter();
|
|
453
|
-
/** Fired when action button is clicked */
|
|
454
|
-
this.gdsAction = new EventEmitter();
|
|
455
|
-
this.cdr.detach();
|
|
456
|
-
}
|
|
457
|
-
ngOnInit() {
|
|
458
|
-
// Define the custom element
|
|
459
|
-
try {
|
|
460
|
-
GdsAlert.define();
|
|
461
|
-
}
|
|
462
|
-
catch (e) {
|
|
463
|
-
// Component may not be available in this version of green-core
|
|
464
|
-
console.warn('Failed to define gds-alert:', e);
|
|
465
|
-
}
|
|
466
|
-
// Set up event listeners
|
|
467
|
-
this.elementRef.nativeElement.addEventListener('gds-close', (event) => {
|
|
468
|
-
this.gdsClose.emit(event);
|
|
469
|
-
});
|
|
470
|
-
this.elementRef.nativeElement.addEventListener('gds-action', (event) => {
|
|
471
|
-
this.gdsAction.emit(event);
|
|
472
|
-
});
|
|
473
|
-
}
|
|
474
|
-
ngOnChanges(changes) {
|
|
475
|
-
// Implementation added by @ProxyInputs decorator
|
|
476
|
-
}
|
|
477
|
-
ngAfterViewInit() {
|
|
478
|
-
// Implementation added by @ProxyInputs decorator
|
|
479
|
-
}
|
|
480
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
481
|
-
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 }); }
|
|
482
|
-
};
|
|
483
|
-
GdsAlertComponent = __decorate([
|
|
484
|
-
ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
|
|
485
|
-
__metadata("design:paramtypes", [])
|
|
486
|
-
], GdsAlertComponent);
|
|
487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAlertComponent, decorators: [{
|
|
488
|
-
type: Component,
|
|
489
|
-
args: [{
|
|
490
|
-
selector: 'gds-alert',
|
|
491
|
-
standalone: true,
|
|
492
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
493
|
-
template: `<ng-content></ng-content>`
|
|
494
|
-
}]
|
|
495
|
-
}], ctorParameters: () => [], propDecorators: { variant: [{
|
|
496
|
-
type: Input
|
|
497
|
-
}], label: [{
|
|
498
|
-
type: Input
|
|
499
|
-
}], role: [{
|
|
500
|
-
type: Input
|
|
501
|
-
}], dismissible: [{
|
|
502
|
-
type: Input,
|
|
503
|
-
args: [{ transform: booleanAttribute }]
|
|
504
|
-
}], timeout: [{
|
|
505
|
-
type: Input
|
|
506
|
-
}], buttonLabel: [{
|
|
507
|
-
type: Input
|
|
508
|
-
}], syncFirstRender: [{
|
|
509
|
-
type: Input,
|
|
510
|
-
args: [{ transform: booleanAttribute }]
|
|
511
|
-
}], gdsClose: [{
|
|
512
|
-
type: Output
|
|
513
|
-
}], gdsAction: [{
|
|
514
|
-
type: Output
|
|
515
|
-
}] } });
|
|
516
|
-
|
|
517
|
-
/**
|
|
518
|
-
* GdsAlertComponent - Angular wrapper for gds-alert
|
|
519
|
-
*
|
|
520
|
-
*
|
|
521
|
-
* Auto-generated from Custom Elements Manifest
|
|
522
|
-
*/
|
|
523
|
-
|
|
524
440
|
/**
|
|
525
441
|
* Angular wrapper for the gds-avatar web component
|
|
526
442
|
* `gds-avatar` is a visual element used to represent a user or entity.
|
|
@@ -629,10 +545,10 @@ It supports displaying an image, slotted text content, or a fallback icon.
|
|
|
629
545
|
*/
|
|
630
546
|
|
|
631
547
|
/**
|
|
632
|
-
* Angular wrapper for the gds-
|
|
633
|
-
*
|
|
548
|
+
* Angular wrapper for the gds-alert web component
|
|
549
|
+
*
|
|
634
550
|
*/
|
|
635
|
-
let
|
|
551
|
+
let GdsAlertComponent = class GdsAlertComponent {
|
|
636
552
|
get element() {
|
|
637
553
|
return this.elementRef.nativeElement;
|
|
638
554
|
}
|
|
@@ -640,17 +556,28 @@ let GdsBadgeComponent = class GdsBadgeComponent {
|
|
|
640
556
|
this.elementRef = inject((ElementRef));
|
|
641
557
|
this.zone = inject(NgZone);
|
|
642
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();
|
|
643
563
|
this.cdr.detach();
|
|
644
564
|
}
|
|
645
565
|
ngOnInit() {
|
|
646
566
|
// Define the custom element
|
|
647
567
|
try {
|
|
648
|
-
|
|
568
|
+
GdsAlert.define();
|
|
649
569
|
}
|
|
650
570
|
catch (e) {
|
|
651
571
|
// Component may not be available in this version of green-core
|
|
652
|
-
console.warn('Failed to define gds-
|
|
572
|
+
console.warn('Failed to define gds-alert:', e);
|
|
653
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
|
+
});
|
|
654
581
|
}
|
|
655
582
|
ngOnChanges(changes) {
|
|
656
583
|
// Implementation added by @ProxyInputs decorator
|
|
@@ -658,79 +585,46 @@ let GdsBadgeComponent = class GdsBadgeComponent {
|
|
|
658
585
|
ngAfterViewInit() {
|
|
659
586
|
// Implementation added by @ProxyInputs decorator
|
|
660
587
|
}
|
|
661
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type:
|
|
662
|
-
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 }); }
|
|
663
590
|
};
|
|
664
|
-
|
|
665
|
-
ProxyInputs(['variant', '
|
|
591
|
+
GdsAlertComponent = __decorate([
|
|
592
|
+
ProxyInputs(['variant', 'label', 'role', 'dismissible', 'timeout', 'buttonLabel', 'syncFirstRender']),
|
|
666
593
|
__metadata("design:paramtypes", [])
|
|
667
|
-
],
|
|
668
|
-
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: [{
|
|
669
596
|
type: Component,
|
|
670
597
|
args: [{
|
|
671
|
-
selector: 'gds-
|
|
598
|
+
selector: 'gds-alert',
|
|
672
599
|
standalone: true,
|
|
673
600
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
674
601
|
template: `<ng-content></ng-content>`
|
|
675
602
|
}]
|
|
676
603
|
}], ctorParameters: () => [], propDecorators: { variant: [{
|
|
677
604
|
type: Input
|
|
678
|
-
}],
|
|
605
|
+
}], label: [{
|
|
679
606
|
type: Input
|
|
680
|
-
}],
|
|
681
|
-
type: Input
|
|
682
|
-
|
|
683
|
-
}], rounded: [{
|
|
684
|
-
type: Input,
|
|
685
|
-
args: [{ transform: booleanAttribute }]
|
|
686
|
-
}], mainSlotOccupied: [{
|
|
687
|
-
type: Input,
|
|
688
|
-
args: [{ transform: booleanAttribute }]
|
|
689
|
-
}], leadSlotOccupied: [{
|
|
607
|
+
}], role: [{
|
|
608
|
+
type: Input
|
|
609
|
+
}], dismissible: [{
|
|
690
610
|
type: Input,
|
|
691
611
|
args: [{ transform: booleanAttribute }]
|
|
692
|
-
}],
|
|
693
|
-
type: Input
|
|
694
|
-
}], minWidth: [{
|
|
695
|
-
type: Input
|
|
696
|
-
}], maxWidth: [{
|
|
697
|
-
type: Input
|
|
698
|
-
}], inlineSize: [{
|
|
699
|
-
type: Input
|
|
700
|
-
}], minInlineSize: [{
|
|
701
|
-
type: Input
|
|
702
|
-
}], maxInlineSize: [{
|
|
703
|
-
type: Input
|
|
704
|
-
}], margin: [{
|
|
705
|
-
type: Input
|
|
706
|
-
}], marginInline: [{
|
|
707
|
-
type: Input
|
|
708
|
-
}], marginBlock: [{
|
|
709
|
-
type: Input
|
|
710
|
-
}], alignSelf: [{
|
|
711
|
-
type: Input
|
|
712
|
-
}], justifySelf: [{
|
|
713
|
-
type: Input
|
|
714
|
-
}], placeSelf: [{
|
|
715
|
-
type: Input
|
|
716
|
-
}], gridColumn: [{
|
|
717
|
-
type: Input
|
|
718
|
-
}], gridRow: [{
|
|
719
|
-
type: Input
|
|
720
|
-
}], gridArea: [{
|
|
721
|
-
type: Input
|
|
722
|
-
}], flex: [{
|
|
612
|
+
}], timeout: [{
|
|
723
613
|
type: Input
|
|
724
|
-
}],
|
|
614
|
+
}], buttonLabel: [{
|
|
725
615
|
type: Input
|
|
726
616
|
}], syncFirstRender: [{
|
|
727
617
|
type: Input,
|
|
728
618
|
args: [{ transform: booleanAttribute }]
|
|
619
|
+
}], gdsClose: [{
|
|
620
|
+
type: Output
|
|
621
|
+
}], gdsAction: [{
|
|
622
|
+
type: Output
|
|
729
623
|
}] } });
|
|
730
624
|
|
|
731
625
|
/**
|
|
732
|
-
*
|
|
733
|
-
*
|
|
626
|
+
* GdsAlertComponent - Angular wrapper for gds-alert
|
|
627
|
+
*
|
|
734
628
|
*
|
|
735
629
|
* Auto-generated from Custom Elements Manifest
|
|
736
630
|
*/
|
|
@@ -887,6 +781,113 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
887
781
|
* Auto-generated from Custom Elements Manifest
|
|
888
782
|
*/
|
|
889
783
|
|
|
784
|
+
/**
|
|
785
|
+
* Angular wrapper for the gds-badge web component
|
|
786
|
+
* `gds-badge`
|
|
787
|
+
*/
|
|
788
|
+
let GdsBadgeComponent = class GdsBadgeComponent {
|
|
789
|
+
get element() {
|
|
790
|
+
return this.elementRef.nativeElement;
|
|
791
|
+
}
|
|
792
|
+
constructor() {
|
|
793
|
+
this.elementRef = inject((ElementRef));
|
|
794
|
+
this.zone = inject(NgZone);
|
|
795
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
796
|
+
this.cdr.detach();
|
|
797
|
+
}
|
|
798
|
+
ngOnInit() {
|
|
799
|
+
// Define the custom element
|
|
800
|
+
try {
|
|
801
|
+
GdsBadge.define();
|
|
802
|
+
}
|
|
803
|
+
catch (e) {
|
|
804
|
+
// Component may not be available in this version of green-core
|
|
805
|
+
console.warn('Failed to define gds-badge:', e);
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
ngOnChanges(changes) {
|
|
809
|
+
// Implementation added by @ProxyInputs decorator
|
|
810
|
+
}
|
|
811
|
+
ngAfterViewInit() {
|
|
812
|
+
// Implementation added by @ProxyInputs decorator
|
|
813
|
+
}
|
|
814
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
815
|
+
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 }); }
|
|
816
|
+
};
|
|
817
|
+
GdsBadgeComponent = __decorate([
|
|
818
|
+
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']),
|
|
819
|
+
__metadata("design:paramtypes", [])
|
|
820
|
+
], GdsBadgeComponent);
|
|
821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBadgeComponent, decorators: [{
|
|
822
|
+
type: Component,
|
|
823
|
+
args: [{
|
|
824
|
+
selector: 'gds-badge',
|
|
825
|
+
standalone: true,
|
|
826
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
827
|
+
template: `<ng-content></ng-content>`
|
|
828
|
+
}]
|
|
829
|
+
}], ctorParameters: () => [], propDecorators: { variant: [{
|
|
830
|
+
type: Input
|
|
831
|
+
}], size: [{
|
|
832
|
+
type: Input
|
|
833
|
+
}], notification: [{
|
|
834
|
+
type: Input,
|
|
835
|
+
args: [{ transform: booleanAttribute }]
|
|
836
|
+
}], rounded: [{
|
|
837
|
+
type: Input,
|
|
838
|
+
args: [{ transform: booleanAttribute }]
|
|
839
|
+
}], mainSlotOccupied: [{
|
|
840
|
+
type: Input,
|
|
841
|
+
args: [{ transform: booleanAttribute }]
|
|
842
|
+
}], leadSlotOccupied: [{
|
|
843
|
+
type: Input,
|
|
844
|
+
args: [{ transform: booleanAttribute }]
|
|
845
|
+
}], width: [{
|
|
846
|
+
type: Input
|
|
847
|
+
}], minWidth: [{
|
|
848
|
+
type: Input
|
|
849
|
+
}], maxWidth: [{
|
|
850
|
+
type: Input
|
|
851
|
+
}], inlineSize: [{
|
|
852
|
+
type: Input
|
|
853
|
+
}], minInlineSize: [{
|
|
854
|
+
type: Input
|
|
855
|
+
}], maxInlineSize: [{
|
|
856
|
+
type: Input
|
|
857
|
+
}], margin: [{
|
|
858
|
+
type: Input
|
|
859
|
+
}], marginInline: [{
|
|
860
|
+
type: Input
|
|
861
|
+
}], marginBlock: [{
|
|
862
|
+
type: Input
|
|
863
|
+
}], alignSelf: [{
|
|
864
|
+
type: Input
|
|
865
|
+
}], justifySelf: [{
|
|
866
|
+
type: Input
|
|
867
|
+
}], placeSelf: [{
|
|
868
|
+
type: Input
|
|
869
|
+
}], gridColumn: [{
|
|
870
|
+
type: Input
|
|
871
|
+
}], gridRow: [{
|
|
872
|
+
type: Input
|
|
873
|
+
}], gridArea: [{
|
|
874
|
+
type: Input
|
|
875
|
+
}], flex: [{
|
|
876
|
+
type: Input
|
|
877
|
+
}], order: [{
|
|
878
|
+
type: Input
|
|
879
|
+
}], syncFirstRender: [{
|
|
880
|
+
type: Input,
|
|
881
|
+
args: [{ transform: booleanAttribute }]
|
|
882
|
+
}] } });
|
|
883
|
+
|
|
884
|
+
/**
|
|
885
|
+
* GdsBadgeComponent - Angular wrapper for gds-badge
|
|
886
|
+
* `gds-badge`
|
|
887
|
+
*
|
|
888
|
+
* Auto-generated from Custom Elements Manifest
|
|
889
|
+
*/
|
|
890
|
+
|
|
890
891
|
/**
|
|
891
892
|
* Base class for Angular wrapper components that wrap Green Core form controls.
|
|
892
893
|
*
|
|
@@ -6598,93 +6599,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
6598
6599
|
* Auto-generated from Custom Elements Manifest
|
|
6599
6600
|
*/
|
|
6600
6601
|
|
|
6601
|
-
/**
|
|
6602
|
-
* Angular wrapper for the gds-avatar-group web component
|
|
6603
|
-
* `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
|
|
6604
|
-
|
|
6605
|
-
Accessibility:
|
|
6606
|
-
- Exposes `role="group"` by default.
|
|
6607
|
-
- Provide an `aria-label` (for example `aria-label="Authors"`) to describe the group context.
|
|
6608
|
-
*/
|
|
6609
|
-
let GdsAvatarGroupComponent = class GdsAvatarGroupComponent {
|
|
6610
|
-
get element() {
|
|
6611
|
-
return this.elementRef.nativeElement;
|
|
6612
|
-
}
|
|
6613
|
-
constructor() {
|
|
6614
|
-
this.elementRef = inject((ElementRef));
|
|
6615
|
-
this.zone = inject(NgZone);
|
|
6616
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
6617
|
-
this.cdr.detach();
|
|
6618
|
-
}
|
|
6619
|
-
ngOnInit() {
|
|
6620
|
-
// Define the custom element
|
|
6621
|
-
try {
|
|
6622
|
-
GdsAvatarGroup.define();
|
|
6623
|
-
}
|
|
6624
|
-
catch (e) {
|
|
6625
|
-
// Component may not be available in this version of green-core
|
|
6626
|
-
console.warn('Failed to define gds-avatar-group:', e);
|
|
6627
|
-
}
|
|
6628
|
-
}
|
|
6629
|
-
ngOnChanges(changes) {
|
|
6630
|
-
// Implementation added by @ProxyInputs decorator
|
|
6631
|
-
}
|
|
6632
|
-
ngAfterViewInit() {
|
|
6633
|
-
// Implementation added by @ProxyInputs decorator
|
|
6634
|
-
}
|
|
6635
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAvatarGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6636
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsAvatarGroupComponent, isStandalone: true, selector: "gds-avatar-group", inputs: { 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 }); }
|
|
6637
|
-
};
|
|
6638
|
-
GdsAvatarGroupComponent = __decorate([
|
|
6639
|
-
ProxyInputs(['margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
|
|
6640
|
-
__metadata("design:paramtypes", [])
|
|
6641
|
-
], GdsAvatarGroupComponent);
|
|
6642
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAvatarGroupComponent, decorators: [{
|
|
6643
|
-
type: Component,
|
|
6644
|
-
args: [{
|
|
6645
|
-
selector: 'gds-avatar-group',
|
|
6646
|
-
standalone: true,
|
|
6647
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6648
|
-
template: `<ng-content></ng-content>`
|
|
6649
|
-
}]
|
|
6650
|
-
}], ctorParameters: () => [], propDecorators: { margin: [{
|
|
6651
|
-
type: Input
|
|
6652
|
-
}], marginInline: [{
|
|
6653
|
-
type: Input
|
|
6654
|
-
}], marginBlock: [{
|
|
6655
|
-
type: Input
|
|
6656
|
-
}], alignSelf: [{
|
|
6657
|
-
type: Input
|
|
6658
|
-
}], justifySelf: [{
|
|
6659
|
-
type: Input
|
|
6660
|
-
}], placeSelf: [{
|
|
6661
|
-
type: Input
|
|
6662
|
-
}], gridColumn: [{
|
|
6663
|
-
type: Input
|
|
6664
|
-
}], gridRow: [{
|
|
6665
|
-
type: Input
|
|
6666
|
-
}], gridArea: [{
|
|
6667
|
-
type: Input
|
|
6668
|
-
}], flex: [{
|
|
6669
|
-
type: Input
|
|
6670
|
-
}], order: [{
|
|
6671
|
-
type: Input
|
|
6672
|
-
}], syncFirstRender: [{
|
|
6673
|
-
type: Input,
|
|
6674
|
-
args: [{ transform: booleanAttribute }]
|
|
6675
|
-
}] } });
|
|
6676
|
-
|
|
6677
|
-
/**
|
|
6678
|
-
* GdsAvatarGroupComponent - Angular wrapper for gds-avatar-group
|
|
6679
|
-
* `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
|
|
6680
|
-
|
|
6681
|
-
Accessibility:
|
|
6682
|
-
- Exposes `role="group"` by default.
|
|
6683
|
-
- Provide an `aria-label` (for example `aria-label="Authors"`) to describe the group context.
|
|
6684
|
-
*
|
|
6685
|
-
* Auto-generated from Custom Elements Manifest
|
|
6686
|
-
*/
|
|
6687
|
-
|
|
6688
6602
|
/**
|
|
6689
6603
|
* Angular wrapper for the gds-breadcrumb web component
|
|
6690
6604
|
*
|
|
@@ -6823,6 +6737,93 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
6823
6737
|
* Auto-generated from Custom Elements Manifest
|
|
6824
6738
|
*/
|
|
6825
6739
|
|
|
6740
|
+
/**
|
|
6741
|
+
* Angular wrapper for the gds-avatar-group web component
|
|
6742
|
+
* `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
|
|
6743
|
+
|
|
6744
|
+
Accessibility:
|
|
6745
|
+
- Exposes `role="group"` by default.
|
|
6746
|
+
- Provide an `aria-label` (for example `aria-label="Authors"`) to describe the group context.
|
|
6747
|
+
*/
|
|
6748
|
+
let GdsAvatarGroupComponent = class GdsAvatarGroupComponent {
|
|
6749
|
+
get element() {
|
|
6750
|
+
return this.elementRef.nativeElement;
|
|
6751
|
+
}
|
|
6752
|
+
constructor() {
|
|
6753
|
+
this.elementRef = inject((ElementRef));
|
|
6754
|
+
this.zone = inject(NgZone);
|
|
6755
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6756
|
+
this.cdr.detach();
|
|
6757
|
+
}
|
|
6758
|
+
ngOnInit() {
|
|
6759
|
+
// Define the custom element
|
|
6760
|
+
try {
|
|
6761
|
+
GdsAvatarGroup.define();
|
|
6762
|
+
}
|
|
6763
|
+
catch (e) {
|
|
6764
|
+
// Component may not be available in this version of green-core
|
|
6765
|
+
console.warn('Failed to define gds-avatar-group:', e);
|
|
6766
|
+
}
|
|
6767
|
+
}
|
|
6768
|
+
ngOnChanges(changes) {
|
|
6769
|
+
// Implementation added by @ProxyInputs decorator
|
|
6770
|
+
}
|
|
6771
|
+
ngAfterViewInit() {
|
|
6772
|
+
// Implementation added by @ProxyInputs decorator
|
|
6773
|
+
}
|
|
6774
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAvatarGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6775
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsAvatarGroupComponent, isStandalone: true, selector: "gds-avatar-group", inputs: { 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 }); }
|
|
6776
|
+
};
|
|
6777
|
+
GdsAvatarGroupComponent = __decorate([
|
|
6778
|
+
ProxyInputs(['margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
|
|
6779
|
+
__metadata("design:paramtypes", [])
|
|
6780
|
+
], GdsAvatarGroupComponent);
|
|
6781
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsAvatarGroupComponent, decorators: [{
|
|
6782
|
+
type: Component,
|
|
6783
|
+
args: [{
|
|
6784
|
+
selector: 'gds-avatar-group',
|
|
6785
|
+
standalone: true,
|
|
6786
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6787
|
+
template: `<ng-content></ng-content>`
|
|
6788
|
+
}]
|
|
6789
|
+
}], ctorParameters: () => [], propDecorators: { margin: [{
|
|
6790
|
+
type: Input
|
|
6791
|
+
}], marginInline: [{
|
|
6792
|
+
type: Input
|
|
6793
|
+
}], marginBlock: [{
|
|
6794
|
+
type: Input
|
|
6795
|
+
}], alignSelf: [{
|
|
6796
|
+
type: Input
|
|
6797
|
+
}], justifySelf: [{
|
|
6798
|
+
type: Input
|
|
6799
|
+
}], placeSelf: [{
|
|
6800
|
+
type: Input
|
|
6801
|
+
}], gridColumn: [{
|
|
6802
|
+
type: Input
|
|
6803
|
+
}], gridRow: [{
|
|
6804
|
+
type: Input
|
|
6805
|
+
}], gridArea: [{
|
|
6806
|
+
type: Input
|
|
6807
|
+
}], flex: [{
|
|
6808
|
+
type: Input
|
|
6809
|
+
}], order: [{
|
|
6810
|
+
type: Input
|
|
6811
|
+
}], syncFirstRender: [{
|
|
6812
|
+
type: Input,
|
|
6813
|
+
args: [{ transform: booleanAttribute }]
|
|
6814
|
+
}] } });
|
|
6815
|
+
|
|
6816
|
+
/**
|
|
6817
|
+
* GdsAvatarGroupComponent - Angular wrapper for gds-avatar-group
|
|
6818
|
+
* `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
|
|
6819
|
+
|
|
6820
|
+
Accessibility:
|
|
6821
|
+
- Exposes `role="group"` by default.
|
|
6822
|
+
- Provide an `aria-label` (for example `aria-label="Authors"`) to describe the group context.
|
|
6823
|
+
*
|
|
6824
|
+
* Auto-generated from Custom Elements Manifest
|
|
6825
|
+
*/
|
|
6826
|
+
|
|
6826
6827
|
/**
|
|
6827
6828
|
* Angular wrapper for the gds-checkbox-group web component
|
|
6828
6829
|
*
|
|
@@ -27130,6 +27131,98 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
27130
27131
|
* Auto-generated from Custom Elements Manifest
|
|
27131
27132
|
*/
|
|
27132
27133
|
|
|
27134
|
+
/**
|
|
27135
|
+
* Angular wrapper for the gds-icon-newspaper web component
|
|
27136
|
+
*
|
|
27137
|
+
*/
|
|
27138
|
+
let IconNewspaperComponent = class IconNewspaperComponent {
|
|
27139
|
+
get element() {
|
|
27140
|
+
return this.elementRef.nativeElement;
|
|
27141
|
+
}
|
|
27142
|
+
constructor() {
|
|
27143
|
+
this.elementRef = inject((ElementRef));
|
|
27144
|
+
this.zone = inject(NgZone);
|
|
27145
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
27146
|
+
this.cdr.detach();
|
|
27147
|
+
}
|
|
27148
|
+
ngOnInit() {
|
|
27149
|
+
// Define the custom element
|
|
27150
|
+
try {
|
|
27151
|
+
IconNewspaper.define();
|
|
27152
|
+
}
|
|
27153
|
+
catch (e) {
|
|
27154
|
+
// Component may not be available in this version of green-core
|
|
27155
|
+
console.warn('Failed to define gds-icon-newspaper:', e);
|
|
27156
|
+
}
|
|
27157
|
+
}
|
|
27158
|
+
ngOnChanges(changes) {
|
|
27159
|
+
// Implementation added by @ProxyInputs decorator
|
|
27160
|
+
}
|
|
27161
|
+
ngAfterViewInit() {
|
|
27162
|
+
// Implementation added by @ProxyInputs decorator
|
|
27163
|
+
}
|
|
27164
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: IconNewspaperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
27165
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: IconNewspaperComponent, isStandalone: true, selector: "gds-icon-newspaper", inputs: { margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", size: "size", solid: ["solid", "solid", booleanAttribute], stroke: "stroke", level: "level", color: "color", label: "label", syncFirstRender: ["syncFirstRender", "syncFirstRender", booleanAttribute] }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
27166
|
+
};
|
|
27167
|
+
IconNewspaperComponent = __decorate([
|
|
27168
|
+
ProxyInputs(['margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'size', 'solid', 'stroke', 'level', 'color', 'label', 'syncFirstRender']),
|
|
27169
|
+
__metadata("design:paramtypes", [])
|
|
27170
|
+
], IconNewspaperComponent);
|
|
27171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: IconNewspaperComponent, decorators: [{
|
|
27172
|
+
type: Component,
|
|
27173
|
+
args: [{
|
|
27174
|
+
selector: 'gds-icon-newspaper',
|
|
27175
|
+
standalone: true,
|
|
27176
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
27177
|
+
template: `<ng-content></ng-content>`
|
|
27178
|
+
}]
|
|
27179
|
+
}], ctorParameters: () => [], propDecorators: { margin: [{
|
|
27180
|
+
type: Input
|
|
27181
|
+
}], marginInline: [{
|
|
27182
|
+
type: Input
|
|
27183
|
+
}], marginBlock: [{
|
|
27184
|
+
type: Input
|
|
27185
|
+
}], alignSelf: [{
|
|
27186
|
+
type: Input
|
|
27187
|
+
}], justifySelf: [{
|
|
27188
|
+
type: Input
|
|
27189
|
+
}], placeSelf: [{
|
|
27190
|
+
type: Input
|
|
27191
|
+
}], gridColumn: [{
|
|
27192
|
+
type: Input
|
|
27193
|
+
}], gridRow: [{
|
|
27194
|
+
type: Input
|
|
27195
|
+
}], gridArea: [{
|
|
27196
|
+
type: Input
|
|
27197
|
+
}], flex: [{
|
|
27198
|
+
type: Input
|
|
27199
|
+
}], order: [{
|
|
27200
|
+
type: Input
|
|
27201
|
+
}], size: [{
|
|
27202
|
+
type: Input
|
|
27203
|
+
}], solid: [{
|
|
27204
|
+
type: Input,
|
|
27205
|
+
args: [{ transform: booleanAttribute }]
|
|
27206
|
+
}], stroke: [{
|
|
27207
|
+
type: Input
|
|
27208
|
+
}], level: [{
|
|
27209
|
+
type: Input
|
|
27210
|
+
}], color: [{
|
|
27211
|
+
type: Input
|
|
27212
|
+
}], label: [{
|
|
27213
|
+
type: Input
|
|
27214
|
+
}], syncFirstRender: [{
|
|
27215
|
+
type: Input,
|
|
27216
|
+
args: [{ transform: booleanAttribute }]
|
|
27217
|
+
}] } });
|
|
27218
|
+
|
|
27219
|
+
/**
|
|
27220
|
+
* IconNewspaperComponent - Angular wrapper for gds-icon-newspaper
|
|
27221
|
+
*
|
|
27222
|
+
*
|
|
27223
|
+
* Auto-generated from Custom Elements Manifest
|
|
27224
|
+
*/
|
|
27225
|
+
|
|
27133
27226
|
/**
|
|
27134
27227
|
* Angular wrapper for the gds-icon-office web component
|
|
27135
27228
|
*
|
|
@@ -37187,11 +37280,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37187
37280
|
*/
|
|
37188
37281
|
class GreenCoreNgModule {
|
|
37189
37282
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
37190
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [
|
|
37191
|
-
|
|
37192
|
-
GdsBadgeComponent,
|
|
37283
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAvatarComponent,
|
|
37284
|
+
GdsAlertComponent,
|
|
37193
37285
|
GdsBlurComponent,
|
|
37194
37286
|
GdsBreadcrumbsComponent,
|
|
37287
|
+
GdsBadgeComponent,
|
|
37195
37288
|
GdsButtonComponent,
|
|
37196
37289
|
GdsCalendarComponent,
|
|
37197
37290
|
GdsCardComponent,
|
|
@@ -37233,8 +37326,8 @@ class GreenCoreNgModule {
|
|
|
37233
37326
|
GdsThemeComponent,
|
|
37234
37327
|
GdsVideoComponent,
|
|
37235
37328
|
GdsCardPattern01Component,
|
|
37236
|
-
GdsAvatarGroupComponent,
|
|
37237
37329
|
GdsBreadcrumbComponent,
|
|
37330
|
+
GdsAvatarGroupComponent,
|
|
37238
37331
|
GdsCheckboxGroupComponent,
|
|
37239
37332
|
GdsIconDetailsComponent,
|
|
37240
37333
|
GdsFilterChipComponent,
|
|
@@ -37449,6 +37542,7 @@ class GreenCoreNgModule {
|
|
|
37449
37542
|
IconMoneybagComponent,
|
|
37450
37543
|
IconMoonComponent,
|
|
37451
37544
|
IconMuteComponent,
|
|
37545
|
+
IconNewspaperComponent,
|
|
37452
37546
|
IconOfficeComponent,
|
|
37453
37547
|
IconPageAddComponent,
|
|
37454
37548
|
IconPaperPlaneTopRightComponent,
|
|
@@ -37558,11 +37652,11 @@ class GreenCoreNgModule {
|
|
|
37558
37652
|
IconZoomOutComponent,
|
|
37559
37653
|
GdsMenuItemComponent,
|
|
37560
37654
|
GdsMenuHeadingComponent,
|
|
37561
|
-
GdsOptionComponent], exports: [
|
|
37562
|
-
|
|
37563
|
-
GdsBadgeComponent,
|
|
37655
|
+
GdsOptionComponent], exports: [GdsAvatarComponent,
|
|
37656
|
+
GdsAlertComponent,
|
|
37564
37657
|
GdsBlurComponent,
|
|
37565
37658
|
GdsBreadcrumbsComponent,
|
|
37659
|
+
GdsBadgeComponent,
|
|
37566
37660
|
GdsButtonComponent,
|
|
37567
37661
|
GdsCalendarComponent,
|
|
37568
37662
|
GdsCardComponent,
|
|
@@ -37604,8 +37698,8 @@ class GreenCoreNgModule {
|
|
|
37604
37698
|
GdsThemeComponent,
|
|
37605
37699
|
GdsVideoComponent,
|
|
37606
37700
|
GdsCardPattern01Component,
|
|
37607
|
-
GdsAvatarGroupComponent,
|
|
37608
37701
|
GdsBreadcrumbComponent,
|
|
37702
|
+
GdsAvatarGroupComponent,
|
|
37609
37703
|
GdsCheckboxGroupComponent,
|
|
37610
37704
|
GdsIconDetailsComponent,
|
|
37611
37705
|
GdsFilterChipComponent,
|
|
@@ -37820,6 +37914,7 @@ class GreenCoreNgModule {
|
|
|
37820
37914
|
IconMoneybagComponent,
|
|
37821
37915
|
IconMoonComponent,
|
|
37822
37916
|
IconMuteComponent,
|
|
37917
|
+
IconNewspaperComponent,
|
|
37823
37918
|
IconOfficeComponent,
|
|
37824
37919
|
IconPageAddComponent,
|
|
37825
37920
|
IconPaperPlaneTopRightComponent,
|
|
@@ -37936,11 +38031,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37936
38031
|
type: NgModule,
|
|
37937
38032
|
args: [{
|
|
37938
38033
|
imports: [
|
|
37939
|
-
GdsAlertComponent,
|
|
37940
38034
|
GdsAvatarComponent,
|
|
37941
|
-
|
|
38035
|
+
GdsAlertComponent,
|
|
37942
38036
|
GdsBlurComponent,
|
|
37943
38037
|
GdsBreadcrumbsComponent,
|
|
38038
|
+
GdsBadgeComponent,
|
|
37944
38039
|
GdsButtonComponent,
|
|
37945
38040
|
GdsCalendarComponent,
|
|
37946
38041
|
GdsCardComponent,
|
|
@@ -37982,8 +38077,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37982
38077
|
GdsThemeComponent,
|
|
37983
38078
|
GdsVideoComponent,
|
|
37984
38079
|
GdsCardPattern01Component,
|
|
37985
|
-
GdsAvatarGroupComponent,
|
|
37986
38080
|
GdsBreadcrumbComponent,
|
|
38081
|
+
GdsAvatarGroupComponent,
|
|
37987
38082
|
GdsCheckboxGroupComponent,
|
|
37988
38083
|
GdsIconDetailsComponent,
|
|
37989
38084
|
GdsFilterChipComponent,
|
|
@@ -38198,6 +38293,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38198
38293
|
IconMoneybagComponent,
|
|
38199
38294
|
IconMoonComponent,
|
|
38200
38295
|
IconMuteComponent,
|
|
38296
|
+
IconNewspaperComponent,
|
|
38201
38297
|
IconOfficeComponent,
|
|
38202
38298
|
IconPageAddComponent,
|
|
38203
38299
|
IconPaperPlaneTopRightComponent,
|
|
@@ -38310,11 +38406,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38310
38406
|
GdsOptionComponent,
|
|
38311
38407
|
],
|
|
38312
38408
|
exports: [
|
|
38313
|
-
GdsAlertComponent,
|
|
38314
38409
|
GdsAvatarComponent,
|
|
38315
|
-
|
|
38410
|
+
GdsAlertComponent,
|
|
38316
38411
|
GdsBlurComponent,
|
|
38317
38412
|
GdsBreadcrumbsComponent,
|
|
38413
|
+
GdsBadgeComponent,
|
|
38318
38414
|
GdsButtonComponent,
|
|
38319
38415
|
GdsCalendarComponent,
|
|
38320
38416
|
GdsCardComponent,
|
|
@@ -38356,8 +38452,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38356
38452
|
GdsThemeComponent,
|
|
38357
38453
|
GdsVideoComponent,
|
|
38358
38454
|
GdsCardPattern01Component,
|
|
38359
|
-
GdsAvatarGroupComponent,
|
|
38360
38455
|
GdsBreadcrumbComponent,
|
|
38456
|
+
GdsAvatarGroupComponent,
|
|
38361
38457
|
GdsCheckboxGroupComponent,
|
|
38362
38458
|
GdsIconDetailsComponent,
|
|
38363
38459
|
GdsFilterChipComponent,
|
|
@@ -38572,6 +38668,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
38572
38668
|
IconMoneybagComponent,
|
|
38573
38669
|
IconMoonComponent,
|
|
38574
38670
|
IconMuteComponent,
|
|
38671
|
+
IconNewspaperComponent,
|
|
38575
38672
|
IconOfficeComponent,
|
|
38576
38673
|
IconPageAddComponent,
|
|
38577
38674
|
IconPaperPlaneTopRightComponent,
|
|
@@ -38892,5 +38989,5 @@ const provideCoreRendererWithAnimations = (resolver = getScopedTagName) => [
|
|
|
38892
38989
|
* Generated bundle index. Do not edit.
|
|
38893
38990
|
*/
|
|
38894
38991
|
|
|
38895
|
-
export { GdsAlertComponent, GdsAvatarComponent, GdsAvatarGroupComponent, GdsBackdropComponent, GdsBadgeComponent, GdsBlurComponent, GdsBreadcrumbComponent, GdsBreadcrumbsComponent, GdsButtonComponent, GdsCalendarComponent, GdsCardComponent, GdsCardLinkedComponent, GdsCardPattern01Component, GdsCheckboxComponent, GdsCheckboxFormControlBase, GdsCheckboxGroupComponent, GdsCoachmarkComponent, GdsContextMenuComponent, GdsCoreRenderer, GdsCoreRendererFactory, GdsCoreScopeDirective, GdsCoreScopeModule, GdsDatepickerComponent, GdsDetailsComponent, GdsDialogComponent, GdsDivComponent, GdsDividerComponent, GdsDropdownComponent, GdsFabComponent, GdsFilterChipComponent, GdsFilterChipsComponent, GdsFlexComponent, GdsFormControlBase, GdsFormSummaryComponent, GdsFormattedAccountComponent, GdsFormattedDateComponent, GdsFormattedNumberComponent, GdsGridComponent, GdsGroupedListComponent, GdsIconDetailsComponent, GdsImgComponent, GdsInputComponent, GdsLinkComponent, GdsListItemComponent, GdsMaskComponent, GdsMenuButtonComponent, GdsMenuHeadingComponent, GdsMenuItemComponent, GdsOptionComponent, GdsPaginationComponent, GdsPopoverComponent, GdsRadioComponent, GdsRadioGroupComponent, GdsRichTextComponent, GdsSegmentComponent, GdsSegmentedControlComponent, GdsSelectComponent, GdsSensitiveAccountComponent, GdsSensitiveDateComponent, GdsSensitiveNumberComponent, GdsSignalComponent, GdsSpinnerComponent, GdsSwitchComponent, GdsTableComponent, GdsTextComponent, GdsTextareaComponent, GdsThemeComponent, GdsVideoComponent, GreenCoreNgModule, IconAiComponent, IconAirplaneUpComponent, IconArchiveComponent, IconArrowBottomTopComponent, IconArrowBoxLeftAltComponent, IconArrowBoxLeftComponent, IconArrowBoxRightComponent, IconArrowComponent, IconArrowDownComponent, IconArrowInboxComponent, IconArrowLeftComponent, IconArrowLeftRightComponent, IconArrowOutOfBoxComponent, IconArrowRightCircleComponent, IconArrowRightComponent, IconArrowRightDownCircleComponent, IconArrowRightUpCircleComponent, IconArrowRotateClockwiseComponent, IconArrowRotateCounterClockwiseComponent, IconArrowRotateLeftRightComponent, IconArrowRotateRightLeftComponent, IconArrowShareLeftComponent, IconArrowShareRightComponent, IconArrowSplitComponent, IconArrowUpComponent, IconArrowWallDownComponent, IconArrowWallLeftComponent, IconArrowWallRightComponent, IconArrowWallUpComponent, IconArrowsRepeatRightComponent, IconAsteriskComponent, IconAtComponent, IconBackComponent, IconBackwardComponent, IconBagComponent, IconBankComponent, IconBanknote2Component, IconBanknoteComponent, IconBarcodeComponent, IconBarsThreeComponent, IconBarsTwoComponent, IconBasketComponent, IconBatteryLoadingComponent, IconBellComponent, IconBlockComponent, IconBookComponent, IconBookmarkCheckComponent, IconBookmarkComponent, IconBookmarkDeleteComponent, IconBookmarkPlusComponent, IconBookmarkRemoveComponent, IconBooksComponent, IconBrandAppStoreComponent, IconBrandAppleMusicComponent, IconBrandBankidComponent, IconBrandChromeComponent, IconBrandFacebookComponent, IconBrandFigmaComponent, IconBrandFirefoxComponent, IconBrandGithubComponent, IconBrandGreenComponent, IconBrandInstagramComponent, IconBrandLinkedinComponent, IconBrandPlayStoreComponent, IconBrandRssFeedComponent, IconBrandSebComponent, IconBrandSpotifyComponent, IconBrandStorybookComponent, IconBrandSwishWordComponent, IconBrandXComponent, IconBrushComponent, IconBubbleAnnotationComponent, IconBubblesComponent, IconBuildingsComponent, IconBulletListComponent, IconCalculatorComponent, IconCalendarCheckComponent, IconCalendarComponent, IconCalendarRepeatComponent, IconCalenderAddComponent, IconCallComponent, IconCarComponent, IconCarusselComponent, IconChainLinkBrokenComponent, IconChainLinkComponent, IconChartTwoComponent, IconChecklistComponent, IconCheckmarkComponent, IconChevronBottomComponent, IconChevronDoubleDownComponent, IconChevronDoubleLeftComponent, IconChevronDoubleRightComponent, IconChevronDoubleUpComponent, IconChevronDownSmallComponent, IconChevronGrabberVerticalComponent, IconChevronGrabberVerticalReversedComponent, IconChevronLeftComponent, IconChevronLeftSmallComponent, IconChevronRightComponent, IconChevronRightSmallComponent, IconChevronTopComponent, IconChevronTopSmallComponent, IconCircleBanComponent, IconCircleCheckComponent, IconCircleDotsComponent, IconCircleInfoComponent, IconCircleMinusComponent, IconCirclePlaceholderOnComponent, IconCirclePlusComponent, IconCircleQuestionmarkComponent, IconCircleXComponent, IconCirclesThreeComponent, IconClockComponent, IconCloudDownloadComponent, IconCloudUploadComponent, IconCloudySunComponent, IconCodeBracketsComponent, IconCodeComponent, IconCompassRoundComponent, IconCookiesComponent, IconCopyComponent, IconCreditCardAddComponent, IconCreditCardComponent, IconCrossLargeComponent, IconCrossSmallComponent, IconCupHotComponent, IconCursorComponent, IconDevicesComponent, IconDirectionComponent, IconDollarComponent, IconDotGridOneHorizontalComponent, IconDotGridOneVerticalComponent, IconDotGridThreeComponent, IconDotGridTwoComponent, IconEmailComponent, IconEmojiAngryComponent, IconEmojiNeutralComponent, IconEmojiSadComponent, IconEmojiSmileComponent, IconEmojiSmileyComponent, IconEuroComponent, IconExpandComponent, IconEyeOpenComponent, IconEyeSlashComponent, IconFashionComponent, IconFastForwardComponent, IconFileBendComponent, IconFileChartComponent, IconFileTextComponent, IconFilesComponent, IconFilterComponent, IconFlagComponent, IconFloppyDiskComponent, IconFocusComponent, IconFolderAddRightComponent, IconFolderComponent, IconFullscreenComponent, IconGiftComponent, IconGlobusComponent, IconGraduateCapComponent, IconGreenPowerComponent, IconGroupComponent, IconGrowthComponent, IconHeadphonesComponent, IconHeartBeatComponent, IconHeartComponent, IconHistoryComponent, IconHomeEnergyOneComponent, IconHomeEnergyTwoComponent, IconHomeOpenComponent, IconHomeRoofComponent, IconHorizontalAlignmentBottomComponent, IconHourglassComponent, IconImagesComponent, IconInboxEmptyComponent, IconIndustryComponent, IconJpgComponent, IconKeyComponent, IconKnifeSpoonComponent, IconLabComponent, IconLawComponent, IconLeisureComponent, IconLightBulbSimpleComponent, IconLightningComponent, IconLineChartFourComponent, IconLineChartOneComponent, IconLineChartThreeComponent, IconLineChartTwoComponent, IconLockComponent, IconMacbookAirComponent, IconMagnifyingGlassComponent, IconMapPinComponent, IconMegaphoneComponent, IconMenuSidebarComponent, IconMicOffComponent, IconMicOnComponent, IconMinimizeComponent, IconMinusLargeComponent, IconMinusSmallComponent, IconMoneyHandComponent, IconMoneybagComponent, IconMoonComponent, IconMuteComponent, IconOfficeComponent, IconPageAddComponent, IconPaperPlaneTopRightComponent, IconPaperclipComponent, IconPauseComponent, IconPdfComponent, IconPencilSignComponent, IconPencilSparkleComponent, IconPencilWaveComponent, IconPensionComponent, IconPeopleA11yComponent, IconPeopleAddComponent, IconPeopleAddedComponent, IconPeopleCircleComponent, IconPeopleComponent, IconPeopleCopyComponent, IconPeopleProfileComponent, IconPeopleRemoveComponent, IconPercentComponent, IconPhoneComponent, IconPieChartComponent, IconPiggyBankComponent, IconPinComponent, IconPinchComponent, IconPlayCircleComponent, IconPlayComponent, IconPlusLargeComponent, IconPlusSmallComponent, IconPngComponent, IconPoopComponent, IconPostcardComponent, IconPoundComponent, IconPowerComponent, IconPowerPlantComponent, IconPrinterComponent, IconPushComponent, IconQrCodeComponent, IconRainyComponent, IconRaisingHandComponent, IconReadingListComponent, IconReceiptBillComponent, IconReceiptionBellComponent, IconRecordComponent, IconRefundComponent, IconRobotComponent, IconRocketComponent, IconRunShortcutComponent, IconSafariComponent, IconSchoolComponent, IconScissorsComponent, IconSearchMenuComponent, IconSettingsGearComponent, IconSettingsSliderHorComponent, IconSettingsSliderVerComponent, IconShapesComponent, IconShareComponent, IconShieldCheckedComponent, IconShieldComponent, IconShieldCrossedComponent, IconShoppingBagComponent, IconSignatureComponent, IconSmartwatchComponent, IconSolarComponent, IconSortAscendingComponent, IconSortComponent, IconSortDescendingComponent, IconSortDownComponent, IconSortUpComponent, IconSquareArrowTopRightComponent, IconSquareBehindSquareComponent, IconSquareGridCircleComponent, IconSquarePlaceholderComponent, IconStarComponent, IconStoreComponent, IconSunComponent, IconSunsetArrowDownComponent, IconTagComponent, IconTargetArrowComponent, IconTelevisionComponent, IconTennisComponent, IconTextEditComponent, IconThermostatComponent, IconThumbsDownComponent, IconThumbsUpComponent, IconTicketComponent, IconTradingViewCandlesComponent, IconTrashCanComponent, IconTreeComponent, IconTrendingFiveComponent, IconTrendingFourComponent, IconTrendingOneComponent, IconTrendingThreeComponent, IconTrendingTwoComponent, IconTriangleExclamationComponent, IconTruckComponent, IconUmbrellaSecurityComponent, IconUnlockedComponent, IconVolumeFullComponent, IconVolumeHalfComponent, IconVolumeOffComponent, IconWalletComponent, IconWarningSignComponent, IconWifiFullComponent, IconYoutubeComponent, IconZapComponent, IconZoomInComponent, IconZoomOutComponent, SCOPE_RESOLVER, animationsCoreRendererFactory, provideCoreRenderer, provideCoreRendererWithAnimations };
|
|
38992
|
+
export { GdsAlertComponent, GdsAvatarComponent, GdsAvatarGroupComponent, GdsBackdropComponent, GdsBadgeComponent, GdsBlurComponent, GdsBreadcrumbComponent, GdsBreadcrumbsComponent, GdsButtonComponent, GdsCalendarComponent, GdsCardComponent, GdsCardLinkedComponent, GdsCardPattern01Component, GdsCheckboxComponent, GdsCheckboxFormControlBase, GdsCheckboxGroupComponent, GdsCoachmarkComponent, GdsContextMenuComponent, GdsCoreRenderer, GdsCoreRendererFactory, GdsCoreScopeDirective, GdsCoreScopeModule, GdsDatepickerComponent, GdsDetailsComponent, GdsDialogComponent, GdsDivComponent, GdsDividerComponent, GdsDropdownComponent, GdsFabComponent, GdsFilterChipComponent, GdsFilterChipsComponent, GdsFlexComponent, GdsFormControlBase, GdsFormSummaryComponent, GdsFormattedAccountComponent, GdsFormattedDateComponent, GdsFormattedNumberComponent, GdsGridComponent, GdsGroupedListComponent, GdsIconDetailsComponent, GdsImgComponent, GdsInputComponent, GdsLinkComponent, GdsListItemComponent, GdsMaskComponent, GdsMenuButtonComponent, GdsMenuHeadingComponent, GdsMenuItemComponent, GdsOptionComponent, GdsPaginationComponent, GdsPopoverComponent, GdsRadioComponent, GdsRadioGroupComponent, GdsRichTextComponent, GdsSegmentComponent, GdsSegmentedControlComponent, GdsSelectComponent, GdsSensitiveAccountComponent, GdsSensitiveDateComponent, GdsSensitiveNumberComponent, GdsSignalComponent, GdsSpinnerComponent, GdsSwitchComponent, GdsTableComponent, GdsTextComponent, GdsTextareaComponent, GdsThemeComponent, GdsVideoComponent, GreenCoreNgModule, IconAiComponent, IconAirplaneUpComponent, IconArchiveComponent, IconArrowBottomTopComponent, IconArrowBoxLeftAltComponent, IconArrowBoxLeftComponent, IconArrowBoxRightComponent, IconArrowComponent, IconArrowDownComponent, IconArrowInboxComponent, IconArrowLeftComponent, IconArrowLeftRightComponent, IconArrowOutOfBoxComponent, IconArrowRightCircleComponent, IconArrowRightComponent, IconArrowRightDownCircleComponent, IconArrowRightUpCircleComponent, IconArrowRotateClockwiseComponent, IconArrowRotateCounterClockwiseComponent, IconArrowRotateLeftRightComponent, IconArrowRotateRightLeftComponent, IconArrowShareLeftComponent, IconArrowShareRightComponent, IconArrowSplitComponent, IconArrowUpComponent, IconArrowWallDownComponent, IconArrowWallLeftComponent, IconArrowWallRightComponent, IconArrowWallUpComponent, IconArrowsRepeatRightComponent, IconAsteriskComponent, IconAtComponent, IconBackComponent, IconBackwardComponent, IconBagComponent, IconBankComponent, IconBanknote2Component, IconBanknoteComponent, IconBarcodeComponent, IconBarsThreeComponent, IconBarsTwoComponent, IconBasketComponent, IconBatteryLoadingComponent, IconBellComponent, IconBlockComponent, IconBookComponent, IconBookmarkCheckComponent, IconBookmarkComponent, IconBookmarkDeleteComponent, IconBookmarkPlusComponent, IconBookmarkRemoveComponent, IconBooksComponent, IconBrandAppStoreComponent, IconBrandAppleMusicComponent, IconBrandBankidComponent, IconBrandChromeComponent, IconBrandFacebookComponent, IconBrandFigmaComponent, IconBrandFirefoxComponent, IconBrandGithubComponent, IconBrandGreenComponent, IconBrandInstagramComponent, IconBrandLinkedinComponent, IconBrandPlayStoreComponent, IconBrandRssFeedComponent, IconBrandSebComponent, IconBrandSpotifyComponent, IconBrandStorybookComponent, IconBrandSwishWordComponent, IconBrandXComponent, IconBrushComponent, IconBubbleAnnotationComponent, IconBubblesComponent, IconBuildingsComponent, IconBulletListComponent, IconCalculatorComponent, IconCalendarCheckComponent, IconCalendarComponent, IconCalendarRepeatComponent, IconCalenderAddComponent, IconCallComponent, IconCarComponent, IconCarusselComponent, IconChainLinkBrokenComponent, IconChainLinkComponent, IconChartTwoComponent, IconChecklistComponent, IconCheckmarkComponent, IconChevronBottomComponent, IconChevronDoubleDownComponent, IconChevronDoubleLeftComponent, IconChevronDoubleRightComponent, IconChevronDoubleUpComponent, IconChevronDownSmallComponent, IconChevronGrabberVerticalComponent, IconChevronGrabberVerticalReversedComponent, IconChevronLeftComponent, IconChevronLeftSmallComponent, IconChevronRightComponent, IconChevronRightSmallComponent, IconChevronTopComponent, IconChevronTopSmallComponent, IconCircleBanComponent, IconCircleCheckComponent, IconCircleDotsComponent, IconCircleInfoComponent, IconCircleMinusComponent, IconCirclePlaceholderOnComponent, IconCirclePlusComponent, IconCircleQuestionmarkComponent, IconCircleXComponent, IconCirclesThreeComponent, IconClockComponent, IconCloudDownloadComponent, IconCloudUploadComponent, IconCloudySunComponent, IconCodeBracketsComponent, IconCodeComponent, IconCompassRoundComponent, IconCookiesComponent, IconCopyComponent, IconCreditCardAddComponent, IconCreditCardComponent, IconCrossLargeComponent, IconCrossSmallComponent, IconCupHotComponent, IconCursorComponent, IconDevicesComponent, IconDirectionComponent, IconDollarComponent, IconDotGridOneHorizontalComponent, IconDotGridOneVerticalComponent, IconDotGridThreeComponent, IconDotGridTwoComponent, IconEmailComponent, IconEmojiAngryComponent, IconEmojiNeutralComponent, IconEmojiSadComponent, IconEmojiSmileComponent, IconEmojiSmileyComponent, IconEuroComponent, IconExpandComponent, IconEyeOpenComponent, IconEyeSlashComponent, IconFashionComponent, IconFastForwardComponent, IconFileBendComponent, IconFileChartComponent, IconFileTextComponent, IconFilesComponent, IconFilterComponent, IconFlagComponent, IconFloppyDiskComponent, IconFocusComponent, IconFolderAddRightComponent, IconFolderComponent, IconFullscreenComponent, IconGiftComponent, IconGlobusComponent, IconGraduateCapComponent, IconGreenPowerComponent, IconGroupComponent, IconGrowthComponent, IconHeadphonesComponent, IconHeartBeatComponent, IconHeartComponent, IconHistoryComponent, IconHomeEnergyOneComponent, IconHomeEnergyTwoComponent, IconHomeOpenComponent, IconHomeRoofComponent, IconHorizontalAlignmentBottomComponent, IconHourglassComponent, IconImagesComponent, IconInboxEmptyComponent, IconIndustryComponent, IconJpgComponent, IconKeyComponent, IconKnifeSpoonComponent, IconLabComponent, IconLawComponent, IconLeisureComponent, IconLightBulbSimpleComponent, IconLightningComponent, IconLineChartFourComponent, IconLineChartOneComponent, IconLineChartThreeComponent, IconLineChartTwoComponent, IconLockComponent, IconMacbookAirComponent, IconMagnifyingGlassComponent, IconMapPinComponent, IconMegaphoneComponent, IconMenuSidebarComponent, IconMicOffComponent, IconMicOnComponent, IconMinimizeComponent, IconMinusLargeComponent, IconMinusSmallComponent, IconMoneyHandComponent, IconMoneybagComponent, IconMoonComponent, IconMuteComponent, IconNewspaperComponent, IconOfficeComponent, IconPageAddComponent, IconPaperPlaneTopRightComponent, IconPaperclipComponent, IconPauseComponent, IconPdfComponent, IconPencilSignComponent, IconPencilSparkleComponent, IconPencilWaveComponent, IconPensionComponent, IconPeopleA11yComponent, IconPeopleAddComponent, IconPeopleAddedComponent, IconPeopleCircleComponent, IconPeopleComponent, IconPeopleCopyComponent, IconPeopleProfileComponent, IconPeopleRemoveComponent, IconPercentComponent, IconPhoneComponent, IconPieChartComponent, IconPiggyBankComponent, IconPinComponent, IconPinchComponent, IconPlayCircleComponent, IconPlayComponent, IconPlusLargeComponent, IconPlusSmallComponent, IconPngComponent, IconPoopComponent, IconPostcardComponent, IconPoundComponent, IconPowerComponent, IconPowerPlantComponent, IconPrinterComponent, IconPushComponent, IconQrCodeComponent, IconRainyComponent, IconRaisingHandComponent, IconReadingListComponent, IconReceiptBillComponent, IconReceiptionBellComponent, IconRecordComponent, IconRefundComponent, IconRobotComponent, IconRocketComponent, IconRunShortcutComponent, IconSafariComponent, IconSchoolComponent, IconScissorsComponent, IconSearchMenuComponent, IconSettingsGearComponent, IconSettingsSliderHorComponent, IconSettingsSliderVerComponent, IconShapesComponent, IconShareComponent, IconShieldCheckedComponent, IconShieldComponent, IconShieldCrossedComponent, IconShoppingBagComponent, IconSignatureComponent, IconSmartwatchComponent, IconSolarComponent, IconSortAscendingComponent, IconSortComponent, IconSortDescendingComponent, IconSortDownComponent, IconSortUpComponent, IconSquareArrowTopRightComponent, IconSquareBehindSquareComponent, IconSquareGridCircleComponent, IconSquarePlaceholderComponent, IconStarComponent, IconStoreComponent, IconSunComponent, IconSunsetArrowDownComponent, IconTagComponent, IconTargetArrowComponent, IconTelevisionComponent, IconTennisComponent, IconTextEditComponent, IconThermostatComponent, IconThumbsDownComponent, IconThumbsUpComponent, IconTicketComponent, IconTradingViewCandlesComponent, IconTrashCanComponent, IconTreeComponent, IconTrendingFiveComponent, IconTrendingFourComponent, IconTrendingOneComponent, IconTrendingThreeComponent, IconTrendingTwoComponent, IconTriangleExclamationComponent, IconTruckComponent, IconUmbrellaSecurityComponent, IconUnlockedComponent, IconVolumeFullComponent, IconVolumeHalfComponent, IconVolumeOffComponent, IconWalletComponent, IconWarningSignComponent, IconWifiFullComponent, IconYoutubeComponent, IconZapComponent, IconZoomInComponent, IconZoomOutComponent, SCOPE_RESOLVER, animationsCoreRendererFactory, provideCoreRenderer, provideCoreRendererWithAnimations };
|
|
38896
38993
|
//# sourceMappingURL=sebgroup-green-core-ng.mjs.map
|