@shortwind/cli 0.1.0-beta.12 → 0.1.0-beta.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.generated-fXJjJvJ2.js","names":[],"sources":["../src/catalog.generated.ts"],"sourcesContent":["// Generated by scripts/generate-catalog.ts — do not edit by hand.\n// A snapshot of the @shortwind/catalog build, embedded so the CLI can resolve\n// the default catalog with no network. Re-run `pnpm --filter @shortwind/cli gen:catalog`\n// after the catalog changes.\nimport type { Presets } from \"./registry-source.js\";\n\nexport const CATALOG_PRESETS: Presets = {\n \"starter\": [\"card\", \"button\", \"layout\", \"text\", \"form\"],\n \"app\": [\"card\", \"button\", \"layout\", \"text\", \"form\", \"badge\", \"table\", \"dialog\", \"list\", \"navigation\", \"feedback\", \"tooltip\", \"menu\", \"sheet\", \"stat\", \"segmented\", \"switch\"],\n \"content\": [\"card\", \"button\", \"layout\", \"text\", \"form\", \"badge\", \"code\", \"list\", \"media\", \"empty\"],\n \"all\": \"*\"\n};\n\nexport const CATALOG_FAMILIES: string[] = [\"badge\",\"button\",\"card\",\"code\",\"dialog\",\"empty\",\"feedback\",\"form\",\"icon\",\"layout\",\"list\",\"media\",\"menu\",\"navigation\",\"progress\",\"segmented\",\"sheet\",\"skeleton\",\"stat\",\"surface\",\"switch\",\"table\",\"text\",\"tooltip\"];\n\nexport const CATALOG_RECIPES: Record<string, string> = {\n \"badge\": \"/* shortwind: badge@0.0.2 sha:07c6ab5a8deb77e3 */\\n\\n/* @guide\\n @badge is the default. Its color is DATA-DRIVEN: it reads the --tone-bg /\\n --tone-fg CSS variables, so set the tone from your data with a data-tone\\n attribute instead of picking a different recipe name —\\n `<span className=\\\"@badge\\\" data-tone={severity}>`. Define your tones once in\\n CSS (init scaffolds neutral/success/warning/danger/info; add your own\\n `[data-tone=\\\"sev1\\\"] { --tone-bg: …; --tone-fg: … }`). With no data-tone it\\n falls back to the neutral muted look, identical to before.\\n\\n The static @badge-success/warning/danger/info variants still exist for when\\n the tone is known at author time; reach for data-tone when it's chosen from\\n data. @badge-outline is unfilled. @badge-base is a color-less shell for\\n building custom tones — not for direct use.\\n*/\\n\\n/* Badge shell — shape, sizing, focus ring. No bg/text/border color so\\n variants can supply their own tone without conflicts. */\\n@recipe badge-base {\\n inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-medium transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2\\n}\\n\\n/* Default badge — tone-aware. Reads --tone-bg/--tone-fg (set via data-tone),\\n falling back to the neutral muted tokens so it renders unchanged when no\\n tone is set. */\\n@recipe badge {\\n inline-flex items-center gap-1 rounded-full px-2 py-0.5 text-xs font-medium bg-[var(--tone-bg,var(--muted))] text-[var(--tone-fg,var(--muted-foreground))]\\n}\\n\\n/* Success tone badge. */\\n@recipe badge-success {\\n inline-flex items-center gap-1 rounded-full bg-green-100 px-2 py-0.5 text-xs font-medium text-green-800 dark:bg-green-900 dark:text-green-200\\n}\\n\\n/* Warning tone badge. */\\n@recipe badge-warning {\\n inline-flex items-center gap-1 rounded-full bg-amber-100 px-2 py-0.5 text-xs font-medium text-amber-800 dark:bg-amber-900 dark:text-amber-200\\n}\\n\\n/* Danger tone badge. */\\n@recipe badge-danger {\\n inline-flex items-center gap-1 rounded-full bg-destructive/15 px-2 py-0.5 text-xs font-medium text-destructive\\n}\\n\\n/* Info tone badge. */\\n@recipe badge-info {\\n inline-flex items-center gap-1 rounded-full bg-primary/15 px-2 py-0.5 text-xs font-medium text-primary\\n}\\n\\n/* Outline badge — no fill. */\\n@recipe badge-outline {\\n inline-flex items-center gap-1 rounded-full border border-border px-2 py-0.5 text-xs font-medium text-foreground\\n}\\n\",\n \"button\": \"/* shortwind: button@0.0.2 sha:b0b08652cd757b90 */\\n\\n/* @guide\\n Name order is @button-<intent>[-<size>]: intent first (primary/secondary/\\n ghost/danger/outline), size second (sm/lg; omit for default). One intent per\\n button — never combine @button-primary with @button-danger. @button-ghost is\\n text-only, @button-outline is bordered with no fill, @button-icon is a square\\n icon button. @button-base is the shared shell; don't use it on its own.\\n The short @btn-<intent> forms are aliases that expand identically; the\\n full-word @button-* names are canonical — prefer them.\\n*/\\n\\n/* Shared button base — sizing, focus ring, disabled state. */\\n@recipe btn-base {\\n inline-flex items-center justify-center gap-2 rounded-md px-4 py-2 text-sm font-medium transition-colors focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring disabled:cursor-not-allowed disabled:opacity-50\\n}\\n\\n/* Primary call-to-action button. */\\n@recipe btn-primary {\\n @btn-base bg-primary text-primary-foreground hover:bg-primary/90\\n}\\n\\n/* Small primary button. */\\n@recipe btn-primary-sm {\\n @btn-primary px-3 py-1.5 text-xs\\n}\\n\\n/* Large primary button. */\\n@recipe btn-primary-lg {\\n @btn-primary px-6 py-3 text-base\\n}\\n\\n/* Secondary button — bordered surface tone. */\\n@recipe btn-secondary {\\n @btn-base border border-border bg-secondary text-secondary-foreground hover:bg-secondary/80\\n}\\n\\n/* Small secondary button. */\\n@recipe btn-secondary-sm {\\n @btn-secondary px-3 py-1.5 text-xs\\n}\\n\\n/* Large secondary button. */\\n@recipe btn-secondary-lg {\\n @btn-secondary px-6 py-3 text-base\\n}\\n\\n/* Ghost button — text only, no background. */\\n@recipe btn-ghost {\\n @btn-base text-foreground hover:bg-muted\\n}\\n\\n/* Small ghost button. */\\n@recipe btn-ghost-sm {\\n @btn-ghost px-3 py-1.5 text-xs\\n}\\n\\n/* Large ghost button. */\\n@recipe btn-ghost-lg {\\n @btn-ghost px-6 py-3 text-base\\n}\\n\\n/* Destructive button. */\\n@recipe btn-danger {\\n @btn-base bg-destructive text-destructive-foreground hover:bg-destructive/90\\n}\\n\\n/* Outline button — bordered without fill. */\\n@recipe btn-outline {\\n @btn-base border border-primary text-primary hover:bg-primary/10\\n}\\n\\n/* Square icon-only button. */\\n@recipe btn-icon {\\n inline-flex h-9 w-9 items-center justify-center rounded-md text-foreground transition-colors hover:bg-muted focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring disabled:cursor-not-allowed disabled:opacity-50\\n}\\n\\n/* Full-word canonical aliases — expand identically to the @btn-* short forms. */\\n\\n/* Shared button shell (alias of @btn-base). */\\n@recipe button-base { @btn-base }\\n\\n/* Primary call-to-action button (alias of @btn-primary). */\\n@recipe button-primary { @btn-primary }\\n\\n/* Small primary button (alias of @btn-primary-sm). */\\n@recipe button-primary-sm { @btn-primary-sm }\\n\\n/* Large primary button (alias of @btn-primary-lg). */\\n@recipe button-primary-lg { @btn-primary-lg }\\n\\n/* Secondary button (alias of @btn-secondary). */\\n@recipe button-secondary { @btn-secondary }\\n\\n/* Small secondary button (alias of @btn-secondary-sm). */\\n@recipe button-secondary-sm { @btn-secondary-sm }\\n\\n/* Large secondary button (alias of @btn-secondary-lg). */\\n@recipe button-secondary-lg { @btn-secondary-lg }\\n\\n/* Ghost button (alias of @btn-ghost). */\\n@recipe button-ghost { @btn-ghost }\\n\\n/* Small ghost button (alias of @btn-ghost-sm). */\\n@recipe button-ghost-sm { @btn-ghost-sm }\\n\\n/* Large ghost button (alias of @btn-ghost-lg). */\\n@recipe button-ghost-lg { @btn-ghost-lg }\\n\\n/* Destructive button (alias of @btn-danger). */\\n@recipe button-danger { @btn-danger }\\n\\n/* Outline button (alias of @btn-outline). */\\n@recipe button-outline { @btn-outline }\\n\\n/* Square icon-only button (alias of @btn-icon). */\\n@recipe button-icon { @btn-icon }\\n\",\n \"card\": \"/* shortwind: card@0.0.1 sha:4813cef10cd21824 */\\n\\n/* @guide\\n Pick exactly one container: @card (default), @card-elevated (raised shadow),\\n @card-flat (no border), or @card-interactive (clickable hover/focus) — don't\\n stack two container variants on one element. Lay out the inside with\\n @card-header / @card-body / @card-footer.\\n*/\\n\\n/* Default content card with border, padding, and surface color. */\\n@recipe card {\\n rounded-lg border border-border bg-card text-card-foreground p-4\\n}\\n\\n/* Card with raised shadow for emphasis. */\\n@recipe card-elevated {\\n @card shadow-md\\n}\\n\\n/* Card without border, on a muted surface. */\\n@recipe card-flat {\\n rounded-lg bg-muted text-foreground p-4\\n}\\n\\n/* Clickable card with hover and focus-visible states. */\\n@recipe card-interactive {\\n @card cursor-pointer transition-shadow hover:shadow-md focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\\n}\\n\\n/* Card header region with bottom divider. */\\n@recipe card-header {\\n mb-3 border-b border-border pb-3\\n}\\n\\n/* Card body region. */\\n@recipe card-body {\\n py-1\\n}\\n\\n/* Card footer with top divider and right-aligned actions. */\\n@recipe card-footer {\\n mt-3 flex items-center justify-end gap-2 border-t border-border pt-3\\n}\\n\",\n \"code\": \"/* shortwind: code@0.0.1 sha:cc8d2b0bedb5b453 */\\n\\n/* @guide\\n @code-inline for a code span inside prose, @code-block for a multi-line\\n preformatted block, @kbd for a keyboard-shortcut hint. Pick by context, not\\n by size.\\n*/\\n\\n/* Inline code span. */\\n@recipe code-inline {\\n rounded bg-muted px-1.5 py-0.5 font-mono text-[0.875em] text-foreground\\n}\\n\\n/* Block of preformatted code. */\\n@recipe code-block {\\n overflow-x-auto rounded-md border border-border bg-muted p-4 font-mono text-sm leading-6 text-foreground\\n}\\n\\n/* Keyboard shortcut hint. */\\n@recipe kbd {\\n inline-flex items-center rounded border border-border bg-muted px-1.5 py-0.5 font-mono text-xs text-foreground shadow-sm\\n}\\n\",\n \"dialog\": \"/* shortwind: dialog@0.0.1 sha:b4dbf853e99fce75 */\\n\\n/* @guide\\n A modal is three layers: @dialog-overlay (dimmed backdrop), @dialog (the\\n centering wrapper), and @dialog-content (the panel). Structure the panel with\\n @dialog-header and @dialog-footer. Don't put content styling on @dialog\\n itself — it's only the positioner.\\n*/\\n\\n/* Modal dialog wrapper — covers the viewport, centers content. */\\n@recipe dialog {\\n fixed inset-0 z-50 flex items-center justify-center p-4\\n}\\n\\n/* Dimmed overlay behind the dialog. */\\n@recipe dialog-overlay {\\n fixed inset-0 z-40 bg-black/50\\n}\\n\\n/* Dialog content panel. */\\n@recipe dialog-content {\\n relative z-50 w-full max-w-md rounded-lg border border-border bg-popover text-popover-foreground p-6 shadow-xl\\n}\\n\\n/* Dialog header region with title. */\\n@recipe dialog-header {\\n mb-4 flex flex-col gap-1\\n}\\n\\n/* Dialog footer with right-aligned actions. */\\n@recipe dialog-footer {\\n mt-6 flex items-center justify-end gap-2\\n}\\n\",\n \"empty\": \"/* shortwind: empty@0.0.1 sha:003168e1b4a395c5 */\\n\\n/* @guide\\n @empty is the container for a no-data state; fill it with @empty-icon,\\n @empty-title, and @empty-description. These are slots for that pattern — use\\n @heading-* / @body from the text family for ordinary copy.\\n*/\\n\\n/* Empty-state container. */\\n@recipe empty {\\n flex flex-col items-center justify-center gap-3 rounded-md border border-dashed border-border p-8 text-center\\n}\\n\\n/* Empty-state icon slot. */\\n@recipe empty-icon {\\n flex h-12 w-12 items-center justify-center rounded-full bg-muted text-muted-foreground\\n}\\n\\n/* Empty-state title text. */\\n@recipe empty-title {\\n text-base font-semibold text-foreground\\n}\\n\\n/* Empty-state supporting description. */\\n@recipe empty-description {\\n max-w-sm text-sm text-muted-foreground\\n}\\n\",\n \"feedback\": \"/* shortwind: feedback@0.0.1 sha:818868f6af179bcf */\\n\\n/* @guide\\n Inline messages use @alert (neutral) or a tone variant @alert-success/\\n warning/danger/info — one tone each. @callout is a left-accent inline note,\\n @toast is a floating notification, @banner spans the full viewport width.\\n*/\\n\\n/* Default informational alert. */\\n@recipe alert {\\n flex items-start gap-3 rounded-md border border-border bg-card p-4 text-sm text-card-foreground\\n}\\n\\n/* Success alert. */\\n@recipe alert-success {\\n flex items-start gap-3 rounded-md border border-green-200 bg-green-50 p-4 text-sm text-green-900 dark:border-green-900 dark:bg-green-950 dark:text-green-100\\n}\\n\\n/* Warning alert. */\\n@recipe alert-warning {\\n flex items-start gap-3 rounded-md border border-amber-200 bg-amber-50 p-4 text-sm text-amber-900 dark:border-amber-900 dark:bg-amber-950 dark:text-amber-100\\n}\\n\\n/* Danger alert. */\\n@recipe alert-danger {\\n flex items-start gap-3 rounded-md border border-destructive/30 bg-destructive/10 p-4 text-sm text-destructive\\n}\\n\\n/* Informational alert. */\\n@recipe alert-info {\\n flex items-start gap-3 rounded-md border border-primary/30 bg-primary/10 p-4 text-sm text-primary\\n}\\n\\n/* Inline callout — flush left edge accent. */\\n@recipe callout {\\n border-l-4 border-primary bg-primary/10 p-4 text-sm text-foreground\\n}\\n\\n/* Floating toast notification. */\\n@recipe toast {\\n pointer-events-auto flex items-start gap-3 rounded-md border border-border bg-popover p-4 text-sm text-popover-foreground shadow-lg\\n}\\n\\n/* Full-width banner spanning the viewport. */\\n@recipe banner {\\n w-full bg-primary px-4 py-2 text-center text-sm font-medium text-primary-foreground\\n}\\n\",\n \"form\": \"/* shortwind: form@0.0.2 sha:e78b50acd247f5af */\\n\\n/* @guide\\n Wrap each label+control+message in @field (use @field-error for the invalid\\n state); group related fields with @fieldset. Controls are bare: @input,\\n @textarea, @select, @checkbox, @radio, plus @input-error for invalid text\\n and @input-shell for the transparent input shell. Helper text is\\n @help. There is no @form-group (use @field), @form-input (use @input),\\n @form-helper (use @help) or @form-checkbox (use @checkbox); the field label\\n recipe is @label, in the text family.\\n*/\\n\\n/* Text input field. */\\n@recipe input {\\n block w-full rounded-md border border-input bg-background px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground focus:border-ring focus:outline-2 focus:outline-offset-2 focus:outline-ring disabled:cursor-not-allowed disabled:opacity-50\\n}\\n\\n/* Dinachi-style input shell — transparent background, h-9, file/\\n placeholder/selection/aria-invalid/focus-visible states baked in. */\\n@recipe input-shell {\\n flex h-9 w-full min-w-0 rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-xs outline-none transition-[color,box-shadow] placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:border-destructive aria-invalid:ring-destructive/20 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm dark:bg-input/30 dark:aria-invalid:ring-destructive/40\\n}\\n\\n/* Input in error state. */\\n@recipe input-error {\\n @input border-destructive focus:border-destructive focus:outline-destructive\\n}\\n\\n/* Multi-line textarea. */\\n@recipe textarea {\\n block w-full rounded-md border border-input bg-background px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground focus:border-ring focus:outline-2 focus:outline-offset-2 focus:outline-ring disabled:cursor-not-allowed disabled:opacity-50\\n}\\n\\n/* Native select control. */\\n@recipe select {\\n block w-full rounded-md border border-input bg-background px-3 py-2 text-sm text-foreground focus:border-ring focus:outline-2 focus:outline-offset-2 focus:outline-ring disabled:cursor-not-allowed disabled:opacity-50\\n}\\n\\n/* Checkbox input. */\\n@recipe checkbox {\\n h-4 w-4 rounded border-input text-primary focus:outline-2 focus:outline-offset-2 focus:outline-ring\\n}\\n\\n/* Radio input. */\\n@recipe radio {\\n h-4 w-4 border-input text-primary focus:outline-2 focus:outline-offset-2 focus:outline-ring\\n}\\n\\n/* Form field wrapper — label + input + help/error. */\\n@recipe field {\\n flex flex-col gap-1.5\\n}\\n\\n/* Form field in error state. */\\n@recipe field-error {\\n flex flex-col gap-1.5\\n}\\n\\n/* Grouped form section with optional legend. */\\n@recipe fieldset {\\n flex flex-col gap-4 rounded-md border border-border p-4\\n}\\n\\n/* Field-level helper text. */\\n@recipe help {\\n text-xs text-muted-foreground\\n}\\n\",\n \"icon\": \"/* shortwind: icon@0.0.1 sha:fab3b2d3a0c089fb */\\n\\n/* @guide\\n Size an icon with @icon-sm/md/lg (16/20/24px) — these set width and height\\n only; add @icon-muted for secondary color. They're for SVG/icon elements, not\\n to be confused with @btn-icon (the icon button in the button family).\\n*/\\n\\n/* Small icon — 16px. */\\n@recipe icon-sm {\\n h-4 w-4 shrink-0\\n}\\n\\n/* Default icon size — 20px. */\\n@recipe icon-md {\\n h-5 w-5 shrink-0\\n}\\n\\n/* Large icon — 24px. */\\n@recipe icon-lg {\\n h-6 w-6 shrink-0\\n}\\n\\n/* Icon with muted color. */\\n@recipe icon-muted {\\n text-muted-foreground\\n}\\n\",\n \"layout\": \"/* shortwind: layout@0.0.2 sha:48025daeec83041a */\\n\\n/* @guide\\n Composition primitives. @stack-* stacks children vertically (flex-col);\\n @row* lays them out horizontally (flex-row). Choose the gap with the size\\n suffix (xs/sm/md/lg on stacks); bare @stack is the default and equals\\n @stack-md. Use @grid-2/3/4 only for true multi-column grids, @center to\\n center on both axes, @full to fill the parent. Common slips: there is no\\n @flex-row (use @row) or @flex-col (use a @stack-*), and the grids are\\n @grid-3, not @grid-cols-3.\\n*/\\n\\n/* Bare stack — default gap, alias for @stack-md. */\\n@recipe stack { @stack-md }\\n\\n/* Vertical stack with extra-small gap. */\\n@recipe stack-xs {\\n flex flex-col gap-1\\n}\\n\\n/* Vertical stack with small gap. */\\n@recipe stack-sm {\\n flex flex-col gap-2\\n}\\n\\n/* Vertical stack with medium gap. */\\n@recipe stack-md {\\n flex flex-col gap-4\\n}\\n\\n/* Vertical stack with large gap. */\\n@recipe stack-lg {\\n flex flex-col gap-8\\n}\\n\\n/* Horizontal row with default gap and centered items. */\\n@recipe row {\\n flex flex-row items-center gap-2\\n}\\n\\n/* Horizontal row with space between children. */\\n@recipe row-between {\\n flex flex-row items-center justify-between gap-2\\n}\\n\\n/* Horizontal row aligned to the end. */\\n@recipe row-end {\\n flex flex-row items-center justify-end gap-2\\n}\\n\\n/* Two-column responsive grid. */\\n@recipe grid-2 {\\n grid grid-cols-1 gap-4 sm:grid-cols-2\\n}\\n\\n/* Three-column responsive grid. */\\n@recipe grid-3 {\\n grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3\\n}\\n\\n/* Four-column responsive grid. */\\n@recipe grid-4 {\\n grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4\\n}\\n\\n/* Center content horizontally and vertically. */\\n@recipe center {\\n flex items-center justify-center\\n}\\n\\n/* Fill the available width and height. */\\n@recipe full {\\n h-full w-full\\n}\\n\",\n \"list\": \"/* shortwind: list@0.0.2 sha:6a7f93aa95067c44 */\\n\\n/* @guide\\n @list wraps a stack of @list-item rows; use @list-bordered for divided rows.\\n Definition lists are separate: @description-list with @description-term and\\n @description-detail. The short @dl / @dt / @dd forms are aliases that expand\\n identically; the spelled-out names are canonical — prefer them. For site\\n navigation reach for the navigation family (@navigation), not @list.\\n*/\\n\\n/* Vertical list with default gap. */\\n@recipe list {\\n flex flex-col gap-1\\n}\\n\\n/* Single list item. */\\n@recipe list-item {\\n flex items-center gap-2 rounded-md px-3 py-2 text-sm text-foreground\\n}\\n\\n/* List with dividing borders between items. */\\n@recipe list-bordered {\\n divide-y divide-border rounded-md border border-border\\n}\\n\\n/* Definition list container. */\\n@recipe dl {\\n grid grid-cols-1 gap-2 sm:grid-cols-3 sm:gap-4\\n}\\n\\n/* Definition term. */\\n@recipe dt {\\n text-sm font-medium text-muted-foreground\\n}\\n\\n/* Definition description. */\\n@recipe dd {\\n text-sm text-foreground sm:col-span-2\\n}\\n\\n/* Spelled-out canonical aliases — expand identically to @dl/@dt/@dd. */\\n\\n/* Definition list container (alias of @dl). */\\n@recipe description-list { @dl }\\n\\n/* Definition term (alias of @dt). */\\n@recipe description-term { @dt }\\n\\n/* Definition description (alias of @dd). */\\n@recipe description-detail { @dd }\\n\",\n \"media\": \"/* shortwind: media@0.0.1 sha:dfc85633101b0637 */\\n\\n/* @guide\\n @avatar (with @avatar-sm/lg) is a round user image; @thumb is a small square\\n thumbnail. For responsive embeds use @aspect-square or @aspect-video. Avatars\\n are circular by default — don't restyle the radius.\\n*/\\n\\n/* User/profile avatar. */\\n@recipe avatar {\\n inline-flex h-10 w-10 items-center justify-center overflow-hidden rounded-full bg-muted text-sm font-medium text-muted-foreground\\n}\\n\\n/* Small avatar. */\\n@recipe avatar-sm {\\n @avatar h-6 w-6 text-xs\\n}\\n\\n/* Large avatar. */\\n@recipe avatar-lg {\\n @avatar h-14 w-14 text-base\\n}\\n\\n/* Small image thumbnail. */\\n@recipe thumb {\\n h-16 w-16 rounded-md object-cover\\n}\\n\\n/* 1:1 aspect-ratio wrapper. */\\n@recipe aspect-square {\\n aspect-square w-full overflow-hidden rounded-md\\n}\\n\\n/* 16:9 aspect-ratio wrapper. */\\n@recipe aspect-video {\\n aspect-video w-full overflow-hidden rounded-md\\n}\\n\",\n \"menu\": \"/* shortwind: menu@0.0.1 sha:c95d3650d92a2fa6 */\\n\\n/* @guide\\n A dropdown/actions menu (the \\\"…\\\" button's popover). @menu is the panel,\\n @menu-item is a row, @menu-trigger is the control that opens it, and\\n @menu-separator divides groups. The highlighted/active row is data-driven —\\n set data-active on the item rather than swapping recipe names\\n (`<button class=\\\"@menu-item\\\" data-active>`); data-disabled dims + disables a\\n row. @menu only styles the panel; pair it with your own positioning.\\n*/\\n\\n/* Dropdown menu panel. */\\n@recipe menu {\\n min-w-[8rem] overflow-hidden rounded-md border border-border bg-popover p-1 text-popover-foreground shadow-md\\n}\\n\\n/* A single menu row. Highlight with data-active, dim with data-disabled. */\\n@recipe menu-item {\\n relative flex cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-sm text-foreground outline-none transition-colors hover:bg-muted focus-visible:bg-muted data-[active]:bg-muted data-[disabled]:pointer-events-none data-[disabled]:opacity-50\\n}\\n\\n/* The control that opens the menu. */\\n@recipe menu-trigger {\\n inline-flex items-center justify-center gap-1 outline-none focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\\n}\\n\\n/* Divider between menu groups. */\\n@recipe menu-separator {\\n -mx-1 my-1 h-px bg-border\\n}\\n\",\n \"navigation\": \"/* shortwind: navigation@0.0.2 sha:2bb73370d69e0f65 */\\n\\n/* @guide\\n @navigation is the container; links are @navigation-link with\\n @navigation-link-active for the current page. Tabs mirror that pair: @tab and\\n @tab-active. Use @breadcrumb for trail navigation. Active and inactive are\\n separate recipes — swap the whole class rather than combining them. The short\\n @nav / @nav-link forms are aliases that expand identically; the full-word\\n @navigation-* names are canonical — prefer them.\\n*/\\n\\n/* Top-level nav container. */\\n@recipe nav {\\n flex items-center gap-1\\n}\\n\\n/* Inactive nav link with hover/focus states. */\\n@recipe nav-link {\\n inline-flex items-center gap-2 rounded-md px-3 py-1.5 text-sm font-medium text-muted-foreground transition-colors hover:bg-muted hover:text-foreground focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\\n}\\n\\n/* Active nav link. */\\n@recipe nav-link-active {\\n inline-flex items-center gap-2 rounded-md bg-muted px-3 py-1.5 text-sm font-medium text-foreground focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\\n}\\n\\n/* Breadcrumb trail container. */\\n@recipe breadcrumb {\\n flex items-center gap-1.5 text-sm text-muted-foreground\\n}\\n\\n/* Inactive tab control. */\\n@recipe tab {\\n inline-flex items-center gap-2 border-b-2 border-transparent px-3 py-2 text-sm font-medium text-muted-foreground transition-colors hover:border-border hover:text-foreground focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\\n}\\n\\n/* Active tab control. */\\n@recipe tab-active {\\n inline-flex items-center gap-2 border-b-2 border-primary px-3 py-2 text-sm font-medium text-primary focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\\n}\\n\\n/* Full-word canonical aliases — expand identically to the @nav-* short forms. */\\n\\n/* Top-level nav container (alias of @nav). */\\n@recipe navigation { @nav }\\n\\n/* Inactive nav link (alias of @nav-link). */\\n@recipe navigation-link { @nav-link }\\n\\n/* Active nav link (alias of @nav-link-active). */\\n@recipe navigation-link-active { @nav-link-active }\\n\",\n \"progress\": \"/* shortwind: progress@0.0.1 sha:37210e32d2cd555f */\\n\\n/* @guide\\n A bar is two pieces: @progress-track (the background) wrapping @progress-bar\\n (the fill). For an indeterminate state use @spinner instead — it's a\\n standalone loader, not a bar.\\n*/\\n\\n/* Progress bar track (background). */\\n@recipe progress-track {\\n h-2 w-full overflow-hidden rounded-full bg-muted\\n}\\n\\n/* Progress bar fill. */\\n@recipe progress-bar {\\n h-full rounded-full bg-primary transition-all\\n}\\n\\n/* Indeterminate loading spinner. */\\n@recipe spinner {\\n inline-block h-4 w-4 animate-spin rounded-full border-2 border-border border-t-primary\\n}\\n\",\n \"segmented\": \"/* shortwind: segmented@0.0.1 sha:60bb982c1fc271f0 */\\n\\n/* @guide\\n A segmented control / filter bar (one choice highlighted). @segmented is the\\n track, @segmented-item is each segment. The selected segment is data-driven —\\n set data-active on the chosen item (`<button class=\\\"@segmented-item\\\"\\n data-active>`) rather than swapping recipe names. Use @tab/@tab-active from\\n the navigation family for underlined tabs instead.\\n*/\\n\\n/* Segmented-control track. */\\n@recipe segmented {\\n inline-flex items-center gap-1 rounded-md bg-muted p-1\\n}\\n\\n/* A segment. Mark the selected one with data-active. */\\n@recipe segmented-item {\\n inline-flex items-center justify-center gap-1.5 rounded-sm px-3 py-1 text-sm font-medium text-muted-foreground transition-colors hover:text-foreground data-[active]:bg-background data-[active]:text-foreground data-[active]:shadow-sm focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\\n}\\n\",\n \"sheet\": \"/* shortwind: sheet@0.0.1 sha:2dd5109c9e3865fa */\\n\\n/* @guide\\n A slide-over panel (drawer). Three layers mirror the dialog family:\\n @sheet-overlay (dimmed backdrop), @sheet (the positioner that anchors the\\n panel to a side), and @sheet-content (the panel itself). Structure the panel\\n with @sheet-header and @sheet-footer. The edge is data-driven — set\\n data-side=left/right on @sheet (`<div class=\\\"@sheet\\\" data-side=\\\"right\\\">`)\\n rather than picking a different recipe. @drawer is an alias for @sheet.\\n*/\\n\\n/* Dimmed backdrop behind the sheet. */\\n@recipe sheet-overlay {\\n fixed inset-0 z-40 bg-black/50\\n}\\n\\n/* Positioner — anchors the panel to a side via data-side. */\\n@recipe sheet {\\n fixed inset-0 z-50 flex data-[side=right]:justify-end data-[side=left]:justify-start\\n}\\n\\n/* The sliding panel. */\\n@recipe sheet-content {\\n flex h-full w-3/4 max-w-sm flex-col gap-4 border-border bg-popover p-6 text-popover-foreground shadow-xl\\n}\\n\\n/* Sheet header region. */\\n@recipe sheet-header {\\n flex flex-col gap-1\\n}\\n\\n/* Sheet footer with bottom-pinned, right-aligned actions. */\\n@recipe sheet-footer {\\n mt-auto flex items-center justify-end gap-2\\n}\\n\\n/* Alias — @drawer reads as @sheet. */\\n@recipe drawer { @sheet }\\n\",\n \"skeleton\": \"/* shortwind: skeleton@0.0.1 sha:cd2db5c1c48b16d3 */\\n\\n/* @guide\\n Match the skeleton to the shape it stands in for: @skeleton (block),\\n @skeleton-text (a text line), @skeleton-circle (avatar/icon). Size block and\\n text skeletons with raw width/height utilities.\\n*/\\n\\n/* Default rectangular skeleton placeholder. */\\n@recipe skeleton {\\n animate-pulse rounded-md bg-muted\\n}\\n\\n/* Single-line text skeleton. */\\n@recipe skeleton-text {\\n h-4 w-full animate-pulse rounded bg-muted\\n}\\n\\n/* Circular skeleton (avatar/icon). */\\n@recipe skeleton-circle {\\n h-10 w-10 animate-pulse rounded-full bg-muted\\n}\\n\",\n \"stat\": \"/* shortwind: stat@0.0.1 sha:445f1f7abfebc0b1 */\\n\\n/* @guide\\n A dashboard metric tile. @stat is the container; inside it @stat-label names\\n the metric, @stat-value is the big number, and @stat-trend is the delta.\\n Colour the trend with the tone system — set data-tone on @stat-trend\\n (success for up, danger for down): `<span class=\\\"@stat-trend\\\"\\n data-tone=\\\"success\\\">`. Same --tone-fg mechanism as @badge; define tones once\\n in CSS (init scaffolds them).\\n*/\\n\\n/* Metric tile container. */\\n@recipe stat {\\n flex flex-col gap-1 rounded-lg border border-border bg-card p-4 text-card-foreground\\n}\\n\\n/* Metric name. */\\n@recipe stat-label {\\n text-sm font-medium text-muted-foreground\\n}\\n\\n/* The metric's primary value. */\\n@recipe stat-value {\\n text-2xl font-semibold tracking-tight text-foreground tabular-nums\\n}\\n\\n/* Trend delta — tone-aware; set data-tone (success up / danger down). */\\n@recipe stat-trend {\\n inline-flex items-center gap-1 text-xs font-medium text-[var(--tone-fg,var(--muted-foreground))]\\n}\\n\",\n \"surface\": \"/* shortwind: surface@0.0.2 sha:31716e4cbe81f93f */\\n\\n/* @guide\\n @surface / @surface-muted / @surface-accent set a background+foreground pair\\n for a region — one per section. @wrapper (or @wrapper-tight for prose)\\n centers and width-caps content; there is no @wrapper-lg, set a different cap\\n with max-w-* yourself. (Note: @container is reserved for Tailwind's\\n container-query utility, so the content wrapper is @wrapper.) @divider-h and\\n @divider-v are hairline rules.\\n*/\\n\\n/* Default page/section surface. */\\n@recipe surface {\\n bg-background text-foreground\\n}\\n\\n/* Muted surface — secondary background. */\\n@recipe surface-muted {\\n bg-muted text-foreground\\n}\\n\\n/* Accent surface — soft brand background. */\\n@recipe surface-accent {\\n bg-accent text-accent-foreground\\n}\\n\\n/* Centered content wrapper with a max width. */\\n@recipe wrapper {\\n mx-auto w-full max-w-6xl px-4 sm:px-6 lg:px-8\\n}\\n\\n/* Narrow content wrapper for prose. */\\n@recipe wrapper-tight {\\n mx-auto w-full max-w-3xl px-4 sm:px-6\\n}\\n\\n/* Horizontal divider line. */\\n@recipe divider-h {\\n shrink-0 h-px w-full bg-border\\n}\\n\\n/* Vertical divider line. */\\n@recipe divider-v {\\n shrink-0 h-full w-px bg-border\\n}\\n\",\n \"switch\": \"/* shortwind: switch@0.0.1 sha:54fa33bb72839799 */\\n\\n/* @guide\\n A toggle switch. @switch is the track, @switch-thumb is the sliding knob\\n inside it. The on/off state is data-driven — set data-checked on BOTH the\\n track and the thumb (`<button class=\\\"@switch\\\" data-checked><span\\n class=\\\"@switch-thumb\\\" data-checked /></button>`). For a checkbox/radio reach\\n for the form family instead.\\n*/\\n\\n/* Toggle track. Add data-checked when on. */\\n@recipe switch {\\n peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent bg-input transition-colors data-[checked]:bg-primary focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring disabled:cursor-not-allowed disabled:opacity-50\\n}\\n\\n/* Sliding knob. Add data-checked to slide it on. */\\n@recipe switch-thumb {\\n pointer-events-none block h-4 w-4 translate-x-0 rounded-full bg-background shadow-sm transition-transform data-[checked]:translate-x-4\\n}\\n\",\n \"table\": \"/* shortwind: table@0.0.1 sha:4f3295935b2a647c */\\n\\n/* @guide\\n Wrap the table in @table-container for horizontal overflow, then put @table\\n (or @table-zebra for striped rows) on the <table>. Cells are @th (header) and\\n @td (body); add @tr-hover to a <tr> for row highlighting.\\n*/\\n\\n/* Scroll container for a wide table — keeps overflow horizontal. */\\n@recipe table-container {\\n w-full overflow-x-auto rounded-md border border-border\\n}\\n\\n/* Data table base. */\\n@recipe table {\\n w-full border-collapse text-left text-sm text-foreground\\n}\\n\\n/* Table header cell. */\\n@recipe th {\\n border-b border-border px-3 py-2 text-xs font-semibold uppercase tracking-wide text-muted-foreground\\n}\\n\\n/* Table body cell. */\\n@recipe td {\\n border-b border-border px-3 py-2\\n}\\n\\n/* Row hover state. */\\n@recipe tr-hover {\\n transition-colors hover:bg-muted\\n}\\n\\n/* Table with zebra striping on alternating rows. */\\n@recipe table-zebra {\\n w-full border-collapse text-left text-sm text-foreground [&_tbody_tr:nth-child(odd)]:bg-muted\\n}\\n\",\n \"text\": \"/* shortwind: text@0.0.2 sha:f39dc7b88afefc8f */\\n\\n/* @guide\\n Headings are sized by weight, not HTML level: @heading-xl/lg/md/sm — there\\n is no @h1..@h6. Body copy: @body (default), @lead (intro paragraphs), @muted\\n (secondary), @caption (fine print), @eyebrow (uppercase kicker above a\\n heading). Use @label for form labels and @link for inline links. Don't\\n append a -text suffix: it's @body not @body-text, @muted not @muted-text,\\n @link not @link-text.\\n*/\\n\\n/* Top-level page heading. */\\n@recipe heading-xl {\\n text-4xl font-bold tracking-tight text-foreground\\n}\\n\\n/* Large section heading. */\\n@recipe heading-lg {\\n text-2xl font-semibold tracking-tight text-foreground\\n}\\n\\n/* Medium heading. */\\n@recipe heading-md {\\n text-xl font-semibold text-foreground\\n}\\n\\n/* Small heading. */\\n@recipe heading-sm {\\n text-base font-semibold text-foreground\\n}\\n\\n/* Default body text. */\\n@recipe body {\\n text-sm leading-6 text-foreground\\n}\\n\\n/* Lead paragraph — larger body copy for hero/intro sections. */\\n@recipe lead {\\n text-lg leading-relaxed text-muted-foreground\\n}\\n\\n/* Muted secondary text. */\\n@recipe muted {\\n text-sm text-muted-foreground\\n}\\n\\n/* Form label text. */\\n@recipe label {\\n text-sm font-medium text-foreground\\n}\\n\\n/* Caption — small supporting text. */\\n@recipe caption {\\n text-xs text-muted-foreground\\n}\\n\\n/* Eyebrow — uppercase kicker above a heading. */\\n@recipe eyebrow {\\n font-mono text-xs font-medium uppercase tracking-[0.2em] text-muted-foreground\\n}\\n\\n/* Inline link with hover/focus states. */\\n@recipe link {\\n text-primary underline-offset-2 hover:underline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\\n}\\n\",\n \"tooltip\": \"/* shortwind: tooltip@0.0.1 sha:1be3af4165357dcd */\\n\\n/* @guide\\n @tooltip is the floating label bubble — it styles appearance only, so pair it\\n with your own positioning.\\n*/\\n\\n/* Floating tooltip bubble. */\\n@recipe tooltip {\\n pointer-events-none z-50 rounded-md bg-foreground px-2 py-1 text-xs font-medium text-background shadow-md\\n}\\n\",\n};\n"],"mappings":";AAMA,MAAa,kBAA2B;CACtC,WAAW;EAAC;EAAQ;EAAU;EAAU;EAAQ;EAAO;CACvD,OAAO;EAAC;EAAQ;EAAU;EAAU;EAAQ;EAAQ;EAAS;EAAS;EAAU;EAAQ;EAAc;EAAY;EAAW;EAAQ;EAAS;EAAQ;EAAa;EAAS;CAC5K,WAAW;EAAC;EAAQ;EAAU;EAAU;EAAQ;EAAQ;EAAS;EAAQ;EAAQ;EAAS;EAAQ;CAClG,OAAO;CACR;AAED,MAAa,mBAA6B;CAAC;CAAQ;CAAS;CAAO;CAAO;CAAS;CAAQ;CAAW;CAAO;CAAO;CAAS;CAAO;CAAQ;CAAO;CAAa;CAAW;CAAY;CAAQ;CAAW;CAAO;CAAU;CAAS;CAAQ;CAAO;CAAU;AAE7P,MAAa,kBAA0C;CACrD,SAAS;CACT,UAAU;CACV,QAAQ;CACR,QAAQ;CACR,UAAU;CACV,SAAS;CACT,YAAY;CACZ,QAAQ;CACR,QAAQ;CACR,UAAU;CACV,QAAQ;CACR,SAAS;CACT,QAAQ;CACR,cAAc;CACd,YAAY;CACZ,aAAa;CACb,SAAS;CACT,YAAY;CACZ,QAAQ;CACR,WAAW;CACX,UAAU;CACV,SAAS;CACT,QAAQ;CACR,WAAW;CACZ"}
package/dist/index.d.ts CHANGED
@@ -15,7 +15,7 @@ type ProjectShape = {
15
15
  declare function detectProject(cwd: string): ProjectShape;
16
16
  //#endregion
17
17
  //#region src/theme.d.ts
18
- type ThemeAction = "injected" | "created" | "skipped";
18
+ type ThemeAction = "injected" | "created" | "skipped" | "supplemented";
19
19
  //#endregion
20
20
  //#region src/bundler-config.d.ts
21
21
  type BundlerWireAction = "patched" | "manual" | "skipped";
@@ -34,6 +34,7 @@ type InitOptions = {
34
34
  type InstallPackages = (pm: PackageManager, packages: string[], cwd: string) => Promise<void>;
35
35
  type InitResult = {
36
36
  packageManager: PackageManager;
37
+ bundler: ReturnType<typeof detectProject>["bundler"];
37
38
  preset: string;
38
39
  registry: string;
39
40
  families: string[];
@@ -46,8 +47,11 @@ type InitResult = {
46
47
  skillPath: string;
47
48
  themePath: string | null;
48
49
  themeAction: ThemeAction;
50
+ tonesPath: string | null;
51
+ tonesAction: "written" | "skipped";
49
52
  safelistCssPaths: string[];
50
53
  missingThemeTokens: string[];
54
+ supplementedThemeTokens: string[];
51
55
  bundlerConfigPath: string | null;
52
56
  bundlerConfigAction: BundlerWireAction;
53
57
  bundlerConfigSnippet?: string;
@@ -377,6 +381,7 @@ type LintResult = {
377
381
  ok: boolean;
378
382
  findings: Finding[];
379
383
  filesFixed: string[];
384
+ scannedFiles: number;
380
385
  };
381
386
  declare function lint(options: LintOptions): Promise<LintResult>;
382
387
  type ClassUsage = {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../src/detect.ts","../src/theme.ts","../src/bundler-config.ts","../src/agents-file.ts","../src/init.ts","../src/registry-source.ts","../src/lockfile.ts","../src/commands/add.ts","../src/commands/remove.ts","../src/commands/new.ts","../src/commands/reseal.ts","../src/commands/preset.ts","../src/commands/ls.ts","../src/commands/build.ts","../src/commands/dev.ts","../src/commands/upgrade.ts","../src/commands/verify.ts","../src/commands/bench.ts","../src/commands/lint.ts","../src/fingerprint.ts","../src/project.ts"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/detect.ts","../src/theme.ts","../src/bundler-config.ts","../src/agents-file.ts","../src/init.ts","../src/registry-source.ts","../src/lockfile.ts","../src/commands/add.ts","../src/commands/remove.ts","../src/commands/new.ts","../src/commands/reseal.ts","../src/commands/preset.ts","../src/commands/ls.ts","../src/commands/build.ts","../src/commands/dev.ts","../src/commands/upgrade.ts","../src/commands/verify.ts","../src/commands/bench.ts","../src/commands/lint.ts","../src/fingerprint.ts","../src/project.ts"],"mappings":"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"}
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- import { A as buildHeaderLine, D as createRegistrySource, E as writeLockfile, F as verifyFetchedFamily, M as extractHeader, N as rewriteHeaderSha, O as resolvePresetFamilies, P as sealRecipeFile, S as DEFAULT_REGISTRY, T as readLockfile, _ as NewFamilyError, a as formatFindingsText, b as add, c as UpgradeError, d as BuildError, f as build, g as reseal, h as preset, i as extractClassUsages, j as computeBodySha, k as detectProject, l as upgrade, m as ls, n as formatBenchTable, o as lint, p as formatLsText, r as ALL_RULES, s as verify, t as bench, u as dev, v as newFamily, w as init, x as renameFamilyInSource, y as remove } from "./bench-BGO3pupw.js";
1
+ import { A as createRegistrySource, D as init, F as extractHeader, I as rewriteHeaderSha, L as sealRecipeFile, M as detectProject, N as buildHeaderLine, O as readLockfile, P as computeBodySha, R as verifyFetchedFamily, T as DEFAULT_REGISTRY, _ as reseal, a as extractClassUsages, b as remove, c as verify, d as dev, f as BuildError, g as preset, h as ls, j as resolvePresetFamilies, k as writeLockfile, l as UpgradeError, m as formatLsText, n as formatBenchTable, o as formatFindingsText, p as build, r as ALL_RULES, s as lint, t as bench, u as upgrade, v as NewFamilyError, w as renameFamilyInSource, x as add, y as newFamily } from "./bench-DQtfv5aq.js";
2
2
  export { ALL_RULES, BuildError, DEFAULT_REGISTRY, NewFamilyError, UpgradeError, add, bench, build, buildHeaderLine, computeBodySha, createRegistrySource, detectProject, dev, extractClassUsages, extractHeader, formatBenchTable, formatFindingsText, formatLsText, init, lint, ls, newFamily, preset, readLockfile, remove, renameFamilyInSource, reseal, resolvePresetFamilies, rewriteHeaderSha, sealRecipeFile, upgrade, verify, verifyFetchedFamily, writeLockfile };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shortwind/cli",
3
- "version": "0.1.0-beta.12",
3
+ "version": "0.1.0-beta.14",
4
4
  "description": "Shortwind CLI — init, add, remove, upgrade, dev, build, lint, ls, preset. Provides the `shortwind` command.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,8 +19,8 @@
19
19
  "jsonc-parser": "^3.3.1",
20
20
  "picocolors": "^1.1.1",
21
21
  "tinyglobby": "^0.2.16",
22
- "@shortwind/core": "0.1.0-beta.12",
23
- "@shortwind/tailwind": "0.1.0-beta.12"
22
+ "@shortwind/core": "0.1.0-beta.14",
23
+ "@shortwind/tailwind": "0.1.0-beta.14"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^25.7.0",