@opendata-ai/openchart-core 6.5.0 → 6.5.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": "6.5.0",
3
+ "version": "6.5.2",
4
4
  "description": "Types, theme, colors, accessibility, and utilities for openchart",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Riley Hilliard",
@@ -497,8 +497,8 @@ export interface ResolvedLabel {
497
497
  to: Point;
498
498
  /** Connector line color. */
499
499
  stroke: string;
500
- /** Connector style: straight line, curved arrow, or directional caret. */
501
- style: 'straight' | 'curve' | 'caret';
500
+ /** Connector style: straight line or curved arrow. */
501
+ style: 'straight' | 'curve';
502
502
  };
503
503
  /** Background color behind the label text. */
504
504
  background?: string;
package/src/types/spec.ts CHANGED
@@ -607,7 +607,7 @@ export type AnimationEase = 'smooth' | 'snappy';
607
607
 
608
608
  /** Stagger configuration for sequential element reveal. */
609
609
  export interface AnimationStagger {
610
- /** Delay between each element in ms. Default: 30 */
610
+ /** Delay between each element in ms. Default: 80 */
611
611
  delay?: number;
612
612
  /** Ordering strategy. Default: 'index' (DOM order) */
613
613
  order?: 'index' | 'value' | 'reverse';