@ni/nimble-angular 4.5.0 → 4.6.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.
- package/bundles/ni-nimble-angular.umd.js +13 -1
- package/bundles/ni-nimble-angular.umd.js.map +1 -1
- package/directives/checkbox/nimble-checkbox.directive.d.ts +3 -1
- package/esm2015/directives/checkbox/nimble-checkbox.directive.js +10 -2
- package/fesm2015/ni-nimble-angular.js +9 -1
- package/fesm2015/ni-nimble-angular.js.map +1 -1
- package/package.json +2 -2
|
@@ -735,10 +735,20 @@
|
|
|
735
735
|
enumerable: false,
|
|
736
736
|
configurable: true
|
|
737
737
|
});
|
|
738
|
+
Object.defineProperty(NimbleCheckboxDirective.prototype, "indeterminate", {
|
|
739
|
+
get: function () {
|
|
740
|
+
return this.elementRef.nativeElement.indeterminate;
|
|
741
|
+
},
|
|
742
|
+
set: function (value) {
|
|
743
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'indeterminate', toBooleanProperty(value));
|
|
744
|
+
},
|
|
745
|
+
enumerable: false,
|
|
746
|
+
configurable: true
|
|
747
|
+
});
|
|
738
748
|
return NimbleCheckboxDirective;
|
|
739
749
|
}());
|
|
740
750
|
NimbleCheckboxDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: NimbleCheckboxDirective, deps: [{ token: i0__namespace.Renderer2 }, { token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
741
|
-
NimbleCheckboxDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleCheckboxDirective, selector: "nimble-checkbox", inputs: { disabled: "disabled", checked: "checked" }, ngImport: i0__namespace });
|
|
751
|
+
NimbleCheckboxDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleCheckboxDirective, selector: "nimble-checkbox", inputs: { disabled: "disabled", checked: "checked", indeterminate: "indeterminate" }, ngImport: i0__namespace });
|
|
742
752
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: NimbleCheckboxDirective, decorators: [{
|
|
743
753
|
type: i0.Directive,
|
|
744
754
|
args: [{
|
|
@@ -748,6 +758,8 @@
|
|
|
748
758
|
type: i0.Input
|
|
749
759
|
}], checked: [{
|
|
750
760
|
type: i0.Input
|
|
761
|
+
}], indeterminate: [{
|
|
762
|
+
type: i0.Input
|
|
751
763
|
}] } });
|
|
752
764
|
|
|
753
765
|
var NimbleCheckboxModule = /** @class */ (function () {
|