@zenuml/core 2.0.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/Integration/vanilla-js/index.html +31 -0
- package/LICENSE +21 -0
- package/README.md +81 -0
- package/README_CN.md +15 -0
- package/antlr/antlr-4.8-complete.jar +0 -0
- package/coverage/clover.xml +6 -0
- package/coverage/coverage-final.json +1 -0
- package/coverage/lcov-report/Interaction.vue.html +532 -0
- package/coverage/lcov-report/Owner.js.html +175 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +79 -0
- package/coverage/lcov-report/components/interaction/Interaction.vue.html +544 -0
- package/coverage/lcov-report/components/interaction/index.html +110 -0
- package/coverage/lcov-report/index.html +95 -0
- package/coverage/lcov-report/positioning/david/DavidEisenstat2.ts.html +196 -0
- package/coverage/lcov-report/positioning/david/index.html +110 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +170 -0
- package/coverage/lcov.info +0 -0
- package/cypress/fixtures/example.json +5 -0
- package/cypress/fixtures/profile.json +5 -0
- package/cypress/fixtures/users.json +232 -0
- package/cypress/integration/__image_snapshots__/Smoke test creation #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test fragment #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test fragmentIssue #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test interaction #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test return #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test return #1.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test should load the home page #0.png +0 -0
- package/cypress/integration/smoke.spec.js +64 -0
- package/cypress/plugins/index.js +30 -0
- package/cypress/support/commands.js +25 -0
- package/cypress/support/index.js +20 -0
- package/cypress/videos/smoke.spec.js.mp4 +0 -0
- package/cypress.json +7 -0
- package/dist/fonts/kalam-v15-latin-300.00bd845e.woff2 +0 -0
- package/dist/fonts/kalam-v15-latin-300.1c36b0ad.woff +0 -0
- package/dist/fonts/kalam-v15-latin-700.2a87f463.woff2 +0 -0
- package/dist/fonts/kalam-v15-latin-700.9ec0bbf1.woff +0 -0
- package/dist/fonts/kalam-v15-latin-regular.4c0c4df4.woff +0 -0
- package/dist/fonts/kalam-v15-latin-regular.e4d4907f.woff2 +0 -0
- package/dist/vue-sequence.css +7 -0
- package/dist/vue-sequence.umd.min.js +12 -0
- package/docs/asciidoc/contributor.adoc +79 -0
- package/docs/asciidoc/create-my-own-theme.adoc +25 -0
- package/docs/asciidoc/images/creation-component.png +0 -0
- package/docs/asciidoc/images/creation-rtl.png +0 -0
- package/docs/asciidoc/images/message-arrow-rtl.png +0 -0
- package/docs/asciidoc/images/occurrence.png +0 -0
- package/docs/asciidoc/images/return-message-conflict.png +0 -0
- package/docs/asciidoc/images/shift-up-half-the-height.png +0 -0
- package/docs/asciidoc/images/vertical-alignment.svg +1 -0
- package/docs/asciidoc/images/vertically-aligning.png +0 -0
- package/docs/asciidoc/index.adoc +277 -0
- package/docs/asciidoc/integration-guide.adoc +121 -0
- package/docs/asciidoc/tutorial.adoc +22 -0
- package/docs/async-vs-sync-parser-rules.md +78 -0
- package/docs/handling-starter.png +0 -0
- package/docs/highlighting-messages.md +47 -0
- package/docs/inherited-vs-provided-from.md +59 -0
- package/docs/invalid-host-header-error.md +20 -0
- package/docs/osx-unsupported-arm64-node12.md +13 -0
- package/docs/participants-function.md +27 -0
- package/docs/responsive-participant-margin.md +52 -0
- package/docs/starter.md +8 -0
- package/docs/testing-minified-lib.md +29 -0
- package/docs/watch.md +1 -0
- package/docs/why-we-publish-embed-view-to-github-pages.md +15 -0
- package/docs/width-translate-and-offsets.md +54 -0
- package/gen/css3.interp +214 -0
- package/gen/css3.tokens +92 -0
- package/gen/css3BaseListener.java +1106 -0
- package/gen/css3BaseVisitor.java +636 -0
- package/gen/css3Lexer.interp +251 -0
- package/gen/css3Lexer.java +672 -0
- package/gen/css3Lexer.tokens +92 -0
- package/gen/css3Listener.java +939 -0
- package/gen/css3Parser.java +8113 -0
- package/gen/css3Visitor.java +566 -0
- package/gen/sequenceLexer.interp +206 -0
- package/gen/sequenceLexer.java +419 -0
- package/gen/sequenceLexer.tokens +104 -0
- package/gen/sequenceParser.interp +180 -0
- package/gen/sequenceParser.java +4659 -0
- package/gen/sequenceParser.tokens +101 -0
- package/gen/sequenceParserBaseListener.java +830 -0
- package/gen/sequenceParserBaseVisitor.java +475 -0
- package/gen/sequenceParserListener.java +703 -0
- package/gen/sequenceParserVisitor.java +425 -0
- package/package.json +133 -0
- package/playground/creation.html +32 -0
- package/playground/message.html +39 -0
- package/tailwind.config.js +15 -0
- package/types/index.d.ts +34 -0
- package/vue.config.spec.js +53 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
TITLE=1
|
|
2
|
+
COL=2
|
|
3
|
+
SOPEN=3
|
|
4
|
+
SCLOSE=4
|
|
5
|
+
ARROW=5
|
|
6
|
+
OR=6
|
|
7
|
+
AND=7
|
|
8
|
+
EQ=8
|
|
9
|
+
NEQ=9
|
|
10
|
+
GT=10
|
|
11
|
+
LT=11
|
|
12
|
+
GTEQ=12
|
|
13
|
+
LTEQ=13
|
|
14
|
+
PLUS=14
|
|
15
|
+
MINUS=15
|
|
16
|
+
MULT=16
|
|
17
|
+
DIV=17
|
|
18
|
+
MOD=18
|
|
19
|
+
POW=19
|
|
20
|
+
NOT=20
|
|
21
|
+
SCOL=21
|
|
22
|
+
COMMA=22
|
|
23
|
+
ASSIGN=23
|
|
24
|
+
OPAR=24
|
|
25
|
+
CPAR=25
|
|
26
|
+
OBRACE=26
|
|
27
|
+
CBRACE=27
|
|
28
|
+
TRUE=28
|
|
29
|
+
FALSE=29
|
|
30
|
+
NIL=30
|
|
31
|
+
IF=31
|
|
32
|
+
ELSE=32
|
|
33
|
+
WHILE=33
|
|
34
|
+
RETURN=34
|
|
35
|
+
NEW=35
|
|
36
|
+
PAR=36
|
|
37
|
+
GROUP=37
|
|
38
|
+
OPT=38
|
|
39
|
+
AS=39
|
|
40
|
+
TRY=40
|
|
41
|
+
CATCH=41
|
|
42
|
+
FINALLY=42
|
|
43
|
+
STARTER_LXR=43
|
|
44
|
+
ANNOTATION_RET=44
|
|
45
|
+
ANNOTATION=45
|
|
46
|
+
DOT=46
|
|
47
|
+
ID=47
|
|
48
|
+
INT=48
|
|
49
|
+
FLOAT=49
|
|
50
|
+
STRING=50
|
|
51
|
+
CR=51
|
|
52
|
+
SPACE=52
|
|
53
|
+
COMMENT=53
|
|
54
|
+
OTHER=54
|
|
55
|
+
EVENT_PAYLOAD_LXR=55
|
|
56
|
+
EVENT_END=56
|
|
57
|
+
WS=57
|
|
58
|
+
TITLE_CONTENT=58
|
|
59
|
+
TITLE_END=59
|
|
60
|
+
'title'=1
|
|
61
|
+
':'=2
|
|
62
|
+
'<<'=3
|
|
63
|
+
'>>'=4
|
|
64
|
+
'->'=5
|
|
65
|
+
'||'=6
|
|
66
|
+
'&&'=7
|
|
67
|
+
'=='=8
|
|
68
|
+
'!='=9
|
|
69
|
+
'>'=10
|
|
70
|
+
'<'=11
|
|
71
|
+
'>='=12
|
|
72
|
+
'<='=13
|
|
73
|
+
'+'=14
|
|
74
|
+
'-'=15
|
|
75
|
+
'*'=16
|
|
76
|
+
'/'=17
|
|
77
|
+
'%'=18
|
|
78
|
+
'^'=19
|
|
79
|
+
'!'=20
|
|
80
|
+
';'=21
|
|
81
|
+
','=22
|
|
82
|
+
'='=23
|
|
83
|
+
'('=24
|
|
84
|
+
')'=25
|
|
85
|
+
'{'=26
|
|
86
|
+
'}'=27
|
|
87
|
+
'true'=28
|
|
88
|
+
'false'=29
|
|
89
|
+
'nil'=30
|
|
90
|
+
'if'=31
|
|
91
|
+
'else'=32
|
|
92
|
+
'return'=34
|
|
93
|
+
'new'=35
|
|
94
|
+
'par'=36
|
|
95
|
+
'group'=37
|
|
96
|
+
'opt'=38
|
|
97
|
+
'as'=39
|
|
98
|
+
'try'=40
|
|
99
|
+
'catch'=41
|
|
100
|
+
'finally'=42
|
|
101
|
+
'.'=46
|