Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .changeset/radio-group-atom.md

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @code-sherpas/pharos-react

## 0.19.0

### Minor Changes

- 9781926: Add `RadioGroup` + `RadioGroupItem`, a set of mutually exclusive options (the
shadcn RadioGroup contract) over Base UI's `RadioGroup` + `Radio` —
`role="radiogroup"` / `role="radio"`, arrow-key navigation, single selection,
and the shared Button / Input / Checkbox / Switch focus ring. Completes the
boolean/choice form-control family (Checkbox → Switch → Radio). Compound
(group + item) because the selection semantics live on the group. Label-less by
design (D11): pair the group with a `<label>` / `aria-labelledby` and each item
with a `<label htmlFor>`; error via `aria-invalid` on the group. The selected
dot is a CSS `<span>` — no icon dependency.

## 0.18.0

### Minor Changes
Expand Down
7 changes: 7 additions & 0 deletions examples/saas-demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @examples/saas-demo

## 0.0.5

### Patch Changes

- Updated dependencies [9781926]
- @code-sherpas/pharos-react@0.19.0

## 0.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/saas-demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@examples/saas-demo",
"version": "0.0.4",
"version": "0.0.5",
"private": true,
"type": "module",
"description": "Consumer harness: a SaaS-style client that composes every Pharos component the way an external consumer would (built dist + styles.css + tokens/css), exercised end-to-end by Playwright. Regression net for composition + the publish contract. Never published.",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-sherpas/pharos-react",
"version": "0.18.0",
"version": "0.19.0",
"description": "React component library for Code Sherpas. Consumes @code-sherpas/pharos-tokens. Vite library mode + CSS Modules — no Tailwind, no CSS framework required at the consumer.",
"license": "MIT",
"repository": {
Expand Down
Loading