forked from mermaid-js/mermaid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into pr/rhysd/4359
* develop: (37 commits) fix: Arrow markers in flowchart-elk Bump version chore: Fix type in 'getLineFunctionsWithOffset' Update cypress/platform/marker_unique_id.html refactor: Add getLineFunctionsWithOffset function refactor: Move EdgeData to types fix: PointStart marker refX Added cypress test chore(deps): update all patch dependencies refactor: Fix typings in utils.ts Give markers unique id's per graph chore: Add @internal to createCSSStyles chore: Bump version refactor: Remove unused variables fix: mermaid-js#4818 support `getClasses` in external diagrams. Remove unnecessary tests Remove optional chaining chore: Update docs refactor: Use `||` instead of `??` Update flowchart.md (mermaid-js#4798) ...
- Loading branch information
Showing
93 changed files
with
1,268 additions
and
1,584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
"brkt", | ||
"brolin", | ||
"brotli", | ||
"catmull", | ||
"città", | ||
"classdef", | ||
"codedoc", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { urlSnapshotTest } from '../../helpers/util.ts'; | ||
|
||
describe('Marker Unique IDs Per Diagram', () => { | ||
it('should render a blue arrow tip in second digram', () => { | ||
urlSnapshotTest('http://localhost:9000/marker_unique_id.html', { | ||
logLevel: 1, | ||
flowchart: { htmlLabels: false }, | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<html> | ||
<head> </head> | ||
<body> | ||
<h1>Example</h1> | ||
<pre class="mermaid"> | ||
%%{init:{"theme":"base", "themeVariables": {"lineColor":"red"}}}%% | ||
flowchart LR | ||
subgraph red | ||
A --> B | ||
end | ||
</pre> | ||
<pre class="mermaid"> | ||
%%{init:{"theme":"base", "themeVariables": {"lineColor":"blue"}}}%% | ||
flowchart LR | ||
subgraph black | ||
A --> B | ||
end | ||
</pre> | ||
<pre class="mermaid"> | ||
--- | ||
config: | ||
theme: base | ||
themeVariables: | ||
lineColor: yellow | ||
--- | ||
flowchart LR | ||
subgraph red | ||
A --> B | ||
end | ||
</pre> | ||
<pre class="mermaid"> | ||
--- | ||
config: | ||
theme: base | ||
themeVariables: | ||
lineColor: green | ||
--- | ||
flowchart LR | ||
subgraph black | ||
A --> B | ||
end | ||
</pre> | ||
<script type="module"> | ||
import mermaid from './mermaid.esm.mjs'; | ||
mermaid.initialize({ startOnLoad: true, logLevel: 0 }); | ||
|
||
if (window.Cypress) { | ||
window.rendered = true; | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.