@ni/nimble-angular 17.0.17 → 17.1.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.
- package/directives/combobox/nimble-combobox.directive.d.ts +1 -0
- package/esm2020/directives/combobox/nimble-combobox.directive.mjs +4 -1
- package/fesm2015/ni-nimble-angular.mjs +3 -0
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +3 -0
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1400,6 +1400,9 @@ class NimbleComboboxDirective {
|
|
|
1400
1400
|
set errorVisible(value) {
|
|
1401
1401
|
this.renderer.setProperty(this.elementRef.nativeElement, 'errorVisible', toBooleanProperty(value));
|
|
1402
1402
|
}
|
|
1403
|
+
get value() {
|
|
1404
|
+
return this.elementRef.nativeElement.value;
|
|
1405
|
+
}
|
|
1403
1406
|
}
|
|
1404
1407
|
NimbleComboboxDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleComboboxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1405
1408
|
NimbleComboboxDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: NimbleComboboxDirective, selector: "nimble-combobox", inputs: { appearance: "appearance", disabled: "disabled", autocomplete: "autocomplete", placeholder: "placeholder", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"] }, ngImport: i0 });
|