@ni/nimble-angular 33.2.0 → 33.3.1

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.
@@ -2093,12 +2093,18 @@ class NimbleCheckboxDirective {
2093
2093
  set errorVisible(value) {
2094
2094
  this.renderer.setProperty(this.elementRef.nativeElement, 'errorVisible', toBooleanProperty(value));
2095
2095
  }
2096
+ get appearanceIndeterminate() {
2097
+ return this.elementRef.nativeElement.appearanceIndeterminate;
2098
+ }
2099
+ set appearanceIndeterminate(value) {
2100
+ this.renderer.setProperty(this.elementRef.nativeElement, 'appearanceIndeterminate', toBooleanProperty(value));
2101
+ }
2096
2102
  constructor(renderer, elementRef) {
2097
2103
  this.renderer = renderer;
2098
2104
  this.elementRef = elementRef;
2099
2105
  }
2100
2106
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: NimbleCheckboxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2101
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.19", type: NimbleCheckboxDirective, isStandalone: false, selector: "nimble-checkbox", inputs: { disabled: "disabled", checked: "checked", indeterminate: "indeterminate", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"] }, ngImport: i0 }); }
2107
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.19", type: NimbleCheckboxDirective, isStandalone: false, selector: "nimble-checkbox", inputs: { disabled: "disabled", checked: "checked", indeterminate: "indeterminate", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], appearanceIndeterminate: ["appearance-indeterminate", "appearanceIndeterminate"] }, ngImport: i0 }); }
2102
2108
  }
2103
2109
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: NimbleCheckboxDirective, decorators: [{
2104
2110
  type: Directive,
@@ -2118,6 +2124,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
2118
2124
  }], errorVisible: [{
2119
2125
  type: Input,
2120
2126
  args: ['error-visible']
2127
+ }], appearanceIndeterminate: [{
2128
+ type: Input,
2129
+ args: ['appearance-indeterminate']
2121
2130
  }] } });
2122
2131
 
2123
2132
  class NimbleCheckboxModule {