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
/** Input mask, used in keyboard mode read more <a href="https://github.com/text-mask/text-mask/blob/master/componentDocumentation.md#readme">here</a> */
103
103
mask?: any;
104
104
pipe?: any;
105
+
keepCharPositions?: boolean;
105
106
onChange: (date: MaterialUiPickersDate)=>void;
106
107
onClear?: ()=>void;
107
108
/** On/off manual keyboard input mode */
@@ -174,6 +175,7 @@ export class DateTextField extends React.PureComponent<DateTextFieldProps> {
174
175
onError: PropTypes.func,
175
176
onInputChange: PropTypes.func,
176
177
pipe: PropTypes.func,
178
+
keepCharPositions: PropTypes.bool,
177
179
};
178
180
179
181
publicstaticdefaultProps={
@@ -204,6 +206,7 @@ export class DateTextField extends React.PureComponent<DateTextFieldProps> {
0 commit comments