@sebgroup/green-core-ng 2.26.1 → 2.26.2
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 +192 -144
- package/fesm2022/sebgroup-green-core-ng.mjs.map +1 -1
- package/generated/green-core-ng.module.d.ts +9 -8
- package/generated/index.d.ts +3 -2
- package/generated/menu-item/index.d.ts +7 -0
- package/generated/menu-item/menu-item.component.d.ts +17 -0
- package/package.json +2 -2
|
@@ -13,9 +13,9 @@ import { GdsCard } from '@sebgroup/green-core/components/card/card.component.js'
|
|
|
13
13
|
import { GdsCardLinked } from '@sebgroup/green-core/components/card-linked/card-linked.component.js';
|
|
14
14
|
import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.component.js';
|
|
15
15
|
import { GdsCoachmark } from '@sebgroup/green-core/components/coachmark/coachmark.component.js';
|
|
16
|
+
import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
|
|
16
17
|
import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
|
|
17
18
|
import { GdsDetails } from '@sebgroup/green-core/components/details/details.component.js';
|
|
18
|
-
import { GdsContextMenu, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
|
|
19
19
|
import { GdsDialog } from '@sebgroup/green-core/components/dialog/dialog.component.js';
|
|
20
20
|
import { GdsDiv } from '@sebgroup/green-core/components/div/div.component.js';
|
|
21
21
|
import { GdsDivider } from '@sebgroup/green-core/components/divider/divider.component.js';
|
|
@@ -390,8 +390,8 @@ import { IconZoomOut } from '@sebgroup/green-core/components/icon/icons/zoom-out
|
|
|
390
390
|
import { GdsRadioGroup } from '@sebgroup/green-core/components/radio/radio-group/radio-group.component.js';
|
|
391
391
|
import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
|
|
392
392
|
import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
|
|
393
|
-
import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
|
|
394
393
|
import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
|
|
394
|
+
import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
|
|
395
395
|
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
396
396
|
import { getScopedTagName } from '@sebgroup/green-core/scoping';
|
|
397
397
|
import { ɵAnimationRendererFactory as _AnimationRendererFactory, ɵAnimationEngine as _AnimationEngine } from '@angular/animations/browser';
|
|
@@ -1782,6 +1782,109 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1782
1782
|
* Auto-generated from Custom Elements Manifest
|
|
1783
1783
|
*/
|
|
1784
1784
|
|
|
1785
|
+
/**
|
|
1786
|
+
* Angular wrapper for the gds-context-menu web component
|
|
1787
|
+
*
|
|
1788
|
+
*/
|
|
1789
|
+
let GdsContextMenuComponent = class GdsContextMenuComponent {
|
|
1790
|
+
get element() {
|
|
1791
|
+
return this.elementRef.nativeElement;
|
|
1792
|
+
}
|
|
1793
|
+
constructor() {
|
|
1794
|
+
this.elementRef = inject((ElementRef));
|
|
1795
|
+
this.zone = inject(NgZone);
|
|
1796
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1797
|
+
/** Fired when a menu item is clicked. */
|
|
1798
|
+
this.gdsMenuItemClick = new EventEmitter();
|
|
1799
|
+
/** Fired when the menu is opened or closed. */
|
|
1800
|
+
this.gdsUiState = new EventEmitter();
|
|
1801
|
+
this.cdr.detach();
|
|
1802
|
+
}
|
|
1803
|
+
ngOnInit() {
|
|
1804
|
+
// Define the custom element
|
|
1805
|
+
try {
|
|
1806
|
+
GdsContextMenu.define();
|
|
1807
|
+
}
|
|
1808
|
+
catch (e) {
|
|
1809
|
+
// Component may not be available in this version of green-core
|
|
1810
|
+
console.warn('Failed to define gds-context-menu:', e);
|
|
1811
|
+
}
|
|
1812
|
+
// Set up event listeners
|
|
1813
|
+
this.elementRef.nativeElement.addEventListener('gds-menu-item-click', (event) => {
|
|
1814
|
+
this.gdsMenuItemClick.emit(event);
|
|
1815
|
+
});
|
|
1816
|
+
this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
|
|
1817
|
+
this.gdsUiState.emit(event);
|
|
1818
|
+
});
|
|
1819
|
+
}
|
|
1820
|
+
ngOnChanges(changes) {
|
|
1821
|
+
// Implementation added by @ProxyInputs decorator
|
|
1822
|
+
}
|
|
1823
|
+
ngAfterViewInit() {
|
|
1824
|
+
// Implementation added by @ProxyInputs decorator
|
|
1825
|
+
}
|
|
1826
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1827
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsContextMenuComponent, isStandalone: true, selector: "gds-context-menu", inputs: { open: ["open", "open", booleanAttribute], buttonLabel: "buttonLabel", showLabel: ["showLabel", "showLabel", booleanAttribute], label: "label", placement: "placement", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order" }, outputs: { gdsMenuItemClick: "gdsMenuItemClick", gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1828
|
+
};
|
|
1829
|
+
GdsContextMenuComponent = __decorate([
|
|
1830
|
+
ProxyInputs(['open', 'buttonLabel', 'showLabel', 'label', 'placement', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order']),
|
|
1831
|
+
__metadata("design:paramtypes", [])
|
|
1832
|
+
], GdsContextMenuComponent);
|
|
1833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsContextMenuComponent, decorators: [{
|
|
1834
|
+
type: Component,
|
|
1835
|
+
args: [{
|
|
1836
|
+
selector: 'gds-context-menu',
|
|
1837
|
+
standalone: true,
|
|
1838
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1839
|
+
template: `<ng-content></ng-content>`
|
|
1840
|
+
}]
|
|
1841
|
+
}], ctorParameters: () => [], propDecorators: { open: [{
|
|
1842
|
+
type: Input,
|
|
1843
|
+
args: [{ transform: booleanAttribute }]
|
|
1844
|
+
}], buttonLabel: [{
|
|
1845
|
+
type: Input
|
|
1846
|
+
}], showLabel: [{
|
|
1847
|
+
type: Input,
|
|
1848
|
+
args: [{ transform: booleanAttribute }]
|
|
1849
|
+
}], label: [{
|
|
1850
|
+
type: Input
|
|
1851
|
+
}], placement: [{
|
|
1852
|
+
type: Input
|
|
1853
|
+
}], margin: [{
|
|
1854
|
+
type: Input
|
|
1855
|
+
}], marginInline: [{
|
|
1856
|
+
type: Input
|
|
1857
|
+
}], marginBlock: [{
|
|
1858
|
+
type: Input
|
|
1859
|
+
}], alignSelf: [{
|
|
1860
|
+
type: Input
|
|
1861
|
+
}], justifySelf: [{
|
|
1862
|
+
type: Input
|
|
1863
|
+
}], placeSelf: [{
|
|
1864
|
+
type: Input
|
|
1865
|
+
}], gridColumn: [{
|
|
1866
|
+
type: Input
|
|
1867
|
+
}], gridRow: [{
|
|
1868
|
+
type: Input
|
|
1869
|
+
}], gridArea: [{
|
|
1870
|
+
type: Input
|
|
1871
|
+
}], flex: [{
|
|
1872
|
+
type: Input
|
|
1873
|
+
}], order: [{
|
|
1874
|
+
type: Input
|
|
1875
|
+
}], gdsMenuItemClick: [{
|
|
1876
|
+
type: Output
|
|
1877
|
+
}], gdsUiState: [{
|
|
1878
|
+
type: Output
|
|
1879
|
+
}] } });
|
|
1880
|
+
|
|
1881
|
+
/**
|
|
1882
|
+
* GdsContextMenuComponent - Angular wrapper for gds-context-menu
|
|
1883
|
+
*
|
|
1884
|
+
*
|
|
1885
|
+
* Auto-generated from Custom Elements Manifest
|
|
1886
|
+
*/
|
|
1887
|
+
|
|
1785
1888
|
/**
|
|
1786
1889
|
* Angular wrapper for the gds-datepicker web component
|
|
1787
1890
|
*
|
|
@@ -2059,109 +2162,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2059
2162
|
* Auto-generated from Custom Elements Manifest
|
|
2060
2163
|
*/
|
|
2061
2164
|
|
|
2062
|
-
/**
|
|
2063
|
-
* Angular wrapper for the gds-context-menu web component
|
|
2064
|
-
*
|
|
2065
|
-
*/
|
|
2066
|
-
let GdsContextMenuComponent = class GdsContextMenuComponent {
|
|
2067
|
-
get element() {
|
|
2068
|
-
return this.elementRef.nativeElement;
|
|
2069
|
-
}
|
|
2070
|
-
constructor() {
|
|
2071
|
-
this.elementRef = inject((ElementRef));
|
|
2072
|
-
this.zone = inject(NgZone);
|
|
2073
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
2074
|
-
/** Fired when a menu item is clicked. */
|
|
2075
|
-
this.gdsMenuItemClick = new EventEmitter();
|
|
2076
|
-
/** Fired when the menu is opened or closed. */
|
|
2077
|
-
this.gdsUiState = new EventEmitter();
|
|
2078
|
-
this.cdr.detach();
|
|
2079
|
-
}
|
|
2080
|
-
ngOnInit() {
|
|
2081
|
-
// Define the custom element
|
|
2082
|
-
try {
|
|
2083
|
-
GdsContextMenu.define();
|
|
2084
|
-
}
|
|
2085
|
-
catch (e) {
|
|
2086
|
-
// Component may not be available in this version of green-core
|
|
2087
|
-
console.warn('Failed to define gds-context-menu:', e);
|
|
2088
|
-
}
|
|
2089
|
-
// Set up event listeners
|
|
2090
|
-
this.elementRef.nativeElement.addEventListener('gds-menu-item-click', (event) => {
|
|
2091
|
-
this.gdsMenuItemClick.emit(event);
|
|
2092
|
-
});
|
|
2093
|
-
this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
|
|
2094
|
-
this.gdsUiState.emit(event);
|
|
2095
|
-
});
|
|
2096
|
-
}
|
|
2097
|
-
ngOnChanges(changes) {
|
|
2098
|
-
// Implementation added by @ProxyInputs decorator
|
|
2099
|
-
}
|
|
2100
|
-
ngAfterViewInit() {
|
|
2101
|
-
// Implementation added by @ProxyInputs decorator
|
|
2102
|
-
}
|
|
2103
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2104
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsContextMenuComponent, isStandalone: true, selector: "gds-context-menu", inputs: { open: ["open", "open", booleanAttribute], buttonLabel: "buttonLabel", showLabel: ["showLabel", "showLabel", booleanAttribute], label: "label", placement: "placement", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order" }, outputs: { gdsMenuItemClick: "gdsMenuItemClick", gdsUiState: "gdsUiState" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2105
|
-
};
|
|
2106
|
-
GdsContextMenuComponent = __decorate([
|
|
2107
|
-
ProxyInputs(['open', 'buttonLabel', 'showLabel', 'label', 'placement', 'margin', 'margin-inline', 'margin-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order']),
|
|
2108
|
-
__metadata("design:paramtypes", [])
|
|
2109
|
-
], GdsContextMenuComponent);
|
|
2110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsContextMenuComponent, decorators: [{
|
|
2111
|
-
type: Component,
|
|
2112
|
-
args: [{
|
|
2113
|
-
selector: 'gds-context-menu',
|
|
2114
|
-
standalone: true,
|
|
2115
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2116
|
-
template: `<ng-content></ng-content>`
|
|
2117
|
-
}]
|
|
2118
|
-
}], ctorParameters: () => [], propDecorators: { open: [{
|
|
2119
|
-
type: Input,
|
|
2120
|
-
args: [{ transform: booleanAttribute }]
|
|
2121
|
-
}], buttonLabel: [{
|
|
2122
|
-
type: Input
|
|
2123
|
-
}], showLabel: [{
|
|
2124
|
-
type: Input,
|
|
2125
|
-
args: [{ transform: booleanAttribute }]
|
|
2126
|
-
}], label: [{
|
|
2127
|
-
type: Input
|
|
2128
|
-
}], placement: [{
|
|
2129
|
-
type: Input
|
|
2130
|
-
}], margin: [{
|
|
2131
|
-
type: Input
|
|
2132
|
-
}], marginInline: [{
|
|
2133
|
-
type: Input
|
|
2134
|
-
}], marginBlock: [{
|
|
2135
|
-
type: Input
|
|
2136
|
-
}], alignSelf: [{
|
|
2137
|
-
type: Input
|
|
2138
|
-
}], justifySelf: [{
|
|
2139
|
-
type: Input
|
|
2140
|
-
}], placeSelf: [{
|
|
2141
|
-
type: Input
|
|
2142
|
-
}], gridColumn: [{
|
|
2143
|
-
type: Input
|
|
2144
|
-
}], gridRow: [{
|
|
2145
|
-
type: Input
|
|
2146
|
-
}], gridArea: [{
|
|
2147
|
-
type: Input
|
|
2148
|
-
}], flex: [{
|
|
2149
|
-
type: Input
|
|
2150
|
-
}], order: [{
|
|
2151
|
-
type: Input
|
|
2152
|
-
}], gdsMenuItemClick: [{
|
|
2153
|
-
type: Output
|
|
2154
|
-
}], gdsUiState: [{
|
|
2155
|
-
type: Output
|
|
2156
|
-
}] } });
|
|
2157
|
-
|
|
2158
|
-
/**
|
|
2159
|
-
* GdsContextMenuComponent - Angular wrapper for gds-context-menu
|
|
2160
|
-
*
|
|
2161
|
-
*
|
|
2162
|
-
* Auto-generated from Custom Elements Manifest
|
|
2163
|
-
*/
|
|
2164
|
-
|
|
2165
2165
|
/**
|
|
2166
2166
|
* Angular wrapper for the gds-dialog web component
|
|
2167
2167
|
*
|
|
@@ -36844,10 +36844,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
36844
36844
|
*/
|
|
36845
36845
|
|
|
36846
36846
|
/**
|
|
36847
|
-
* Angular wrapper for the gds-sensitive-
|
|
36847
|
+
* Angular wrapper for the gds-sensitive-date web component
|
|
36848
36848
|
*
|
|
36849
36849
|
*/
|
|
36850
|
-
let
|
|
36850
|
+
let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
36851
36851
|
get element() {
|
|
36852
36852
|
return this.elementRef.nativeElement;
|
|
36853
36853
|
}
|
|
@@ -36860,11 +36860,11 @@ let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
|
|
|
36860
36860
|
ngOnInit() {
|
|
36861
36861
|
// Define the custom element
|
|
36862
36862
|
try {
|
|
36863
|
-
|
|
36863
|
+
GdsSensitiveDate.define();
|
|
36864
36864
|
}
|
|
36865
36865
|
catch (e) {
|
|
36866
36866
|
// Component may not be available in this version of green-core
|
|
36867
|
-
console.warn('Failed to define gds-sensitive-
|
|
36867
|
+
console.warn('Failed to define gds-sensitive-date:', e);
|
|
36868
36868
|
}
|
|
36869
36869
|
}
|
|
36870
36870
|
ngOnChanges(changes) {
|
|
@@ -36873,17 +36873,17 @@ let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
|
|
|
36873
36873
|
ngAfterViewInit() {
|
|
36874
36874
|
// Implementation added by @ProxyInputs decorator
|
|
36875
36875
|
}
|
|
36876
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type:
|
|
36877
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type:
|
|
36876
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
36877
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsSensitiveDateComponent, isStandalone: true, selector: "gds-sensitive-date", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", format: "format", locale: "locale", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
36878
36878
|
};
|
|
36879
|
-
|
|
36880
|
-
ProxyInputs(['hide', 'value', '
|
|
36879
|
+
GdsSensitiveDateComponent = __decorate([
|
|
36880
|
+
ProxyInputs(['hide', 'value', 'format', 'locale', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events']),
|
|
36881
36881
|
__metadata("design:paramtypes", [])
|
|
36882
|
-
],
|
|
36883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type:
|
|
36882
|
+
], GdsSensitiveDateComponent);
|
|
36883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
|
|
36884
36884
|
type: Component,
|
|
36885
36885
|
args: [{
|
|
36886
|
-
selector: 'gds-sensitive-
|
|
36886
|
+
selector: 'gds-sensitive-date',
|
|
36887
36887
|
standalone: true,
|
|
36888
36888
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
36889
36889
|
template: `<ng-content></ng-content>`
|
|
@@ -36893,11 +36893,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
36893
36893
|
args: [{ transform: booleanAttribute }]
|
|
36894
36894
|
}], value: [{
|
|
36895
36895
|
type: Input
|
|
36896
|
-
}],
|
|
36897
|
-
type: Input
|
|
36898
|
-
}], currency: [{
|
|
36896
|
+
}], format: [{
|
|
36899
36897
|
type: Input
|
|
36900
|
-
}],
|
|
36898
|
+
}], locale: [{
|
|
36901
36899
|
type: Input
|
|
36902
36900
|
}], tag: [{
|
|
36903
36901
|
type: Input
|
|
@@ -37032,17 +37030,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
37032
37030
|
}] } });
|
|
37033
37031
|
|
|
37034
37032
|
/**
|
|
37035
|
-
*
|
|
37033
|
+
* GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
|
|
37036
37034
|
*
|
|
37037
37035
|
*
|
|
37038
37036
|
* Auto-generated from Custom Elements Manifest
|
|
37039
37037
|
*/
|
|
37040
37038
|
|
|
37041
37039
|
/**
|
|
37042
|
-
* Angular wrapper for the gds-sensitive-
|
|
37040
|
+
* Angular wrapper for the gds-sensitive-number web component
|
|
37043
37041
|
*
|
|
37044
37042
|
*/
|
|
37045
|
-
let
|
|
37043
|
+
let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
|
|
37046
37044
|
get element() {
|
|
37047
37045
|
return this.elementRef.nativeElement;
|
|
37048
37046
|
}
|
|
@@ -37055,11 +37053,11 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
|
37055
37053
|
ngOnInit() {
|
|
37056
37054
|
// Define the custom element
|
|
37057
37055
|
try {
|
|
37058
|
-
|
|
37056
|
+
GdsSensitiveNumber.define();
|
|
37059
37057
|
}
|
|
37060
37058
|
catch (e) {
|
|
37061
37059
|
// Component may not be available in this version of green-core
|
|
37062
|
-
console.warn('Failed to define gds-sensitive-
|
|
37060
|
+
console.warn('Failed to define gds-sensitive-number:', e);
|
|
37063
37061
|
}
|
|
37064
37062
|
}
|
|
37065
37063
|
ngOnChanges(changes) {
|
|
@@ -37068,17 +37066,17 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
|
37068
37066
|
ngAfterViewInit() {
|
|
37069
37067
|
// Implementation added by @ProxyInputs decorator
|
|
37070
37068
|
}
|
|
37071
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type:
|
|
37072
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type:
|
|
37069
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveNumberComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
37070
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsSensitiveNumberComponent, isStandalone: true, selector: "gds-sensitive-number", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", locale: "locale", currency: "currency", decimals: "decimals", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
37073
37071
|
};
|
|
37074
|
-
|
|
37075
|
-
ProxyInputs(['hide', 'value', '
|
|
37072
|
+
GdsSensitiveNumberComponent = __decorate([
|
|
37073
|
+
ProxyInputs(['hide', 'value', 'locale', 'currency', 'decimals', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events']),
|
|
37076
37074
|
__metadata("design:paramtypes", [])
|
|
37077
|
-
],
|
|
37078
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type:
|
|
37075
|
+
], GdsSensitiveNumberComponent);
|
|
37076
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveNumberComponent, decorators: [{
|
|
37079
37077
|
type: Component,
|
|
37080
37078
|
args: [{
|
|
37081
|
-
selector: 'gds-sensitive-
|
|
37079
|
+
selector: 'gds-sensitive-number',
|
|
37082
37080
|
standalone: true,
|
|
37083
37081
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
37084
37082
|
template: `<ng-content></ng-content>`
|
|
@@ -37088,10 +37086,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
37088
37086
|
args: [{ transform: booleanAttribute }]
|
|
37089
37087
|
}], value: [{
|
|
37090
37088
|
type: Input
|
|
37091
|
-
}], format: [{
|
|
37092
|
-
type: Input
|
|
37093
37089
|
}], locale: [{
|
|
37094
37090
|
type: Input
|
|
37091
|
+
}], currency: [{
|
|
37092
|
+
type: Input
|
|
37093
|
+
}], decimals: [{
|
|
37094
|
+
type: Input
|
|
37095
37095
|
}], tag: [{
|
|
37096
37096
|
type: Input
|
|
37097
37097
|
}], font: [{
|
|
@@ -37225,7 +37225,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
37225
37225
|
}] } });
|
|
37226
37226
|
|
|
37227
37227
|
/**
|
|
37228
|
-
*
|
|
37228
|
+
* GdsSensitiveNumberComponent - Angular wrapper for gds-sensitive-number
|
|
37229
|
+
*
|
|
37230
|
+
*
|
|
37231
|
+
* Auto-generated from Custom Elements Manifest
|
|
37232
|
+
*/
|
|
37233
|
+
|
|
37234
|
+
/**
|
|
37235
|
+
* Angular wrapper for the gds-menu-item web component
|
|
37236
|
+
*
|
|
37237
|
+
*/
|
|
37238
|
+
class GdsMenuItemComponent {
|
|
37239
|
+
get element() {
|
|
37240
|
+
return this.elementRef.nativeElement;
|
|
37241
|
+
}
|
|
37242
|
+
constructor() {
|
|
37243
|
+
this.elementRef = inject((ElementRef));
|
|
37244
|
+
this.zone = inject(NgZone);
|
|
37245
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
37246
|
+
this.cdr.detach();
|
|
37247
|
+
}
|
|
37248
|
+
ngOnInit() {
|
|
37249
|
+
// Define the custom element
|
|
37250
|
+
try {
|
|
37251
|
+
GdsMenuItem.define();
|
|
37252
|
+
}
|
|
37253
|
+
catch (e) {
|
|
37254
|
+
// Component may not be available in this version of green-core
|
|
37255
|
+
console.warn('Failed to define gds-menu-item:', e);
|
|
37256
|
+
}
|
|
37257
|
+
}
|
|
37258
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
37259
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: GdsMenuItemComponent, isStandalone: true, selector: "gds-menu-item", ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
37260
|
+
}
|
|
37261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsMenuItemComponent, decorators: [{
|
|
37262
|
+
type: Component,
|
|
37263
|
+
args: [{
|
|
37264
|
+
selector: 'gds-menu-item',
|
|
37265
|
+
standalone: true,
|
|
37266
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
37267
|
+
template: `<ng-content></ng-content>`
|
|
37268
|
+
}]
|
|
37269
|
+
}], ctorParameters: () => [] });
|
|
37270
|
+
|
|
37271
|
+
/**
|
|
37272
|
+
* GdsMenuItemComponent - Angular wrapper for gds-menu-item
|
|
37229
37273
|
*
|
|
37230
37274
|
*
|
|
37231
37275
|
* Auto-generated from Custom Elements Manifest
|
|
@@ -37381,9 +37425,9 @@ class GreenCoreNgModule {
|
|
|
37381
37425
|
GdsCardLinkedComponent,
|
|
37382
37426
|
GdsCheckboxComponent,
|
|
37383
37427
|
GdsCoachmarkComponent,
|
|
37428
|
+
GdsContextMenuComponent,
|
|
37384
37429
|
GdsDatepickerComponent,
|
|
37385
37430
|
GdsDetailsComponent,
|
|
37386
|
-
GdsContextMenuComponent,
|
|
37387
37431
|
GdsDialogComponent,
|
|
37388
37432
|
GdsDivComponent,
|
|
37389
37433
|
GdsDividerComponent,
|
|
@@ -37758,8 +37802,9 @@ class GreenCoreNgModule {
|
|
|
37758
37802
|
GdsRadioGroupComponent,
|
|
37759
37803
|
GdsSegmentComponent,
|
|
37760
37804
|
GdsSensitiveAccountComponent,
|
|
37761
|
-
GdsSensitiveNumberComponent,
|
|
37762
37805
|
GdsSensitiveDateComponent,
|
|
37806
|
+
GdsSensitiveNumberComponent,
|
|
37807
|
+
GdsMenuItemComponent,
|
|
37763
37808
|
GdsMenuHeadingComponent,
|
|
37764
37809
|
GdsOptionComponent], exports: [GdsAlertComponent,
|
|
37765
37810
|
GdsBadgeComponent,
|
|
@@ -37771,9 +37816,9 @@ class GreenCoreNgModule {
|
|
|
37771
37816
|
GdsCardLinkedComponent,
|
|
37772
37817
|
GdsCheckboxComponent,
|
|
37773
37818
|
GdsCoachmarkComponent,
|
|
37819
|
+
GdsContextMenuComponent,
|
|
37774
37820
|
GdsDatepickerComponent,
|
|
37775
37821
|
GdsDetailsComponent,
|
|
37776
|
-
GdsContextMenuComponent,
|
|
37777
37822
|
GdsDialogComponent,
|
|
37778
37823
|
GdsDivComponent,
|
|
37779
37824
|
GdsDividerComponent,
|
|
@@ -38148,8 +38193,9 @@ class GreenCoreNgModule {
|
|
|
38148
38193
|
GdsRadioGroupComponent,
|
|
38149
38194
|
GdsSegmentComponent,
|
|
38150
38195
|
GdsSensitiveAccountComponent,
|
|
38151
|
-
GdsSensitiveNumberComponent,
|
|
38152
38196
|
GdsSensitiveDateComponent,
|
|
38197
|
+
GdsSensitiveNumberComponent,
|
|
38198
|
+
GdsMenuItemComponent,
|
|
38153
38199
|
GdsMenuHeadingComponent,
|
|
38154
38200
|
GdsOptionComponent] }); }
|
|
38155
38201
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GreenCoreNgModule }); }
|
|
@@ -38168,9 +38214,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
38168
38214
|
GdsCardLinkedComponent,
|
|
38169
38215
|
GdsCheckboxComponent,
|
|
38170
38216
|
GdsCoachmarkComponent,
|
|
38217
|
+
GdsContextMenuComponent,
|
|
38171
38218
|
GdsDatepickerComponent,
|
|
38172
38219
|
GdsDetailsComponent,
|
|
38173
|
-
GdsContextMenuComponent,
|
|
38174
38220
|
GdsDialogComponent,
|
|
38175
38221
|
GdsDivComponent,
|
|
38176
38222
|
GdsDividerComponent,
|
|
@@ -38545,8 +38591,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
38545
38591
|
GdsRadioGroupComponent,
|
|
38546
38592
|
GdsSegmentComponent,
|
|
38547
38593
|
GdsSensitiveAccountComponent,
|
|
38548
|
-
GdsSensitiveNumberComponent,
|
|
38549
38594
|
GdsSensitiveDateComponent,
|
|
38595
|
+
GdsSensitiveNumberComponent,
|
|
38596
|
+
GdsMenuItemComponent,
|
|
38550
38597
|
GdsMenuHeadingComponent,
|
|
38551
38598
|
GdsOptionComponent,
|
|
38552
38599
|
],
|
|
@@ -38561,9 +38608,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
38561
38608
|
GdsCardLinkedComponent,
|
|
38562
38609
|
GdsCheckboxComponent,
|
|
38563
38610
|
GdsCoachmarkComponent,
|
|
38611
|
+
GdsContextMenuComponent,
|
|
38564
38612
|
GdsDatepickerComponent,
|
|
38565
38613
|
GdsDetailsComponent,
|
|
38566
|
-
GdsContextMenuComponent,
|
|
38567
38614
|
GdsDialogComponent,
|
|
38568
38615
|
GdsDivComponent,
|
|
38569
38616
|
GdsDividerComponent,
|
|
@@ -38938,8 +38985,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
38938
38985
|
GdsRadioGroupComponent,
|
|
38939
38986
|
GdsSegmentComponent,
|
|
38940
38987
|
GdsSensitiveAccountComponent,
|
|
38941
|
-
GdsSensitiveNumberComponent,
|
|
38942
38988
|
GdsSensitiveDateComponent,
|
|
38989
|
+
GdsSensitiveNumberComponent,
|
|
38990
|
+
GdsMenuItemComponent,
|
|
38943
38991
|
GdsMenuHeadingComponent,
|
|
38944
38992
|
GdsOptionComponent,
|
|
38945
38993
|
]
|
|
@@ -39152,5 +39200,5 @@ const provideCoreRendererWithAnimations = (resolver = getScopedTagName) => [
|
|
|
39152
39200
|
* Generated bundle index. Do not edit.
|
|
39153
39201
|
*/
|
|
39154
39202
|
|
|
39155
|
-
export { GdsAlertComponent, 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, GdsOptionComponent, GdsPaginationComponent, GdsPopoverComponent, GdsRadioComponent, GdsRadioGroupComponent, GdsRichTextComponent, GdsSegmentComponent, GdsSegmentedControlComponent, GdsSelectComponent, GdsSensitiveAccountComponent, GdsSensitiveDateComponent, GdsSensitiveNumberComponent, GdsSignalComponent, GdsSpinnerComponent, GdsTableComponent, GdsTextComponent, GdsTextareaComponent, GdsThemeComponent, GdsVideoComponent, GreenCoreNgModule, IconAiComponent, IconAirplaneUpComponent, IconArchiveComponent, IconArrowBottomTopComponent, IconArrowBoxLeftComponent, IconArrowBoxRightComponent, IconArrowComponent, IconArrowDownComponent, IconArrowInboxComponent, IconArrowLeftComponent, IconArrowLeftRightComponent, IconArrowOutOfBoxComponent, IconArrowRightCircleComponent, IconArrowRightComponent, IconArrowRightDownCircleComponent, IconArrowRightUpCircleComponent, IconArrowRotateClockwiseComponent, IconArrowRotateCounterClockwiseComponent, IconArrowRotateLeftRightComponent, IconArrowRotateRightLeftComponent, IconArrowShareLeftComponent, IconArrowShareRightComponent, IconArrowSplitComponent, IconArrowUpComponent, IconArrowWallDownComponent, IconArrowWallLeftComponent, IconArrowWallRightComponent, IconArrowWallUpComponent, IconArrowsRepeatComponent, 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, IconBrandXComponent, IconBrushComponent, IconBubbleAnnotationComponent, IconBubbleComponent, IconBubbleDotsComponent, IconBubbleQuestionComponent, IconBubbleQuotesComponent, IconBubbleTextComponent, IconBubbleWideAnnotationComponent, IconBubblesComponent, IconBuildingsComponent, IconBulletListComponent, IconCainLinkComponent, IconCalculatorComponent, IconCalendarCheckComponent, IconCalendarComponent, IconCalenderAddComponent, IconCallComponent, IconCarComponent, IconCarusselComponent, IconChainLinkBrokenComponent, IconChainLinkComponent, IconChargingStationComponent, IconChartOneComponent, IconChartPresentationComponent, IconChartTwoComponent, IconChecklistComponent, IconCheckmarkComponent, IconChevronBottomComponent, IconChevronDoubleDownComponent, IconChevronDoubleLeftComponent, IconChevronDoubleRightComponent, IconChevronDoubleUpComponent, IconChevronDownSmallComponent, IconChevronGrabberVerticalComponent, 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, 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, IconFocusSquareComponent, IconFolderAddRightComponent, IconFolderComponent, IconFolderPaperComponent, IconFolderUploadComponent, IconFullscreenComponent, IconGiftComponent, IconGlobusComponent, IconGraduateCapComponent, IconGreenPowerComponent, IconGroupComponent, IconGrowthComponent, IconHeadphonesComponent, IconHeartBeatComponent, IconHeartComponent, IconHistoryComponent, IconHomeEnergyOneComponent, IconHomeEnergyTwoComponent, IconHomeOpenComponent, IconHomeRoofComponent, IconHorizontalAlignmentBottomComponent, IconHourglassComponent, IconImagesComponent, IconInboxEmptyComponent, IconIndustryComponent, IconInviteComponent, IconJpgComponent, IconKeyComponent, IconKnifeSpoonComponent, IconLabComponent, IconLawComponent, IconLeisureComponent, IconLightBulbComponent, IconLightBulbSimpleComponent, IconLightningComponent, IconLineChartFourComponent, IconLineChartOneComponent, IconLineChartThreeComponent, IconLineChartTwoComponent, IconLockComponent, IconMacbookAirComponent, IconMagnifyingGlassComponent, IconMaintenanceComponent, IconMapPinComponent, IconMegaphoneComponent, IconMenuSidebarComponent, IconMicOffComponent, IconMicOnComponent, IconMinimizeComponent, IconMinusLargeComponent, IconMinusSmallComponent, IconMoneyHandComponent, IconMoneybagComponent, IconMoonComponent, IconMuteComponent, IconOfficeComponent, IconOtherComponent, IconPageAddComponent, IconPageTextComponent, IconPaperPlaneTopRightComponent, IconPaperclipComponent, IconPauseComponent, IconPdfComponent, IconPencelLineComponent, IconPencilSignComponent, IconPencilSparkleComponent, IconPencilWaveComponent, IconPensionComponent, IconPeopleA11yComponent, IconPeopleAddComponent, IconPeopleAddedComponent, IconPeopleCircleComponent, IconPeopleComponent, IconPeopleCopyComponent, IconPeopleProfileComponent, IconPeopleRemoveComponent, IconPercentComponent, IconPhoneComponent, IconPhoneDynamicIslandComponent, IconPieChartComponent, IconPiggyBankComponent, IconPinComponent, IconPinchComponent, IconPlayCircleComponent, IconPlayComponent, IconPlusLargeComponent, IconPlusSmallComponent, IconPngComponent, IconPoopComponent, IconPostcardComponent, IconPoundComponent, IconPowerPlantComponent, IconPrinterComponent, IconPushComponent, IconQrCodeComponent, IconRainyComponent, IconRaisingHandComponent, IconReadingListComponent, IconReceiptBillComponent, IconReceiptionBellComponent, IconRecordComponent, IconRefundComponent, IconRobotComponent, IconRocketComponent, IconRunShortcutComponent, IconSafariComponent, IconSchoolComponent, IconScissorsComponent, IconSearchMenuComponent, IconSebComponent, IconSettingsGearComponent, IconSettingsSliderHorComponent, IconSettingsSliderThreeComponent, IconSettingsSliderVerComponent, IconShapesComponent, IconShareComponent, IconShieldCheckedComponent, IconShieldComponent, IconShieldCrossedComponent, IconShoppingBagComponent, IconSignatureComponent, IconSmartwatchComponent, IconSolarComponent, IconSolarPanelComponent, IconSortAscendingComponent, IconSortComponent, IconSortDescendingComponent, IconSortDownComponent, IconSortUpComponent, IconSquareArrowTopRightComponent, IconSquareBehindSquareComponent, IconSquareCheckComponent, IconSquareGridCircleComponent, IconSquareInfoComponent, IconSquareMinusComponent, IconSquarePlaceholderComponent, IconSquarePlusComponent, IconSquareXComponent, IconStarComponent, IconStoreComponent, IconSuitcaseWorkComponent, IconSunComponent, IconSunsetArrowDownComponent, IconTagComponent, IconTargetArrowComponent, IconTelevisionComponent, IconTennisComponent, IconTextEditComponent, IconThermostatComponent, IconThumbsDownComponent, IconThumbsUpComponent, IconTicketComponent, IconTodosComponent, IconTradingViewCandlesComponent, IconTrashCanComponent, IconTreeComponent, IconTrendingFourComponent, IconTrendingOneComponent, IconTrendingThreeComponent, IconTrendingTwoComponent, IconTriangleExclamationComponent, IconTruckComponent, IconUmbrellaSecurityComponent, IconUnlockedComponent, IconVerticalAlignmentRightComponent, IconVolumeFullComponent, IconVolumeHalfComponent, IconVolumeOffComponent, IconWalletComponent, IconWarningSignComponent, IconWifiFullComponent, IconYoutubeComponent, IconZapComponent, IconZoomInComponent, IconZoomOutComponent, SCOPE_RESOLVER, animationsCoreRendererFactory, provideCoreRenderer, provideCoreRendererWithAnimations };
|
|
39203
|
+
export { GdsAlertComponent, 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, GdsTableComponent, GdsTextComponent, GdsTextareaComponent, GdsThemeComponent, GdsVideoComponent, GreenCoreNgModule, IconAiComponent, IconAirplaneUpComponent, IconArchiveComponent, IconArrowBottomTopComponent, IconArrowBoxLeftComponent, IconArrowBoxRightComponent, IconArrowComponent, IconArrowDownComponent, IconArrowInboxComponent, IconArrowLeftComponent, IconArrowLeftRightComponent, IconArrowOutOfBoxComponent, IconArrowRightCircleComponent, IconArrowRightComponent, IconArrowRightDownCircleComponent, IconArrowRightUpCircleComponent, IconArrowRotateClockwiseComponent, IconArrowRotateCounterClockwiseComponent, IconArrowRotateLeftRightComponent, IconArrowRotateRightLeftComponent, IconArrowShareLeftComponent, IconArrowShareRightComponent, IconArrowSplitComponent, IconArrowUpComponent, IconArrowWallDownComponent, IconArrowWallLeftComponent, IconArrowWallRightComponent, IconArrowWallUpComponent, IconArrowsRepeatComponent, 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, IconBrandXComponent, IconBrushComponent, IconBubbleAnnotationComponent, IconBubbleComponent, IconBubbleDotsComponent, IconBubbleQuestionComponent, IconBubbleQuotesComponent, IconBubbleTextComponent, IconBubbleWideAnnotationComponent, IconBubblesComponent, IconBuildingsComponent, IconBulletListComponent, IconCainLinkComponent, IconCalculatorComponent, IconCalendarCheckComponent, IconCalendarComponent, IconCalenderAddComponent, IconCallComponent, IconCarComponent, IconCarusselComponent, IconChainLinkBrokenComponent, IconChainLinkComponent, IconChargingStationComponent, IconChartOneComponent, IconChartPresentationComponent, IconChartTwoComponent, IconChecklistComponent, IconCheckmarkComponent, IconChevronBottomComponent, IconChevronDoubleDownComponent, IconChevronDoubleLeftComponent, IconChevronDoubleRightComponent, IconChevronDoubleUpComponent, IconChevronDownSmallComponent, IconChevronGrabberVerticalComponent, 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, 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, IconFocusSquareComponent, IconFolderAddRightComponent, IconFolderComponent, IconFolderPaperComponent, IconFolderUploadComponent, IconFullscreenComponent, IconGiftComponent, IconGlobusComponent, IconGraduateCapComponent, IconGreenPowerComponent, IconGroupComponent, IconGrowthComponent, IconHeadphonesComponent, IconHeartBeatComponent, IconHeartComponent, IconHistoryComponent, IconHomeEnergyOneComponent, IconHomeEnergyTwoComponent, IconHomeOpenComponent, IconHomeRoofComponent, IconHorizontalAlignmentBottomComponent, IconHourglassComponent, IconImagesComponent, IconInboxEmptyComponent, IconIndustryComponent, IconInviteComponent, IconJpgComponent, IconKeyComponent, IconKnifeSpoonComponent, IconLabComponent, IconLawComponent, IconLeisureComponent, IconLightBulbComponent, IconLightBulbSimpleComponent, IconLightningComponent, IconLineChartFourComponent, IconLineChartOneComponent, IconLineChartThreeComponent, IconLineChartTwoComponent, IconLockComponent, IconMacbookAirComponent, IconMagnifyingGlassComponent, IconMaintenanceComponent, IconMapPinComponent, IconMegaphoneComponent, IconMenuSidebarComponent, IconMicOffComponent, IconMicOnComponent, IconMinimizeComponent, IconMinusLargeComponent, IconMinusSmallComponent, IconMoneyHandComponent, IconMoneybagComponent, IconMoonComponent, IconMuteComponent, IconOfficeComponent, IconOtherComponent, IconPageAddComponent, IconPageTextComponent, IconPaperPlaneTopRightComponent, IconPaperclipComponent, IconPauseComponent, IconPdfComponent, IconPencelLineComponent, IconPencilSignComponent, IconPencilSparkleComponent, IconPencilWaveComponent, IconPensionComponent, IconPeopleA11yComponent, IconPeopleAddComponent, IconPeopleAddedComponent, IconPeopleCircleComponent, IconPeopleComponent, IconPeopleCopyComponent, IconPeopleProfileComponent, IconPeopleRemoveComponent, IconPercentComponent, IconPhoneComponent, IconPhoneDynamicIslandComponent, IconPieChartComponent, IconPiggyBankComponent, IconPinComponent, IconPinchComponent, IconPlayCircleComponent, IconPlayComponent, IconPlusLargeComponent, IconPlusSmallComponent, IconPngComponent, IconPoopComponent, IconPostcardComponent, IconPoundComponent, IconPowerPlantComponent, IconPrinterComponent, IconPushComponent, IconQrCodeComponent, IconRainyComponent, IconRaisingHandComponent, IconReadingListComponent, IconReceiptBillComponent, IconReceiptionBellComponent, IconRecordComponent, IconRefundComponent, IconRobotComponent, IconRocketComponent, IconRunShortcutComponent, IconSafariComponent, IconSchoolComponent, IconScissorsComponent, IconSearchMenuComponent, IconSebComponent, IconSettingsGearComponent, IconSettingsSliderHorComponent, IconSettingsSliderThreeComponent, IconSettingsSliderVerComponent, IconShapesComponent, IconShareComponent, IconShieldCheckedComponent, IconShieldComponent, IconShieldCrossedComponent, IconShoppingBagComponent, IconSignatureComponent, IconSmartwatchComponent, IconSolarComponent, IconSolarPanelComponent, IconSortAscendingComponent, IconSortComponent, IconSortDescendingComponent, IconSortDownComponent, IconSortUpComponent, IconSquareArrowTopRightComponent, IconSquareBehindSquareComponent, IconSquareCheckComponent, IconSquareGridCircleComponent, IconSquareInfoComponent, IconSquareMinusComponent, IconSquarePlaceholderComponent, IconSquarePlusComponent, IconSquareXComponent, IconStarComponent, IconStoreComponent, IconSuitcaseWorkComponent, IconSunComponent, IconSunsetArrowDownComponent, IconTagComponent, IconTargetArrowComponent, IconTelevisionComponent, IconTennisComponent, IconTextEditComponent, IconThermostatComponent, IconThumbsDownComponent, IconThumbsUpComponent, IconTicketComponent, IconTodosComponent, IconTradingViewCandlesComponent, IconTrashCanComponent, IconTreeComponent, IconTrendingFourComponent, IconTrendingOneComponent, IconTrendingThreeComponent, IconTrendingTwoComponent, IconTriangleExclamationComponent, IconTruckComponent, IconUmbrellaSecurityComponent, IconUnlockedComponent, IconVerticalAlignmentRightComponent, IconVolumeFullComponent, IconVolumeHalfComponent, IconVolumeOffComponent, IconWalletComponent, IconWarningSignComponent, IconWifiFullComponent, IconYoutubeComponent, IconZapComponent, IconZoomInComponent, IconZoomOutComponent, SCOPE_RESOLVER, animationsCoreRendererFactory, provideCoreRenderer, provideCoreRendererWithAnimations };
|
|
39156
39204
|
//# sourceMappingURL=sebgroup-green-core-ng.mjs.map
|