Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/components/TextInput/baseTextInputPropTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@ const propTypes = {

/** Saves a draft of the input value when used in a form */
shouldSaveDraft: PropTypes.bool,

/** Character limit for the input */
maxLength: PropTypes.number,
Comment thread
luacmartins marked this conversation as resolved.

/** Hint microcopy to be displayed under the input */
hint: PropTypes.string,
};

const defaultProps = {
Expand All @@ -72,8 +66,6 @@ const defaultProps = {
defaultValue: undefined,
forceActiveLabel: false,
shouldSaveDraft: false,
maxLength: undefined,
hint: '',
};

export {propTypes, defaultProps};