BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/shadcn/ui/animated-list
This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 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.

Animated List

zenithui-chandubobbili/animated-list
RemovedComponent

A list that animates each item in sequence with a delay. Used to showcase notifications or events on your landing page.

Install it

npx shadcn@latest add https://zenithui.chandubobbili.dev/r/animated-list.json

Source

registry/ui/animated-list.tsxzenithui.chandubobbili.dev/r/animated-list.json
1"use client"
2
3import React, {
4 type ComponentPropsWithoutRef,
5 useEffect,
6 useMemo,
7 useState,
8} from "react"
9import { AnimatePresence, motion, type MotionProps } from "motion/react"
10
11import { cn } from "@/lib/utils"
12
13export function AnimatedListItem({ children }: { children: React.ReactNode }) {
14 const animations: MotionProps = {
15 initial: { scale: 0, opacity: 0 },
16 animate: { scale: 1, opacity: 1, originY: 0 },
17 exit: { scale: 0, opacity: 0 },
18 transition: { type: "spring", stiffness: 350, damping: 40 },
19 }
20
21 return (
22 <motion.div
23 {...animations}
24 layout
25 className="mx-auto w-full"
26 >
27 {children}
28 </motion.div>
29 )
30}
31
32export interface AnimatedListProps extends ComponentPropsWithoutRef<"div"> {
33 children: React.ReactNode
34 delay?: number
35}
36
37export const AnimatedList = React.memo(
38 ({ children, className, delay = 1000, ...props }: AnimatedListProps) => {
39 const [index, setIndex] = useState(0)
40 const childrenArray = useMemo(
41 () => React.Children.toArray(children),
42 [children],
43 )
44
45 useEffect(() => {
46 if (index < childrenArray.length - 1) {
47 const timeout = setTimeout(() => {
48 setIndex((prevIndex) => (prevIndex + 1) % childrenArray.length)
49 }, delay)
50
51 return () => clearTimeout(timeout)
52 }
53 }, [index, delay, childrenArray.length])
54
55 const itemsToShow = useMemo(() => {
56 const result = childrenArray.slice(0, index + 1).reverse()
57 return result
58 }, [index, childrenArray])
59
60 return (
61 <div
62 className={cn("flex flex-col items-center gap-4", className)}
63 {...props}
64 >
65 <AnimatePresence>
66 {itemsToShow.map((item) => (
67 <AnimatedListItem key={(item as React.ReactElement).key}>
68 {item}
69 </AnimatedListItem>
70 ))}
71 </AnimatePresence>
72 </div>
73 )
74 },
75)
76
77AnimatedList.displayName = "AnimatedList"

What it pulls in

npm packages

  • motion

Files it writes

  • registry/ui/animated-list.tsx

Facts

Registry
shadcn/ui
Type
registry:ui
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-07
Last confirmed
6 days ago

Go to the source

zenithui.chandubobbili.dev ChanduBobbili/ZenithUi on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex