feat: update SingleWeekPicker and SingleDatePicker components with documentation and remove unnecessary v-model binding
Some checks are pending
Publish to npm / publish (push) Waiting to run

This commit is contained in:
Astrian Zheng 2025-02-26 09:18:39 +11:00
parent 4ace02ebfd
commit 2ae8c30902
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA
3 changed files with 26 additions and 5 deletions

View File

@ -1,13 +1,10 @@
<script setup lang="ts">
import {SingleWeekPicker} from '../src'
import {ref} from 'vue'
const value = ref({weekYear: 2022, weekNum: 1})
import { SingleWeekPicker } from '../src'
</script>
<template>
<div class="container">
<SingleWeekPicker v-model="value" />
<SingleWeekPicker />
</div>
</template>

View File

@ -1,3 +1,15 @@
<script lang="ts">
/**
* @name SingleDatePicker
* @description A panel that allows users to select a date.
* @component
* @see {@link https://datenel.js.org/guide/vue/components/SingleDatePicker.html}
*/
export default {
name: 'SingleDatePicker',
}
</script>
<script setup lang="ts">
import { ref, defineProps, watch, onMounted, toRefs, getCurrentInstance, PropType } from 'vue'
import { generateUniqueId, applyColor, getL10Weekday, getCalendarDates } from '../utils'

View File

@ -1,3 +1,15 @@
<script lang="ts">
/**
* @name SingleWeekPicker
* @description A panel that allows users to select a week.
* @component
* @see {@link https://datenel.js.org/guide/vue/components/SingleWeekPicker.html}
*/
export default {
name: 'SingleDatePicker',
}
</script>
<script setup lang="ts">
import { ref, defineProps, toRefs, onMounted, getCurrentInstance, watch } from 'vue'
import { generateUniqueId, applyColor, getL10Weekday, getCalendarDates, calculateWeekNum } from '../utils'