
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
List of upcoming events in a SectionCard. Spell rows out inline with DataListItem — title + Clock date + optional status Badge per row.
Also available for React ->$pnpm dlx shadcn-vue@latest add https://uipkge.dev/r/vue/event-list.json$npx shadcn-vue@latest add https://uipkge.dev/r/vue/event-list.json$yarn dlx shadcn-vue@latest add https://uipkge.dev/r/vue/event-list.json$bunx shadcn-vue@latest add https://uipkge.dev/r/vue/event-list.jsonnpx shadcn-vue@latest add @uipkge/event-listInstalls to:app/components/blocks/| Name | Type / Values | Default | Required |
|---|---|---|---|
title | string | — | optional |
description | string | — | optional |
class | string | — | optional |
<script setup lang="ts">
import { SectionCard } from '@/components/ui/section-card'
import { DataList } from '@/components/ui/data-list'
defineProps<{
title?: string
description?: string
class?: string
}>()
</script>
<template>
<SectionCard
data-slot="event-list"
:title="title ?? 'Upcoming Events'"
:description="description"
:class="$props.class"
>
<DataList>
<slot />
</DataList>
</SectionCard>
</template>
Raw manifest:https://uipkge.dev/r/vue/event-list.json