@sebgroup/green-core-ng 2.35.1 → 2.36.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.
@@ -395,8 +395,8 @@ import { IconZoomIn } from '@sebgroup/green-core/components/icon/icons/zoom-in.c
395
395
  import { IconZoomOut } from '@sebgroup/green-core/components/icon/icons/zoom-out.component.js';
396
396
  import { GdsRadioGroup } from '@sebgroup/green-core/components/radio/radio-group/radio-group.component.js';
397
397
  import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
398
- import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
399
398
  import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
399
+ import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
400
400
  import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
401
401
  import { DOCUMENT, CommonModule } from '@angular/common';
402
402
  import { getScopedTagName } from '@sebgroup/green-core/scoping';
@@ -2216,10 +2216,10 @@ let GdsDialogComponent = class GdsDialogComponent {
2216
2216
  // Implementation added by @ProxyInputs decorator
2217
2217
  }
2218
2218
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2219
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsDialogComponent, isStandalone: true, selector: "gds-dialog", inputs: { open: ["open", "open", booleanAttribute], heading: "heading", variant: "variant", placement: "placement", scrollable: ["scrollable", "scrollable", booleanAttribute], width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock" }, outputs: { gdsUiState: "gdsUiState", gdsClose: "gdsClose", gdsShow: "gdsShow" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2219
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsDialogComponent, isStandalone: true, selector: "gds-dialog", inputs: { open: ["open", "open", booleanAttribute], heading: "heading", variant: "variant", placement: "placement", scrollable: ["scrollable", "scrollable", booleanAttribute], closedby: "closedby", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock" }, outputs: { gdsUiState: "gdsUiState", gdsClose: "gdsClose", gdsShow: "gdsShow" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2220
2220
  };
2221
2221
  GdsDialogComponent = __decorate([
2222
- ProxyInputs(['open', 'heading', 'variant', 'placement', 'scrollable', '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', 'padding', 'padding-inline', 'padding-block']),
2222
+ ProxyInputs(['open', 'heading', 'variant', 'placement', 'scrollable', 'closedby', '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', 'padding', 'padding-inline', 'padding-block']),
2223
2223
  __metadata("design:paramtypes", [])
2224
2224
  ], GdsDialogComponent);
2225
2225
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsDialogComponent, decorators: [{
@@ -2242,6 +2242,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2242
2242
  }], scrollable: [{
2243
2243
  type: Input,
2244
2244
  args: [{ transform: booleanAttribute }]
2245
+ }], closedby: [{
2246
+ type: Input
2245
2247
  }], width: [{
2246
2248
  type: Input
2247
2249
  }], minWidth: [{
@@ -5076,7 +5078,7 @@ let GdsTableComponent = class GdsTableComponent {
5076
5078
  this.gdsRowsChange = new EventEmitter();
5077
5079
  /** Fired when sorting changes. Detail: `{ sortColumn: string, sortDirection: 'asc' | 'desc' }` */
5078
5080
  this.gdsSortChange = new EventEmitter();
5079
- /** Fired when data is successfully loaded. */
5081
+ /** Fired when data is successfully loaded. Detail: `{ rows: T[], total: number, page: number, rowsPerPage: number, searchQuery: string, sortColumn?: string, sortDirection?: 'asc' | 'desc' }` */
5080
5082
  this.gdsTableDataLoaded = new EventEmitter();
5081
5083
  /** Fired when data loading fails. */
5082
5084
  this.gdsTableDataError = new EventEmitter();
@@ -5120,10 +5122,10 @@ let GdsTableComponent = class GdsTableComponent {
5120
5122
  // Implementation added by @ProxyInputs decorator
5121
5123
  }
5122
5124
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5123
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsTableComponent, isStandalone: true, selector: "gds-table", inputs: { headline: "headline", headlineTag: "headlineTag", summary: "summary", searchLabel: "searchLabel", options: "options", page: "page", rows: "rows", columns: "columns", data: "data", density: "density", selectable: ["selectable", "selectable", booleanAttribute], responsive: ["responsive", "responsive", booleanAttribute], plain: ["plain", "plain", booleanAttribute], searchable: ["searchable", "searchable", booleanAttribute], settings: ["settings", "settings", booleanAttribute], striped: ["striped", "striped", booleanAttribute], actions: "actions", nocache: ["nocache", "nocache", booleanAttribute], dataLoadKey: "dataLoadKey", height: "height", variant: "variant" }, outputs: { gdsPageChange: "gdsPageChange", gdsRowsChange: "gdsRowsChange", gdsSortChange: "gdsSortChange", gdsTableDataLoaded: "gdsTableDataLoaded", gdsTableDataError: "gdsTableDataError", gdsTableSelection: "gdsTableSelection" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5125
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsTableComponent, isStandalone: true, selector: "gds-table", inputs: { headline: "headline", headlineTag: "headlineTag", summary: "summary", searchLabel: "searchLabel", options: "options", page: "page", rows: "rows", columns: "columns", data: "data", density: "density", selectable: ["selectable", "selectable", booleanAttribute], disableSelectAll: ["disableSelectAll", "disableSelectAll", booleanAttribute], responsive: ["responsive", "responsive", booleanAttribute], plain: ["plain", "plain", booleanAttribute], searchable: ["searchable", "searchable", booleanAttribute], settings: ["settings", "settings", booleanAttribute], striped: ["striped", "striped", booleanAttribute], actions: "actions", nocache: ["nocache", "nocache", booleanAttribute], dataLoadKey: "dataLoadKey", height: "height", variant: "variant" }, outputs: { gdsPageChange: "gdsPageChange", gdsRowsChange: "gdsRowsChange", gdsSortChange: "gdsSortChange", gdsTableDataLoaded: "gdsTableDataLoaded", gdsTableDataError: "gdsTableDataError", gdsTableSelection: "gdsTableSelection" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5124
5126
  };
5125
5127
  GdsTableComponent = __decorate([
5126
- ProxyInputs(['headline', 'headlineTag', 'summary', 'searchLabel', 'options', 'page', 'rows', 'columns', 'data', 'density', 'selectable', 'responsive', 'plain', 'searchable', 'settings', 'striped', 'actions', 'nocache', 'dataLoadKey', 'height', 'variant']),
5128
+ ProxyInputs(['headline', 'headlineTag', 'summary', 'searchLabel', 'options', 'page', 'rows', 'columns', 'data', 'density', 'selectable', 'disableSelectAll', 'responsive', 'plain', 'searchable', 'settings', 'striped', 'actions', 'nocache', 'dataLoadKey', 'height', 'variant']),
5127
5129
  __metadata("design:paramtypes", [])
5128
5130
  ], GdsTableComponent);
5129
5131
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsTableComponent, decorators: [{
@@ -5157,6 +5159,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5157
5159
  }], selectable: [{
5158
5160
  type: Input,
5159
5161
  args: [{ transform: booleanAttribute }]
5162
+ }], disableSelectAll: [{
5163
+ type: Input,
5164
+ args: [{ transform: booleanAttribute }]
5160
5165
  }], responsive: [{
5161
5166
  type: Input,
5162
5167
  args: [{ transform: booleanAttribute }]
@@ -37196,10 +37201,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
37196
37201
  */
37197
37202
 
37198
37203
  /**
37199
- * Angular wrapper for the gds-sensitive-account web component
37204
+ * Angular wrapper for the gds-sensitive-date web component
37200
37205
  *
37201
37206
  */
37202
- let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
37207
+ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
37203
37208
  get element() {
37204
37209
  return this.elementRef.nativeElement;
37205
37210
  }
@@ -37212,11 +37217,11 @@ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
37212
37217
  ngOnInit() {
37213
37218
  // Define the custom element
37214
37219
  try {
37215
- GdsSensitiveAccount.define();
37220
+ GdsSensitiveDate.define();
37216
37221
  }
37217
37222
  catch (e) {
37218
37223
  // Component may not be available in this version of green-core
37219
- console.warn('Failed to define gds-sensitive-account:', e);
37224
+ console.warn('Failed to define gds-sensitive-date:', e);
37220
37225
  }
37221
37226
  }
37222
37227
  ngOnChanges(changes) {
@@ -37225,17 +37230,17 @@ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
37225
37230
  ngAfterViewInit() {
37226
37231
  // Implementation added by @ProxyInputs decorator
37227
37232
  }
37228
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveAccountComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
37229
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsSensitiveAccountComponent, isStandalone: true, selector: "gds-sensitive-account", inputs: { hide: ["hide", "hide", booleanAttribute], account: "account", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
37233
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
37234
+ 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 }); }
37230
37235
  };
37231
- GdsSensitiveAccountComponent = __decorate([
37232
- ProxyInputs(['hide', 'account', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events']),
37236
+ GdsSensitiveDateComponent = __decorate([
37237
+ 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']),
37233
37238
  __metadata("design:paramtypes", [])
37234
- ], GdsSensitiveAccountComponent);
37235
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveAccountComponent, decorators: [{
37239
+ ], GdsSensitiveDateComponent);
37240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
37236
37241
  type: Component,
37237
37242
  args: [{
37238
- selector: 'gds-sensitive-account',
37243
+ selector: 'gds-sensitive-date',
37239
37244
  standalone: true,
37240
37245
  changeDetection: ChangeDetectionStrategy.OnPush,
37241
37246
  template: `<ng-content></ng-content>`
@@ -37243,7 +37248,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
37243
37248
  }], ctorParameters: () => [], propDecorators: { hide: [{
37244
37249
  type: Input,
37245
37250
  args: [{ transform: booleanAttribute }]
37246
- }], account: [{
37251
+ }], value: [{
37252
+ type: Input
37253
+ }], format: [{
37254
+ type: Input
37255
+ }], locale: [{
37247
37256
  type: Input
37248
37257
  }], tag: [{
37249
37258
  type: Input
@@ -37378,17 +37387,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
37378
37387
  }] } });
37379
37388
 
37380
37389
  /**
37381
- * GdsSensitiveAccountComponent - Angular wrapper for gds-sensitive-account
37390
+ * GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
37382
37391
  *
37383
37392
  *
37384
37393
  * Auto-generated from Custom Elements Manifest
37385
37394
  */
37386
37395
 
37387
37396
  /**
37388
- * Angular wrapper for the gds-sensitive-date web component
37397
+ * Angular wrapper for the gds-sensitive-account web component
37389
37398
  *
37390
37399
  */
37391
- let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
37400
+ let GdsSensitiveAccountComponent = class GdsSensitiveAccountComponent {
37392
37401
  get element() {
37393
37402
  return this.elementRef.nativeElement;
37394
37403
  }
@@ -37401,11 +37410,11 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
37401
37410
  ngOnInit() {
37402
37411
  // Define the custom element
37403
37412
  try {
37404
- GdsSensitiveDate.define();
37413
+ GdsSensitiveAccount.define();
37405
37414
  }
37406
37415
  catch (e) {
37407
37416
  // Component may not be available in this version of green-core
37408
- console.warn('Failed to define gds-sensitive-date:', e);
37417
+ console.warn('Failed to define gds-sensitive-account:', e);
37409
37418
  }
37410
37419
  }
37411
37420
  ngOnChanges(changes) {
@@ -37414,17 +37423,17 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
37414
37423
  ngAfterViewInit() {
37415
37424
  // Implementation added by @ProxyInputs decorator
37416
37425
  }
37417
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
37418
- 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 }); }
37426
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveAccountComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
37427
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsSensitiveAccountComponent, isStandalone: true, selector: "gds-sensitive-account", inputs: { hide: ["hide", "hide", booleanAttribute], account: "account", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
37419
37428
  };
37420
- GdsSensitiveDateComponent = __decorate([
37421
- 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']),
37429
+ GdsSensitiveAccountComponent = __decorate([
37430
+ ProxyInputs(['hide', 'account', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events']),
37422
37431
  __metadata("design:paramtypes", [])
37423
- ], GdsSensitiveDateComponent);
37424
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
37432
+ ], GdsSensitiveAccountComponent);
37433
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveAccountComponent, decorators: [{
37425
37434
  type: Component,
37426
37435
  args: [{
37427
- selector: 'gds-sensitive-date',
37436
+ selector: 'gds-sensitive-account',
37428
37437
  standalone: true,
37429
37438
  changeDetection: ChangeDetectionStrategy.OnPush,
37430
37439
  template: `<ng-content></ng-content>`
@@ -37432,11 +37441,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
37432
37441
  }], ctorParameters: () => [], propDecorators: { hide: [{
37433
37442
  type: Input,
37434
37443
  args: [{ transform: booleanAttribute }]
37435
- }], value: [{
37436
- type: Input
37437
- }], format: [{
37438
- type: Input
37439
- }], locale: [{
37444
+ }], account: [{
37440
37445
  type: Input
37441
37446
  }], tag: [{
37442
37447
  type: Input
@@ -37571,7 +37576,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
37571
37576
  }] } });
37572
37577
 
37573
37578
  /**
37574
- * GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
37579
+ * GdsSensitiveAccountComponent - Angular wrapper for gds-sensitive-account
37575
37580
  *
37576
37581
  *
37577
37582
  * Auto-generated from Custom Elements Manifest
@@ -38348,8 +38353,8 @@ class GreenCoreNgModule {
38348
38353
  IconZoomOutComponent,
38349
38354
  GdsRadioGroupComponent,
38350
38355
  GdsSegmentComponent,
38351
- GdsSensitiveAccountComponent,
38352
38356
  GdsSensitiveDateComponent,
38357
+ GdsSensitiveAccountComponent,
38353
38358
  GdsSensitiveNumberComponent,
38354
38359
  GdsMenuItemComponent,
38355
38360
  GdsMenuHeadingComponent,
@@ -38745,8 +38750,8 @@ class GreenCoreNgModule {
38745
38750
  IconZoomOutComponent,
38746
38751
  GdsRadioGroupComponent,
38747
38752
  GdsSegmentComponent,
38748
- GdsSensitiveAccountComponent,
38749
38753
  GdsSensitiveDateComponent,
38754
+ GdsSensitiveAccountComponent,
38750
38755
  GdsSensitiveNumberComponent,
38751
38756
  GdsMenuItemComponent,
38752
38757
  GdsMenuHeadingComponent,
@@ -39149,8 +39154,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
39149
39154
  IconZoomOutComponent,
39150
39155
  GdsRadioGroupComponent,
39151
39156
  GdsSegmentComponent,
39152
- GdsSensitiveAccountComponent,
39153
39157
  GdsSensitiveDateComponent,
39158
+ GdsSensitiveAccountComponent,
39154
39159
  GdsSensitiveNumberComponent,
39155
39160
  GdsMenuItemComponent,
39156
39161
  GdsMenuHeadingComponent,
@@ -39549,8 +39554,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
39549
39554
  IconZoomOutComponent,
39550
39555
  GdsRadioGroupComponent,
39551
39556
  GdsSegmentComponent,
39552
- GdsSensitiveAccountComponent,
39553
39557
  GdsSensitiveDateComponent,
39558
+ GdsSensitiveAccountComponent,
39554
39559
  GdsSensitiveNumberComponent,
39555
39560
  GdsMenuItemComponent,
39556
39561
  GdsMenuHeadingComponent,