jssm 5.85.11 → 5.86.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/CHANGELOG.md +39 -33
- package/README.md +2 -2
- package/dist/es6/jssm.d.ts +7 -0
- package/dist/es6/jssm.js +9 -0
- package/dist/es6/version.js +1 -1
- package/dist/jssm.es5.cjs.js +1 -1
- package/dist/jssm.es5.iife.js +1 -1
- package/jssm.d.ts +7 -0
- package/package.json +1 -1
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[]);
|