@ni/nimble-angular 8.2.3 → 8.2.4

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.
@@ -1001,6 +1001,16 @@
1001
1001
  enumerable: false,
1002
1002
  configurable: true
1003
1003
  });
1004
+ Object.defineProperty(NimbleComboboxDirective.prototype, "placeholder", {
1005
+ get: function () {
1006
+ return this.elementRef.nativeElement.placeholder;
1007
+ },
1008
+ set: function (value) {
1009
+ this.renderer.setProperty(this.elementRef.nativeElement, 'placeholder', value);
1010
+ },
1011
+ enumerable: false,
1012
+ configurable: true
1013
+ });
1004
1014
  Object.defineProperty(NimbleComboboxDirective.prototype, "errorText", {
1005
1015
  get: function () {
1006
1016
  return this.elementRef.nativeElement.errorText;
@@ -1016,7 +1026,7 @@
1016
1026
  return NimbleComboboxDirective;
1017
1027
  }());
1018
1028
  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 });
1019
- NimbleComboboxDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleComboboxDirective, selector: "nimble-combobox", inputs: { disabled: "disabled", autocomplete: "autocomplete", errorText: ["error-text", "errorText"] }, ngImport: i0__namespace });
1029
+ 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 });
1020
1030
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: NimbleComboboxDirective, decorators: [{
1021
1031
  type: i0.Directive,
1022
1032
  args: [{
@@ -1026,6 +1036,8 @@
1026
1036
  type: i0.Input
1027
1037
  }], autocomplete: [{
1028
1038
  type: i0.Input
1039
+ }], placeholder: [{
1040
+ type: i0.Input
1029
1041
  }], errorText: [{
1030
1042
  type: i0.Input,
1031
1043
  args: ['error-text']