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-46
originui-vue/extended-46RemovedComponent
Originui Vue publishes no description for this item.
Install it
npx shadcn@latest add https://originui-vue.com/r/extended-46.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>16 <MiniCalendar v-model="selectedDate" :days="7" class="max-w-2xl">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">Full week view showing 7 days at once</p>24 </div>25</template>
