christopherkade
89b6ccf47d
#906 Divided flow unit tests
2019-10-14 16:17:43 +02:00
Brian Mearns
c9f84ccae5
#530 Testing Coverage
2019-10-03 06:41:36 -04:00
Brian Mearns
e1446ce38a
#530 Add unit test for hex nodes
2019-10-02 22:44:56 -04:00
knsv
d8397f146b
#937 Handling direction keywords in node ids
2019-09-18 12:56:24 -07:00
knsv
34de31195f
#931 Aligning with code standard
2019-09-12 12:58:04 -07:00
knsv
699bd61045
#918 Fix for issue with nodes starting with a number in a subgraph
2019-09-01 00:44:48 -07:00
Knut Sveidqvist
4ae48f4284
#915 Reviving the possibility to use underscore in text in vertices
2019-08-28 17:34:57 +02:00
Knut Sveidqvist
06a91d8564
#835 Backwords compatible syntax for associating classes with nodes/vertices
2019-08-26 20:10:44 +02:00
Knut Sveidqvist
ef51f543a3
Fix for test
2019-08-16 12:42:42 +02:00
Knut Sveidqvist
23b567e11b
#900 Fix for subgraph ids starting with a number
2019-08-14 20:00:06 +02:00
knsv
a6f21c2b91
Re-enabling all tests
2019-08-08 01:19:14 -07:00
ashishjain0512
b6d9407246
Added Jest test case for handling underscore in vertex name
2019-07-23 06:51:18 -07:00
ashishjain0512
957687ed39
Added Jest test for use-case A[text]-->B[test2].class
2019-07-23 06:49:44 -07:00
ashishjain0512
db86cfa7d9
Added Jest test case for use-case A[text].class-->B[test2]
2019-07-23 06:47:03 -07:00
ashishjain0512
afa95172b6
Added new Jest test case for usecase A[text].class
2019-07-23 06:45:35 -07:00
ashishjain0512
2e0843c226
Added Jest test case for 'should be possible to apply a class to a vertex directly' use-case
2019-07-23 06:41:45 -07:00
knsv
cf686c445c
Standard fixes
2019-07-22 05:23:03 -07:00
Knut Sveidqvist
c818dbb5a0
Setting default securityLevel to strict, updated docs in mermaidAPI
2019-07-14 06:07:27 -07:00
Knut Sveidqvist
31576f8f55
#847 Removing </> in text
2019-07-13 22:50:53 -07:00
Knut Sveidqvist
40d10ea741
#457 Added grammar for double directional arrows
2019-06-28 12:10:16 +02:00
Knut Sveidqvist
db5be3c28a
Resolving som conflicts from merge
2019-06-11 08:35:46 -07:00
Josh Junon
f51596eb61
Support styling of subgraphs
2019-05-24 17:08:45 +02:00
ivan-danilov
752a12bda4
linkStyle now supports list of indexes with a few tests
...
For example:
linkStyle 0,1,2 interpolate basis stroke:#00f,stroke-width:2px;
Other variants of linkStyle syntax are also included
2019-02-21 22:06:11 +02:00
Tyler Long
a57b90809b
Merge pull request #765 from flying-sheep/links
...
Render nodes as real links
2018-12-17 15:30:13 +08:00
Tyler Long
e8aebb00ee
Fix typos in test cases
2018-12-17 14:42:52 +08:00
Philipp A
bcd3aa7d61
Improved docs, split setClickEvent and setLink
2018-12-01 15:31:57 +01:00
Tyler Long
52d0605066
Fix subgraph issue
2018-03-17 18:12:24 +08:00
Tyler Long
6f43082e38
Rename graphDb to flowDb
2018-03-12 20:52:06 +08:00
Tyler Long
d31e03d04e
Replace 'var ' with 'const '
2017-09-14 20:17:27 +08:00
Tyler Long
a7d79baf00
Replace require with import
2017-09-10 21:23:04 +08:00
Tyler Long
c9442653e9
Replace require with import
2017-09-10 19:41:34 +08:00
Tyler Long
bdf9b33b10
Remove parseError properties
2017-09-10 10:19:15 +08:00
Tyler Long
620f3e8734
Auto fix standard style voilations
2017-04-11 22:14:25 +08:00
Alan Hohn
00682160b6
add line interpolation to linkStyle in flowchart
2016-04-28 20:59:09 -04:00
Tomasz Szczęśniak-Szlagowski
e4d25ed9cd
Add support for node(-ellipse shape-) in flow charts
2015-10-26 23:03:07 +00:00
Tomasz Szczęśniak-Szlagowski
30149df88e
Allow node ids with keywords as suffixes
...
I've extracted alpha and punctuation characters from the huge regex and
made multiple occurences of alpha characters be recognised as a single
ALPHA token.
This way everything should work just like before, with the
difference that alpha strings will swallow keywords, ie. `spend` is
`ALPHA`, while previously it would have been `ALPHA ALPHA end`.
2015-10-24 22:25:13 +01:00
knsv
2417741283
Merge remote-tracking branch 'origin/master'
...
# Conflicts:
# dist/mermaid.js
# dist/mermaid.min.js
# dist/mermaid.slim.js
# dist/mermaid.slim.min.js
# dist/mermaidAPI.js
# dist/mermaidAPI.slim.js
# dist/mermaidAPI.slim.min.js
# package.json
2015-10-15 07:21:30 +02:00
Tomasz Szczęśniak-Szlagowski
b87764ed94
Allow end
as a substring of vertex id
...
Jison adds \b (word boundary) to literal string patterns by default.
It does so, because it doesn't follow traditional match-longest
approach, but does match-first instead. Without including word
boundaries, it'd be hard to distinguish between a keyword and
identifier.
The pattern for `end` keyword is not a simple string literal - it
swallows trailing whitespace, so we have to add \b manually.
This partially fixes #184 - at least now `end` behaves the same as other
keywords: it can be used as a prefix and infix, but not as a suffix.
To solve this issue completely, ALPHA pattern would have to match
multiple letters, which is a much bigger change.
2015-10-15 00:31:18 +01:00
knsv
658ed3d790
Modernization of build environment. Less gulp, more npm. Eslint.
2015-10-12 07:37:02 +02:00
knsv
b3fa6378bd
Reenabled all tests.
...
Subgraph issue with ids written as title resolved.
2015-10-02 00:21:38 +02:00
knsv
e406fda9cd
Draft implementation of tooltips and hyperlinks as described in issue #34 . More tests and documentation to follow.
2015-10-02 00:18:47 +02:00
knsv
3ec7c6d18b
Fix for being able to use the character v in node ids as described in issue #192
2015-07-23 15:33:26 +02:00
knsv
6f96b5dd14
Added logger for dealing with issue #179
...
Added markdown files for the documentation.
parseError exposed from the mermaidAPI
2015-06-30 14:23:32 +02:00
knsv
eb555f7da6
Deleted dead code and unused code
2015-06-14 09:51:42 +02:00
knsv
efb4e464b2
Fix for issue #170
2015-06-14 09:33:48 +02:00
knsv
6864652b80
Initial fix for defect #162 .
2015-05-29 08:23:13 +02:00
knsv
05f3982632
Fix for defect #161 , nested subgraphs.
2015-05-15 12:11:36 +02:00
knsv
ae6bb57cf5
Added support for nested subgraphs in grammar, part 1 of issue #161
2015-05-09 19:05:47 +02:00
knsv
c966aad496
Fix for subgraphs
2015-03-22 18:36:17 +01:00
knsv
0ed5a01756
Fix fir defect #141 regarding comment characters
2015-03-22 18:02:45 +01:00