jssm 5.64.0 → 5.65.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/jssm.d.ts CHANGED
@@ -2,7 +2,7 @@ declare type StateType = string;
2
2
  import { JssmGenericState, JssmGenericConfig, JssmTransition, JssmTransitionList, // JssmTransitionRule,
3
3
  JssmMachineInternalState, JssmParseTree, JssmStateDeclaration, JssmArrow, JssmArrowDirection, JssmArrowKind, JssmLayout, FslDirection, FslTheme, HookDescription, HookHandler } from './jssm_types';
4
4
  import { seq, weighted_rand_select, weighted_sample_select, histograph, weighted_histo_key } from './jssm_util';
5
- import { shapes, gviz_shapes } from './jssm_constants';
5
+ import { shapes, gviz_shapes, named_colors } from './jssm_constants';
6
6
  import { version } from './version';
7
7
  declare function arrow_direction(arrow: JssmArrow): JssmArrowDirection;
8
8
  declare function arrow_left_kind(arrow: JssmArrow): JssmArrowKind;
@@ -131,4 +131,4 @@ declare class Machine<mDT> {
131
131
  }
132
132
  declare function sm<mDT>(template_strings: TemplateStringsArray, ...remainder: any[]): Machine<mDT>;
133
133
  declare function from<mDT>(MachineAsString: string, ExtraConstructorFields?: Partial<JssmGenericConfig<mDT>> | undefined): Machine<mDT>;
134
- export { version, transfer_state_properties, Machine, make, wrap_parse as parse, compile, sm, from, arrow_direction, arrow_left_kind, arrow_right_kind, seq, weighted_rand_select, histograph, weighted_sample_select, weighted_histo_key, shapes, gviz_shapes };
134
+ export { version, transfer_state_properties, Machine, make, wrap_parse as parse, compile, sm, from, arrow_direction, arrow_left_kind, arrow_right_kind, seq, weighted_rand_select, histograph, weighted_sample_select, weighted_histo_key, shapes, gviz_shapes, named_colors };
@@ -1,3 +1,4 @@
1
1
  declare const gviz_shapes: string[];
2
2
  declare const shapes: string[];
3
- export { gviz_shapes, shapes };
3
+ declare const named_colors: string[];
4
+ export { gviz_shapes, shapes, named_colors };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.64.0",
3
+ "version": "5.65.0",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },
@@ -46,7 +46,7 @@
46
46
  "benny": "node ./src/buildjs/benchmark.js",
47
47
  "build": "npm run vet && npm run test && npm run site && npm run docs && npm run benny",
48
48
  "qbuild": "npm run test",
49
- "ci_build": "npm run vet && npm run test && npm run benny",
49
+ "ci_build": "npm run vet && npm run test",
50
50
  "minify": "mv dist/es6/jssm-dot.js dist/es6/jssm-dot.nonmin.js && terser dist/es6/jssm-dot.nonmin.js > dist/es6/jssm-dot.js",
51
51
  "min_iife": "mv dist/jssm.es5.iife.js dist/jssm.es5.iife.nonmin.js && terser dist/jssm.es5.iife.nonmin.js > dist/jssm.es5.iife.js",
52
52
  "min_cjs": "mv dist/jssm.es5.cjs.js dist/jssm.es5.cjs.nonmin.js && terser dist/jssm.es5.cjs.nonmin.js > dist/jssm.es5.cjs.js",