forked from lucmartens/xstate-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
text-editor.json
37 lines (37 loc) · 905 Bytes
/
text-editor.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"key": "textEditor",
"type": "parallel",
"states": {
"bold": {
"initial": "off",
"states": {
"on": { "on": { "TOGGLE_BOLD": "off" } },
"off": { "on": { "TOGGLE_BOLD": "on" } }
}
},
"underline": {
"initial": "off",
"states": {
"on": { "on": { "TOGGLE_UNDERLINE": "off" } },
"off": { "on": { "TOGGLE_UNDERLINE": "on" } }
}
},
"italics": {
"initial": "off",
"states": {
"on": { "on": { "TOGGLE_ITALICS": "off" } },
"off": { "on": { "TOGGLE_ITALICS": "on" } }
}
},
"list": {
"initial": "none",
"states": {
"none": {
"on": { "BULLETS": "bullets", "NUMBERS": "numbers" }
},
"bullets": { "on": { "NONE": "none", "NUMBERS": "numbers" } },
"numbers": { "on": { "BULLETS": "bullets", "NONE": "none" } }
}
}
}
}