jssm 5.159.2 → 5.161.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/README.md +6 -6
- package/dist/cdn/instance.js +2 -2
- package/dist/cdn/viz.js +2 -2
- package/dist/cli/fsl-export-system-prompt.cjs +1 -1
- package/dist/cli/fsl-render.cjs +1 -1
- package/dist/cli/fsl.cjs +1 -1
- package/dist/cli/lib.cjs +1 -1
- package/dist/cli/lib.mjs +1 -1
- package/dist/deno/README.md +6 -6
- package/dist/deno/fsl_fence_render.d.ts +0 -10
- package/dist/deno/fsl_markdown_fence.d.ts +3 -3
- package/dist/deno/jssm.d.ts +2 -2
- package/dist/deno/jssm.js +1 -1
- package/dist/deno/jssm_types.d.ts +138 -138
- package/dist/deno/jssm_viz.d.ts +3 -3
- package/dist/fence/fence.js +31906 -31893
- package/dist/jssm.es5.cjs +1 -1
- package/dist/jssm.es5.iife.js +1 -1
- package/dist/jssm.es6.mjs +1 -1
- package/dist/jssm_viz.cjs +1 -1
- package/dist/jssm_viz.iife.cjs +1 -1
- package/dist/jssm_viz.mjs +1 -1
- package/dist/wc/instance.js +5 -0
- package/dist/wc/widgets.js +3 -0
- package/jssm.cli.d.cts +4 -4
- package/jssm.cli.d.ts +4 -4
- package/jssm.es5.d.cts +131 -131
- package/jssm.es6.d.ts +131 -131
- package/jssm.fence.d.ts +122 -132
- package/jssm_viz.es5.d.cts +125 -125
- package/jssm_viz.es6.d.ts +125 -125
- package/package.json +5 -5
package/dist/deno/jssm_viz.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import type { JssmGroupMemberRef, JssmTransitionConfig, JssmGraphConfig } from '
|
|
|
15
15
|
* diagram or when overlap is pervasive.
|
|
16
16
|
* - `'off'` — ignore groups entirely; byte-for-byte the historical output.
|
|
17
17
|
*/
|
|
18
|
-
|
|
18
|
+
type RenderGroups = 'cluster' | 'chips' | 'off';
|
|
19
19
|
/**
|
|
20
20
|
* Inject runtime configuration for jssm/viz. Currently only accepts a
|
|
21
21
|
* custom `DOMParser` constructor for use by `*_svg_element` functions in
|
|
@@ -304,7 +304,7 @@ declare function graph_attrs_body(config: JssmGraphConfig | undefined): string;
|
|
|
304
304
|
*
|
|
305
305
|
* @internal
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
type StateKind = 'final' | 'complete' | 'terminal' | 'base';
|
|
308
308
|
/**
|
|
309
309
|
* Slugify a group name into the body of a Graphviz `cluster_…` subgraph
|
|
310
310
|
* identifier. Graphviz treats any `subgraph` whose name begins with the
|
|
@@ -453,7 +453,7 @@ declare function chips_for_all_groups<T>(u_jssm: jssm.Machine<T>, l_states: stri
|
|
|
453
453
|
* see {@link RenderGroups}. `'off'` reproduces the historical, group-blind
|
|
454
454
|
* output byte-for-byte.
|
|
455
455
|
*/
|
|
456
|
-
|
|
456
|
+
type VizRenderOpts = {
|
|
457
457
|
hide_state_labels?: boolean;
|
|
458
458
|
footer?: string;
|
|
459
459
|
engine?: string;
|