mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-10 09:12:15 +01:00
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
32 lines
802 B
Vue
32 lines
802 B
Vue
<script lang="ts" setup>
|
|
import { cn } from '@/lib/utils'
|
|
import { RangeCalendarHeading, type RangeCalendarHeadingProps, useForwardProps } from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<RangeCalendarHeadingProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
defineSlots<{
|
|
default: (props: { headingValue: string }) => unknown
|
|
}>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<RangeCalendarHeading
|
|
v-slot="{ headingValue }"
|
|
:class="cn('text-sm font-medium', props.class)"
|
|
v-bind="forwardedProps"
|
|
>
|
|
<slot :heading-value>
|
|
{{ headingValue }}
|
|
</slot>
|
|
</RangeCalendarHeading>
|
|
</template>
|