semiotic 3.0.0-beta.7 → 3.0.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/CLAUDE.md +1 -1
- package/README.md +2 -2
- package/package.json +4 -4
package/CLAUDE.md
CHANGED
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
Push API: `chartRef.current.push({ time, value })`
|
|
58
58
|
|
|
59
59
|
**RealtimeLineChart** — `size`, `timeAccessor`, `valueAccessor`, `windowSize` (200), `windowMode`, `stroke`, `strokeWidth`
|
|
60
|
-
**
|
|
60
|
+
**RealtimeHistogram** — + `binSize` (required), `categoryAccessor`, `colors`
|
|
61
61
|
**RealtimeSwarmChart** — + `categoryAccessor`, `radius`, `opacity`
|
|
62
62
|
**RealtimeWaterfallChart** — + `positiveColor`, `negativeColor`
|
|
63
63
|
**RealtimeHeatmap** — + `heatmapXBins`, `heatmapYBins`, `aggregation`
|
package/README.md
CHANGED
|
@@ -102,10 +102,10 @@ highlights new services as they appear. Visualization as product navigation.
|
|
|
102
102
|
## Install
|
|
103
103
|
|
|
104
104
|
```bash
|
|
105
|
-
npm install semiotic@3.0.0
|
|
105
|
+
npm install semiotic@3.0.0
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
-
Requires React 18.1 or
|
|
108
|
+
Requires React 18.1+ or React 19.
|
|
109
109
|
|
|
110
110
|
## Quick Examples
|
|
111
111
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semiotic",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "The semiotic JavaScript data visualization framework",
|
|
5
5
|
"main": "dist/semiotic.min.js",
|
|
6
6
|
"module": "dist/semiotic.module.min.js",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"docs:dev": "parcel serve --target website --no-cache --port 3000",
|
|
98
98
|
"website:start": "npm run dist:prod && parcel serve --target website --no-cache",
|
|
99
99
|
"website:start:clean": "npm run clean && npm run dist:prod && parcel serve --target website --no-cache",
|
|
100
|
-
"website:build": "npm run dist:prod && parcel build --target website",
|
|
100
|
+
"website:build": "npm run dist:prod && parcel build --target website && node scripts/prerender.mjs",
|
|
101
101
|
"build:mcp": "tsc -p tsconfig.mcp.json",
|
|
102
102
|
"typescript": "tsc --noEmit",
|
|
103
103
|
"prepublishOnly": "node scripts/build.mjs --production"
|
|
@@ -185,8 +185,8 @@
|
|
|
185
185
|
"vitest": "^4.0.18"
|
|
186
186
|
},
|
|
187
187
|
"peerDependencies": {
|
|
188
|
-
"react": "^18.1.0",
|
|
189
|
-
"react-dom": "^18.1.0"
|
|
188
|
+
"react": "^18.1.0 || ^19.0.0",
|
|
189
|
+
"react-dom": "^18.1.0 || ^19.0.0"
|
|
190
190
|
},
|
|
191
191
|
"dependencies": {
|
|
192
192
|
"@modelcontextprotocol/sdk": "^1.12.1",
|