jssm 5.146.0 → 5.147.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 +7 -7
- package/custom-elements.json +342 -3
- package/dist/cdn/instance.js +144 -9
- package/dist/cdn/viz.js +10 -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 +7 -7
- 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/dist/wc/instance.define.js +9 -1
- package/dist/wc/instance.js +134 -7
- package/dist/wc/viz.define.js +9 -1
- package/package.json +1 -1
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.
|
|
23540
|
+
const version = "5.147.0";
|
|
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;
|
|
@@ -30086,7 +30086,15 @@ __decorate([
|
|
|
30086
30086
|
r()
|
|
30087
30087
|
], FslViz.prototype, "_svg", void 0);
|
|
30088
30088
|
|
|
30089
|
-
/**
|
|
30089
|
+
/**
|
|
30090
|
+
* Thin subclass so `<jssm-viz>` registers under a distinct constructor.
|
|
30091
|
+
*
|
|
30092
|
+
* @deprecated The `jssm-*` tag and the `JssmViz` class alias are deprecated
|
|
30093
|
+
* since v5 in favor of the canonical `<fsl-viz>` / {@link FslViz}, for
|
|
30094
|
+
* fsl.tools brand alignment. They remain functional but are slated for
|
|
30095
|
+
* removal in v6 (tracked in `v6_breaking_changes.json` on the `v6` branch).
|
|
30096
|
+
* New components are `fsl-*`-only.
|
|
30097
|
+
*/
|
|
30090
30098
|
class JssmViz extends FslViz {
|
|
30091
30099
|
}
|
|
30092
30100
|
define_with_synonym('fsl-viz', 'jssm-viz', FslViz, JssmViz);
|