Skip to content

Commit 9726119

Browse files
committed
feat: refactor class styles and improve test tolerance
- Create a new `_base.d2` file with class styles for base, person, animated, multiple, enqueue, dispatch, library, and task - Update `flow-01.d2` to reference the new `_base.d2` file for class styles Signed-off-by: appleboy <[email protected]>
1 parent 8526098 commit 9726119

File tree

3 files changed

+159
-143
lines changed

3 files changed

+159
-143
lines changed

images/_base.d2

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
classes: {
2+
base: {
3+
style: {
4+
bold: true
5+
font-size: 28
6+
}
7+
}
8+
9+
person: {
10+
shape: person
11+
}
12+
13+
animated: {
14+
style: {
15+
animated: true
16+
}
17+
}
18+
19+
multiple: {
20+
style: {
21+
multiple: true
22+
}
23+
}
24+
25+
enqueue: {
26+
label: Enqueue Task
27+
}
28+
29+
dispatch: {
30+
label: Dispatch Task
31+
}
32+
33+
library: {
34+
style: {
35+
bold: true
36+
font-size: 32
37+
fill: PapayaWhip
38+
fill-pattern: grain
39+
border-radius: 8
40+
font: mono
41+
}
42+
}
43+
44+
task: {
45+
style: {
46+
bold: true
47+
font-size: 32
48+
}
49+
}
50+
}

images/flow-01.d2

+1-50
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,6 @@
11
direction: right
22

3-
classes: {
4-
base: {
5-
style: {
6-
bold: true
7-
font-size: 28
8-
}
9-
}
10-
11-
person: {
12-
shape: person
13-
}
14-
15-
animated: {
16-
style: {
17-
animated: true
18-
}
19-
}
20-
21-
multiple: {
22-
style: {
23-
multiple: true
24-
}
25-
}
26-
27-
enqueue: {
28-
label: Enqueue Task
29-
}
30-
31-
dispatch: {
32-
label: Dispatch Task
33-
}
34-
35-
library: {
36-
style: {
37-
bold: true
38-
font-size: 32
39-
fill: PapayaWhip
40-
fill-pattern: grain
41-
border-radius: 8
42-
font: mono
43-
}
44-
}
45-
46-
task: {
47-
style: {
48-
bold: true
49-
font-size: 32
50-
}
51-
}
52-
}
3+
...@_base
534

545
user01: {
556
label: User01

0 commit comments

Comments
 (0)