@zenuml/core 3.23.18 → 3.23.19
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/cy/async-message-1.html +32 -0
- package/cy/async-message-2.html +46 -0
- package/cy/async-message-3.html +41 -0
- package/dist/{StylePanel.10aa3734.js → StylePanel.c4c525f6.js} +2 -2
- package/dist/{close.be305cdd.js → close.a2c648c6.js} +2 -2
- package/dist/{collapse-expanded.104d2f11.js → collapse-expanded.e34e2570.js} +2 -2
- package/dist/{collapse-unexpanded.3b869087.js → collapse-unexpanded.39e63423.js} +2 -2
- package/dist/{core.e32eaca1.js → core.05bbe0c0.js} +4061 -4054
- package/dist/{debug.ca84d278.js → debug.2ea9f38f.js} +2 -2
- package/dist/{message-arrow.24a668f5.js → message-arrow.5a65b3c8.js} +2 -2
- package/dist/{non-selected-cycle.08eabd95.js → non-selected-cycle.041e01b9.js} +2 -2
- package/dist/{numbering.9eef2666.js → numbering.43d6be63.js} +2 -2
- package/dist/{privacy.1a6f7538.js → privacy.9233e673.js} +2 -2
- package/dist/{selected-cycle.b858d0cc.js → selected-cycle.7c6df96e.js} +2 -2
- package/dist/{theme.ddb8b7e3.js → theme.33ab27e9.js} +2 -2
- package/dist/{tip.d4202989.js → tip.67f92ade.js} +2 -2
- package/dist/zenuml.esm.mjs +2 -2
- package/dist/zenuml.js +425 -425
- package/dist/{zoom-in.45baf2b0.js → zoom-in.0d82610f.js} +2 -2
- package/dist/{zoom-out.9696217a.js → zoom-out.ce74cf45.js} +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
7
|
+
<title>Self Sync Message at Root</title>
|
|
8
|
+
<style>
|
|
9
|
+
body {
|
|
10
|
+
margin: 0; /* mostly for demo on mobile */
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<div id="diagram" class="diagram">
|
|
16
|
+
<pre class="zenuml" style="margin: 0">
|
|
17
|
+
A->A: async
|
|
18
|
+
A->B: async
|
|
19
|
+
A->C: async
|
|
20
|
+
B->B: async
|
|
21
|
+
B->C: async
|
|
22
|
+
B->A: async
|
|
23
|
+
C->C: async
|
|
24
|
+
C->B: async
|
|
25
|
+
C->A: async
|
|
26
|
+
</pre>
|
|
27
|
+
</div>
|
|
28
|
+
|
|
29
|
+
<!-- built files will be auto injected -->
|
|
30
|
+
<script type="module" src="/src/main-cy.ts"></script>
|
|
31
|
+
</body>
|
|
32
|
+
</html>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
7
|
+
<title>Self Sync Message at Root</title>
|
|
8
|
+
<style>
|
|
9
|
+
body {
|
|
10
|
+
margin: 0; /* mostly for demo on mobile */
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<div id="diagram" class="diagram">
|
|
16
|
+
<pre class="zenuml" style="margin: 0">
|
|
17
|
+
A.method {
|
|
18
|
+
A->A: async
|
|
19
|
+
A->B: async
|
|
20
|
+
A->C: async
|
|
21
|
+
B->B: async
|
|
22
|
+
B->C: async
|
|
23
|
+
B->A: async
|
|
24
|
+
C->C: async
|
|
25
|
+
C->B: async
|
|
26
|
+
C->A: async
|
|
27
|
+
B.method {
|
|
28
|
+
A->A: async
|
|
29
|
+
A->B: async
|
|
30
|
+
A->C: async
|
|
31
|
+
B->B: async
|
|
32
|
+
B->C: async
|
|
33
|
+
B->A: async
|
|
34
|
+
C->C: async
|
|
35
|
+
C->B: async
|
|
36
|
+
C->A: async
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
</pre>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<!-- built files will be auto injected -->
|
|
44
|
+
<script type="module" src="/src/main-cy.ts"></script>
|
|
45
|
+
</body>
|
|
46
|
+
</html>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
7
|
+
<title>Self Sync Message at Root</title>
|
|
8
|
+
<style>
|
|
9
|
+
body {
|
|
10
|
+
margin: 0; /* mostly for demo on mobile */
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<div id="diagram" class="diagram">
|
|
16
|
+
<pre class="zenuml" style="margin: 0">
|
|
17
|
+
A B C
|
|
18
|
+
C.method {
|
|
19
|
+
A->C: async
|
|
20
|
+
C->A: async
|
|
21
|
+
C->B: async
|
|
22
|
+
B->C: async
|
|
23
|
+
B.method {
|
|
24
|
+
A->A: async
|
|
25
|
+
A->B: async
|
|
26
|
+
A->C: async
|
|
27
|
+
B->B: async
|
|
28
|
+
B->C: async
|
|
29
|
+
B->A: async
|
|
30
|
+
C->C: async
|
|
31
|
+
C->B: async
|
|
32
|
+
C->A: async
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
</pre>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
<!-- built files will be auto injected -->
|
|
39
|
+
<script type="module" src="/src/main-cy.ts"></script>
|
|
40
|
+
</body>
|
|
41
|
+
</html>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as B, u as W, r as L, s as _e, w as M, g as it, d as rt, e as Q, F as Ie, m as he, t as Ee, f as He, n as st, p as lt, h as at, i as ct, j as ne, U as ft, k as Te, l as ut, T as dt, q as mt, v as pt, x as ht, y as gt, P as vt, o as Pe, z as wt, A as yt, a as ge, c as xt, B as bt, C as Ct, D as At, E as Ot, G as Rt, H as St } from "./core.
|
|
1
|
+
import { b as B, u as W, r as L, s as _e, w as M, g as it, d as rt, e as Q, F as Ie, m as he, t as Ee, f as He, n as st, p as lt, h as at, i as ct, j as ne, U as ft, k as Te, l as ut, T as dt, q as mt, v as pt, x as ht, y as gt, P as vt, o as Pe, z as wt, A as yt, a as ge, c as xt, B as bt, C as Ct, D as At, E as Ot, G as Rt, H as St } from "./core.05bbe0c0.js";
|
|
2
2
|
const We = ["top", "right", "bottom", "left"], Le = ["start", "end"], Be = /* @__PURE__ */ We.reduce((e, t) => e.concat(t, t + "-" + Le[0], t + "-" + Le[1]), []), J = Math.min, q = Math.max, ae = Math.round, le = Math.floor, X = (e) => ({
|
|
3
3
|
x: e,
|
|
4
4
|
y: e
|
|
@@ -1753,4 +1753,4 @@ const kn = { class: "flex bg-white shadow-md z-10 rounded-md p-1" }, $n = ["onCl
|
|
|
1753
1753
|
export {
|
|
1754
1754
|
Mn as default
|
|
1755
1755
|
};
|
|
1756
|
-
//# sourceMappingURL=StylePanel.
|
|
1756
|
+
//# sourceMappingURL=StylePanel.c4c525f6.js.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { o as e, c as o, a as t } from "./core.
|
|
1
|
+
import { o as e, c as o, a as t } from "./core.05bbe0c0.js";
|
|
2
2
|
const r = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
@@ -21,4 +21,4 @@ export {
|
|
|
21
21
|
i as default,
|
|
22
22
|
c as render
|
|
23
23
|
};
|
|
24
|
-
//# sourceMappingURL=close.
|
|
24
|
+
//# sourceMappingURL=close.a2c648c6.js.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { o as e, c as o, a as t } from "./core.
|
|
1
|
+
import { o as e, c as o, a as t } from "./core.05bbe0c0.js";
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
@@ -16,4 +16,4 @@ export {
|
|
|
16
16
|
h as default,
|
|
17
17
|
c as render
|
|
18
18
|
};
|
|
19
|
-
//# sourceMappingURL=collapse-expanded.
|
|
19
|
+
//# sourceMappingURL=collapse-expanded.e34e2570.js.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { o, c as t, a as e } from "./core.
|
|
1
|
+
import { o, c as t, a as e } from "./core.05bbe0c0.js";
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "currentColor",
|
|
@@ -29,4 +29,4 @@ export {
|
|
|
29
29
|
i as default,
|
|
30
30
|
s as render
|
|
31
31
|
};
|
|
32
|
-
//# sourceMappingURL=collapse-unexpanded.
|
|
32
|
+
//# sourceMappingURL=collapse-unexpanded.39e63423.js.map
|