@ni/nimble-angular 20.6.0 → 20.7.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.
@@ -8745,6 +8745,12 @@ class NimbleMenuButtonDirective {
8745
8745
  set appearance(value) {
8746
8746
  this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
8747
8747
  }
8748
+ get appearanceVariant() {
8749
+ return this.elementRef.nativeElement.appearanceVariant;
8750
+ }
8751
+ set appearanceVariant(value) {
8752
+ this.renderer.setProperty(this.elementRef.nativeElement, 'appearanceVariant', value);
8753
+ }
8748
8754
  get disabled() {
8749
8755
  return this.elementRef.nativeElement.disabled;
8750
8756
  }
@@ -8769,7 +8775,7 @@ class NimbleMenuButtonDirective {
8769
8775
  }
8770
8776
  }
8771
8777
  NimbleMenuButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleMenuButtonDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
8772
- NimbleMenuButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleMenuButtonDirective, selector: "nimble-menu-button", inputs: { appearance: "appearance", disabled: "disabled", contentHidden: ["content-hidden", "contentHidden"], open: "open" }, ngImport: i0 });
8778
+ NimbleMenuButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleMenuButtonDirective, selector: "nimble-menu-button", inputs: { appearance: "appearance", appearanceVariant: ["appearance-variant", "appearanceVariant"], disabled: "disabled", contentHidden: ["content-hidden", "contentHidden"], open: "open" }, ngImport: i0 });
8773
8779
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleMenuButtonDirective, decorators: [{
8774
8780
  type: Directive,
8775
8781
  args: [{
@@ -8777,6 +8783,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8777
8783
  }]
8778
8784
  }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
8779
8785
  type: Input
8786
+ }], appearanceVariant: [{
8787
+ type: Input,
8788
+ args: ['appearance-variant']
8780
8789
  }], disabled: [{
8781
8790
  type: Input
8782
8791
  }], contentHidden: [{
@@ -10417,6 +10426,12 @@ class NimbleToggleButtonDirective {
10417
10426
  set appearance(value) {
10418
10427
  this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
10419
10428
  }
10429
+ get appearanceVariant() {
10430
+ return this.elementRef.nativeElement.appearanceVariant;
10431
+ }
10432
+ set appearanceVariant(value) {
10433
+ this.renderer.setProperty(this.elementRef.nativeElement, 'appearanceVariant', value);
10434
+ }
10420
10435
  get disabled() {
10421
10436
  return this.elementRef.nativeElement.disabled;
10422
10437
  }
@@ -10441,7 +10456,7 @@ class NimbleToggleButtonDirective {
10441
10456
  }
10442
10457
  }
10443
10458
  NimbleToggleButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleToggleButtonDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
10444
- NimbleToggleButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleToggleButtonDirective, selector: "nimble-toggle-button", inputs: { appearance: "appearance", disabled: "disabled", contentHidden: ["content-hidden", "contentHidden"], checked: "checked" }, ngImport: i0 });
10459
+ NimbleToggleButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleToggleButtonDirective, selector: "nimble-toggle-button", inputs: { appearance: "appearance", appearanceVariant: ["appearance-variant", "appearanceVariant"], disabled: "disabled", contentHidden: ["content-hidden", "contentHidden"], checked: "checked" }, ngImport: i0 });
10445
10460
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleToggleButtonDirective, decorators: [{
10446
10461
  type: Directive,
10447
10462
  args: [{
@@ -10449,6 +10464,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10449
10464
  }]
10450
10465
  }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
10451
10466
  type: Input
10467
+ }], appearanceVariant: [{
10468
+ type: Input,
10469
+ args: ['appearance-variant']
10452
10470
  }], disabled: [{
10453
10471
  type: Input
10454
10472
  }], contentHidden: [{