@opendata-ai/openchart-core 7.0.0 → 7.0.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-core",
3
- "version": "7.0.0",
3
+ "version": "7.0.2",
4
4
  "description": "Types, theme, colors, accessibility, and utilities for openchart",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Riley Hilliard",
package/src/types/spec.ts CHANGED
@@ -1502,6 +1502,8 @@ export interface LayerSpec<TData extends DataRow = DataRow> {
1502
1502
  resolve?: ResolveConfig;
1503
1503
  /** Hidden series names. */
1504
1504
  hiddenSeries?: string[];
1505
+ /** Endpoint labels column, inherited by child layers that don't set their own. */
1506
+ endpointLabels?: boolean | EndpointLabelsConfig;
1505
1507
  /** Animation configuration. */
1506
1508
  animation?: AnimationSpec;
1507
1509
  }