@skyfall_ai/aegis 0.1.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 +42 -0
- package/dist/index.css +4323 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +1736 -0
- package/dist/index.d.ts +1736 -0
- package/dist/index.js +3797 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3677 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +75 -0
- package/src/tokens/aegis-tokens.css +333 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Skyfall Aegis
|
|
2
|
+
|
|
3
|
+
Accessibility-forward, compliance-aware healthcare design system built for trusted digital experiences across patient, provider, and operational workflows.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install
|
|
9
|
+
npm run dev
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Scripts
|
|
13
|
+
|
|
14
|
+
| Command | Description |
|
|
15
|
+
|---------|-------------|
|
|
16
|
+
| `npm run dev` | Start Storybook dev server |
|
|
17
|
+
| `npm run build` | Build the library for distribution |
|
|
18
|
+
| `npm run build:storybook` | Build static Storybook site |
|
|
19
|
+
| `npm run typecheck` | Run TypeScript type checking |
|
|
20
|
+
|
|
21
|
+
## Architecture
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
src/
|
|
25
|
+
tokens/ Design tokens (CSS variables + TypeScript constants)
|
|
26
|
+
components/ React components organized by name
|
|
27
|
+
utils/ Shared utilities
|
|
28
|
+
hooks/ Custom React hooks
|
|
29
|
+
types/ Shared TypeScript types
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Design Principles
|
|
33
|
+
|
|
34
|
+
1. **Clinical clarity** — Clear, structured, easy to scan under pressure
|
|
35
|
+
2. **Trust by default** — Confidence, stability, professionalism
|
|
36
|
+
3. **Accessibility built in** — Inclusive use by default (WCAG 2.2 AA)
|
|
37
|
+
4. **Calm, not cold** — Modern and composed without being sterile
|
|
38
|
+
5. **Enterprise-ready flexibility** — Patient-facing to dense operational dashboards
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
MIT
|