# NlpDateInput Documentation ## Installation ```bash jsrepo add ui/nlp-date-input ``` ## Components ### NlpDateInput The root component for the NLP Date Input. Allows users to enter dates in natural language and get suggestions. #### Props | Prop | Type | Default Value | Required | Bindable | Description | |------|------|--------------|----------|----------|-------------| | min | date | - | false | false | The minimum date allowed for suggestions. | | max | date | - | false | false | The maximum date allowed for suggestions. | | placeholder | string | E.g. "tomorrow at 5pm" or "in 2 hours" | false | false | The placeholder text for the input. | | onChoice | (opts: { label: string; date: Date }) => void | - | false | false | Callback fired when a suggestion is selected. |