mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-06 16:20:26 +08:00
Add inputFieldClass and disabled prop parameters to typings for react-input-calendar
This commit is contained in:
@@ -55,6 +55,14 @@ declare module reactInputCalendar {
|
||||
* Id that should be applied to the input field. Useful when using it with a label element.
|
||||
*/
|
||||
inputFieldId?: string;
|
||||
/**
|
||||
* Define the class name of the input field where the date picker represents its value.
|
||||
*/
|
||||
inputFieldClass?: string;
|
||||
/**
|
||||
* If true, the input field gets disabled and the icon next to it disappears.
|
||||
*/
|
||||
disabled?: boolean;
|
||||
}
|
||||
interface ReactInputCalendarState { }
|
||||
export class ReactInputCalendar extends __React.Component<ReactInputCalendarProps, ReactInputCalendarState> {
|
||||
|
||||
Reference in New Issue
Block a user