@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/dist/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/types/layout.ts +2 -2
- package/src/types/spec.ts +1 -1
package/package.json
CHANGED
package/src/types/layout.ts
CHANGED
|
@@ -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
|
|
501
|
-
style: 'straight' | 'curve'
|
|
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:
|
|
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';
|