flndrn 996ba4a58a chore: keep markdown docs local-only (README.md stays public) hai 1 mes
..
scripts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) hai 3 meses
src 996ba4a58a chore: keep markdown docs local-only (README.md stays public) hai 1 mes
.gitignore c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) hai 3 meses
README.md 4dd8f0b4ef fix(deploy): regenerate pnpm-lock.yaml + land backend-fork carry-overs hai 3 meses
components.json c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) hai 3 meses
index.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) hai 3 meses
package.json 79943dc1c4 ci: quiet noisy checks — jsdom for tests, skip broken typecheck hai 1 mes
tailwind.config.css c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) hai 3 meses
tsconfig.json c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) hai 3 meses
vitest.config.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) hai 3 meses
vitest.setup.ts c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) hai 3 meses

README.md

packages/ui

Briven's shared React component library. Built on Radix UI primitives and shadcn/ui, styled with Tailwind CSS, and used across all Briven apps.

Usage

Import from the 'ui' package alias:

import { Badge, Button, Input } from 'ui'

Some of the components have the _Shadcn_ suffix. These components should be preferred, they're in a process of replacing the other ones.

Utilities

// deep object merge (used for themes)
import { clipboard, cn, mergeDeep } from 'ui' // clsx + tailwind-merge

// copy-to-clipboard helper

Styling conventions

  • Tailwind only — no inline styles or CSS modules.
  • Use semantic tokens (bg-muted, text-foreground-light, border-default) rather than hardcoded colors.
  • The workspace root owns the actual tailwind.config.js. The file in this package is a stub for IntelliSense only.