@takeoff-ui/react-spar 0.4.0 → 0.5.0
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.
- package/agents/AGENTS.template.md +2 -0
- package/dist/index.cjs +783 -49
- package/dist/index.d.cts +312 -7
- package/dist/index.d.ts +312 -7
- package/dist/index.mjs +771 -51
- package/package.json +5 -4
|
@@ -32,9 +32,11 @@ on headless Spar primitives and styled with Takeoff design tokens.
|
|
|
32
32
|
| `Badge` | Inline status pills, category tags, count bubbles, notification dots, and overlay indicators on icons/avatars. |
|
|
33
33
|
| `Breadcrumb` | Render a hierarchical "where am I" trail of ancestor links ending in the current page. |
|
|
34
34
|
| `Button` | Any clickable action — submit, CTA, toolbar action, icon-only action, or a two-state toggle (via `pressed`/`onPressedChange`). |
|
|
35
|
+
| `Calendar` | Inline date selection — booking grids, availability views, filters with a permanently visible month. |
|
|
35
36
|
| `Card` | You need a bordered surface that bundles a heading, body content, and an optional action footer. |
|
|
36
37
|
| `Checkbox` | Boolean opt-in/opt-out controls, accept-terms gates, multi-select lists, and tri-state "select all" parents. |
|
|
37
38
|
| `Chip` | Filter tags, entered/selected values, and short status metadata. |
|
|
39
|
+
| `Datepicker` | **There is no `DatePicker` component.** A date picker is `Popover` + `Calendar`, composed in the consumer's own component. |
|
|
38
40
|
| `Dialog` | A modal layer that interrupts the flow for content, forms, or confirmations. |
|
|
39
41
|
| `Divider` | Separating sections of a page, groups in a list or menu, or items in a horizontal toolbar — optionally with a label ("OR") in the middle. |
|
|
40
42
|
| `Drawer` | Content that slides in from an edge and overlays the page. |
|