Docker / build (push) Failing after 1m43s
Import this repo's components into a Claude Design project so the design
agent builds with the real Cloudrite library instead of generic components.
The repo is a Next.js app, not a component library: no dist/, no exports
map, no .d.ts tree, and Tailwind exists only as build directives. So
.design-sync/ carries a small build that manufactures a consumable package
from source (staged to the gitignored .ds-pkg/):
- tsconfig.dts.json declaration emit, for real <Name>Props contracts
- build-css.mjs Tailwind v4 -> a static stylesheet via @tailwindcss/postcss
- make-pkg.mjs stages the package; index.js exports all 292 symbols
while index.d.ts exports only the 61 roots, so shadcn's
flat compound parts don't each become a preview card.
Also generates the per-root parts tables in docs/
- shims/next-link router-free anchor; the real next/link needs
AppRouterContext and drags in the App Router runtime
- fonts/ Space Grotesk + Inter woff2 (SIL OFL). next/font supplies
these at runtime in the app, so the bundle has none
previews/ holds 40 authored preview stories, conventions.md is prepended to
the generated README as the design agent's usage guide, and NOTES.md records
the gotchas a future sync would otherwise rediscover.
Co-Authored-By: Claude Opus 5 <[email protected]>
62 lines
2.1 KiB
TypeScript
62 lines
2.1 KiB
TypeScript
import type { ReactNode } from 'react';
|
|
import { Avatar, AvatarFallback, AvatarImage } from 'cloudrite';
|
|
|
|
// Cloudrite is dark-only — foreground-coloured text and `border-border` are
|
|
// invisible on the preview harness's white card body. Stories render on the
|
|
// brand surface, which is also how a real screen is built.
|
|
const Surface = ({ children }: { children: ReactNode }) => (
|
|
<div className="bg-background text-foreground rounded-lg p-6">{children}</div>
|
|
);
|
|
|
|
// AvatarImage points at a remote URL in real use; previews render offline, so
|
|
// these show the fallback path — which is also the state worth documenting,
|
|
// since it is what every avatar shows before the image resolves.
|
|
export const Fallbacks = () => (
|
|
<Surface>
|
|
<div className="flex items-center gap-3">
|
|
{['JL', 'CR', 'AM', 'TK'].map((initials) => (
|
|
<Avatar key={initials}>
|
|
<AvatarFallback>{initials}</AvatarFallback>
|
|
</Avatar>
|
|
))}
|
|
</div>
|
|
</Surface>
|
|
);
|
|
|
|
export const Sizes = () => (
|
|
<Surface>
|
|
<div className="flex items-center gap-4">
|
|
<Avatar className="size-6">
|
|
<AvatarFallback className="text-[10px]">CR</AvatarFallback>
|
|
</Avatar>
|
|
<Avatar>
|
|
<AvatarFallback>CR</AvatarFallback>
|
|
</Avatar>
|
|
<Avatar className="size-12">
|
|
<AvatarFallback>CR</AvatarFallback>
|
|
</Avatar>
|
|
<Avatar className="size-16">
|
|
<AvatarFallback className="text-lg">CR</AvatarFallback>
|
|
</Avatar>
|
|
</div>
|
|
</Surface>
|
|
);
|
|
|
|
// size-10 with -space-x-3: at the default size-8 the overlap eats enough of each
|
|
// circle that the initials clip.
|
|
export const Stacked = () => (
|
|
<Surface>
|
|
<div className="flex -space-x-3">
|
|
{['JL', 'CR', 'AM'].map((initials) => (
|
|
<Avatar key={initials} className="size-10 ring-2 ring-background">
|
|
<AvatarImage alt="" />
|
|
<AvatarFallback>{initials}</AvatarFallback>
|
|
</Avatar>
|
|
))}
|
|
<Avatar className="size-10 ring-2 ring-background">
|
|
<AvatarFallback className="bg-primary text-primary-foreground">+5</AvatarFallback>
|
|
</Avatar>
|
|
</div>
|
|
</Surface>
|
|
);
|