gd-bs 6.6.88 → 6.6.89
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
|
@@ -141,7 +141,7 @@ class _InputGroup extends Base<IInputGroupProps> implements IInputGroup {
|
|
|
141
141
|
callbackValue = elInput.value;
|
|
142
142
|
|
|
143
143
|
// Call the change event
|
|
144
|
-
this.props.onChange(
|
|
144
|
+
this.props.onChange(this.getValue(), ev);
|
|
145
145
|
}
|
|
146
146
|
});
|
|
147
147
|
}
|
|
@@ -180,7 +180,7 @@ class _InputGroup extends Base<IInputGroupProps> implements IInputGroup {
|
|
|
180
180
|
callbackValue = currentValue;
|
|
181
181
|
|
|
182
182
|
// Call the events
|
|
183
|
-
this.props.onChange ? this.props.onChange(
|
|
183
|
+
this.props.onChange ? this.props.onChange(this.getValue(), ev) : null;
|
|
184
184
|
this.props.onClear && callbackValue == "" ? this.props.onClear() : null;
|
|
185
185
|
}
|
|
186
186
|
}
|