@cascivo/react 0.10.0 → 0.11.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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@cascivo/react",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "private": false,
5
- "description": "Prebuilt cascivo design system components — use without copying source",
5
+ "description": "Prebuilt cascivo design system components — use without copying source. @cascivo/themes installs with it; pair with @cascivo/charts (data-viz) and @cascivo/icons. Docs offline: npx @cascivo/docs",
6
6
  "keywords": [
7
7
  "cascivo",
8
8
  "components",
@@ -45,8 +45,9 @@
45
45
  "provenance": true
46
46
  },
47
47
  "dependencies": {
48
- "@cascivo/core": "^0.5.1",
49
- "@cascivo/i18n": "^0.2.9"
48
+ "@cascivo/core": "^0.5.2",
49
+ "@cascivo/i18n": "^0.2.10",
50
+ "@cascivo/themes": "^0.4.5"
50
51
  },
51
52
  "devDependencies": {
52
53
  "@testing-library/jest-dom": "^6.9.1",
@@ -67,7 +68,7 @@
67
68
  "react-dom": ">=18.0.0"
68
69
  },
69
70
  "scripts": {
70
- "build": "vp build && node scripts/flatten-types.mjs && node scripts/check-types-flat.mjs",
71
+ "build": "vp build && node scripts/flatten-types.mjs && node scripts/check-types-flat.mjs && node scripts/check-styles-complete.mjs",
71
72
  "check": "tsc --noEmit",
72
73
  "test": "vp test"
73
74
  }
package/readme.body.md CHANGED
@@ -7,16 +7,30 @@ can coexist in one project.
7
7
  ## Install
8
8
 
9
9
  ```sh
10
- pnpm add @cascivo/react @cascivo/themes @preact/signals-react
10
+ pnpm add @cascivo/react @preact/signals-react
11
11
  ```
12
12
 
13
13
  **Peer dependencies** (install them in your app): `react >=18`, `react-dom >=18`,
14
14
  and `@preact/signals-react` — cascivo components are signal-driven, so the
15
- signals runtime is required. `@cascivo/themes` is optional but recommended; it
16
- supplies the tokens and themes the components read.
15
+ signals runtime is required.
17
16
 
18
- Charts live in a separate package — add [`@cascivo/charts`](https://github.com/cascivo/cascivo/tree/main/packages/charts)
19
- for `LineChart`, `AreaChart`, `BarChart`, `Sparkline`, and more.
17
+ [`@cascivo/themes`](https://github.com/cascivo/cascivo/tree/main/packages/themes)
18
+ is a **dependency** of `@cascivo/react`, so it installs automatically — you don't
19
+ add it yourself. It supplies the tokens and semantic color values the components
20
+ read; **you must import its CSS once** (see below), or components render
21
+ grayscale (`ThemeProvider` warns in dev when that happens).
22
+
23
+ **The wider family** (separate installs, only if you use them):
24
+
25
+ - Charts — [`@cascivo/charts`](https://github.com/cascivo/cascivo/tree/main/packages/charts):
26
+ `LineChart`, `AreaChart`, `BarChart`, `Sparkline`, and 20+ more.
27
+ - Icons — [`@cascivo/icons`](https://github.com/cascivo/cascivo/tree/main/packages/icons):
28
+ ~440 tree-shakeable SVG icon components for `SideNav` items, `IconButton`, and
29
+ `Button` icons (sized by the token system) — so you don't hand-roll SVGs.
30
+
31
+ > **Can't reach npmjs.com or cascivo.com?** The complete docs also ship as an npm
32
+ > package: `npx -y @cascivo/docs` prints the index; `npx @cascivo/docs <component>`
33
+ > prints one component's reference — no website needed. See [Using with AI tools](#using-with-ai-tools-v0-cursor-claude-code-gemini).
20
34
 
21
35
  > **Types are the reference.** The shipped `dist/index.d.ts` is a self-contained, flat
22
36
  > rollup — every component's `…Props` interface is real, documentation-grade API. Reading
@@ -40,10 +54,12 @@ Components ship with `'use client'` preserved in the bundle, so they work inside
40
54
  RSC without any extra wrapper.
41
55
 
42
56
  > **No bundler? (CDN, import maps, plain `<link>`)** Import the aggregate sheet
43
- > `@cascivo/react/styles.css` — every component's CSS in one file (~273 KB /
44
- > ~37 KB gzip, not tree-shaken). With a bundler (CSR) you don't need it; import it
45
- > only if you prefer one explicit stylesheet over per-component tree-shaking, or
46
- > for Vite SSR (below), where it is required.
57
+ > `@cascivo/react/styles.css` — every component's CSS **plus the tokens and the
58
+ > light & dark themes** in one file (~305 KB / ~40 KB gzip, not tree-shaken). It is
59
+ > self-contained: this single import gives you a fully-colored app with no separate
60
+ > `@cascivo/themes` import. With a bundler (CSR) you don't need it; import it only if
61
+ > you prefer one explicit stylesheet over per-component tree-shaking, or for Vite SSR
62
+ > (below), where it is required.
47
63
 
48
64
  > **Vite SSR / TanStack Start / Remix / workerd?** The 4-line SSR checklist (full
49
65
  > recipe: [USING-WITH-VITE-SSR.md](https://github.com/cascivo/cascivo/blob/main/docs/USING-WITH-VITE-SSR.md)):
@@ -127,6 +143,20 @@ the tool. cascivo has no training-data footprint yet, so **don't rely on a tool
127
143
  fetching cascivo.com** — that channel is the least reliable one. Use the channels
128
144
  that travel with the package instead:
129
145
 
146
+ - **Zero web access needed — the whole docs surface as an npm package
147
+ ([`@cascivo/docs`](https://www.npmjs.com/package/@cascivo/docs)):**
148
+
149
+ ```sh
150
+ npx -y @cascivo/docs # prints llms.txt (the index)
151
+ npx -y @cascivo/docs button # prints one component's full reference
152
+ npx -y @cascivo/docs --full # prints llms-full.txt (the entire library)
153
+ npx -y @cascivo/docs guide theming
154
+ ```
155
+
156
+ It reaches an agent through the same npm registry that installed your packages
157
+ — the one channel proven to work when `npmjs.com` and `cascivo.com` are blocked,
158
+ proxied, or offline. No install, no config; `npx` runs it from cache.
159
+
130
160
  - **One file, one fetch — paste or link this into any chat/agent:**
131
161
  [`https://cascivo.com/llms-full.txt`](https://cascivo.com/llms-full.txt). It is
132
162
  the entire library — setup, the signals/CSS-layer rules, and every component's