@abgov/angular-components 4.10.0-dev.9 → 4.10.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.
@@ -5448,8 +5448,8 @@ class GoabTab {
5448
5448
  return this.heading instanceof TemplateRef ? this.heading : null;
5449
5449
  }
5450
5450
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GoabTab, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
5451
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: GoabTab, isStandalone: true, selector: "goab-tab", inputs: { heading: "heading" }, ngImport: i0, template: `
5452
- <goa-tab *ngIf="isReady">
5451
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.16", type: GoabTab, isStandalone: true, selector: "goab-tab", inputs: { heading: "heading", disabled: ["disabled", "disabled", booleanAttribute] }, ngImport: i0, template: `
5452
+ <goa-tab *ngIf="isReady" [attr.disabled]="disabled || null">
5453
5453
  <ng-content />
5454
5454
  <div slot="heading">
5455
5455
  <ng-container [ngTemplateOutlet]="getHeadingAsTemplate()"></ng-container>
@@ -5464,7 +5464,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
5464
5464
  standalone: true,
5465
5465
  selector: "goab-tab",
5466
5466
  template: `
5467
- <goa-tab *ngIf="isReady">
5467
+ <goa-tab *ngIf="isReady" [attr.disabled]="disabled || null">
5468
5468
  <ng-content />
5469
5469
  <div slot="heading">
5470
5470
  <ng-container [ngTemplateOutlet]="getHeadingAsTemplate()"></ng-container>
@@ -5477,6 +5477,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
5477
5477
  }]
5478
5478
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { heading: [{
5479
5479
  type: Input
5480
+ }], disabled: [{
5481
+ type: Input,
5482
+ args: [{ transform: booleanAttribute }]
5480
5483
  }] } });
5481
5484
 
5482
5485
  class GoabTable extends GoabBaseComponent {
@@ -5611,11 +5614,12 @@ class GoabTabs {
5611
5614
  this.onChange.emit(detail);
5612
5615
  }
5613
5616
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GoabTabs, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
5614
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.16", type: GoabTabs, isStandalone: true, selector: "goab-tabs", inputs: { initialTab: ["initialTab", "initialTab", numberAttribute], testId: "testId" }, outputs: { onChange: "onChange" }, ngImport: i0, template: `
5617
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.16", type: GoabTabs, isStandalone: true, selector: "goab-tabs", inputs: { initialTab: ["initialTab", "initialTab", numberAttribute], testId: "testId", variant: "variant" }, outputs: { onChange: "onChange" }, ngImport: i0, template: `
5615
5618
  <goa-tabs
5616
5619
  *ngIf="isReady"
5617
5620
  [attr.initialtab]="initialTab"
5618
5621
  [attr.testid]="testId"
5622
+ [attr.variant]="variant"
5619
5623
  (_change)="_onChange($event)"
5620
5624
  >
5621
5625
  <ng-content />
@@ -5632,6 +5636,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
5632
5636
  *ngIf="isReady"
5633
5637
  [attr.initialtab]="initialTab"
5634
5638
  [attr.testid]="testId"
5639
+ [attr.variant]="variant"
5635
5640
  (_change)="_onChange($event)"
5636
5641
  >
5637
5642
  <ng-content />
@@ -5645,6 +5650,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
5645
5650
  args: [{ transform: numberAttribute }]
5646
5651
  }], testId: [{
5647
5652
  type: Input
5653
+ }], variant: [{
5654
+ type: Input
5648
5655
  }], onChange: [{
5649
5656
  type: Output
5650
5657
  }] } });