@sebgroup/green-core-ng 3.5.0 → 3.5.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.
|
@@ -4,18 +4,18 @@ import { inject, ElementRef, NgZone, ChangeDetectorRef, EventEmitter, booleanAtt
|
|
|
4
4
|
import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
|
|
5
5
|
import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
|
|
6
6
|
import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
|
|
7
|
+
import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
|
|
7
8
|
import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
8
9
|
import { LocationStrategy, DOCUMENT, CommonModule } from '@angular/common';
|
|
9
10
|
import { Router, RouterLink, RouterLinkActive, NavigationEnd } from '@angular/router';
|
|
10
11
|
import { GdsButton } from '@sebgroup/green-core/components/button/button.component.js';
|
|
11
|
-
import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
|
|
12
12
|
import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
|
|
13
13
|
import { GdsCard } from '@sebgroup/green-core/components/card/card.component.js';
|
|
14
14
|
import { GdsCardLinked } from '@sebgroup/green-core/components/card-linked/card-linked.component.js';
|
|
15
15
|
import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.component.js';
|
|
16
16
|
import { GdsCoachmark } from '@sebgroup/green-core/components/coachmark/coachmark.component.js';
|
|
17
|
-
import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
|
|
18
17
|
import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
|
|
18
|
+
import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
|
|
19
19
|
import { GdsDetails } from '@sebgroup/green-core/components/details/details.component.js';
|
|
20
20
|
import { GdsDialog } from '@sebgroup/green-core/components/dialog/dialog.component.js';
|
|
21
21
|
import { GdsDiv } from '@sebgroup/green-core/components/div/div.component.js';
|
|
@@ -51,9 +51,9 @@ import { GdsCardPattern01 } from '@sebgroup/green-core/patterns/card-pattern-01/
|
|
|
51
51
|
import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
|
|
52
52
|
import { GdsCheckboxGroup } from '@sebgroup/green-core/components/checkbox/checkbox-group/checkbox-group.component.js';
|
|
53
53
|
import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
|
|
54
|
-
import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
|
|
55
54
|
import { GdsFormattedAccount } from '@sebgroup/green-core/components/formatted-text/account/formatted-account.component.js';
|
|
56
55
|
import { GdsFormattedDate } from '@sebgroup/green-core/components/formatted-text/date/formatted-date.component.js';
|
|
56
|
+
import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
|
|
57
57
|
import { GdsFormattedNumber } from '@sebgroup/green-core/components/formatted-text/number/formatted-number.component.js';
|
|
58
58
|
import { GdsRadioGroup } from '@sebgroup/green-core/components/radio/radio-group/radio-group.component.js';
|
|
59
59
|
import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
|
|
@@ -680,6 +680,101 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
680
680
|
* Auto-generated from Custom Elements Manifest
|
|
681
681
|
*/
|
|
682
682
|
|
|
683
|
+
/**
|
|
684
|
+
* Angular wrapper for the gds-breadcrumbs web component
|
|
685
|
+
*
|
|
686
|
+
*/
|
|
687
|
+
let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
|
|
688
|
+
get element() {
|
|
689
|
+
return this.elementRef.nativeElement;
|
|
690
|
+
}
|
|
691
|
+
constructor() {
|
|
692
|
+
this.elementRef = inject((ElementRef));
|
|
693
|
+
this.zone = inject(NgZone);
|
|
694
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
695
|
+
this.cdr.detach();
|
|
696
|
+
}
|
|
697
|
+
ngOnInit() {
|
|
698
|
+
// Define the custom element
|
|
699
|
+
try {
|
|
700
|
+
GdsBreadcrumbs.define();
|
|
701
|
+
}
|
|
702
|
+
catch (e) {
|
|
703
|
+
// Component may not be available in this version of green-core
|
|
704
|
+
console.warn('Failed to define gds-breadcrumbs:', e);
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
ngOnChanges(changes) {
|
|
708
|
+
// Implementation added by @ProxyInputs decorator
|
|
709
|
+
}
|
|
710
|
+
ngAfterViewInit() {
|
|
711
|
+
// Implementation added by @ProxyInputs decorator
|
|
712
|
+
}
|
|
713
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
714
|
+
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 }); }
|
|
715
|
+
};
|
|
716
|
+
GdsBreadcrumbsComponent = __decorate([
|
|
717
|
+
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']),
|
|
718
|
+
__metadata("design:paramtypes", [])
|
|
719
|
+
], GdsBreadcrumbsComponent);
|
|
720
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, decorators: [{
|
|
721
|
+
type: Component,
|
|
722
|
+
args: [{
|
|
723
|
+
selector: 'gds-breadcrumbs',
|
|
724
|
+
standalone: true,
|
|
725
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
726
|
+
template: `<ng-content></ng-content>`
|
|
727
|
+
}]
|
|
728
|
+
}], ctorParameters: () => [], propDecorators: { size: [{
|
|
729
|
+
type: Input
|
|
730
|
+
}], label: [{
|
|
731
|
+
type: Input
|
|
732
|
+
}], alignSelf: [{
|
|
733
|
+
type: Input
|
|
734
|
+
}], justifySelf: [{
|
|
735
|
+
type: Input
|
|
736
|
+
}], placeSelf: [{
|
|
737
|
+
type: Input
|
|
738
|
+
}], gridColumn: [{
|
|
739
|
+
type: Input
|
|
740
|
+
}], gridRow: [{
|
|
741
|
+
type: Input
|
|
742
|
+
}], gridArea: [{
|
|
743
|
+
type: Input
|
|
744
|
+
}], flex: [{
|
|
745
|
+
type: Input
|
|
746
|
+
}], order: [{
|
|
747
|
+
type: Input
|
|
748
|
+
}], width: [{
|
|
749
|
+
type: Input
|
|
750
|
+
}], minWidth: [{
|
|
751
|
+
type: Input
|
|
752
|
+
}], maxWidth: [{
|
|
753
|
+
type: Input
|
|
754
|
+
}], inlineSize: [{
|
|
755
|
+
type: Input
|
|
756
|
+
}], minInlineSize: [{
|
|
757
|
+
type: Input
|
|
758
|
+
}], maxInlineSize: [{
|
|
759
|
+
type: Input
|
|
760
|
+
}], margin: [{
|
|
761
|
+
type: Input
|
|
762
|
+
}], marginInline: [{
|
|
763
|
+
type: Input
|
|
764
|
+
}], marginBlock: [{
|
|
765
|
+
type: Input
|
|
766
|
+
}], syncFirstRender: [{
|
|
767
|
+
type: Input,
|
|
768
|
+
args: [{ transform: booleanAttribute }]
|
|
769
|
+
}] } });
|
|
770
|
+
|
|
771
|
+
/**
|
|
772
|
+
* GdsBreadcrumbsComponent - Angular wrapper for gds-breadcrumbs
|
|
773
|
+
*
|
|
774
|
+
*
|
|
775
|
+
* Auto-generated from Custom Elements Manifest
|
|
776
|
+
*/
|
|
777
|
+
|
|
683
778
|
/**
|
|
684
779
|
* Base class for Angular wrapper components that wrap Green Core form controls.
|
|
685
780
|
*
|
|
@@ -997,101 +1092,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
997
1092
|
* Auto-generated from Custom Elements Manifest
|
|
998
1093
|
*/
|
|
999
1094
|
|
|
1000
|
-
/**
|
|
1001
|
-
* Angular wrapper for the gds-breadcrumbs web component
|
|
1002
|
-
*
|
|
1003
|
-
*/
|
|
1004
|
-
let GdsBreadcrumbsComponent = class GdsBreadcrumbsComponent {
|
|
1005
|
-
get element() {
|
|
1006
|
-
return this.elementRef.nativeElement;
|
|
1007
|
-
}
|
|
1008
|
-
constructor() {
|
|
1009
|
-
this.elementRef = inject((ElementRef));
|
|
1010
|
-
this.zone = inject(NgZone);
|
|
1011
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
1012
|
-
this.cdr.detach();
|
|
1013
|
-
}
|
|
1014
|
-
ngOnInit() {
|
|
1015
|
-
// Define the custom element
|
|
1016
|
-
try {
|
|
1017
|
-
GdsBreadcrumbs.define();
|
|
1018
|
-
}
|
|
1019
|
-
catch (e) {
|
|
1020
|
-
// Component may not be available in this version of green-core
|
|
1021
|
-
console.warn('Failed to define gds-breadcrumbs:', e);
|
|
1022
|
-
}
|
|
1023
|
-
}
|
|
1024
|
-
ngOnChanges(changes) {
|
|
1025
|
-
// Implementation added by @ProxyInputs decorator
|
|
1026
|
-
}
|
|
1027
|
-
ngAfterViewInit() {
|
|
1028
|
-
// Implementation added by @ProxyInputs decorator
|
|
1029
|
-
}
|
|
1030
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1031
|
-
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 }); }
|
|
1032
|
-
};
|
|
1033
|
-
GdsBreadcrumbsComponent = __decorate([
|
|
1034
|
-
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']),
|
|
1035
|
-
__metadata("design:paramtypes", [])
|
|
1036
|
-
], GdsBreadcrumbsComponent);
|
|
1037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsBreadcrumbsComponent, decorators: [{
|
|
1038
|
-
type: Component,
|
|
1039
|
-
args: [{
|
|
1040
|
-
selector: 'gds-breadcrumbs',
|
|
1041
|
-
standalone: true,
|
|
1042
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1043
|
-
template: `<ng-content></ng-content>`
|
|
1044
|
-
}]
|
|
1045
|
-
}], ctorParameters: () => [], propDecorators: { size: [{
|
|
1046
|
-
type: Input
|
|
1047
|
-
}], label: [{
|
|
1048
|
-
type: Input
|
|
1049
|
-
}], alignSelf: [{
|
|
1050
|
-
type: Input
|
|
1051
|
-
}], justifySelf: [{
|
|
1052
|
-
type: Input
|
|
1053
|
-
}], placeSelf: [{
|
|
1054
|
-
type: Input
|
|
1055
|
-
}], gridColumn: [{
|
|
1056
|
-
type: Input
|
|
1057
|
-
}], gridRow: [{
|
|
1058
|
-
type: Input
|
|
1059
|
-
}], gridArea: [{
|
|
1060
|
-
type: Input
|
|
1061
|
-
}], flex: [{
|
|
1062
|
-
type: Input
|
|
1063
|
-
}], order: [{
|
|
1064
|
-
type: Input
|
|
1065
|
-
}], width: [{
|
|
1066
|
-
type: Input
|
|
1067
|
-
}], minWidth: [{
|
|
1068
|
-
type: Input
|
|
1069
|
-
}], maxWidth: [{
|
|
1070
|
-
type: Input
|
|
1071
|
-
}], inlineSize: [{
|
|
1072
|
-
type: Input
|
|
1073
|
-
}], minInlineSize: [{
|
|
1074
|
-
type: Input
|
|
1075
|
-
}], maxInlineSize: [{
|
|
1076
|
-
type: Input
|
|
1077
|
-
}], margin: [{
|
|
1078
|
-
type: Input
|
|
1079
|
-
}], marginInline: [{
|
|
1080
|
-
type: Input
|
|
1081
|
-
}], marginBlock: [{
|
|
1082
|
-
type: Input
|
|
1083
|
-
}], syncFirstRender: [{
|
|
1084
|
-
type: Input,
|
|
1085
|
-
args: [{ transform: booleanAttribute }]
|
|
1086
|
-
}] } });
|
|
1087
|
-
|
|
1088
|
-
/**
|
|
1089
|
-
* GdsBreadcrumbsComponent - Angular wrapper for gds-breadcrumbs
|
|
1090
|
-
*
|
|
1091
|
-
*
|
|
1092
|
-
* Auto-generated from Custom Elements Manifest
|
|
1093
|
-
*/
|
|
1094
|
-
|
|
1095
1095
|
/**
|
|
1096
1096
|
* Angular wrapper for the gds-calendar web component
|
|
1097
1097
|
*
|
|
@@ -1898,6 +1898,114 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
1898
1898
|
* Auto-generated from Custom Elements Manifest
|
|
1899
1899
|
*/
|
|
1900
1900
|
|
|
1901
|
+
/**
|
|
1902
|
+
* Angular wrapper for the gds-context-menu web component
|
|
1903
|
+
*
|
|
1904
|
+
*/
|
|
1905
|
+
let GdsContextMenuComponent = class GdsContextMenuComponent {
|
|
1906
|
+
get element() {
|
|
1907
|
+
return this.elementRef.nativeElement;
|
|
1908
|
+
}
|
|
1909
|
+
constructor() {
|
|
1910
|
+
this.elementRef = inject((ElementRef));
|
|
1911
|
+
this.zone = inject(NgZone);
|
|
1912
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1913
|
+
/** Fired when a menu item is clicked. */
|
|
1914
|
+
this.gdsMenuItemClick = new EventEmitter();
|
|
1915
|
+
/** Fired when the menu is opened or closed. */
|
|
1916
|
+
this.gdsUiState = new EventEmitter();
|
|
1917
|
+
this.cdr.detach();
|
|
1918
|
+
}
|
|
1919
|
+
ngOnInit() {
|
|
1920
|
+
// Define the custom element
|
|
1921
|
+
try {
|
|
1922
|
+
GdsContextMenu.define();
|
|
1923
|
+
}
|
|
1924
|
+
catch (e) {
|
|
1925
|
+
// Component may not be available in this version of green-core
|
|
1926
|
+
console.warn('Failed to define gds-context-menu:', e);
|
|
1927
|
+
}
|
|
1928
|
+
// Set up event listeners
|
|
1929
|
+
this.elementRef.nativeElement.addEventListener('gds-menu-item-click', (event) => {
|
|
1930
|
+
this.gdsMenuItemClick.emit(event);
|
|
1931
|
+
});
|
|
1932
|
+
this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
|
|
1933
|
+
this.gdsUiState.emit(event);
|
|
1934
|
+
});
|
|
1935
|
+
}
|
|
1936
|
+
ngOnChanges(changes) {
|
|
1937
|
+
// Implementation added by @ProxyInputs decorator
|
|
1938
|
+
}
|
|
1939
|
+
ngAfterViewInit() {
|
|
1940
|
+
// Implementation added by @ProxyInputs decorator
|
|
1941
|
+
}
|
|
1942
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1943
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsContextMenuComponent, isStandalone: true, selector: "gds-context-menu", inputs: { open: ["open", "open", booleanAttribute], buttonLabel: "buttonLabel", showLabel: ["showLabel", "showLabel", booleanAttribute], label: "label", maxHeight: "maxHeight", placement: "placement", 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] }, outputs: { gdsMenuItemClick: "gdsMenuItemClick", gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1944
|
+
};
|
|
1945
|
+
GdsContextMenuComponent = __decorate([
|
|
1946
|
+
ProxyInputs(['open', 'buttonLabel', 'showLabel', 'label', 'maxHeight', 'placement', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
|
|
1947
|
+
__metadata("design:paramtypes", [])
|
|
1948
|
+
], GdsContextMenuComponent);
|
|
1949
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsContextMenuComponent, decorators: [{
|
|
1950
|
+
type: Component,
|
|
1951
|
+
args: [{
|
|
1952
|
+
selector: 'gds-context-menu',
|
|
1953
|
+
standalone: true,
|
|
1954
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1955
|
+
template: `<ng-content></ng-content>`
|
|
1956
|
+
}]
|
|
1957
|
+
}], ctorParameters: () => [], propDecorators: { open: [{
|
|
1958
|
+
type: Input,
|
|
1959
|
+
args: [{ transform: booleanAttribute }]
|
|
1960
|
+
}], buttonLabel: [{
|
|
1961
|
+
type: Input
|
|
1962
|
+
}], showLabel: [{
|
|
1963
|
+
type: Input,
|
|
1964
|
+
args: [{ transform: booleanAttribute }]
|
|
1965
|
+
}], label: [{
|
|
1966
|
+
type: Input
|
|
1967
|
+
}], maxHeight: [{
|
|
1968
|
+
type: Input
|
|
1969
|
+
}], placement: [{
|
|
1970
|
+
type: Input
|
|
1971
|
+
}], margin: [{
|
|
1972
|
+
type: Input
|
|
1973
|
+
}], marginInline: [{
|
|
1974
|
+
type: Input
|
|
1975
|
+
}], marginBlock: [{
|
|
1976
|
+
type: Input
|
|
1977
|
+
}], alignSelf: [{
|
|
1978
|
+
type: Input
|
|
1979
|
+
}], justifySelf: [{
|
|
1980
|
+
type: Input
|
|
1981
|
+
}], placeSelf: [{
|
|
1982
|
+
type: Input
|
|
1983
|
+
}], gridColumn: [{
|
|
1984
|
+
type: Input
|
|
1985
|
+
}], gridRow: [{
|
|
1986
|
+
type: Input
|
|
1987
|
+
}], gridArea: [{
|
|
1988
|
+
type: Input
|
|
1989
|
+
}], flex: [{
|
|
1990
|
+
type: Input
|
|
1991
|
+
}], order: [{
|
|
1992
|
+
type: Input
|
|
1993
|
+
}], syncFirstRender: [{
|
|
1994
|
+
type: Input,
|
|
1995
|
+
args: [{ transform: booleanAttribute }]
|
|
1996
|
+
}], gdsMenuItemClick: [{
|
|
1997
|
+
type: Output
|
|
1998
|
+
}], gdsUiState: [{
|
|
1999
|
+
type: Output
|
|
2000
|
+
}] } });
|
|
2001
|
+
|
|
2002
|
+
/**
|
|
2003
|
+
* GdsContextMenuComponent - Angular wrapper for gds-context-menu
|
|
2004
|
+
*
|
|
2005
|
+
*
|
|
2006
|
+
* Auto-generated from Custom Elements Manifest
|
|
2007
|
+
*/
|
|
2008
|
+
|
|
1901
2009
|
/**
|
|
1902
2010
|
* Angular wrapper for the gds-datepicker web component
|
|
1903
2011
|
*
|
|
@@ -2073,114 +2181,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
2073
2181
|
* Auto-generated from Custom Elements Manifest
|
|
2074
2182
|
*/
|
|
2075
2183
|
|
|
2076
|
-
/**
|
|
2077
|
-
* Angular wrapper for the gds-context-menu web component
|
|
2078
|
-
*
|
|
2079
|
-
*/
|
|
2080
|
-
let GdsContextMenuComponent = class GdsContextMenuComponent {
|
|
2081
|
-
get element() {
|
|
2082
|
-
return this.elementRef.nativeElement;
|
|
2083
|
-
}
|
|
2084
|
-
constructor() {
|
|
2085
|
-
this.elementRef = inject((ElementRef));
|
|
2086
|
-
this.zone = inject(NgZone);
|
|
2087
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
2088
|
-
/** Fired when a menu item is clicked. */
|
|
2089
|
-
this.gdsMenuItemClick = new EventEmitter();
|
|
2090
|
-
/** Fired when the menu is opened or closed. */
|
|
2091
|
-
this.gdsUiState = new EventEmitter();
|
|
2092
|
-
this.cdr.detach();
|
|
2093
|
-
}
|
|
2094
|
-
ngOnInit() {
|
|
2095
|
-
// Define the custom element
|
|
2096
|
-
try {
|
|
2097
|
-
GdsContextMenu.define();
|
|
2098
|
-
}
|
|
2099
|
-
catch (e) {
|
|
2100
|
-
// Component may not be available in this version of green-core
|
|
2101
|
-
console.warn('Failed to define gds-context-menu:', e);
|
|
2102
|
-
}
|
|
2103
|
-
// Set up event listeners
|
|
2104
|
-
this.elementRef.nativeElement.addEventListener('gds-menu-item-click', (event) => {
|
|
2105
|
-
this.gdsMenuItemClick.emit(event);
|
|
2106
|
-
});
|
|
2107
|
-
this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
|
|
2108
|
-
this.gdsUiState.emit(event);
|
|
2109
|
-
});
|
|
2110
|
-
}
|
|
2111
|
-
ngOnChanges(changes) {
|
|
2112
|
-
// Implementation added by @ProxyInputs decorator
|
|
2113
|
-
}
|
|
2114
|
-
ngAfterViewInit() {
|
|
2115
|
-
// Implementation added by @ProxyInputs decorator
|
|
2116
|
-
}
|
|
2117
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2118
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.19", type: GdsContextMenuComponent, isStandalone: true, selector: "gds-context-menu", inputs: { open: ["open", "open", booleanAttribute], buttonLabel: "buttonLabel", showLabel: ["showLabel", "showLabel", booleanAttribute], label: "label", maxHeight: "maxHeight", placement: "placement", 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] }, outputs: { gdsMenuItemClick: "gdsMenuItemClick", gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2119
|
-
};
|
|
2120
|
-
GdsContextMenuComponent = __decorate([
|
|
2121
|
-
ProxyInputs(['open', 'buttonLabel', 'showLabel', 'label', 'maxHeight', 'placement', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'syncFirstRender']),
|
|
2122
|
-
__metadata("design:paramtypes", [])
|
|
2123
|
-
], GdsContextMenuComponent);
|
|
2124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsContextMenuComponent, decorators: [{
|
|
2125
|
-
type: Component,
|
|
2126
|
-
args: [{
|
|
2127
|
-
selector: 'gds-context-menu',
|
|
2128
|
-
standalone: true,
|
|
2129
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2130
|
-
template: `<ng-content></ng-content>`
|
|
2131
|
-
}]
|
|
2132
|
-
}], ctorParameters: () => [], propDecorators: { open: [{
|
|
2133
|
-
type: Input,
|
|
2134
|
-
args: [{ transform: booleanAttribute }]
|
|
2135
|
-
}], buttonLabel: [{
|
|
2136
|
-
type: Input
|
|
2137
|
-
}], showLabel: [{
|
|
2138
|
-
type: Input,
|
|
2139
|
-
args: [{ transform: booleanAttribute }]
|
|
2140
|
-
}], label: [{
|
|
2141
|
-
type: Input
|
|
2142
|
-
}], maxHeight: [{
|
|
2143
|
-
type: Input
|
|
2144
|
-
}], placement: [{
|
|
2145
|
-
type: Input
|
|
2146
|
-
}], margin: [{
|
|
2147
|
-
type: Input
|
|
2148
|
-
}], marginInline: [{
|
|
2149
|
-
type: Input
|
|
2150
|
-
}], marginBlock: [{
|
|
2151
|
-
type: Input
|
|
2152
|
-
}], alignSelf: [{
|
|
2153
|
-
type: Input
|
|
2154
|
-
}], justifySelf: [{
|
|
2155
|
-
type: Input
|
|
2156
|
-
}], placeSelf: [{
|
|
2157
|
-
type: Input
|
|
2158
|
-
}], gridColumn: [{
|
|
2159
|
-
type: Input
|
|
2160
|
-
}], gridRow: [{
|
|
2161
|
-
type: Input
|
|
2162
|
-
}], gridArea: [{
|
|
2163
|
-
type: Input
|
|
2164
|
-
}], flex: [{
|
|
2165
|
-
type: Input
|
|
2166
|
-
}], order: [{
|
|
2167
|
-
type: Input
|
|
2168
|
-
}], syncFirstRender: [{
|
|
2169
|
-
type: Input,
|
|
2170
|
-
args: [{ transform: booleanAttribute }]
|
|
2171
|
-
}], gdsMenuItemClick: [{
|
|
2172
|
-
type: Output
|
|
2173
|
-
}], gdsUiState: [{
|
|
2174
|
-
type: Output
|
|
2175
|
-
}] } });
|
|
2176
|
-
|
|
2177
|
-
/**
|
|
2178
|
-
* GdsContextMenuComponent - Angular wrapper for gds-context-menu
|
|
2179
|
-
*
|
|
2180
|
-
*
|
|
2181
|
-
* Auto-generated from Custom Elements Manifest
|
|
2182
|
-
*/
|
|
2183
|
-
|
|
2184
2184
|
/**
|
|
2185
2185
|
* Angular wrapper for the gds-details web component
|
|
2186
2186
|
* Details component that provides collapsible content sections.
|
|
@@ -6671,70 +6671,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
6671
6671
|
* Auto-generated from Custom Elements Manifest
|
|
6672
6672
|
*/
|
|
6673
6673
|
|
|
6674
|
-
/**
|
|
6675
|
-
* Angular wrapper for the gds-filter-chip web component
|
|
6676
|
-
*
|
|
6677
|
-
*/
|
|
6678
|
-
let GdsFilterChipComponent = class GdsFilterChipComponent {
|
|
6679
|
-
get element() {
|
|
6680
|
-
return this.elementRef.nativeElement;
|
|
6681
|
-
}
|
|
6682
|
-
constructor() {
|
|
6683
|
-
this.elementRef = inject((ElementRef));
|
|
6684
|
-
this.zone = inject(NgZone);
|
|
6685
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
6686
|
-
this.cdr.detach();
|
|
6687
|
-
}
|
|
6688
|
-
ngOnInit() {
|
|
6689
|
-
// Define the custom element
|
|
6690
|
-
try {
|
|
6691
|
-
GdsFilterChip.define();
|
|
6692
|
-
}
|
|
6693
|
-
catch (e) {
|
|
6694
|
-
// Component may not be available in this version of green-core
|
|
6695
|
-
console.warn('Failed to define gds-filter-chip:', e);
|
|
6696
|
-
}
|
|
6697
|
-
}
|
|
6698
|
-
ngOnChanges(changes) {
|
|
6699
|
-
// Implementation added by @ProxyInputs decorator
|
|
6700
|
-
}
|
|
6701
|
-
ngAfterViewInit() {
|
|
6702
|
-
// Implementation added by @ProxyInputs decorator
|
|
6703
|
-
}
|
|
6704
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6705
|
-
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 }); }
|
|
6706
|
-
};
|
|
6707
|
-
GdsFilterChipComponent = __decorate([
|
|
6708
|
-
ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
|
|
6709
|
-
__metadata("design:paramtypes", [])
|
|
6710
|
-
], GdsFilterChipComponent);
|
|
6711
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
|
|
6712
|
-
type: Component,
|
|
6713
|
-
args: [{
|
|
6714
|
-
selector: 'gds-filter-chip',
|
|
6715
|
-
standalone: true,
|
|
6716
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6717
|
-
template: `<ng-content></ng-content>`
|
|
6718
|
-
}]
|
|
6719
|
-
}], ctorParameters: () => [], propDecorators: { selected: [{
|
|
6720
|
-
type: Input,
|
|
6721
|
-
args: [{ transform: booleanAttribute }]
|
|
6722
|
-
}], value: [{
|
|
6723
|
-
type: Input
|
|
6724
|
-
}], size: [{
|
|
6725
|
-
type: Input
|
|
6726
|
-
}], syncFirstRender: [{
|
|
6727
|
-
type: Input,
|
|
6728
|
-
args: [{ transform: booleanAttribute }]
|
|
6729
|
-
}] } });
|
|
6730
|
-
|
|
6731
|
-
/**
|
|
6732
|
-
* GdsFilterChipComponent - Angular wrapper for gds-filter-chip
|
|
6733
|
-
*
|
|
6734
|
-
*
|
|
6735
|
-
* Auto-generated from Custom Elements Manifest
|
|
6736
|
-
*/
|
|
6737
|
-
|
|
6738
6674
|
/**
|
|
6739
6675
|
* Angular wrapper for the gds-formatted-account web component
|
|
6740
6676
|
*
|
|
@@ -7117,6 +7053,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
7117
7053
|
* Auto-generated from Custom Elements Manifest
|
|
7118
7054
|
*/
|
|
7119
7055
|
|
|
7056
|
+
/**
|
|
7057
|
+
* Angular wrapper for the gds-filter-chip web component
|
|
7058
|
+
*
|
|
7059
|
+
*/
|
|
7060
|
+
let GdsFilterChipComponent = class GdsFilterChipComponent {
|
|
7061
|
+
get element() {
|
|
7062
|
+
return this.elementRef.nativeElement;
|
|
7063
|
+
}
|
|
7064
|
+
constructor() {
|
|
7065
|
+
this.elementRef = inject((ElementRef));
|
|
7066
|
+
this.zone = inject(NgZone);
|
|
7067
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
7068
|
+
this.cdr.detach();
|
|
7069
|
+
}
|
|
7070
|
+
ngOnInit() {
|
|
7071
|
+
// Define the custom element
|
|
7072
|
+
try {
|
|
7073
|
+
GdsFilterChip.define();
|
|
7074
|
+
}
|
|
7075
|
+
catch (e) {
|
|
7076
|
+
// Component may not be available in this version of green-core
|
|
7077
|
+
console.warn('Failed to define gds-filter-chip:', e);
|
|
7078
|
+
}
|
|
7079
|
+
}
|
|
7080
|
+
ngOnChanges(changes) {
|
|
7081
|
+
// Implementation added by @ProxyInputs decorator
|
|
7082
|
+
}
|
|
7083
|
+
ngAfterViewInit() {
|
|
7084
|
+
// Implementation added by @ProxyInputs decorator
|
|
7085
|
+
}
|
|
7086
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7087
|
+
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 }); }
|
|
7088
|
+
};
|
|
7089
|
+
GdsFilterChipComponent = __decorate([
|
|
7090
|
+
ProxyInputs(['selected', 'value', 'size', 'syncFirstRender']),
|
|
7091
|
+
__metadata("design:paramtypes", [])
|
|
7092
|
+
], GdsFilterChipComponent);
|
|
7093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GdsFilterChipComponent, decorators: [{
|
|
7094
|
+
type: Component,
|
|
7095
|
+
args: [{
|
|
7096
|
+
selector: 'gds-filter-chip',
|
|
7097
|
+
standalone: true,
|
|
7098
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7099
|
+
template: `<ng-content></ng-content>`
|
|
7100
|
+
}]
|
|
7101
|
+
}], ctorParameters: () => [], propDecorators: { selected: [{
|
|
7102
|
+
type: Input,
|
|
7103
|
+
args: [{ transform: booleanAttribute }]
|
|
7104
|
+
}], value: [{
|
|
7105
|
+
type: Input
|
|
7106
|
+
}], size: [{
|
|
7107
|
+
type: Input
|
|
7108
|
+
}], syncFirstRender: [{
|
|
7109
|
+
type: Input,
|
|
7110
|
+
args: [{ transform: booleanAttribute }]
|
|
7111
|
+
}] } });
|
|
7112
|
+
|
|
7113
|
+
/**
|
|
7114
|
+
* GdsFilterChipComponent - Angular wrapper for gds-filter-chip
|
|
7115
|
+
*
|
|
7116
|
+
*
|
|
7117
|
+
* Auto-generated from Custom Elements Manifest
|
|
7118
|
+
*/
|
|
7119
|
+
|
|
7120
7120
|
/**
|
|
7121
7121
|
* Angular wrapper for the gds-formatted-number web component
|
|
7122
7122
|
*
|
|
@@ -36666,15 +36666,15 @@ class GreenCoreNgModule {
|
|
|
36666
36666
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: GreenCoreNgModule, imports: [GdsAlertComponent,
|
|
36667
36667
|
GdsBadgeComponent,
|
|
36668
36668
|
GdsBlurComponent,
|
|
36669
|
-
GdsButtonComponent,
|
|
36670
36669
|
GdsBreadcrumbsComponent,
|
|
36670
|
+
GdsButtonComponent,
|
|
36671
36671
|
GdsCalendarComponent,
|
|
36672
36672
|
GdsCardComponent,
|
|
36673
36673
|
GdsCardLinkedComponent,
|
|
36674
36674
|
GdsCheckboxComponent,
|
|
36675
36675
|
GdsCoachmarkComponent,
|
|
36676
|
-
GdsDatepickerComponent,
|
|
36677
36676
|
GdsContextMenuComponent,
|
|
36677
|
+
GdsDatepickerComponent,
|
|
36678
36678
|
GdsDetailsComponent,
|
|
36679
36679
|
GdsDialogComponent,
|
|
36680
36680
|
GdsDivComponent,
|
|
@@ -36710,9 +36710,9 @@ class GreenCoreNgModule {
|
|
|
36710
36710
|
GdsBreadcrumbComponent,
|
|
36711
36711
|
GdsCheckboxGroupComponent,
|
|
36712
36712
|
GdsIconDetailsComponent,
|
|
36713
|
-
GdsFilterChipComponent,
|
|
36714
36713
|
GdsFormattedAccountComponent,
|
|
36715
36714
|
GdsFormattedDateComponent,
|
|
36715
|
+
GdsFilterChipComponent,
|
|
36716
36716
|
GdsFormattedNumberComponent,
|
|
36717
36717
|
GdsRadioGroupComponent,
|
|
36718
36718
|
GdsSegmentComponent,
|
|
@@ -37032,15 +37032,15 @@ class GreenCoreNgModule {
|
|
|
37032
37032
|
GdsOptionComponent], exports: [GdsAlertComponent,
|
|
37033
37033
|
GdsBadgeComponent,
|
|
37034
37034
|
GdsBlurComponent,
|
|
37035
|
-
GdsButtonComponent,
|
|
37036
37035
|
GdsBreadcrumbsComponent,
|
|
37036
|
+
GdsButtonComponent,
|
|
37037
37037
|
GdsCalendarComponent,
|
|
37038
37038
|
GdsCardComponent,
|
|
37039
37039
|
GdsCardLinkedComponent,
|
|
37040
37040
|
GdsCheckboxComponent,
|
|
37041
37041
|
GdsCoachmarkComponent,
|
|
37042
|
-
GdsDatepickerComponent,
|
|
37043
37042
|
GdsContextMenuComponent,
|
|
37043
|
+
GdsDatepickerComponent,
|
|
37044
37044
|
GdsDetailsComponent,
|
|
37045
37045
|
GdsDialogComponent,
|
|
37046
37046
|
GdsDivComponent,
|
|
@@ -37076,9 +37076,9 @@ class GreenCoreNgModule {
|
|
|
37076
37076
|
GdsBreadcrumbComponent,
|
|
37077
37077
|
GdsCheckboxGroupComponent,
|
|
37078
37078
|
GdsIconDetailsComponent,
|
|
37079
|
-
GdsFilterChipComponent,
|
|
37080
37079
|
GdsFormattedAccountComponent,
|
|
37081
37080
|
GdsFormattedDateComponent,
|
|
37081
|
+
GdsFilterChipComponent,
|
|
37082
37082
|
GdsFormattedNumberComponent,
|
|
37083
37083
|
GdsRadioGroupComponent,
|
|
37084
37084
|
GdsSegmentComponent,
|
|
@@ -37405,15 +37405,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37405
37405
|
GdsAlertComponent,
|
|
37406
37406
|
GdsBadgeComponent,
|
|
37407
37407
|
GdsBlurComponent,
|
|
37408
|
-
GdsButtonComponent,
|
|
37409
37408
|
GdsBreadcrumbsComponent,
|
|
37409
|
+
GdsButtonComponent,
|
|
37410
37410
|
GdsCalendarComponent,
|
|
37411
37411
|
GdsCardComponent,
|
|
37412
37412
|
GdsCardLinkedComponent,
|
|
37413
37413
|
GdsCheckboxComponent,
|
|
37414
37414
|
GdsCoachmarkComponent,
|
|
37415
|
-
GdsDatepickerComponent,
|
|
37416
37415
|
GdsContextMenuComponent,
|
|
37416
|
+
GdsDatepickerComponent,
|
|
37417
37417
|
GdsDetailsComponent,
|
|
37418
37418
|
GdsDialogComponent,
|
|
37419
37419
|
GdsDivComponent,
|
|
@@ -37449,9 +37449,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37449
37449
|
GdsBreadcrumbComponent,
|
|
37450
37450
|
GdsCheckboxGroupComponent,
|
|
37451
37451
|
GdsIconDetailsComponent,
|
|
37452
|
-
GdsFilterChipComponent,
|
|
37453
37452
|
GdsFormattedAccountComponent,
|
|
37454
37453
|
GdsFormattedDateComponent,
|
|
37454
|
+
GdsFilterChipComponent,
|
|
37455
37455
|
GdsFormattedNumberComponent,
|
|
37456
37456
|
GdsRadioGroupComponent,
|
|
37457
37457
|
GdsSegmentComponent,
|
|
@@ -37774,15 +37774,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37774
37774
|
GdsAlertComponent,
|
|
37775
37775
|
GdsBadgeComponent,
|
|
37776
37776
|
GdsBlurComponent,
|
|
37777
|
-
GdsButtonComponent,
|
|
37778
37777
|
GdsBreadcrumbsComponent,
|
|
37778
|
+
GdsButtonComponent,
|
|
37779
37779
|
GdsCalendarComponent,
|
|
37780
37780
|
GdsCardComponent,
|
|
37781
37781
|
GdsCardLinkedComponent,
|
|
37782
37782
|
GdsCheckboxComponent,
|
|
37783
37783
|
GdsCoachmarkComponent,
|
|
37784
|
-
GdsDatepickerComponent,
|
|
37785
37784
|
GdsContextMenuComponent,
|
|
37785
|
+
GdsDatepickerComponent,
|
|
37786
37786
|
GdsDetailsComponent,
|
|
37787
37787
|
GdsDialogComponent,
|
|
37788
37788
|
GdsDivComponent,
|
|
@@ -37818,9 +37818,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
37818
37818
|
GdsBreadcrumbComponent,
|
|
37819
37819
|
GdsCheckboxGroupComponent,
|
|
37820
37820
|
GdsIconDetailsComponent,
|
|
37821
|
-
GdsFilterChipComponent,
|
|
37822
37821
|
GdsFormattedAccountComponent,
|
|
37823
37822
|
GdsFormattedDateComponent,
|
|
37823
|
+
GdsFilterChipComponent,
|
|
37824
37824
|
GdsFormattedNumberComponent,
|
|
37825
37825
|
GdsRadioGroupComponent,
|
|
37826
37826
|
GdsSegmentComponent,
|