jssm 5.85.5 → 5.85.6

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
@@ -4,7 +4,7 @@ JssmMachineInternalState, JssmParseTree, JssmStateDeclaration, JssmStateStyleKey
4
4
  import { seq, unique, find_repeated, weighted_rand_select, weighted_sample_select, histograph, weighted_histo_key } from './jssm_util';
5
5
  import * as constants from './jssm_constants';
6
6
  declare const shapes: string[], gviz_shapes: string[], named_colors: string[];
7
- import { version } from './version';
7
+ import { version, build_time } from './version';
8
8
  /*********
9
9
  *
10
10
  * Return the direction of an arrow - `right`, `left`, or `both`.
@@ -651,6 +651,7 @@ declare class Machine<mDT> {
651
651
  list_edges(): Array<JssmTransition<mDT>>;
652
652
  list_named_transitions(): Map<StateType, number>;
653
653
  list_actions(): Array<StateType>;
654
+ get uses_actions(): boolean;
654
655
  all_themes(): FslTheme[];
655
656
  get themes(): FslTheme | FslTheme[];
656
657
  set themes(to: FslTheme | FslTheme[]);
@@ -1237,4 +1238,4 @@ declare function is_hook_complex_result<mDT>(hr: unknown): hr is HookComplexResu
1237
1238
  declare function is_hook_rejection<mDT>(hr: HookResult<mDT>): boolean;
1238
1239
  declare function abstract_hook_step<mDT>(maybe_hook: HookHandler<mDT> | undefined, hook_args: HookContext<mDT>): HookComplexResult<mDT>;
1239
1240
  declare function deserialize<mDT>(machine_string: string, ser: JssmSerialization<mDT>): Machine<mDT>;
1240
- export { version, transfer_state_properties, Machine, deserialize, make, wrap_parse as parse, compile, sm, from, arrow_direction, arrow_left_kind, arrow_right_kind, seq, unique, find_repeated, weighted_rand_select, histograph, weighted_sample_select, weighted_histo_key, constants, shapes, gviz_shapes, named_colors, is_hook_rejection, is_hook_complex_result, abstract_hook_step, state_style_condense, FslDirections };
1241
+ export { version, build_time, transfer_state_properties, Machine, deserialize, make, wrap_parse as parse, compile, sm, from, arrow_direction, arrow_left_kind, arrow_right_kind, seq, unique, find_repeated, weighted_rand_select, histograph, weighted_sample_select, weighted_histo_key, constants, shapes, gviz_shapes, named_colors, is_hook_rejection, is_hook_complex_result, abstract_hook_step, state_style_condense, FslDirections };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.85.5",
3
+ "version": "5.85.6",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },