@elderbyte/ngx-starter 15.6.0 → 15.6.2

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.
@@ -6210,18 +6210,21 @@ class ElderFormFieldControlBase extends ValueAccessorBase {
6210
6210
  }
6211
6211
  set required(value) {
6212
6212
  this._required = coerceBooleanProperty(value);
6213
+ this.emitStateChange();
6213
6214
  }
6214
6215
  get required() {
6215
6216
  return this._required;
6216
6217
  }
6217
6218
  set disabled(value) {
6218
6219
  this._disabled = coerceBooleanProperty(value);
6220
+ this.emitStateChange();
6219
6221
  }
6220
6222
  get disabled() {
6221
6223
  return this._disabled;
6222
6224
  }
6223
6225
  set readonly(value) {
6224
6226
  this._readonly = coerceBooleanProperty(value);
6227
+ this.emitStateChange();
6225
6228
  }
6226
6229
  get readonly() {
6227
6230
  return this._readonly;