Skip to content

Commit 17cdbd3

Browse files
committed
Update props description
1 parent 4788f24 commit 17cdbd3

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

docs/src/pages/components/cdk-components/number-input/api.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const NumberInputPropsTable = () => {
8484
user is lower than min, the onBlur and onChange functions will be
8585
called with the current value and an internal error informing that the
8686
current value is not correct. If a valid state is reached, the error
87-
parameter will be null in both events.
87+
parameter will not be defined in both events.
8888
</td>
8989
</tr>
9090
<tr>
@@ -95,7 +95,7 @@ const NumberInputPropsTable = () => {
9595
user surpasses max, the onBlur and onChange functions will be called
9696
with the current value and an internal error informing that the
9797
current value is not correct. If a valid state is reached, the error
98-
parameter will be null in both events.
98+
parameter will not be defined in both events.
9999
</td>
100100
</tr>
101101
<tr>

docs/src/pages/components/cdk-components/password-input/api.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const PasswordInputPropsTable = () => {
8989
match the pattern, the onBlur and onChange functions will be called
9090
with the current value and an internal error informing that this value
9191
does not match the pattern. If the pattern is met, the error parameter
92-
of both events will be null.
92+
of both events will not be defined.
9393
</td>
9494
</tr>
9595
<tr>
@@ -102,7 +102,7 @@ const PasswordInputPropsTable = () => {
102102
the onBlur and onChange functions will be called with the current
103103
value and an internal error informing that the value length does not
104104
comply the specified range. If a valid length is reached, the error
105-
parameter of both events will be null.
105+
parameter of both events will not be defined.
106106
</td>
107107
</tr>
108108
<tr>
@@ -115,7 +115,7 @@ const PasswordInputPropsTable = () => {
115115
the onBlur and onChange functions will be called with the current
116116
value and an internal error informing that the value length does not
117117
comply the specified range. If a valid length is reached, the error
118-
parameter of both events will be null.
118+
parameter of both events will not be defined.
119119
</td>
120120
</tr>
121121
<tr>

docs/src/pages/components/cdk-components/text-input/api.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const textInputPropsTable = () => {
164164
pattern, the onBlur and onChange functions will be called with the
165165
current value and an internal error informing that this value does not
166166
match the pattern. If the pattern is met, the error parameter of both
167-
events will be null.
167+
events will not be defined.
168168
</td>
169169
</tr>
170170
<tr>
@@ -177,7 +177,7 @@ const textInputPropsTable = () => {
177177
the onBlur and onChange functions will be called with the current
178178
value and an internal error informing that the value length does not
179179
comply the specified range. If a valid length is reached, the error
180-
parameter of both events will be null.
180+
parameter of both events will not be defined.
181181
</td>
182182
</tr>
183183
<tr>
@@ -190,7 +190,7 @@ const textInputPropsTable = () => {
190190
the onBlur and onChange functions will be called with the current
191191
value and an internal error informing that the value length does not
192192
comply the specified range. If a valid length is reached, the error
193-
parameter of both events will be null.
193+
parameter of both events will not be defined.
194194
</td>
195195
</tr>
196196
<tr>

docs/src/pages/components/cdk-components/textarea/api.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const TextareaPropsTable = () => {
139139
pattern, the onBlur and onChange functions will be called with the
140140
current value and an internal error informing that this value does not
141141
match the pattern. If the pattern is met, the error parameter of both
142-
events will be null.
142+
events will not be defined.
143143
</td>
144144
</tr>
145145
<tr>
@@ -152,7 +152,7 @@ const TextareaPropsTable = () => {
152152
the onBlur and onChange functions will be called with the current
153153
value and an internal error informing that the value length does not
154154
comply the specified range. If a valid length is reached, the error
155-
parameter of both events will be null.
155+
parameter of both events will not be defined.
156156
</td>
157157
</tr>
158158
<tr>
@@ -165,7 +165,7 @@ const TextareaPropsTable = () => {
165165
the onBlur and onChange functions will be called with the current
166166
value and an internal error informing that the value length does not
167167
comply the specified range. If a valid length is reached, the error
168-
parameter of both events will be null.
168+
parameter of both events will not be defined.
169169
</td>
170170
</tr>
171171
<tr>

lib/src/number-input/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ type Props = {
5555
* lower than min, the onBlur and onChange functions will be called with
5656
* the current value and an internal error informing that the current
5757
* value is not correct. If a valid state is reached, the error parameter
58-
* will be null in both events.
58+
* will not be defined in both events.
5959
*/
6060
min?: number;
6161
/**
6262
* Maximum value allowed by the number input. If the typed value by the user
6363
* surpasses max, the onBlur and onChange functions will be called with
6464
* the current value and an internal error informing that the current
6565
* value is not correct. If a valid state is reached, the error parameter
66-
* will be null in both events.
66+
* will not be defined in both events.
6767
*/
6868
max?: number;
6969
/**

lib/src/password-input/types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ type Props = {
5656
* the pattern, the onBlur and onChange functions will be called with the
5757
* current value and an internal error informing that this value does not
5858
* match the pattern. If the pattern is met, the error parameter of both
59-
* events will be null.
59+
* events will not be defined.
6060
*/
6161
pattern?: string;
6262
/**
@@ -66,7 +66,7 @@ type Props = {
6666
* comply the minimum length, the onBlur and onChange functions will be called
6767
* with the current value and an internal error informing that the value
6868
* length does not comply the specified range. If a valid length is
69-
* reached, the error parameter of both events will be null.
69+
* reached, the error parameter of both events will not be defined.
7070
*/
7171
minLength?: number;
7272
/**
@@ -76,7 +76,7 @@ type Props = {
7676
* comply the maximum length, the onBlur and onChange functions will be called
7777
* with the current value and an internal error informing that the value
7878
* length does not comply the specified range. If a valid length is
79-
* reached, the error parameter of both events will be null.
79+
* reached, the error parameter of both events will not be defined.
8080
*/
8181
maxLength?: number;
8282
/**

lib/src/text-input/types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ type Props = {
111111
* pattern, the onBlur and onChange functions will be called with the
112112
* current value and an internal error informing that this value does not
113113
* match the pattern. If the pattern is met, the error parameter of both
114-
* events will be null.
114+
* events will not be defined.
115115
*/
116116
pattern?: string;
117117
/**
@@ -121,7 +121,7 @@ type Props = {
121121
* comply the minimum length, the onBlur and onChange functions will be called
122122
* with the current value and an internal error informing that the value
123123
* length does not comply the specified range. If a valid length is
124-
* reached, the error parameter of both events will be null.
124+
* reached, the error parameter of both events will not be defined.
125125
*/
126126
minLength?: number;
127127
/**
@@ -131,7 +131,7 @@ type Props = {
131131
* comply the maximum length, the onBlur and onChange functions will be called
132132
* with the current value and an internal error informing that the value
133133
* length does not comply the specified range. If a valid length is
134-
* reached, the error parameter of both events will be null.
134+
* reached, the error parameter of both events will not be defined.
135135
*/
136136
maxLength?: number;
137137
/**

lib/src/textarea/types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ type Props = {
8383
* pattern, the onBlur and onChange functions will be called with the
8484
* current value and an internal error informing that this value does not
8585
* match the pattern. If the pattern is met, the error parameter of both
86-
* events will be null.
86+
* events will not be defined.
8787
*/
8888
pattern?: string;
8989
/**
@@ -93,7 +93,7 @@ type Props = {
9393
* comply the minimum length, the onBlur and onChange functions will be called
9494
* with the current value and an internal error informing that the value
9595
* length does not comply the specified range. If a valid length is
96-
* reached, the error parameter of both events will be null.
96+
* reached, the error parameter of both events will not be defined.
9797
*/
9898
minLength?: number;
9999
/**
@@ -103,7 +103,7 @@ type Props = {
103103
* comply the maximum length, the onBlur and onChange functions will be called
104104
* with the current value and an internal error informing that the value
105105
* length does not comply the specified range. If a valid length is
106-
* reached, the error parameter of both events will be null.
106+
* reached, the error parameter of both events will not be defined.
107107
*/
108108
maxLength?: number;
109109
/**

0 commit comments

Comments
 (0)