@zenuml/core 3.45.1 → 3.45.2
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/creation-rtl.html +28 -0
- package/cy/editable-span-test.html +122 -0
- package/dist/stats.html +1 -1
- package/dist/vendor/codemirror/codemirror.min.css +1 -0
- package/dist/vendor/codemirror/codemirror.min.js +8 -0
- package/dist/vendor/codemirror/material-darker.min.css +1 -0
- package/dist/vendor/highlightjs/github-dark.min.css +7 -0
- package/dist/vendor/tailwindcss/tailwindcss.js +83 -0
- package/dist/zenuml.esm.mjs +8179 -8195
- package/dist/zenuml.js +539 -539
- package/index.html +8 -13
- package/package.json +2 -2
package/index.html
CHANGED
|
@@ -4,32 +4,27 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
8
|
-
<link
|
|
7
|
+
<!-- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> -->
|
|
8
|
+
<!-- <link
|
|
9
9
|
rel="preload stylesheet"
|
|
10
10
|
as="style"
|
|
11
11
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap"
|
|
12
|
-
/>
|
|
12
|
+
/> -->
|
|
13
13
|
<style id="zenumlstyle">
|
|
14
14
|
/* Custom styles for the diagram */
|
|
15
15
|
</style>
|
|
16
16
|
<link
|
|
17
17
|
rel="stylesheet"
|
|
18
|
-
href="
|
|
19
|
-
crossorigin="anonymous"
|
|
18
|
+
href="/vendor/highlightjs/github-dark.min.css"
|
|
20
19
|
/>
|
|
21
|
-
<script src="
|
|
20
|
+
<script src="/vendor/codemirror/codemirror.min.js"></script>
|
|
22
21
|
<link
|
|
23
22
|
rel="stylesheet"
|
|
24
|
-
href="
|
|
25
|
-
integrity="sha512-uf06llspW44/LZpHzHT6qBOIVODjWtv4MxCricRxkzvopAlSWnTf6hpZTFxuuZcuNE9CBQhqE0Seu1CoRk84nQ=="
|
|
26
|
-
crossorigin="anonymous"
|
|
27
|
-
referrerpolicy="no-referrer"
|
|
23
|
+
href="/vendor/codemirror/codemirror.min.css"
|
|
28
24
|
/>
|
|
29
25
|
<link
|
|
30
26
|
rel="stylesheet"
|
|
31
|
-
href="
|
|
32
|
-
crossorigin="anonymous"
|
|
27
|
+
href="/vendor/codemirror/material-darker.min.css"
|
|
33
28
|
/>
|
|
34
29
|
<title>ZenUML - Local Development</title>
|
|
35
30
|
<style>
|
|
@@ -76,7 +71,7 @@
|
|
|
76
71
|
0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
77
72
|
}
|
|
78
73
|
</style>
|
|
79
|
-
<script src="
|
|
74
|
+
<script src="/vendor/tailwindcss/tailwindcss.js"></script>
|
|
80
75
|
</head>
|
|
81
76
|
<body class="bg-gray-50">
|
|
82
77
|
<!-- Main Editor Section -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenuml/core",
|
|
3
|
-
"version": "3.45.
|
|
3
|
+
"version": "3.45.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"antlr:clear": "rm -rf src/generated-parser/*",
|
|
31
31
|
"antlr:lexer": "java -Duser.dir=$(pwd)/src/g4 -cp $(pwd)/antlr/antlr-4.11.1-complete.jar org.antlr.v4.Tool -o ./src/generated-parser -Dlanguage=JavaScript sequenceLexer.g4",
|
|
32
32
|
"antlr:parser": "java -Duser.dir=$(pwd)/src/g4 -cp $(pwd)/antlr/antlr-4.11.1-complete.jar org.antlr.v4.Tool -o ./src/generated-parser -Dlanguage=JavaScript sequenceParser.g4",
|
|
33
|
-
"eslint": "
|
|
33
|
+
"eslint": "eslint --fix --ext .js,.ts,.tsx,.jsx src",
|
|
34
34
|
"prettier": "bun run --bun prettier --write --ignore-unknown \"src/**/*.{js,ts,vue,json,htm,html}\"",
|
|
35
35
|
"git:branch:clean:gone": "git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -d",
|
|
36
36
|
"git:branch:clean:merged": "git branch --merged|egrep -v \"(\\*|master|main|dev|skip_branch_name)\" | xargs git branch -d",
|