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
7 changes: 0 additions & 7 deletions .changeset/checkbox-atom.md

This file was deleted.

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

## 0.17.0

### Minor Changes

- c443585: Add `Checkbox` — a single square selection control (the shadcn Checkbox contract over Base UI's `Checkbox`: `role="checkbox"` with `aria-checked="mixed"` for the indeterminate state, a hidden form input, Space to toggle, and the shared Button/Input focus ring).

First of the form-control family (Checkbox → Switch → Radio). Label-less by design (Escuela 1) — pair with a `<label htmlFor>`; error via `aria-invalid`. Indeterminate is a boolean `indeterminate` prop (Base UI's shape, not shadcn's `checked="indeterminate"` union). Check/dash marks are inline SVG — no icon dependency added to the bundle.

## 0.16.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.3

### Patch Changes

- Updated dependencies [c443585]
- @code-sherpas/pharos-react@0.17.0

## 0.0.2

### 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.2",
"version": "0.0.3",
"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.16.0",
"version": "0.17.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