@open-rlb/ng-bootstrap 3.1.1 → 3.1.3

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.
@@ -9907,7 +9907,7 @@ class SwitchComponent extends AbstractComponent {
9907
9907
  constructor(idService, control) {
9908
9908
  super(idService, control);
9909
9909
  this.control = control;
9910
- this.disabled = input(false, { transform: booleanAttribute });
9910
+ this.disabled = input(false, { ...(ngDevMode ? { debugName: "disabled" } : {}), transform: booleanAttribute });
9911
9911
  this.readonly = input(false, { ...(ngDevMode ? { debugName: "readonly" } : {}), transform: booleanAttribute });
9912
9912
  this.size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : []));
9913
9913
  this.userDefinedId = input('', { ...(ngDevMode ? { debugName: "userDefinedId" } : {}), alias: 'id' });