osl-base-extended 8.5.0 → 8.7.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.
@@ -1731,10 +1731,18 @@ class OslAutocomplete extends baseComponent {
1731
1731
  cdr;
1732
1732
  label = '';
1733
1733
  required = false;
1734
+ _isDisabled;
1734
1735
  set disabled(val) {
1736
+ this._isDisabled = val;
1735
1737
  if (val) {
1736
1738
  this.inputControl.disable();
1737
1739
  }
1740
+ else {
1741
+ this.inputControl.enable();
1742
+ }
1743
+ }
1744
+ get disabled() {
1745
+ return this._isDisabled;
1738
1746
  }
1739
1747
  _model = null;
1740
1748
  _object;