Skip to content

Commit ca9d8cb

Browse files
author
Edward Xiao
committed
no message
1 parent 0722170 commit ca9d8cb

File tree

10 files changed

+12
-14
lines changed

10 files changed

+12
-14
lines changed

lib/components/Checkbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function (_React$Component) {
193193
var onFocus = this.props.onFocus;
194194

195195
if (onFocus) {
196-
this.check();
196+
// this.check();
197197
onFocus(e);
198198
}
199199
}

lib/components/Radiobox.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ function (_React$Component) {
141141
key: "componentDidUpdate",
142142
value: function componentDidUpdate(prevProps, prevState) {
143143
if (this.state.validate !== prevState.validate) {
144-
debugger;
145144
this.check();
146145
}
147146
}

lib/components/Textarea.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ function (_React$Component) {
208208
var onFocus = this.props.onFocus;
209209

210210
if (onFocus) {
211-
this.check();
211+
// this.check();
212212
onFocus(e);
213213
}
214214
}

lib/components/Textbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ function (_React$Component) {
227227
var onFocus = this.props.onFocus;
228228

229229
if (onFocus) {
230-
this.check();
230+
// this.check();
231231
onFocus(e);
232232
}
233233
}

lib/react-inputs-validation.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-inputs-validation",
3-
"version": "2.1.6",
3+
"version": "2.1.7",
44
"description": "React inputs validation component",
55
"main": "index.js",
66
"repository": {

src/js/Inputs/Radiobox.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ class Index extends React.Component<Props, State> {
155155

156156
componentDidUpdate(prevProps: Props, prevState: State) {
157157
if (this.state.validate !== prevState.validate) {
158-
debugger;
159158
this.check();
160159
}
161160
}

0 commit comments

Comments
 (0)