@ni/nimble-angular 8.2.4 → 8.2.5
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 +4 -1
- package/bundles/ni-nimble-angular.umd.js.map +1 -1
- package/esm2015/directives/combobox/nimble-combobox-control-value-accessor.directive.js +5 -2
- package/fesm2015/ni-nimble-angular.js +4 -1
- package/fesm2015/ni-nimble-angular.js.map +1 -1
- package/package.json +2 -2
|
@@ -948,7 +948,7 @@
|
|
|
948
948
|
return NimbleComboboxControlValueAccessorDirective;
|
|
949
949
|
}());
|
|
950
950
|
NimbleComboboxControlValueAccessorDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: NimbleComboboxControlValueAccessorDirective, deps: [{ token: i0__namespace.Renderer2 }, { token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
951
|
-
NimbleComboboxControlValueAccessorDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleComboboxControlValueAccessorDirective, selector: "nimble-combobox[formControlName],nimble-combobox[formControl],nimble-combobox[ngModel]", inputs: { compareWith: "compareWith" }, host: { listeners: { "change": "onChange($event.target.value])", "blur": "onTouched()" } }, providers: [{
|
|
951
|
+
NimbleComboboxControlValueAccessorDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleComboboxControlValueAccessorDirective, selector: "nimble-combobox[formControlName],nimble-combobox[formControl],nimble-combobox[ngModel]", inputs: { compareWith: "compareWith" }, host: { listeners: { "input": "onChange($event.target.control.value])", "change": "onChange($event.target.value])", "blur": "onTouched()" } }, providers: [{
|
|
952
952
|
provide: forms.NG_VALUE_ACCESSOR,
|
|
953
953
|
useExisting: i0.forwardRef(function () { return NimbleComboboxControlValueAccessorDirective; }),
|
|
954
954
|
multi: true
|
|
@@ -966,6 +966,9 @@
|
|
|
966
966
|
}], ctorParameters: function () { return [{ type: i0__namespace.Renderer2 }, { type: i0__namespace.ElementRef }]; }, propDecorators: { compareWith: [{
|
|
967
967
|
type: i0.Input
|
|
968
968
|
}], onChange: [{
|
|
969
|
+
type: i0.HostListener,
|
|
970
|
+
args: ['input', ['$event.target.control.value]']]
|
|
971
|
+
}, {
|
|
969
972
|
type: i0.HostListener,
|
|
970
973
|
args: ['change', ['$event.target.value]']]
|
|
971
974
|
}], onTouched: [{
|