This component no longer exists. It was in Originui Vue’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
extended-44
originui-vue/extended-44RemovedComponent
Originui Vue publishes no description for this item.
Install it
npx shadcn@latest add https://originui-vue.com/r/extended-44.jsonSource
1<script setup lang="ts">2import {3 MiniCalendar,4 MiniCalendarDay,5 MiniCalendarDays,6 MiniCalendarNavigation,7} from "@/registry/default/ui/mini-calendar";8import { CalendarDate } from "@internationalized/date";9import { ref } from "vue";1011const selectedDate = ref<CalendarDate>();12</script>1314<template>15 <div class="*:not-first:mt-2">16 <MiniCalendar v-model="selectedDate">17 <MiniCalendarNavigation direction="prev" />18 <MiniCalendarDays v-slot="{ date }">19 <MiniCalendarDay :date="date" />20 </MiniCalendarDays>21 <MiniCalendarNavigation direction="next" />22 </MiniCalendar>23 <p class="text-muted-foreground mt-2 text-xs">Default 5-day horizontal calendar view</p>24 </div>25</template>
