fix: update documentation links in README and components to reflect correct URLs for Vue 3
Some checks failed
Publish to npm / publish (push) Has been cancelled

This commit is contained in:
Astrian Zheng 2025-02-26 11:27:27 +11:00
parent 8af79850e3
commit 39ca9ddd14
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA
3 changed files with 17 additions and 3 deletions

View File

@ -44,7 +44,7 @@ const date = ref(new Date())
```
For more information and live demo, refer to [Datenels documentation](https://datenel.js.org/guide/vue/gettingstart.html).
For more information and live demo, refer to [Datenels documentation](https://datenel.js.org/guide/vue3/gettingstart.html).
## Supported Components & Props

View File

@ -110,7 +110,7 @@ const props = defineProps({
* that the close button is not visible, but can be read by screen reader. The close
* button for the screen reader is only available when this prop is not `undefined`.
*
* @see {@link https://datenel.js.org/guide/vue3/components/SingleDatePicker.html#onclose-void}
* @see {@link https://datenel.js.org/guide/vue3/components/SingleDatePicker.html#close-void}
*
* @default undefined
*/

View File

@ -81,12 +81,26 @@ const props = defineProps({
*
* @description The model value of the component.
*
* @see {@link https://datenel.js.org/guide/vue3/components/SingleWeekPicker.html#modelvalue}
* @see {@link https://datenel.js.org/guide/vue3/components/SingleWeekPicker.html#modelvalue-a-k-a-v-model}
*/
modelValue: {
type: Object as () => SingleWeekPickerModelValue,
required: false,
},
/**
* Event handler when the panel is closed.
* @description User requires to close the panel without select a specific date. Note
* that the close button is not visible, but can be read by screen reader. The close
* button for the screen reader is only available when this prop is not `undefined`.
*
* @see {@link https://datenel.js.org/guide/vue3/components/SingleWeekPicker.html#close-void}
*
* @default undefined
*/
close: {
type: Function,
required: false,
}
})
const { colorScheme, localization } = toRefs(props)