jssm 5.95.0 → 5.96.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/CHANGELOG.md +45 -40
- package/README.md +5 -5
- package/dist/es6/jssm.js +10 -2
- package/dist/es6/version.js +1 -1
- package/dist/jssm.es5.cjs +1 -1
- package/dist/jssm.es5.iife.cjs +1 -1
- package/dist/jssm.es5.iife.nonmin.cjs +11 -3
- package/dist/jssm.es5.nonmin.cjs +11 -3
- package/package.json +1 -1
|
@@ -20654,7 +20654,7 @@ var jssm = (function (exports) {
|
|
|
20654
20654
|
named_colors: named_colors$1
|
|
20655
20655
|
});
|
|
20656
20656
|
|
|
20657
|
-
const version = "5.
|
|
20657
|
+
const version = "5.96.1", build_time = 1704567474053;
|
|
20658
20658
|
|
|
20659
20659
|
// whargarbl lots of these return arrays could/should be sets
|
|
20660
20660
|
const { shapes, gviz_shapes, named_colors } = constants;
|
|
@@ -21799,7 +21799,12 @@ var jssm = (function (exports) {
|
|
|
21799
21799
|
return Array.from(wstate.keys());
|
|
21800
21800
|
}
|
|
21801
21801
|
else {
|
|
21802
|
-
|
|
21802
|
+
if (this.has_state(whichState)) {
|
|
21803
|
+
return [];
|
|
21804
|
+
}
|
|
21805
|
+
else {
|
|
21806
|
+
throw new JssmError(this, `No such state ${JSON.stringify(whichState)}`);
|
|
21807
|
+
}
|
|
21803
21808
|
}
|
|
21804
21809
|
}
|
|
21805
21810
|
/********
|
|
@@ -22928,7 +22933,10 @@ var jssm = (function (exports) {
|
|
|
22928
22933
|
// this is enforced by the "after mapping runs normally with very short time" tests in after_mapping.spec
|
|
22929
22934
|
// we'll mark it no-check so that our coverage numbers aren't wrecked
|
|
22930
22935
|
/* istanbul ignore next */
|
|
22931
|
-
() =>
|
|
22936
|
+
() => {
|
|
22937
|
+
this.clear_state_timeout();
|
|
22938
|
+
this.go(next_state);
|
|
22939
|
+
}, after_time);
|
|
22932
22940
|
this._timeout_target = next_state;
|
|
22933
22941
|
this._timeout_target_time = after_time;
|
|
22934
22942
|
}
|
package/dist/jssm.es5.nonmin.cjs
CHANGED
|
@@ -20655,7 +20655,7 @@ var constants = /*#__PURE__*/Object.freeze({
|
|
|
20655
20655
|
named_colors: named_colors$1
|
|
20656
20656
|
});
|
|
20657
20657
|
|
|
20658
|
-
const version = "5.
|
|
20658
|
+
const version = "5.96.1", build_time = 1704567474053;
|
|
20659
20659
|
|
|
20660
20660
|
// whargarbl lots of these return arrays could/should be sets
|
|
20661
20661
|
const { shapes, gviz_shapes, named_colors } = constants;
|
|
@@ -21800,7 +21800,12 @@ class Machine {
|
|
|
21800
21800
|
return Array.from(wstate.keys());
|
|
21801
21801
|
}
|
|
21802
21802
|
else {
|
|
21803
|
-
|
|
21803
|
+
if (this.has_state(whichState)) {
|
|
21804
|
+
return [];
|
|
21805
|
+
}
|
|
21806
|
+
else {
|
|
21807
|
+
throw new JssmError(this, `No such state ${JSON.stringify(whichState)}`);
|
|
21808
|
+
}
|
|
21804
21809
|
}
|
|
21805
21810
|
}
|
|
21806
21811
|
/********
|
|
@@ -22929,7 +22934,10 @@ class Machine {
|
|
|
22929
22934
|
// this is enforced by the "after mapping runs normally with very short time" tests in after_mapping.spec
|
|
22930
22935
|
// we'll mark it no-check so that our coverage numbers aren't wrecked
|
|
22931
22936
|
/* istanbul ignore next */
|
|
22932
|
-
() =>
|
|
22937
|
+
() => {
|
|
22938
|
+
this.clear_state_timeout();
|
|
22939
|
+
this.go(next_state);
|
|
22940
|
+
}, after_time);
|
|
22933
22941
|
this._timeout_target = next_state;
|
|
22934
22942
|
this._timeout_target_time = after_time;
|
|
22935
22943
|
}
|