···99 let max: Date
1010 let valid: boolean
1111 let visible: boolean
1212+ let disabled: boolean
1213 let closeOnSelection: boolean
1314 let browseWithoutSelecting: boolean
1415 let format: string
···2425 bind:valid
2526 bind:format
2627 bind:visible
2828+ bind:disabled
2729 bind:closeOnSelection
2830 bind:browseWithoutSelecting
2931 />
···3739 <Prop label="valid" bind:value={valid} />
3840 <Prop label="format" bind:value={format} />
3941 <Prop label="visible" bind:value={visible} />
4242+ <Prop label="disabled" bind:value={disabled} />
4043 <Prop label="closeOnSelection" bind:value={closeOnSelection} />
4144 <Prop label="browseWithoutSelecting" bind:value={browseWithoutSelecting} />
4245 <Prop label="locale">Default</Prop>
+1
src/routes/docs.md
···3838| `valid` | bool | Whether the text is valid |
3939| `format` | string | Format string |
4040| `visible` | bool | Whether the date popup is visible |
4141+| `disabled` | bool | Disable the input |
4142| `closeOnSelection` | bool | Close the date popup when a date is selected |
4243| `browseWithoutSelecting` | bool | Wait with updating the date until a date is selected |
4344| `locale` | Locale | Locale object for internationalization |