@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 +1 -1
- package/tdsl_wasm.d.ts +3 -6
- package/tdsl_wasm.js +3 -6
- package/tdsl_wasm_bg.wasm +0 -0
package/package.json
CHANGED
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"`
|
|
52
|
-
* `ZIGZAG_MAX_LANES` lanes; beyond that
|
|
53
|
-
*
|
|
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"`
|
|
92
|
-
* `ZIGZAG_MAX_LANES` lanes; beyond that
|
|
93
|
-
*
|
|
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
|