gd-bs 5.6.3 → 5.6.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.
package/package.json
CHANGED
|
@@ -205,7 +205,7 @@ class _InputGroup extends Base<IInputGroupProps> implements IInputGroup {
|
|
|
205
205
|
// Update the textbox
|
|
206
206
|
this.props.id ? textarea.id = this.props.id : null;
|
|
207
207
|
this.props.placeholder ? textarea.placeholder = this.props.placeholder : null;
|
|
208
|
-
textarea.
|
|
208
|
+
textarea.disabled = this.props.isDisabled ? true : false;
|
|
209
209
|
textarea.readOnly = this.props.isReadonly ? true : false;
|
|
210
210
|
textarea.rows = this.props.rows;
|
|
211
211
|
this.props.title ? textarea.title = this.props.title : null;
|
|
@@ -219,7 +219,7 @@ class _InputGroup extends Base<IInputGroupProps> implements IInputGroup {
|
|
|
219
219
|
// Update the textbox
|
|
220
220
|
this.props.id ? input.id = this.props.id : null;
|
|
221
221
|
this.props.placeholder ? input.placeholder = this.props.placeholder : null;
|
|
222
|
-
input.
|
|
222
|
+
input.disabled = this.props.isDisabled ? true : false;
|
|
223
223
|
input.readOnly = this.props.isReadonly ? true : false;
|
|
224
224
|
this.props.title ? input.title = this.props.title : null;
|
|
225
225
|
typeof (this.props.min) === "number" ? input.min = this.props.min + "" : null;
|