@ni/nimble-angular 17.3.1 → 17.4.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 +3 -1
- package/esm2020/directives/combobox/nimble-combobox.directive.mjs +10 -2
- package/fesm2015/ni-nimble-angular.mjs +9 -1
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +9 -1
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1414,9 +1414,15 @@ class NimbleComboboxDirective {
|
|
|
1414
1414
|
get value() {
|
|
1415
1415
|
return this.elementRef.nativeElement.value;
|
|
1416
1416
|
}
|
|
1417
|
+
get open() {
|
|
1418
|
+
return this.elementRef.nativeElement.open;
|
|
1419
|
+
}
|
|
1420
|
+
set open(value) {
|
|
1421
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'open', toBooleanProperty(value));
|
|
1422
|
+
}
|
|
1417
1423
|
}
|
|
1418
1424
|
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 });
|
|
1419
|
-
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 });
|
|
1425
|
+
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"], open: "open" }, ngImport: i0 });
|
|
1420
1426
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleComboboxDirective, decorators: [{
|
|
1421
1427
|
type: Directive,
|
|
1422
1428
|
args: [{
|
|
@@ -1436,6 +1442,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
1436
1442
|
}], errorVisible: [{
|
|
1437
1443
|
type: Input,
|
|
1438
1444
|
args: ['error-visible']
|
|
1445
|
+
}], open: [{
|
|
1446
|
+
type: Input
|
|
1439
1447
|
}] } });
|
|
1440
1448
|
|
|
1441
1449
|
class NimbleComboboxModule {
|