@markdy/core 1.0.14 → 1.0.15

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 +2 -2
  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),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markdy/core",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
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",