@opendata-ai/openchart-core 6.5.0 → 6.5.1

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.1",
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
@@ -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';