@ni/nimble-angular 20.2.21 → 20.3.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/list-option/nimble-list-option.directive.d.ts +5 -1
- package/esm2020/directives/list-option/nimble-list-option.directive.mjs +18 -2
- package/esm2020/select/testing/ni-nimble-angular-select-testing.mjs +5 -0
- package/esm2020/select/testing/public-api.mjs +2 -0
- package/esm2020/select/testing/select.pageobject.mjs +3 -0
- package/fesm2015/ni-nimble-angular-select-testing.mjs +6 -0
- package/fesm2015/ni-nimble-angular-select-testing.mjs.map +1 -0
- package/fesm2015/ni-nimble-angular.mjs +17 -1
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular-select-testing.mjs +6 -0
- package/fesm2020/ni-nimble-angular-select-testing.mjs.map +1 -0
- package/fesm2020/ni-nimble-angular.mjs +17 -1
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +10 -2
- package/select/testing/index.d.ts +5 -0
- package/select/testing/public-api.d.ts +1 -0
- package/select/testing/select.pageobject.d.ts +2 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-nimble-angular-select-testing.mjs","sources":["../../../../projects/ni/nimble-angular/select/testing/ni-nimble-angular-select-testing.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;AAAA;;AAEG"}
|
|
@@ -8356,13 +8356,25 @@ class NimbleListOptionDirective {
|
|
|
8356
8356
|
set disabled(value) {
|
|
8357
8357
|
this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
|
|
8358
8358
|
}
|
|
8359
|
+
get selected() {
|
|
8360
|
+
return this.elementRef.nativeElement.selected;
|
|
8361
|
+
}
|
|
8362
|
+
set selected(value) {
|
|
8363
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'selected', toBooleanProperty(value));
|
|
8364
|
+
}
|
|
8365
|
+
get hidden() {
|
|
8366
|
+
return this.elementRef.nativeElement.hidden;
|
|
8367
|
+
}
|
|
8368
|
+
set hidden(value) {
|
|
8369
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'hidden', toBooleanProperty(value));
|
|
8370
|
+
}
|
|
8359
8371
|
constructor(elementRef, renderer) {
|
|
8360
8372
|
this.elementRef = elementRef;
|
|
8361
8373
|
this.renderer = renderer;
|
|
8362
8374
|
}
|
|
8363
8375
|
}
|
|
8364
8376
|
NimbleListOptionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleListOptionDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
8365
|
-
NimbleListOptionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleListOptionDirective, selector: "nimble-list-option", inputs: { disabled: "disabled" }, ngImport: i0 });
|
|
8377
|
+
NimbleListOptionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleListOptionDirective, selector: "nimble-list-option", inputs: { disabled: "disabled", selected: "selected", hidden: "hidden" }, ngImport: i0 });
|
|
8366
8378
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleListOptionDirective, decorators: [{
|
|
8367
8379
|
type: Directive,
|
|
8368
8380
|
args: [{
|
|
@@ -8370,6 +8382,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8370
8382
|
}]
|
|
8371
8383
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { disabled: [{
|
|
8372
8384
|
type: Input
|
|
8385
|
+
}], selected: [{
|
|
8386
|
+
type: Input
|
|
8387
|
+
}], hidden: [{
|
|
8388
|
+
type: Input
|
|
8373
8389
|
}] } });
|
|
8374
8390
|
|
|
8375
8391
|
/**
|