caelus-wheel 0.13.0 → 0.15.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 +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/sphere.d.ts +3 -2
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -55,4 +55,4 @@ counterclockwise.
|
|
|
55
55
|
- [caelus](https://www.npmjs.com/package/caelus) — the engine
|
|
56
56
|
- [caelus-birth](https://www.npmjs.com/package/caelus-birth) — local birth time + place → UT
|
|
57
57
|
- caelus-wheel — this package
|
|
58
|
-
- [caelus-mcp](https://www.npmjs.com/package/caelus-mcp) — MCP server,
|
|
58
|
+
- [caelus-mcp](https://www.npmjs.com/package/caelus-mcp) — MCP server, twenty-two chart tools over stdio
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/sphere.d.ts
CHANGED
|
@@ -17,8 +17,9 @@ export interface SpherePosition {
|
|
|
17
17
|
}
|
|
18
18
|
export interface SphereChart {
|
|
19
19
|
/** Bodies with ecliptic longitude AND latitude (the caelus chart's bodies
|
|
20
|
-
* satisfy this as-is).
|
|
21
|
-
|
|
20
|
+
* satisfy this as-is). A body may be absent (e.g. Chiron outside its fitted
|
|
21
|
+
* range); the component filters these out before reading them. */
|
|
22
|
+
bodies: Record<string, SpherePosition | undefined>;
|
|
22
23
|
}
|
|
23
24
|
export interface ChartSphereProps {
|
|
24
25
|
chart: SphereChart;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "caelus-wheel",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "React SVG chart wheel for caelus: zodiac, houses, planets with collision avoidance, aspect lines. SSR-safe, zero runtime dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
"test": "node dist/test/render.test.js"
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public",
|
|
18
|
+
"provenance": true
|
|
19
|
+
},
|
|
16
20
|
"peerDependencies": {
|
|
17
21
|
"react": ">=18"
|
|
18
22
|
},
|