@opendata-ai/openchart-vanilla 7.9.1 → 7.9.2
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendata-ai/openchart-vanilla",
|
|
3
|
-
"version": "7.9.
|
|
3
|
+
"version": "7.9.2",
|
|
4
4
|
"description": "Vanilla JS renderer for openchart: SVG charts, HTML tables, force-directed graphs",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Riley Hilliard",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@floating-ui/dom": "^1.7.6",
|
|
57
|
-
"@opendata-ai/openchart-core": "7.9.
|
|
58
|
-
"@opendata-ai/openchart-engine": "7.9.
|
|
57
|
+
"@opendata-ai/openchart-core": "7.9.2",
|
|
58
|
+
"@opendata-ai/openchart-engine": "7.9.2",
|
|
59
59
|
"d3-force": "^3.0.0",
|
|
60
60
|
"d3-quadtree": "^3.0.1"
|
|
61
61
|
},
|
|
@@ -825,7 +825,12 @@ describe('left y-axis title spacing', () => {
|
|
|
825
825
|
y: {
|
|
826
826
|
field: 'pct',
|
|
827
827
|
type: 'quantitative',
|
|
828
|
-
|
|
828
|
+
// Force gutter ticks: this suite measures title-vs-gutter-label
|
|
829
|
+
// clearance, which only exists when tick labels sit in a left gutter.
|
|
830
|
+
// Line charts default to inline ticks (rendered inside the plot), where
|
|
831
|
+
// there is no gutter label to clear — that case is guarded separately by
|
|
832
|
+
// the "inline y-axis title inside the container" test in the engine.
|
|
833
|
+
axis: { title: 'Spring 2026 pass rate', format: '.0f%', tickPosition: 'gutter' },
|
|
829
834
|
},
|
|
830
835
|
},
|
|
831
836
|
chrome: { title: 'Pass rate' },
|