jssm 5.112.3 → 5.113.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 +3 -3
- package/dist/deno/README.md +347 -0
- package/dist/deno/jssm.js +1 -0
- package/dist/{es6 → deno}/jssm_constants.d.ts +5 -0
- package/dist/{es6 → deno}/jssm_types.d.ts +298 -5
- 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 +241 -2
- package/jssm.es6.d.ts +241 -2
- package/jssm_viz.es5.d.cts +216 -2
- package/jssm_viz.es6.d.ts +216 -2
- package/package.json +18 -2
- package/.clocignore +0 -1
- package/.codeclimate.yml +0 -22
- package/.editorconfig +0 -12
- package/.eslintrc +0 -20
- package/.gitattributes +0 -17
- package/.log-progress.json +0 -9
- package/.nycrc +0 -6
- package/.travis.yml +0 -9
- package/CHANGELOG.md +0 -263
- package/CLAUDE.md +0 -11
- package/dist/es6/fsl_parser.js +0 -1
- package/dist/es6/jssm.js +0 -3320
- package/dist/es6/jssm_arrow.js +0 -211
- package/dist/es6/jssm_compiler.js +0 -380
- package/dist/es6/jssm_constants.js +0 -121
- package/dist/es6/jssm_error.js +0 -47
- package/dist/es6/jssm_theme.js +0 -24
- package/dist/es6/jssm_types.js +0 -3
- package/dist/es6/jssm_util.js +0 -337
- package/dist/es6/jssm_viz.js +0 -560
- package/dist/es6/jssm_viz_colors.js +0 -63
- package/dist/es6/themes/jssm_base_stylesheet.d.ts +0 -11
- package/dist/es6/themes/jssm_base_stylesheet.js +0 -58
- package/dist/es6/themes/jssm_theme_bold.d.ts +0 -11
- package/dist/es6/themes/jssm_theme_bold.js +0 -58
- package/dist/es6/themes/jssm_theme_default.d.ts +0 -11
- package/dist/es6/themes/jssm_theme_default.js +0 -58
- package/dist/es6/themes/jssm_theme_modern.d.ts +0 -11
- package/dist/es6/themes/jssm_theme_modern.js +0 -58
- package/dist/es6/themes/jssm_theme_ocean.d.ts +0 -11
- package/dist/es6/themes/jssm_theme_ocean.js +0 -56
- package/dist/es6/themes/jssm_theme_plain.d.ts +0 -11
- package/dist/es6/themes/jssm_theme_plain.js +0 -70
- package/dist/es6/version.js +0 -2
- package/dist/jssm.es5.nonmin.cjs +0 -24506
- package/dist/jssm.es6.nonmin.cjs +0 -24473
- package/dist/jssm_viz.es5.iife.nonmin.cjs +0 -24679
- package/dist/jssm_viz.es5.nonmin.cjs +0 -24674
- package/dist/jssm_viz.es6.nonmin.cjs +0 -24661
- package/jest-dragon.config.cjs +0 -36
- package/jest-spec.config.cjs +0 -36
- package/jest-stoch.config.cjs +0 -36
- package/jest-unicode.config.cjs +0 -36
- package/log-progress.data.json +0 -28
- package/rollup.config.deno.js +0 -44
- package/rollup.config.es5.js +0 -52
- package/rollup.config.es6.js +0 -55
- package/rollup.config.viz.es5.js +0 -46
- package/rollup.config.viz.es6.js +0 -46
- package/rollup.config.viz.iife.js +0 -36
- package/tutorial_learn_testing.md +0 -168
- package/typedoc-options.cjs +0 -69
- /package/dist/{es6 → deno}/fsl_parser.d.ts +0 -0
- /package/dist/{es6 → deno}/jssm.d.ts +0 -0
- /package/dist/{es6 → deno}/jssm_arrow.d.ts +0 -0
- /package/dist/{es6 → deno}/jssm_compiler.d.ts +0 -0
- /package/dist/{es6 → deno}/jssm_error.d.ts +0 -0
- /package/dist/{es6 → deno}/jssm_theme.d.ts +0 -0
- /package/dist/{es6 → deno}/jssm_util.d.ts +0 -0
- /package/dist/{es6 → deno}/jssm_viz.d.ts +0 -0
- /package/dist/{es6 → deno}/jssm_viz_colors.d.ts +0 -0
- /package/dist/{es6 → deno}/version.d.ts +0 -0
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { JssmStateConfig, JssmBaseTheme } from '../jssm_types';
|
|
2
|
-
declare const base_state_style: JssmStateConfig;
|
|
3
|
-
declare const base_active_state_style: JssmStateConfig;
|
|
4
|
-
declare const base_terminal_state_style: JssmStateConfig;
|
|
5
|
-
declare const base_active_terminal_state_style: JssmStateConfig;
|
|
6
|
-
declare const base_start_state_style: JssmStateConfig;
|
|
7
|
-
declare const base_active_start_state_style: JssmStateConfig;
|
|
8
|
-
declare const base_end_state_style: JssmStateConfig;
|
|
9
|
-
declare const base_active_end_state_style: JssmStateConfig;
|
|
10
|
-
declare const bold_theme: JssmBaseTheme;
|
|
11
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, bold_theme, bold_theme as theme };
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
const base_state_style = {
|
|
2
|
-
shape: 'rectangle',
|
|
3
|
-
backgroundColor: 'khaki',
|
|
4
|
-
textColor: 'black',
|
|
5
|
-
borderColor: 'black'
|
|
6
|
-
};
|
|
7
|
-
const base_active_state_style = {
|
|
8
|
-
textColor: 'white',
|
|
9
|
-
backgroundColor: 'dodgerblue4'
|
|
10
|
-
};
|
|
11
|
-
const base_hooked_state_style = {
|
|
12
|
-
shape: 'component'
|
|
13
|
-
};
|
|
14
|
-
const base_terminal_state_style = {
|
|
15
|
-
textColor: 'white',
|
|
16
|
-
backgroundColor: 'crimson'
|
|
17
|
-
};
|
|
18
|
-
const base_active_terminal_state_style = {
|
|
19
|
-
textColor: 'white',
|
|
20
|
-
backgroundColor: 'indigo'
|
|
21
|
-
};
|
|
22
|
-
const base_start_state_style = {
|
|
23
|
-
backgroundColor: 'yellow'
|
|
24
|
-
};
|
|
25
|
-
const base_active_start_state_style = {
|
|
26
|
-
backgroundColor: 'yellowgreen'
|
|
27
|
-
};
|
|
28
|
-
const base_active_hooked_state_style = {
|
|
29
|
-
backgroundColor: 'yellowgreen'
|
|
30
|
-
};
|
|
31
|
-
const base_end_state_style = {
|
|
32
|
-
textColor: 'white',
|
|
33
|
-
backgroundColor: 'darkolivegreen'
|
|
34
|
-
};
|
|
35
|
-
const base_active_end_state_style = {
|
|
36
|
-
textColor: 'white',
|
|
37
|
-
backgroundColor: 'darkgreen'
|
|
38
|
-
};
|
|
39
|
-
const bold_theme = {
|
|
40
|
-
name: 'bold',
|
|
41
|
-
state: base_state_style,
|
|
42
|
-
start: base_start_state_style,
|
|
43
|
-
end: base_end_state_style,
|
|
44
|
-
terminal: base_terminal_state_style,
|
|
45
|
-
hooked: base_hooked_state_style,
|
|
46
|
-
active: base_active_state_style,
|
|
47
|
-
active_start: base_active_start_state_style,
|
|
48
|
-
active_end: base_active_end_state_style,
|
|
49
|
-
active_terminal: base_active_terminal_state_style,
|
|
50
|
-
active_hooked: base_active_hooked_state_style,
|
|
51
|
-
legal: undefined,
|
|
52
|
-
main: undefined,
|
|
53
|
-
forced: undefined,
|
|
54
|
-
action: undefined,
|
|
55
|
-
graph: undefined,
|
|
56
|
-
title: undefined // TODO FIXME
|
|
57
|
-
};
|
|
58
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, bold_theme, bold_theme as theme };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { JssmStateConfig, JssmBaseTheme } from '../jssm_types';
|
|
2
|
-
declare const base_state_style: JssmStateConfig;
|
|
3
|
-
declare const base_active_state_style: JssmStateConfig;
|
|
4
|
-
declare const base_terminal_state_style: JssmStateConfig;
|
|
5
|
-
declare const base_active_terminal_state_style: JssmStateConfig;
|
|
6
|
-
declare const base_start_state_style: JssmStateConfig;
|
|
7
|
-
declare const base_active_start_state_style: JssmStateConfig;
|
|
8
|
-
declare const base_end_state_style: JssmStateConfig;
|
|
9
|
-
declare const base_active_end_state_style: JssmStateConfig;
|
|
10
|
-
declare const default_theme: JssmBaseTheme;
|
|
11
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, default_theme, default_theme as theme };
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
const base_state_style = {
|
|
2
|
-
shape: 'rectangle',
|
|
3
|
-
backgroundColor: 'white',
|
|
4
|
-
textColor: 'black',
|
|
5
|
-
borderColor: 'black'
|
|
6
|
-
};
|
|
7
|
-
const base_active_state_style = {
|
|
8
|
-
textColor: 'white',
|
|
9
|
-
backgroundColor: 'dodgerblue4'
|
|
10
|
-
};
|
|
11
|
-
const base_hooked_state_style = {
|
|
12
|
-
shape: 'component'
|
|
13
|
-
};
|
|
14
|
-
const base_terminal_state_style = {
|
|
15
|
-
textColor: 'white',
|
|
16
|
-
backgroundColor: 'crimson'
|
|
17
|
-
};
|
|
18
|
-
const base_active_terminal_state_style = {
|
|
19
|
-
textColor: 'white',
|
|
20
|
-
backgroundColor: 'indigo'
|
|
21
|
-
};
|
|
22
|
-
const base_start_state_style = {
|
|
23
|
-
backgroundColor: 'yellow'
|
|
24
|
-
};
|
|
25
|
-
const base_active_start_state_style = {
|
|
26
|
-
backgroundColor: 'yellowgreen'
|
|
27
|
-
};
|
|
28
|
-
const base_active_hooked_state_style = {
|
|
29
|
-
backgroundColor: 'yellowgreen'
|
|
30
|
-
};
|
|
31
|
-
const base_end_state_style = {
|
|
32
|
-
textColor: 'white',
|
|
33
|
-
backgroundColor: 'darkolivegreen'
|
|
34
|
-
};
|
|
35
|
-
const base_active_end_state_style = {
|
|
36
|
-
textColor: 'white',
|
|
37
|
-
backgroundColor: 'darkgreen'
|
|
38
|
-
};
|
|
39
|
-
const default_theme = {
|
|
40
|
-
name: 'default',
|
|
41
|
-
state: base_state_style,
|
|
42
|
-
start: base_start_state_style,
|
|
43
|
-
end: base_end_state_style,
|
|
44
|
-
terminal: base_terminal_state_style,
|
|
45
|
-
hooked: base_hooked_state_style,
|
|
46
|
-
active: base_active_state_style,
|
|
47
|
-
active_start: base_active_start_state_style,
|
|
48
|
-
active_end: base_active_end_state_style,
|
|
49
|
-
active_terminal: base_active_terminal_state_style,
|
|
50
|
-
active_hooked: base_active_hooked_state_style,
|
|
51
|
-
legal: undefined,
|
|
52
|
-
main: undefined,
|
|
53
|
-
forced: undefined,
|
|
54
|
-
action: undefined,
|
|
55
|
-
graph: undefined,
|
|
56
|
-
title: undefined // TODO FIXME
|
|
57
|
-
};
|
|
58
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, default_theme, default_theme as theme };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { JssmStateConfig, JssmBaseTheme } from '../jssm_types';
|
|
2
|
-
declare const base_state_style: JssmStateConfig;
|
|
3
|
-
declare const base_active_state_style: JssmStateConfig;
|
|
4
|
-
declare const base_terminal_state_style: JssmStateConfig;
|
|
5
|
-
declare const base_active_terminal_state_style: JssmStateConfig;
|
|
6
|
-
declare const base_start_state_style: JssmStateConfig;
|
|
7
|
-
declare const base_active_start_state_style: JssmStateConfig;
|
|
8
|
-
declare const base_end_state_style: JssmStateConfig;
|
|
9
|
-
declare const base_active_end_state_style: JssmStateConfig;
|
|
10
|
-
declare const modern_theme: JssmBaseTheme;
|
|
11
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, modern_theme, modern_theme as theme };
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
const base_state_style = {
|
|
2
|
-
shape: 'rectangle',
|
|
3
|
-
backgroundColor: 'khaki',
|
|
4
|
-
textColor: 'black',
|
|
5
|
-
borderColor: 'black'
|
|
6
|
-
};
|
|
7
|
-
const base_active_state_style = {
|
|
8
|
-
textColor: 'white',
|
|
9
|
-
backgroundColor: 'dodgerblue4'
|
|
10
|
-
};
|
|
11
|
-
const base_hooked_state_style = {
|
|
12
|
-
shape: 'component'
|
|
13
|
-
};
|
|
14
|
-
const base_terminal_state_style = {
|
|
15
|
-
textColor: 'white',
|
|
16
|
-
backgroundColor: 'crimson'
|
|
17
|
-
};
|
|
18
|
-
const base_active_terminal_state_style = {
|
|
19
|
-
textColor: 'white',
|
|
20
|
-
backgroundColor: 'indigo'
|
|
21
|
-
};
|
|
22
|
-
const base_start_state_style = {
|
|
23
|
-
backgroundColor: 'yellow'
|
|
24
|
-
};
|
|
25
|
-
const base_active_start_state_style = {
|
|
26
|
-
backgroundColor: 'yellowgreen'
|
|
27
|
-
};
|
|
28
|
-
const base_active_hooked_state_style = {
|
|
29
|
-
backgroundColor: 'yellowgreen'
|
|
30
|
-
};
|
|
31
|
-
const base_end_state_style = {
|
|
32
|
-
textColor: 'white',
|
|
33
|
-
backgroundColor: 'darkolivegreen'
|
|
34
|
-
};
|
|
35
|
-
const base_active_end_state_style = {
|
|
36
|
-
textColor: 'white',
|
|
37
|
-
backgroundColor: 'darkgreen'
|
|
38
|
-
};
|
|
39
|
-
const modern_theme = {
|
|
40
|
-
name: 'modern',
|
|
41
|
-
state: base_state_style,
|
|
42
|
-
start: base_start_state_style,
|
|
43
|
-
end: base_end_state_style,
|
|
44
|
-
terminal: base_terminal_state_style,
|
|
45
|
-
hooked: base_hooked_state_style,
|
|
46
|
-
active: base_active_state_style,
|
|
47
|
-
active_start: base_active_start_state_style,
|
|
48
|
-
active_end: base_active_end_state_style,
|
|
49
|
-
active_terminal: base_active_terminal_state_style,
|
|
50
|
-
active_hooked: base_active_hooked_state_style,
|
|
51
|
-
legal: undefined,
|
|
52
|
-
main: undefined,
|
|
53
|
-
forced: undefined,
|
|
54
|
-
action: undefined,
|
|
55
|
-
graph: undefined,
|
|
56
|
-
title: undefined // TODO FIXME
|
|
57
|
-
};
|
|
58
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, modern_theme, modern_theme as theme };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { JssmStateConfig, JssmBaseTheme } from '../jssm_types';
|
|
2
|
-
declare const base_state_style: JssmStateConfig;
|
|
3
|
-
declare const base_active_state_style: JssmStateConfig;
|
|
4
|
-
declare const base_terminal_state_style: JssmStateConfig;
|
|
5
|
-
declare const base_active_terminal_state_style: JssmStateConfig;
|
|
6
|
-
declare const base_start_state_style: JssmStateConfig;
|
|
7
|
-
declare const base_active_start_state_style: JssmStateConfig;
|
|
8
|
-
declare const base_end_state_style: JssmStateConfig;
|
|
9
|
-
declare const base_active_end_state_style: JssmStateConfig;
|
|
10
|
-
declare const ocean_theme: JssmBaseTheme;
|
|
11
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, ocean_theme, ocean_theme as theme };
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
const base_state_style = {
|
|
2
|
-
backgroundColor: 'cadetblue1',
|
|
3
|
-
};
|
|
4
|
-
const base_active_state_style = {
|
|
5
|
-
textColor: 'white',
|
|
6
|
-
backgroundColor: 'deepskyblue'
|
|
7
|
-
};
|
|
8
|
-
const base_hooked_state_style = {
|
|
9
|
-
shape: 'component',
|
|
10
|
-
backgroundColor: 'mediumaquamarine'
|
|
11
|
-
};
|
|
12
|
-
const base_terminal_state_style = {
|
|
13
|
-
textColor: 'white',
|
|
14
|
-
backgroundColor: 'darkviolet'
|
|
15
|
-
};
|
|
16
|
-
const base_active_terminal_state_style = {
|
|
17
|
-
textColor: 'white',
|
|
18
|
-
backgroundColor: 'deeppink'
|
|
19
|
-
};
|
|
20
|
-
const base_start_state_style = {
|
|
21
|
-
backgroundColor: 'darkseagreen1'
|
|
22
|
-
};
|
|
23
|
-
const base_active_start_state_style = {
|
|
24
|
-
backgroundColor: 'aquamarine'
|
|
25
|
-
};
|
|
26
|
-
const base_active_hooked_state_style = {
|
|
27
|
-
backgroundColor: 'aquamarine'
|
|
28
|
-
};
|
|
29
|
-
const base_end_state_style = {
|
|
30
|
-
textColor: 'white',
|
|
31
|
-
backgroundColor: 'chartreuse1'
|
|
32
|
-
};
|
|
33
|
-
const base_active_end_state_style = {
|
|
34
|
-
textColor: 'white',
|
|
35
|
-
backgroundColor: 'darkgreen'
|
|
36
|
-
};
|
|
37
|
-
const ocean_theme = {
|
|
38
|
-
name: 'ocean',
|
|
39
|
-
state: base_state_style,
|
|
40
|
-
start: base_start_state_style,
|
|
41
|
-
end: base_end_state_style,
|
|
42
|
-
terminal: base_terminal_state_style,
|
|
43
|
-
hooked: base_hooked_state_style,
|
|
44
|
-
active: base_active_state_style,
|
|
45
|
-
active_start: base_active_start_state_style,
|
|
46
|
-
active_end: base_active_end_state_style,
|
|
47
|
-
active_terminal: base_active_terminal_state_style,
|
|
48
|
-
active_hooked: base_active_hooked_state_style,
|
|
49
|
-
legal: undefined,
|
|
50
|
-
main: undefined,
|
|
51
|
-
forced: undefined,
|
|
52
|
-
action: undefined,
|
|
53
|
-
graph: undefined,
|
|
54
|
-
title: undefined // TODO FIXME
|
|
55
|
-
};
|
|
56
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, ocean_theme, ocean_theme as theme };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { JssmStateConfig, JssmBaseTheme } from '../jssm_types';
|
|
2
|
-
declare const base_state_style: JssmStateConfig;
|
|
3
|
-
declare const base_active_state_style: JssmStateConfig;
|
|
4
|
-
declare const base_terminal_state_style: JssmStateConfig;
|
|
5
|
-
declare const base_active_terminal_state_style: JssmStateConfig;
|
|
6
|
-
declare const base_start_state_style: JssmStateConfig;
|
|
7
|
-
declare const base_active_start_state_style: JssmStateConfig;
|
|
8
|
-
declare const base_end_state_style: JssmStateConfig;
|
|
9
|
-
declare const base_active_end_state_style: JssmStateConfig;
|
|
10
|
-
declare const plain_theme: JssmBaseTheme;
|
|
11
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, plain_theme, plain_theme as theme };
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
const base_state_style = {
|
|
2
|
-
textColor: 'black',
|
|
3
|
-
backgroundColor: 'transparent',
|
|
4
|
-
shape: 'plaintext'
|
|
5
|
-
};
|
|
6
|
-
const base_active_state_style = {
|
|
7
|
-
textColor: 'black',
|
|
8
|
-
backgroundColor: 'transparent',
|
|
9
|
-
shape: 'plaintext'
|
|
10
|
-
};
|
|
11
|
-
const base_hooked_state_style = {
|
|
12
|
-
textColor: 'black',
|
|
13
|
-
backgroundColor: 'transparent',
|
|
14
|
-
shape: 'plaintext'
|
|
15
|
-
};
|
|
16
|
-
const base_terminal_state_style = {
|
|
17
|
-
textColor: 'black',
|
|
18
|
-
backgroundColor: 'transparent',
|
|
19
|
-
shape: 'plaintext'
|
|
20
|
-
};
|
|
21
|
-
const base_active_terminal_state_style = {
|
|
22
|
-
textColor: 'black',
|
|
23
|
-
backgroundColor: 'transparent',
|
|
24
|
-
shape: 'plaintext'
|
|
25
|
-
};
|
|
26
|
-
const base_start_state_style = {
|
|
27
|
-
textColor: 'black',
|
|
28
|
-
backgroundColor: 'transparent',
|
|
29
|
-
shape: 'plaintext'
|
|
30
|
-
};
|
|
31
|
-
const base_active_start_state_style = {
|
|
32
|
-
textColor: 'black',
|
|
33
|
-
backgroundColor: 'transparent',
|
|
34
|
-
shape: 'plaintext'
|
|
35
|
-
};
|
|
36
|
-
const base_active_hooked_state_style = {
|
|
37
|
-
textColor: 'black',
|
|
38
|
-
backgroundColor: 'transparent',
|
|
39
|
-
shape: 'plaintext'
|
|
40
|
-
};
|
|
41
|
-
const base_end_state_style = {
|
|
42
|
-
textColor: 'black',
|
|
43
|
-
backgroundColor: 'transparent',
|
|
44
|
-
shape: 'plaintext'
|
|
45
|
-
};
|
|
46
|
-
const base_active_end_state_style = {
|
|
47
|
-
textColor: 'black',
|
|
48
|
-
backgroundColor: 'transparent',
|
|
49
|
-
shape: 'plaintext'
|
|
50
|
-
};
|
|
51
|
-
const plain_theme = {
|
|
52
|
-
name: 'plain',
|
|
53
|
-
state: base_state_style,
|
|
54
|
-
start: base_start_state_style,
|
|
55
|
-
end: base_end_state_style,
|
|
56
|
-
terminal: base_terminal_state_style,
|
|
57
|
-
hooked: base_hooked_state_style,
|
|
58
|
-
active: base_active_state_style,
|
|
59
|
-
active_start: base_active_start_state_style,
|
|
60
|
-
active_end: base_active_end_state_style,
|
|
61
|
-
active_terminal: base_active_terminal_state_style,
|
|
62
|
-
active_hooked: base_active_hooked_state_style,
|
|
63
|
-
legal: undefined,
|
|
64
|
-
main: undefined,
|
|
65
|
-
forced: undefined,
|
|
66
|
-
action: undefined,
|
|
67
|
-
graph: undefined,
|
|
68
|
-
title: undefined // TODO FIXME
|
|
69
|
-
};
|
|
70
|
-
export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, plain_theme, plain_theme as theme };
|
package/dist/es6/version.js
DELETED