@skdx/web-components-charts 0.40.0 → 0.41.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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -43,8 +43,7 @@ Gauge takes one `value` with `min`/`max`, `bands` and a `target`. Bullet takes `
43
43
  Bubble takes `series` of `{ x, y, z, label? }`. Combo takes the cartesian `series` with a required
44
44
  `type` per series. Range takes `series` of `{ name, low, high }` and a `variant`. Network takes
45
45
  `nodes` (`{ id, label?, value?, group? }[]`) and `edges` (`{ source, target, value? }[]`). Timeline
46
- takes `events` (`{ date, label, description?, group? }[]`). One reference page per chart is in
47
- [docs/charts](../../docs/charts/README.md).
46
+ takes `events` (`{ date, label, description?, group? }[]`).
48
47
 
49
48
  Every chart also takes `animate` (fade in and transition on change; `true` is 300 ms, a number sets
50
49
  the duration, off under `prefers-reduced-motion` and above 1500 shapes) and `responsive` (lay out
@@ -54,7 +53,7 @@ at the container's width so text keeps its size). Cartesian charts take `xAxis.t
54
53
  Every mark carries a native `<title>` tooltip and a `data-skdx-part` attribute for styling. The
55
54
  full option reference, the mixed-series (bar + line + range) cartesian model, references, zoom,
56
55
  brush, crosshair, histogram, formatting and the accessibility contract are documented once in the
57
- [repository README](../../README.md); the decisions behind them in [CHARTS.md](../../CHARTS.md).
56
+ [repository README](../../README.md).
58
57
 
59
58
  ## Interaction
60
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skdx/web-components-charts",
3
- "version": "0.40.0",
3
+ "version": "0.41.0",
4
4
  "description": "Forty SVG charts as <skdx-*> custom elements (Lit), from bar and line to sankey, radial bar and choropleth map — colored by @skdx/tokens",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -53,7 +53,7 @@
53
53
  "./dist/*.cjs"
54
54
  ],
55
55
  "peerDependencies": {
56
- "@skdx/tokens": "^0.40.0"
56
+ "@skdx/tokens": "^0.41.0"
57
57
  },
58
58
  "dependencies": {
59
59
  "lit": "^3.3.0"
@@ -63,12 +63,12 @@
63
63
  "tsup": "^8.5.1",
64
64
  "typescript": "^6.0.3",
65
65
  "vitest": "^4.1.10",
66
- "@skdx/charts-core": "0.40.0"
66
+ "@skdx/charts-core": "0.41.0"
67
67
  },
68
68
  "scripts": {
69
69
  "sync": "node ../../scripts/sync-core.mjs",
70
70
  "lint": "eslint . --cache --cache-location node_modules/.cache/eslint/",
71
- "build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsup",
71
+ "build": "tsup",
72
72
  "typecheck": "tsc --noEmit -p tsconfig.json",
73
73
  "test": "vitest run",
74
74
  "test:watch": "vitest"