gd-bs 5.6.3 → 5.6.6

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.
@@ -202,7 +202,7 @@ var _InputGroup = /** @class */ (function (_super) {
202
202
  // Update the textbox
203
203
  this.props.id ? textarea.id = this.props.id : null;
204
204
  this.props.placeholder ? textarea.placeholder = this.props.placeholder : null;
205
- textarea.disable = this.props.isDisabled ? true : false;
205
+ textarea.disabled = this.props.isDisabled ? true : false;
206
206
  textarea.readOnly = this.props.isReadonly ? true : false;
207
207
  textarea.rows = this.props.rows;
208
208
  this.props.title ? textarea.title = this.props.title : null;
@@ -216,7 +216,7 @@ var _InputGroup = /** @class */ (function (_super) {
216
216
  // Update the textbox
217
217
  this.props.id ? input.id = this.props.id : null;
218
218
  this.props.placeholder ? input.placeholder = this.props.placeholder : null;
219
- input.disable = this.props.isDisabled ? true : false;
219
+ input.disabled = this.props.isDisabled ? true : false;
220
220
  input.readOnly = this.props.isReadonly ? true : false;
221
221
  this.props.title ? input.title = this.props.title : null;
222
222
  typeof (this.props.min) === "number" ? input.min = this.props.min + "" : null;