diff --git a/README.md b/README.md
index b97644b..16d1c3f 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,7 @@ Try it in the [Svelte REPL](https://svelte.dev/repl/cae0ce6e92634878b6e1a587146d
| endDateTime | The end date time string in 24 hour format. | `string` (default: `00:00`)
| defaultYear | The year you want to show as the default. | `number` (default: `2023`)
| align | The edge alignment of the datepicker. | `string` (default: `left`)
+| enabledDates | An array of date strings to enable only. | `array` (default: [...])
| disabledDates | An array of date strings to disable. | `array` (default: [...])
| isRange | Changes the date picker into a range picker and allows start and end date selection. | `boolean` (default: `false`)
| isMultipane | If true, two calendar months will be shown side-by-side instead of one. | `boolean` (default: `false`)
diff --git a/docs/package-lock.json b/docs/package-lock.json
index 3d56106..2e96b83 100644
--- a/docs/package-lock.json
+++ b/docs/package-lock.json
@@ -27,6 +27,7 @@
"@testing-library/svelte": "^4.0.5",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^20.10.5",
+ "@typescript-eslint/parser": "^6.18.1",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.54.0",
"eslint-plugin-svelte": "^2.35.1",
@@ -2225,6 +2226,7 @@
"@testing-library/svelte": "^4.0.5",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^20.10.5",
+ "@typescript-eslint/parser": "^6.18.1",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.54.0",
"eslint-plugin-svelte": "^2.35.1",
diff --git a/docs/src/App.svelte b/docs/src/App.svelte
index 00f6004..579395d 100644
--- a/docs/src/App.svelte
+++ b/docs/src/App.svelte
@@ -188,6 +188,23 @@
[]
+
+
enabledDates
+
array
+
+ Determines which dates will be enabled only.
+
Accepted format 'MM/DD/YYYY'
+
+
+
+
+
['1/1/2023'] - Enables January 1st, 2023
+
['1/1/2023', '1/2/2023'] - Enables January 1st and 2nd, 2023
+
['1/1/2023:1/10/2023'] - Enables the range January 1st to 10th, 2023