@markdy/core 1.0.14 → 1.0.16

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -617,8 +617,8 @@ function resolvePlayer(config = {}, overrides = {}) {
617
617
  const controls = {
618
618
  play: controlsOn && (config.controls?.play ?? true),
619
619
  restart: controlsOn && (config.controls?.restart ?? true),
620
- prevBeat: controlsOn && (config.controls?.prevBeat ?? true),
621
- nextBeat: controlsOn && (config.controls?.nextBeat ?? true),
620
+ prevBeat: controlsOn && (config.controls?.prevBeat ?? false),
621
+ nextBeat: controlsOn && (config.controls?.nextBeat ?? false),
622
622
  seek: controlsOn && (config.controls?.seek ?? true),
623
623
  speed: controlsOn && (config.controls?.speed ?? true),
624
624
  fit: controlsOn && (config.controls?.fit ?? true),
@@ -651,7 +651,7 @@ function resolvePlayer(config = {}, overrides = {}) {
651
651
  ...controls,
652
652
  resetView,
653
653
  enabled: controlsEnabled,
654
- speeds: config.controls?.speeds?.length ? config.controls.speeds : [0.1, 0.25, 0.5, 1, 1.5]
654
+ speeds: config.controls?.speeds?.length ? config.controls.speeds : [0.25, 1]
655
655
  },
656
656
  interaction: {
657
657
  ...gestures,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markdy/core",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "Diagram-native MarkdyScript parser and compiler (auto-layout, edge routing, cue scheduling) — zero runtime dependencies.",
5
5
  "license": "MIT",
6
6
  "type": "module",