@zenuml/core 3.45.0 → 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/bun.lock +232 -148
- 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 +15730 -15212
- package/dist/zenuml.js +557 -557
- package/index.html +8 -13
- package/package.json +44 -44
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",
|
|
@@ -56,72 +56,72 @@
|
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@floating-ui/react": "^0.27.
|
|
60
|
-
"@headlessui/react": "^2.2.
|
|
59
|
+
"@floating-ui/react": "^0.27.16",
|
|
60
|
+
"@headlessui/react": "^2.2.9",
|
|
61
61
|
"@headlessui/tailwindcss": "^0.2.2",
|
|
62
62
|
"antlr4": "~4.11.0",
|
|
63
63
|
"class-variance-authority": "^0.7.1",
|
|
64
64
|
"clsx": "^2.1.1",
|
|
65
|
-
"color-string": "^2.
|
|
66
|
-
"dompurify": "^3.
|
|
65
|
+
"color-string": "^2.1.4",
|
|
66
|
+
"dompurify": "^3.3.1",
|
|
67
67
|
"highlight.js": "^10.7.3",
|
|
68
68
|
"html-to-image": "^1.11.13",
|
|
69
|
-
"immer": "^10.
|
|
70
|
-
"jotai": "^2.
|
|
69
|
+
"immer": "^10.2.0",
|
|
70
|
+
"jotai": "^2.16.1",
|
|
71
71
|
"lodash": "^4.17.21",
|
|
72
72
|
"marked": "^4.3.0",
|
|
73
73
|
"pako": "^2.1.0",
|
|
74
|
-
"pino": "^8.
|
|
75
|
-
"radash": "^12.1.
|
|
74
|
+
"pino": "^8.21.0",
|
|
75
|
+
"radash": "^12.1.1",
|
|
76
76
|
"ramda": "^0.28.0",
|
|
77
|
-
"react": "^19.
|
|
78
|
-
"react-dom": "^19.
|
|
79
|
-
"tailwind-merge": "^3.
|
|
80
|
-
"tailwindcss": "^3.4.
|
|
77
|
+
"react": "^19.2.3",
|
|
78
|
+
"react-dom": "^19.2.3",
|
|
79
|
+
"tailwind-merge": "^3.4.0",
|
|
80
|
+
"tailwindcss": "^3.4.19"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@eslint/js": "^9.
|
|
83
|
+
"@eslint/js": "^9.39.2",
|
|
84
84
|
"@happy-dom/global-registrator": "^18.0.1",
|
|
85
|
-
"@playwright/test": "^1.
|
|
86
|
-
"@storybook/addon-docs": "^9.
|
|
87
|
-
"@storybook/addon-onboarding": "^9.
|
|
88
|
-
"@storybook/react-vite": "^9.
|
|
89
|
-
"@testing-library/jest-dom": "^6.
|
|
90
|
-
"@testing-library/react": "^16.3.
|
|
91
|
-
"@types/antlr4": "~4.11.
|
|
85
|
+
"@playwright/test": "^1.57.0",
|
|
86
|
+
"@storybook/addon-docs": "^9.1.17",
|
|
87
|
+
"@storybook/addon-onboarding": "^9.1.17",
|
|
88
|
+
"@storybook/react-vite": "^9.1.17",
|
|
89
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
90
|
+
"@testing-library/react": "^16.3.1",
|
|
91
|
+
"@types/antlr4": "~4.11.6",
|
|
92
92
|
"@types/color-string": "^1.5.5",
|
|
93
|
-
"@types/highlight.js": "10",
|
|
93
|
+
"@types/highlight.js": "^10.1.0",
|
|
94
94
|
"@types/jsdom": "^21.1.7",
|
|
95
95
|
"@types/marked": "^4.3.2",
|
|
96
|
-
"@types/node": "^22.
|
|
97
|
-
"@types/ramda": "^0.28.
|
|
98
|
-
"@types/react": "^19.
|
|
99
|
-
"@types/react-dom": "^19.
|
|
100
|
-
"@vitejs/plugin-react": "^4.
|
|
101
|
-
"autoprefixer": "^10.4.
|
|
102
|
-
"eslint": "^9.
|
|
103
|
-
"eslint-config-prettier": "^10.1.
|
|
104
|
-
"eslint-plugin-react-hooks": "^5.
|
|
105
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
106
|
-
"eslint-plugin-storybook": "^9.
|
|
96
|
+
"@types/node": "^22.19.3",
|
|
97
|
+
"@types/ramda": "^0.28.25",
|
|
98
|
+
"@types/react": "^19.2.7",
|
|
99
|
+
"@types/react-dom": "^19.2.3",
|
|
100
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
101
|
+
"autoprefixer": "^10.4.23",
|
|
102
|
+
"eslint": "^9.39.2",
|
|
103
|
+
"eslint-config-prettier": "^10.1.8",
|
|
104
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
105
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
106
|
+
"eslint-plugin-storybook": "^9.1.17",
|
|
107
107
|
"globals": "^15.15.0",
|
|
108
108
|
"happy-dom": "^18.0.1",
|
|
109
109
|
"jsdom": "^26.1.0",
|
|
110
|
-
"less": "^4.
|
|
110
|
+
"less": "^4.5.1",
|
|
111
111
|
"pixelmatch": "^7.1.0",
|
|
112
112
|
"pngjs": "^7.0.0",
|
|
113
|
-
"postcss": "^8.5.
|
|
113
|
+
"postcss": "^8.5.6",
|
|
114
114
|
"prettier": "3.5.3",
|
|
115
115
|
"rollup-plugin-visualizer": "^6.0.5",
|
|
116
|
-
"sass": "^1.
|
|
117
|
-
"storybook": "^9.
|
|
118
|
-
"typescript": "~5.7.
|
|
119
|
-
"typescript-eslint": "^8.
|
|
120
|
-
"vite": "^6.
|
|
116
|
+
"sass": "^1.97.2",
|
|
117
|
+
"storybook": "^9.1.17",
|
|
118
|
+
"typescript": "~5.7.3",
|
|
119
|
+
"typescript-eslint": "^8.52.0",
|
|
120
|
+
"vite": "^6.4.1",
|
|
121
121
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
122
|
-
"vite-plugin-svgr": "^4.
|
|
122
|
+
"vite-plugin-svgr": "^4.5.0",
|
|
123
123
|
"vite-svg-loader": "^5.1.0",
|
|
124
|
-
"vitest": "^3.
|
|
125
|
-
"wrangler": "^4.
|
|
124
|
+
"vitest": "^3.2.4",
|
|
125
|
+
"wrangler": "^4.54.0"
|
|
126
126
|
}
|
|
127
127
|
}
|