@skdx/angular-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.
- package/README.md +2 -3
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -46,8 +46,7 @@ Gauge takes one `value` with `min`/`max`, `bands` and a `target`. Bullet takes `
|
|
|
46
46
|
Bubble takes `series` of `{ x, y, z, label? }`. Combo takes the cartesian `series` with a required
|
|
47
47
|
`type` per series. Range takes `series` of `{ name, low, high }` and a `variant`. Network takes
|
|
48
48
|
`nodes` (`{ id, label?, value?, group? }[]`) and `edges` (`{ source, target, value? }[]`). Timeline
|
|
49
|
-
takes `events` (`{ date, label, description?, group? }[]`).
|
|
50
|
-
[docs/charts](../../docs/charts/README.md).
|
|
49
|
+
takes `events` (`{ date, label, description?, group? }[]`).
|
|
51
50
|
|
|
52
51
|
Every chart also takes `animate` (fade in and transition on change; `true` is 300 ms, a number sets
|
|
53
52
|
the duration, off under `prefers-reduced-motion` and above 1500 shapes) and `responsive` (lay out
|
|
@@ -57,7 +56,7 @@ at the container's width so text keeps its size). Cartesian charts take `xAxis.t
|
|
|
57
56
|
Every mark carries a native `<title>` tooltip and a `data-skdx-part` attribute for styling. The
|
|
58
57
|
full option reference, the mixed-series (bar + line + range) cartesian model, references, zoom,
|
|
59
58
|
brush, crosshair, histogram, formatting and the accessibility contract are documented once in the
|
|
60
|
-
[repository README](../../README.md)
|
|
59
|
+
[repository README](../../README.md).
|
|
61
60
|
|
|
62
61
|
## Interaction
|
|
63
62
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skdx/angular-charts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.41.0",
|
|
4
4
|
"description": "Forty SVG charts as standalone Angular components, from bar and line to sankey, radial bar and choropleth map — colored by @skdx/tokens",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
7
|
-
"access": "public"
|
|
7
|
+
"access": "public",
|
|
8
|
+
"directory": "dist"
|
|
8
9
|
},
|
|
9
10
|
"homepage": "https://github.com/SkandaDX/charts.skdx/tree/main/packages/angular-charts#readme",
|
|
10
11
|
"repository": {
|
|
@@ -20,7 +21,7 @@
|
|
|
20
21
|
"peerDependencies": {
|
|
21
22
|
"@angular/common": "^22.0.0",
|
|
22
23
|
"@angular/core": "^22.0.0",
|
|
23
|
-
"@skdx/tokens": "^0.
|
|
24
|
+
"@skdx/tokens": "^0.41.0"
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"tslib": "^2.3.0"
|