@ni/nimble-angular 8.4.1 → 8.4.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.
@@ -901,6 +901,16 @@
901
901
  NimbleComboboxControlValueAccessorDirective.prototype.registerOnTouched = function (fn) {
902
902
  this.onTouched = fn;
903
903
  };
904
+ /**
905
+ * @description
906
+ * Function that is called by the forms API when the control status changes to
907
+ * or from 'DISABLED'. Depending on the status, it enables or disables the
908
+ * combobox.
909
+ * @param isDisabled The disabled status to set on the combobox
910
+ */
911
+ NimbleComboboxControlValueAccessorDirective.prototype.setDisabledState = function (isDisabled) {
912
+ this.setProperty('disabled', isDisabled);
913
+ };
904
914
  /**
905
915
  * @internal
906
916
  */