diff --git a/README.md b/README.md
index 33895ab..1eff175 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,69 @@
-# Vue 3 + TypeScript + Vite
+# Datenel
-This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `
+
+
+
+
+
+```
+
+For more information and live demo, refer to [Datenel’s documentation](https://datenel.js.org/guide/vue/gettingstart.html).
+
+## Supported Components & Props
+
+- [x] SingleDatePicker
+- [x] SingleWeekPicker
+- [ ] MultipleDatePicker
+- [ ] DateRangePicker
+
+More features are on the roadmap.
+
+## Contribution & Development
+
+```zsh
+npm i # or `yarn`
+npm run dev # or `yarn dev`
+```
+
+Then the package will launch a testing React hot-reload server on `localhost:1926`. The server file is available in the `playground` folder, feel free to modify the content inside it.
+
+## License
+
+MIT
\ No newline at end of file
diff --git a/src/components/SingleDatePicker.vue b/src/components/SingleDatePicker.vue
index c51e72f..16e4fdb 100644
--- a/src/components/SingleDatePicker.vue
+++ b/src/components/SingleDatePicker.vue
@@ -49,7 +49,7 @@
const availableRangeStart = ref(null)
const availableRangeEnd = ref(null)
- const { colorScheme, localization } = toRefs(props)
+ const { colorScheme, localization, availableRange } = toRefs(props)
watch(colorScheme, newVal => {
applyColor(uniqueId, newVal)
@@ -59,7 +59,7 @@
dates.value = getCalendarDates(currentMonth.value, currentYear.value)
})
- watch([props.availableRange], () => {
+ watch([availableRange], () => {
calculateAvailableRange()
})