v1.16.0
Minor Changes
-
#76
2a5f8a4Thanks @MikeNotThePope! - RenameButton variant="amber"tovariant="secondary-fill".amberstill works."Amber" was the plum palette's name for that slot. Every theme colours it differently — press paints
it yellow from its own ramp — so the API was asserting a colour the theme system exists to change.
secondary-fillnames the token family that actually paints it, and reads againstsecondary, which
is the tinted surface rather than the saturated fill.amberis kept as a deprecated alias, resolving to identical classes. A unit test asserts that, so
the deprecation can't quietly restyle an existing consumer's buttons. Nothing to change on upgrade.Also closes a gap in the contrast audit: the secondary-fill button was only ever checked under plum,
via two raw-ramp pairings.secondary-fill-foreground on secondary-filland
secondary-fill-border on backgroundare now audited for every theme, light and dark. All five pass;
the per-theme pair count goes 33 → 35. -
#77
a578712Thanks @MikeNotThePope! - Align plum and lava with the rest of the set on geometry and motion. Both now
inherit the house baseline —--radius-factor: 0.25and a 140ms
cubic-bezier(0.2, 0, 0, 1)transition — instead of plum's stock 1x/150ms and
lava's swollen 1.5x/300ms. Corners across the default theme go from 6px to
1.5px atrounded-md, and lava is now a palette rather than a structural
variant; its magma-tinted hard shadow is the only geometry it still owns.
Substrate (0.4x/160ms) and tundra (0.15x/120ms) are unchanged. -
#78
de5dc77Thanks @MikeNotThePope! - Rename thepresstheme toproof. The press is the machine — the components
and the geometry, the part that survives a theme swap — so naming a palette
after it put an ink and the machine under one word. A proof is one ink run on
one stock, which is what a theme actually is.data-theme="press"still resolves to the same palette and is kept as public
API, so nothing breaks for existing consumers. Sites using the docs' theme
picker migrate a storedpressvalue toproofon read.
Patch Changes
-
#79
36bbaefThanks @MikeNotThePope! - Fix invalid nested buttons in multi-selectComboboxSelection chips rendered their remove button inside the trigger button. A
<button>cannot contain another<button>, so React threw a hydration error
on every page with a multi-select Combobox, and the remove control was
effectively unreachable — the trigger swallowed the interaction.Chips now render in a sibling
[data-slot="combobox-chips"]container that
shares a grid cell with the trigger, so wrapping chips still drive its height
and clicks anywhere else still open the listbox. Each remove button is a real,
focusable button again.No API change.
limitTags,clearable, and thelabels.remove/labels.more
overrides all behave as before. -
#71
1a675a0Thanks @MikeNotThePope! - Put the Press display face on headings across the whole site, not just the home page.h1–h3rendered as site chrome now take Archivo with the system's -0.03em tracking.h4is
excluded: it renders at 20px and the display face has a 24px floor.The rule lives in
src/app/globals.cssrather than intypography.tsx, becausetypography.tsx
ships — consumers have no Archivo file and would have received a font-family change they can't
serve. No published component's styling changes.Headings that are specimens rather than chrome keep
--font-sans, which is what a consumer's app
actually renders: component previews and the two type-specimen lists are markeddata-specimenand
opt out. -
#74
7328b79Thanks @MikeNotThePope! - Give the docs pages press furniture instead of a generic docs header.Every docs page now opens with a slug line — registration mark plus the section it belongs to,
read from the sidebar's own nav data — then the title, then a hairline trim rule marking where the
sheet's margin ends.Component previews lose the three macOS traffic-light dots. They were window-chrome pastiche that
said nothing about the component; the slug line that replaces them names the plate.RegMarkmoves out ofsrc/app/page.tsxintosrc/components/reg-mark.tsx. Site-only, like
Caps— not exported from the package. -
#75
b4bae81Thanks @MikeNotThePope! - Rewrite the docs descriptions that broke the Press voice.31 of the 91 page descriptions leaned on adjectives that can't be checked — "versatile", "satisfying",
"seamless", "batteries-included", "ideal for", "great for". Those are rewritten to state what the
component is and what it costs: Button now reads "Seven variants, four sizes, and a 3px press offset
that collapses under prefers-reduced-motion."The other 60 already complied and are untouched.
Two accuracy fixes ride along: Rating no longer describes its fill as "amber" (that is the plum
palette's name for a colour every theme sets differently), and the blocks demo copy drops "batteries
fully included", a phrase the direction strikes by name. -
#73
a05a2e1Thanks @MikeNotThePope! - Put the Press utility face on the docs' spec marks.Sidebar section labels, props-table column headers and component-preview slug lines now use Barlow
Condensed caps at 12px — the type printed on the edge of a swatch card, and the direction's
fingerprint. Previously only the home page had it.Capsmoves out ofsrc/app/page.tsxintosrc/components/caps.tsx, which also exports the
treatment as a class string for elements that already exist. Site-only:--font-utilityis
registered insrc/app/globals.css, not intokens.css, so it is deliberately absent from the
organismsexport barrel.