jssm 5.131.0 → 5.133.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/README.md +7 -7
- package/dist/cdn/viz.js +64 -48
- package/dist/cli/fsl-render.cjs +1 -1
- package/dist/cli/fsl.cjs +1 -1
- package/dist/deno/README.md +7 -7
- package/dist/deno/jssm.d.ts +4 -4
- package/dist/deno/jssm.js +1 -1
- package/dist/deno/jssm_util.d.ts +1 -36
- package/dist/jssm.es5.cjs +1 -1
- package/dist/jssm.es5.iife.js +1 -1
- package/dist/jssm.es6.mjs +1 -1
- package/dist/jssm_viz.cjs +1 -1
- package/dist/jssm_viz.iife.cjs +1 -1
- package/dist/jssm_viz.mjs +1 -1
- package/jssm.es5.d.cts +4 -4
- package/jssm.es6.d.ts +4 -4
- package/jssm_viz.es5.d.cts +4 -4
- package/jssm_viz.es6.d.ts +4 -4
- package/package.json +1 -1
package/dist/deno/jssm_util.d.ts
CHANGED
|
@@ -159,41 +159,6 @@ declare const weighted_histo_key: Function;
|
|
|
159
159
|
*
|
|
160
160
|
*/
|
|
161
161
|
declare function name_bind_prop_and_state(prop: string, state: string): string;
|
|
162
|
-
/*******
|
|
163
|
-
*
|
|
164
|
-
* Internal method generating composite keys for transition hooks by
|
|
165
|
-
* JSON-serializing a `[from, to]` state pair. Used to look up hooks
|
|
166
|
-
* registered on a specific edge. Not meant for external use.
|
|
167
|
-
*
|
|
168
|
-
* ```typescript
|
|
169
|
-
* hook_name('Red', 'Green'); // '["Red","Green"]'
|
|
170
|
-
* ```
|
|
171
|
-
*
|
|
172
|
-
* @param from - The source state name.
|
|
173
|
-
* @param to - The target state name.
|
|
174
|
-
*
|
|
175
|
-
* @returns A deterministic JSON string key for the `[from, to]` pair.
|
|
176
|
-
*
|
|
177
|
-
*/
|
|
178
|
-
declare const hook_name: (from: string, to: string) => string;
|
|
179
|
-
/*******
|
|
180
|
-
*
|
|
181
|
-
* Internal method generating composite keys for named-action hooks by
|
|
182
|
-
* JSON-serializing a `[from, to, action]` triple. Used to look up hooks
|
|
183
|
-
* registered on a specific action-labeled edge. Not meant for external use.
|
|
184
|
-
*
|
|
185
|
-
* ```typescript
|
|
186
|
-
* named_hook_name('Red', 'Green', 'next'); // '["Red","Green","next"]'
|
|
187
|
-
* ```
|
|
188
|
-
*
|
|
189
|
-
* @param from - The source state name.
|
|
190
|
-
* @param to - The target state name.
|
|
191
|
-
* @param action - The action label on the edge.
|
|
192
|
-
*
|
|
193
|
-
* @returns A deterministic JSON string key for the `[from, to, action]` triple.
|
|
194
|
-
*
|
|
195
|
-
*/
|
|
196
|
-
declare const named_hook_name: (from: string, to: string, action: string) => string;
|
|
197
162
|
/*******
|
|
198
163
|
*
|
|
199
164
|
* Creates a SplitMix32 random generator. Used by the randomness test suite.
|
|
@@ -255,4 +220,4 @@ declare function find_repeated<T>(arr: T[]): [T, number][];
|
|
|
255
220
|
*
|
|
256
221
|
*/
|
|
257
222
|
declare function sleep(ms: number): Promise<unknown>;
|
|
258
|
-
export { seq, unique, find_repeated, arr_uniq_p, histograph, weighted_histo_key, weighted_rand_select, weighted_sample_select, array_box_if_string, name_bind_prop_and_state,
|
|
223
|
+
export { seq, unique, find_repeated, arr_uniq_p, histograph, weighted_histo_key, weighted_rand_select, weighted_sample_select, array_box_if_string, name_bind_prop_and_state, gen_splitmix32, sleep };
|