@keroway/tdsl-wasm 1.27.0 → 2.0.0

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
@@ -2,7 +2,7 @@
2
2
  "name": "@keroway/tdsl-wasm",
3
3
  "type": "module",
4
4
  "description": "WebAssembly bindings for the Timeline DSL compiler (static compile + SVG/HTML render)",
5
- "version": "1.27.0",
5
+ "version": "2.0.0",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
package/tdsl_wasm.d.ts CHANGED
@@ -48,12 +48,9 @@ export class JsRenderOptions {
48
48
  /**
49
49
  * High-level visual layout style (#543/#564/#565): `"timeline"` (default),
50
50
  * `"group-bands"`, `"gantt"`, or `"zigzag"`. Orthogonal to `orientation`.
51
- * `"zigzag"` only takes effect when the timeline has at most
52
- * `ZIGZAG_MAX_LANES` lanes; beyond that it falls back to `"timeline"`
53
- * positioning at the `tdsl-render` layer callers that need a
54
- * user-facing warning (mirroring the CLI's `--layout-style zigzag`
55
- * notice) should check the timeline's lane count themselves before
56
- * rendering.
51
+ * `"zigzag"` is supported only when the timeline has at most
52
+ * `ZIGZAG_MAX_LANES` lanes; beyond that `tdsl-render` returns an explicit
53
+ * error instead of falling back to `"timeline"` positioning.
57
54
  */
58
55
  layout_style: string;
59
56
  orientation: string;
package/tdsl_wasm.js CHANGED
@@ -88,12 +88,9 @@ export class JsRenderOptions {
88
88
  /**
89
89
  * High-level visual layout style (#543/#564/#565): `"timeline"` (default),
90
90
  * `"group-bands"`, `"gantt"`, or `"zigzag"`. Orthogonal to `orientation`.
91
- * `"zigzag"` only takes effect when the timeline has at most
92
- * `ZIGZAG_MAX_LANES` lanes; beyond that it falls back to `"timeline"`
93
- * positioning at the `tdsl-render` layer callers that need a
94
- * user-facing warning (mirroring the CLI's `--layout-style zigzag`
95
- * notice) should check the timeline's lane count themselves before
96
- * rendering.
91
+ * `"zigzag"` is supported only when the timeline has at most
92
+ * `ZIGZAG_MAX_LANES` lanes; beyond that `tdsl-render` returns an explicit
93
+ * error instead of falling back to `"timeline"` positioning.
97
94
  * @returns {string}
98
95
  */
99
96
  get layout_style() {
package/tdsl_wasm_bg.wasm CHANGED
Binary file