jssm 5.85.11 → 5.86.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/jssm.d.ts CHANGED
@@ -74,6 +74,7 @@ declare class Machine<mDT> {
74
74
  _has_post_exit_hooks: boolean;
75
75
  _has_post_global_action_hooks: boolean;
76
76
  _has_post_transition_hooks: boolean;
77
+ _allows_override: boolean;
77
78
  _post_hooks: Map<string, HookHandler<mDT>>;
78
79
  _post_named_hooks: Map<string, HookHandler<mDT>>;
79
80
  _post_entry_hooks: Map<string, HookHandler<mDT>>;
@@ -483,6 +484,12 @@ declare class Machine<mDT> {
483
484
  list_actions(): Array<StateType>;
484
485
  get uses_actions(): boolean;
485
486
  get uses_forced_transitions(): boolean;
487
+ /*********
488
+ *
489
+ * Check if a machine allows overriding state and data.
490
+ *
491
+ */
492
+ get allows_override(): boolean;
486
493
  all_themes(): FslTheme[];
487
494
  get themes(): FslTheme | FslTheme[];
488
495
  set themes(to: FslTheme | FslTheme[]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.85.11",
3
+ "version": "5.86.1",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },