- A date input element made with [dw-input](https://github.com/DreamworldSolutions/dw-input) use to take date input from the user.
npm install @dreamworld/dw-date-input- A date input element made with dw-input use to take date input from the user.
`` html`
npm install --save @dreamworld/dw-date-input
` html`
import '@dreamworld/dw-date-input/dw-date-input';
Triggers value-changed event on value change.
Supports all the features of dw-input like disabled, readOnly, hint etc. Additional features are as below:
- Takes user input in below formates
- mm/dd/yyy (Default)
- dd/mm/yyyy
- dd-mm-yyyy
- mm-dd-yyyy
- Autofills remaining places and formates date
- e.g. If user enters 1212, value will be 12/12/2019
- Performs validation and show error message accordingly
- also performs validation for minDate and maxDate
#### Set inputFormat property to set input format` html`
#### Use value property to show pre-filled value` html`
#### Use minDate and maxDate property for min and max date validation` html``