jssm 5.85.3 → 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/CHANGELOG.md +55 -57
- package/README.md +2 -2
- package/dist/es6/jssm.d.ts +3 -2
- package/dist/es6/jssm.js +24 -3
- package/dist/es6/version.d.ts +2 -2
- package/dist/es6/version.js +2 -2
- package/dist/jssm.es5.cjs.js +1 -1
- package/dist/jssm.es5.iife.js +1 -1
- package/jssm.d.ts +3 -2
- package/package.json +1 -1
- package/version.d.ts +2 -2
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
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const version: string;
|
|
2
|
-
export { version };
|
|
1
|
+
declare const version: string, build_time: number;
|
|
2
|
+
export { version, build_time };
|