From 466d2184d88fa53e9af74101d8a34c2d6f7ebf88 Mon Sep 17 00:00:00 2001 From: Jorge Garcia Date: Tue, 16 Jul 2024 14:34:49 -0300 Subject: [PATCH] docs(readme): include the new `isDateDisabled` prop --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a89a985..d42afaa 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ For more, take a look at the `/example` directory. | locale | `string` | `'en'` | Defines the DatePicker locale | | minDate | `DateType` | `null` | Defines DatePicker minimum selectable date | | maxDate | `DateType` | `null` | Defines DatePicker maximum selectable date | +| isDateDisabled? | `Date` | `boolean` | Defines a custom callback to disable custom dates like weekends | | firstDayOfWeek | `number` | `0` | Defines the starting day of week, number 0-6, 0 - Sunday, 6 - Saturday | | displayFullDays | `boolean` | `false` | Defines show previous and next month's days in the current calendar view | | initialView | `string` | `'day'` | Defines the DatePicker initial view `['day', 'month', 'year', 'time']` |