@abgov/angular-components 4.10.0-dev.2 → 4.10.0-dev.3

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.
@@ -534,12 +534,15 @@ class GoabBlock extends GoabBaseComponent {
534
534
  }, 0);
535
535
  }
536
536
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoabBlock, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
537
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: GoabBlock, isStandalone: true, selector: "goab-block", inputs: { gap: "gap", direction: "direction", alignment: "alignment" }, usesInheritance: true, ngImport: i0, template: `
537
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: GoabBlock, isStandalone: true, selector: "goab-block", inputs: { gap: "gap", direction: "direction", alignment: "alignment", width: "width", minWidth: "minWidth", maxWidth: "maxWidth" }, usesInheritance: true, ngImport: i0, template: `
538
538
  <goa-block
539
539
  *ngIf="isReady"
540
540
  [attr.gap]="gap"
541
541
  [attr.direction]="direction"
542
542
  [attr.alignment]="alignment"
543
+ [attr.width]="width"
544
+ [attr.min-width]="minWidth"
545
+ [attr.max-width]="maxWidth"
543
546
  [attr.testid]="testId"
544
547
  [attr.mt]="mt"
545
548
  [attr.mb]="mb"
@@ -562,6 +565,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
562
565
  [attr.gap]="gap"
563
566
  [attr.direction]="direction"
564
567
  [attr.alignment]="alignment"
568
+ [attr.width]="width"
569
+ [attr.min-width]="minWidth"
570
+ [attr.max-width]="maxWidth"
565
571
  [attr.testid]="testId"
566
572
  [attr.mt]="mt"
567
573
  [attr.mb]="mb"
@@ -579,6 +585,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
579
585
  type: Input
580
586
  }], alignment: [{
581
587
  type: Input
588
+ }], width: [{
589
+ type: Input
590
+ }], minWidth: [{
591
+ type: Input
592
+ }], maxWidth: [{
593
+ type: Input
582
594
  }] } });
583
595
 
584
596
  class GoabButton extends GoabBaseComponent {
@@ -4433,10 +4445,12 @@ class GoabMenuButton {
4433
4445
  this.onAction.emit(detail);
4434
4446
  }
4435
4447
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoabMenuButton, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
4436
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: GoabMenuButton, isStandalone: true, selector: "goab-menu-button", inputs: { text: "text", type: "type", testId: "testId" }, outputs: { onAction: "onAction" }, ngImport: i0, template: `
4448
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: GoabMenuButton, isStandalone: true, selector: "goab-menu-button", inputs: { text: "text", type: "type", maxWidth: "maxWidth", leadingIcon: "leadingIcon", testId: "testId" }, outputs: { onAction: "onAction" }, ngImport: i0, template: `
4437
4449
  <goa-menu-button
4438
4450
  [attr.text]="text"
4439
4451
  [attr.type]="type"
4452
+ [attr.max-width]="maxWidth"
4453
+ [attr.leading-icon]="leadingIcon"
4440
4454
  [attr.testid]="testId"
4441
4455
  (_action)="_onAction($event)"
4442
4456
  >
@@ -4454,6 +4468,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
4454
4468
  <goa-menu-button
4455
4469
  [attr.text]="text"
4456
4470
  [attr.type]="type"
4471
+ [attr.max-width]="maxWidth"
4472
+ [attr.leading-icon]="leadingIcon"
4457
4473
  [attr.testid]="testId"
4458
4474
  (_action)="_onAction($event)"
4459
4475
  >
@@ -4466,6 +4482,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
4466
4482
  type: Input
4467
4483
  }], type: [{
4468
4484
  type: Input
4485
+ }], maxWidth: [{
4486
+ type: Input
4487
+ }], leadingIcon: [{
4488
+ type: Input
4469
4489
  }], testId: [{
4470
4490
  type: Input
4471
4491
  }], onAction: [{