@ni/nimble-angular 8.2.6 → 8.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/bundles/ni-nimble-angular.umd.js +14 -2
- package/bundles/ni-nimble-angular.umd.js.map +1 -1
- package/directives/combobox/nimble-combobox.directive.d.ts +4 -1
- package/esm2015/directives/combobox/nimble-combobox.directive.js +11 -3
- package/fesm2015/ni-nimble-angular.js +10 -2
- package/fesm2015/ni-nimble-angular.js.map +1 -1
- package/package.json +2 -2
|
@@ -984,6 +984,16 @@
|
|
|
984
984
|
this.renderer = renderer;
|
|
985
985
|
this.elementRef = elementRef;
|
|
986
986
|
}
|
|
987
|
+
Object.defineProperty(NimbleComboboxDirective.prototype, "appearance", {
|
|
988
|
+
get: function () {
|
|
989
|
+
return this.elementRef.nativeElement.appearance;
|
|
990
|
+
},
|
|
991
|
+
set: function (value) {
|
|
992
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
993
|
+
},
|
|
994
|
+
enumerable: false,
|
|
995
|
+
configurable: true
|
|
996
|
+
});
|
|
987
997
|
Object.defineProperty(NimbleComboboxDirective.prototype, "disabled", {
|
|
988
998
|
get: function () {
|
|
989
999
|
return this.elementRef.nativeElement.disabled;
|
|
@@ -1029,13 +1039,15 @@
|
|
|
1029
1039
|
return NimbleComboboxDirective;
|
|
1030
1040
|
}());
|
|
1031
1041
|
NimbleComboboxDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: NimbleComboboxDirective, deps: [{ token: i0__namespace.Renderer2 }, { token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
1032
|
-
NimbleComboboxDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleComboboxDirective, selector: "nimble-combobox", inputs: { disabled: "disabled", autocomplete: "autocomplete", placeholder: "placeholder", errorText: ["error-text", "errorText"] }, ngImport: i0__namespace });
|
|
1042
|
+
NimbleComboboxDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleComboboxDirective, selector: "nimble-combobox", inputs: { appearance: "appearance", disabled: "disabled", autocomplete: "autocomplete", placeholder: "placeholder", errorText: ["error-text", "errorText"] }, ngImport: i0__namespace });
|
|
1033
1043
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: NimbleComboboxDirective, decorators: [{
|
|
1034
1044
|
type: i0.Directive,
|
|
1035
1045
|
args: [{
|
|
1036
1046
|
selector: 'nimble-combobox',
|
|
1037
1047
|
}]
|
|
1038
|
-
}], ctorParameters: function () { return [{ type: i0__namespace.Renderer2 }, { type: i0__namespace.ElementRef }]; }, propDecorators: {
|
|
1048
|
+
}], ctorParameters: function () { return [{ type: i0__namespace.Renderer2 }, { type: i0__namespace.ElementRef }]; }, propDecorators: { appearance: [{
|
|
1049
|
+
type: i0.Input
|
|
1050
|
+
}], disabled: [{
|
|
1039
1051
|
type: i0.Input
|
|
1040
1052
|
}], autocomplete: [{
|
|
1041
1053
|
type: i0.Input
|