You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If true, changes to input will be sent back to the Dash server only on enter or when losing focus.
184
-
* If it's false, it will sent the value back on every change.
185
-
*/
186
-
debounce: PropTypes.bool,
187
-
188
-
/**
189
-
* The type of control to render.
190
-
*/
191
-
type: PropTypes.oneOf([
192
-
// Only allowing the input types with wide browser compatibility
193
-
'text',
194
-
'number',
195
-
'password',
196
-
'email',
197
-
'range',
198
-
'search',
199
-
'tel',
200
-
'url',
201
-
'hidden',
202
-
]),
203
-
204
113
/**
205
114
* The name of the control, which is submitted with the form data.
206
115
*/
207
116
name: PropTypes.string,
208
117
209
-
/**
210
-
* A regular expression that the control's value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is text, search, tel, url, email, or password, otherwise it is ignored. The regular expression language is the same as JavaScript RegExp algorithm, with the 'u' parameter that makes it treat the pattern as a sequence of unicode code points. The pattern is not surrounded by forward slashes.
211
-
*/
212
-
pattern: PropTypes.string,
213
-
214
-
/**
215
-
* A hint to the user of what can be entered in the control . The placeholder text must not contain carriage returns or line-feeds. Note: Do not use the placeholder attribute instead of a <label> element, their purposes are different. The <label> attribute describes the role of the form element (i.e. it indicates what kind of information is expected), and the placeholder attribute is a hint about the format that the content should take. There are cases in which the placeholder attribute is never displayed to the user, so the form must be understandable without it.
0 commit comments