astralyx-ui 0.1.0 → 0.2.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/README.md +2 -2
- package/package.json +2 -2
- package/registry/index.json +660 -6
- package/registry/items/agent-card.json +23 -0
- package/registry/items/agent-memory.json +25 -0
- package/registry/items/agent-tasks.json +22 -0
- package/registry/items/budget-guard.json +22 -0
- package/registry/items/compare-slider.json +19 -0
- package/registry/items/context-window.json +19 -0
- package/registry/items/countdown.json +18 -0
- package/registry/items/dropzone.json +7 -4
- package/registry/items/eval-board.json +22 -0
- package/registry/items/few-shot-editor.json +24 -0
- package/registry/items/field.json +1 -1
- package/registry/items/guardrail-list.json +22 -0
- package/registry/items/handoff-trail.json +22 -0
- package/registry/items/image.json +21 -0
- package/registry/items/input-file.json +7 -3
- package/registry/items/inspector.json +25 -0
- package/registry/items/lib-use-uploads.json +14 -0
- package/registry/items/masonry.json +18 -0
- package/registry/items/mcp-capability-matrix.json +22 -0
- package/registry/items/mcp-config-editor.json +23 -0
- package/registry/items/mcp-elicitation.json +25 -0
- package/registry/items/mcp-prompt-list.json +23 -0
- package/registry/items/mcp-resource-list.json +24 -0
- package/registry/items/mcp-roots.json +23 -0
- package/registry/items/mcp-sampling.json +23 -0
- package/registry/items/mcp-server-card.json +24 -0
- package/registry/items/mcp-server-picker.json +25 -0
- package/registry/items/node-canvas.json +19 -0
- package/registry/items/prompt-diff.json +20 -0
- package/registry/items/prompt-variables.json +23 -0
- package/registry/items/prompt-versions.json +23 -0
- package/registry/items/retry-policy.json +20 -0
- package/registry/items/rpc-console.json +22 -0
- package/registry/items/run-controls.json +24 -0
- package/registry/items/sandbox-policy.json +23 -0
- package/registry/items/schema-form.json +27 -0
- package/registry/items/stream-inspector.json +20 -0
- package/registry/items/subagent-tree.json +23 -0
- package/registry/items/theme.json +1 -1
- package/registry/items/token-inspector.json +20 -0
- package/registry/items/tool-approval.json +23 -0
- package/registry/items/tool-diff.json +23 -0
- package/registry/items/tool-latency.json +19 -0
- package/registry/items/tool-picker.json +25 -0
- package/registry/items/tool-result.json +23 -0
- package/registry/items/tool-schema.json +22 -0
- package/registry/items/trace-waterfall.json +21 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# astralyx-ui
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**295 accessible React components you copy into your repo** — with a CLI and a
|
|
4
4
|
registry that work out what each one needs and bring that too.
|
|
5
5
|
|
|
6
6
|
Not a dependency. There is no package to upgrade and nothing to fight when a
|
|
@@ -14,7 +14,7 @@ npx astralyx-ui add button
|
|
|
14
14
|
|
|
15
15
|
## What you get
|
|
16
16
|
|
|
17
|
-
- **
|
|
17
|
+
- **295 components** across 31 categories — forms, data, overlays, commerce,
|
|
18
18
|
auth, AI, crypto, observability, developer tooling.
|
|
19
19
|
- **12 primitives** underneath them. Slot, Popper, FocusTrap, Dismissable and
|
|
20
20
|
friends — no headless-UI dependency.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "astralyx-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "295 accessible React components you copy into your repo, with a CLI and registry that resolve what each one needs.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Astralyx",
|
|
8
8
|
"homepage": "https://ui.astralyx.dev",
|