jssm 5.147.0 → 5.147.1
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/custom-elements.json +6 -6
- package/dist/cdn/instance.js +1 -1
- package/dist/cdn/viz.js +1 -1
- 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/jssm.js +1 -1
- 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/package.json +3 -2
package/README.md
CHANGED
|
@@ -18,10 +18,10 @@ Please edit the file it's derived from, instead: `./src/md/readme_base.md`
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
* Generated for version 5.147.
|
|
21
|
+
* Generated for version 5.147.1 at 6/23/2026, 8:38:20 AM
|
|
22
22
|
|
|
23
23
|
-->
|
|
24
|
-
# jssm 5.147.
|
|
24
|
+
# jssm 5.147.1
|
|
25
25
|
|
|
26
26
|
[**Try the live editor**](https://stonecypher.github.io/jssm-viz-demo/graph_explorer.html) ·
|
|
27
27
|
[Documentation](https://stonecypher.github.io/jssm/docs/) ·
|
|
@@ -312,7 +312,7 @@ That decision shows up everywhere downstream:
|
|
|
312
312
|
or run `npm run benny` against your own machine.
|
|
313
313
|
|
|
314
314
|
- **More thoroughly tested than any other JavaScript state-machine
|
|
315
|
-
library.** 7,
|
|
315
|
+
library.** 7,461 tests at 100.0% line coverage
|
|
316
316
|
([report](https://coveralls.io/github/StoneCypher/jssm)), plus
|
|
317
317
|
fuzz testing via `fast-check`, with parser test data across ten natural
|
|
318
318
|
languages and Emoji.
|
|
@@ -445,10 +445,10 @@ If your contribution is missing here, please open an issue.
|
|
|
445
445
|
|
|
446
446
|
<br/>
|
|
447
447
|
|
|
448
|
-
***7,
|
|
448
|
+
***7,461 tests***, run 82,503 times.
|
|
449
449
|
|
|
450
|
-
- 6,
|
|
451
|
-
- 758 fuzz tests with 69.
|
|
450
|
+
- 6,703 specs with 100.0% coverage
|
|
451
|
+
- 758 fuzz tests with 69.4% coverage
|
|
452
452
|
- 7,276 TypeScript lines - 1.0 tests per line, 11.3 generated tests per line
|
|
453
453
|
|
|
454
454
|
[](https://github.com/StoneCypher/jssm/actions)
|
package/custom-elements.json
CHANGED
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"declarations": [
|
|
194
194
|
{
|
|
195
195
|
"kind": "class",
|
|
196
|
-
"description": "Read-only panel that displays the parent machine's **resolved FSL\nproperties** for the current state — the values produced by the full\noverride chain (machine `property … default …` → per-state\n`state X: { property … }`), as returned by `machine.props()`. Refreshes on\nevery transition, so consumers can watch a property's effective value change\nas the machine moves between states.\n\nBinds to the host via closest_wc (matching both `fsl-instance` and\nthe deprecated `jssm-instance`). Display-only; never drives the machine.\n\nv1 shows the FSL `property` bag (`machine.props()`). The render-time visual\nstyle resolution (shape/color used by `<fsl-viz>`) is a separate viz-pipeline\nconcern and is not surfaced here.",
|
|
196
|
+
"description": "Read-only panel that displays the parent machine's **resolved FSL\r\nproperties** for the current state — the values produced by the full\r\noverride chain (machine `property … default …` → per-state\r\n`state X: { property … }`), as returned by `machine.props()`. Refreshes on\r\nevery transition, so consumers can watch a property's effective value change\r\nas the machine moves between states.\r\n\r\nBinds to the host via closest_wc (matching both `fsl-instance` and\r\nthe deprecated `jssm-instance`). Display-only; never drives the machine.\r\n\r\nv1 shows the FSL `property` bag (`machine.props()`). The render-time visual\r\nstyle resolution (shape/color used by `<fsl-viz>`) is a separate viz-pipeline\r\nconcern and is not surfaced here.",
|
|
197
197
|
"name": "FslEffectiveProperties",
|
|
198
198
|
"cssProperties": [
|
|
199
199
|
{
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
},
|
|
232
232
|
"privacy": "private",
|
|
233
233
|
"default": "null",
|
|
234
|
-
"description": "Resolved property entries (`[name, stringified value]`) for the current\nstate, or `null` before the panel has bound to a host machine."
|
|
234
|
+
"description": "Resolved property entries (`[name, stringified value]`) for the current\r\nstate, or `null` before the panel has bound to a host machine."
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
237
|
"kind": "method",
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
"description": "The bound parent host whose machine to snapshot."
|
|
252
252
|
}
|
|
253
253
|
],
|
|
254
|
-
"description": "Read the resolved property bag (`machine.props()`) into reactive entries,\ntriggering a re-render."
|
|
254
|
+
"description": "Read the resolved property bag (`machine.props()`) into reactive entries,\r\ntriggering a re-render."
|
|
255
255
|
}
|
|
256
256
|
],
|
|
257
257
|
"superclass": {
|
|
@@ -527,7 +527,7 @@
|
|
|
527
527
|
"declarations": [
|
|
528
528
|
{
|
|
529
529
|
"kind": "class",
|
|
530
|
-
"description": "Read-only state-inspector web component for a parent `<fsl-instance>`.\n\nSlotted into the host's `info-panel` slot (or nested anywhere inside it), it\ndisplays the machine's current state, the most recent transition\n(`from → to via action`), the currently-legal exit actions, and the\nterminal / complete flags. Every field refreshes on each `transition`\nevent.\n\nDisplay-only: it never drives the machine. It binds by walking up to the\nhost via closest_wc (which matches both the canonical `fsl-instance`\nand the deprecated `jssm-instance` host tags), so it works under either.",
|
|
530
|
+
"description": "Read-only state-inspector web component for a parent `<fsl-instance>`.\r\n\r\nSlotted into the host's `info-panel` slot (or nested anywhere inside it), it\r\ndisplays the machine's current state, the most recent transition\r\n(`from → to via action`), the currently-legal exit actions, and the\r\nterminal / complete flags. Every field refreshes on each `transition`\r\nevent.\r\n\r\nDisplay-only: it never drives the machine. It binds by walking up to the\r\nhost via closest_wc (which matches both the canonical `fsl-instance`\r\nand the deprecated `jssm-instance` host tags), so it works under either.",
|
|
531
531
|
"name": "FslInfoPanel",
|
|
532
532
|
"cssProperties": [
|
|
533
533
|
{
|
|
@@ -545,7 +545,7 @@
|
|
|
545
545
|
},
|
|
546
546
|
"privacy": "private",
|
|
547
547
|
"default": "null",
|
|
548
|
-
"description": "Parent host reference, set in `connectedCallback` when one is found.\nCleared on disconnect so a stale deferred subscription cannot fire."
|
|
548
|
+
"description": "Parent host reference, set in `connectedCallback` when one is found.\r\nCleared on disconnect so a stale deferred subscription cannot fire."
|
|
549
549
|
},
|
|
550
550
|
{
|
|
551
551
|
"kind": "field",
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
"description": "The bound parent host whose machine to snapshot."
|
|
626
626
|
}
|
|
627
627
|
],
|
|
628
|
-
"description": "Read the current machine snapshot into the reactive fields, triggering a\nre-render. Called once on bind and again on every transition. The bound\nhost is passed in by the caller (which already holds a non-null reference),\nso no re-null-check is needed here."
|
|
628
|
+
"description": "Read the current machine snapshot into the reactive fields, triggering a\r\nre-render. Called once on bind and again on every transition. The bound\r\nhost is passed in by the caller (which already holds a non-null reference),\r\nso no re-null-check is needed here."
|
|
629
629
|
}
|
|
630
630
|
],
|
|
631
631
|
"superclass": {
|
package/dist/cdn/instance.js
CHANGED
|
@@ -23512,7 +23512,7 @@ var constants = /*#__PURE__*/Object.freeze({
|
|
|
23512
23512
|
* Useful for runtime diagnostics and for embedding in serialized machine
|
|
23513
23513
|
* snapshots so that deserializers can detect version-skew.
|
|
23514
23514
|
*/
|
|
23515
|
-
const version = "5.147.
|
|
23515
|
+
const version = "5.147.1";
|
|
23516
23516
|
|
|
23517
23517
|
// whargarbl lots of these return arrays could/should be sets
|
|
23518
23518
|
const { state_name_chars, state_name_first_chars, action_label_chars } = constants;
|
package/dist/cdn/viz.js
CHANGED
|
@@ -23537,7 +23537,7 @@ var constants = /*#__PURE__*/Object.freeze({
|
|
|
23537
23537
|
* Useful for runtime diagnostics and for embedding in serialized machine
|
|
23538
23538
|
* snapshots so that deserializers can detect version-skew.
|
|
23539
23539
|
*/
|
|
23540
|
-
const version = "5.147.
|
|
23540
|
+
const version = "5.147.1";
|
|
23541
23541
|
|
|
23542
23542
|
// whargarbl lots of these return arrays could/should be sets
|
|
23543
23543
|
const { state_name_chars, state_name_first_chars, action_label_chars } = constants;
|