likec4 1.55.0 → 1.55.1
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/__app__/src/likec4.js +56 -27
- package/__app__/src/routes/projects.js +7 -3
- package/__app__/src/routes/single.js +73 -14
- package/__app__/src/style.css +1 -1
- package/__app__/src/vendors.js +46 -35
- package/__app__/src/webcomponent.js +1 -1
- package/dist/_chunks/index2.d.mts +1 -1
- package/dist/_chunks/node.mjs +1 -1
- package/dist/cli/index.mjs +122 -109
- package/package.json +19 -19
- package/react/index.mjs +87 -51
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "likec4",
|
|
3
3
|
"description": "Toolchain for your architecture diagrams",
|
|
4
|
-
"version": "1.55.
|
|
4
|
+
"version": "1.55.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://likec4.dev",
|
|
7
7
|
"author": "Denis Davydkov <denis@davydkov.com>",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"vite": "^7.3.1",
|
|
122
122
|
"yargs": "17.7.2",
|
|
123
123
|
"nano-spawn": "^2.0.0",
|
|
124
|
-
"@likec4/core": "1.55.
|
|
124
|
+
"@likec4/core": "1.55.1",
|
|
125
125
|
"@likec4/icons": "1.46.4"
|
|
126
126
|
},
|
|
127
127
|
"peerDependencies": {
|
|
@@ -148,8 +148,8 @@
|
|
|
148
148
|
"@types/yargs": "^17.0.33",
|
|
149
149
|
"@xstate/react": "6.1.0",
|
|
150
150
|
"@xstate/store": "3.17.1",
|
|
151
|
-
"@xyflow/react": "12.10.
|
|
152
|
-
"@xyflow/system": "0.0.
|
|
151
|
+
"@xyflow/react": "12.10.2",
|
|
152
|
+
"@xyflow/system": "0.0.76",
|
|
153
153
|
"autoprefixer": "^10.4.27",
|
|
154
154
|
"picomatch": "^4.0.4",
|
|
155
155
|
"birpc": "^4.0.0",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"@nanostores/react": "1.1.0",
|
|
175
175
|
"package-manager-detector": "1.6.0",
|
|
176
176
|
"package-up": "^5.0.0",
|
|
177
|
-
"postcss": "8.5.
|
|
177
|
+
"postcss": "8.5.9",
|
|
178
178
|
"pretty-ms": "^9.3.0",
|
|
179
179
|
"react": "19.2.4",
|
|
180
180
|
"react-dom": "19.2.4",
|
|
@@ -202,21 +202,21 @@
|
|
|
202
202
|
"zod": "^4.3.6",
|
|
203
203
|
"zx": "8.8.5",
|
|
204
204
|
"xstate": "5.30.0",
|
|
205
|
-
"@likec4/leanix-bridge": "1.55.
|
|
206
|
-
"@likec4/
|
|
207
|
-
"@likec4/
|
|
208
|
-
"@likec4/language-
|
|
209
|
-
"@likec4/language-
|
|
210
|
-
"@likec4/mcp": "1.55.
|
|
205
|
+
"@likec4/leanix-bridge": "1.55.1",
|
|
206
|
+
"@likec4/config": "1.55.1",
|
|
207
|
+
"@likec4/log": "1.55.1",
|
|
208
|
+
"@likec4/language-services": "1.55.1",
|
|
209
|
+
"@likec4/language-server": "1.55.1",
|
|
210
|
+
"@likec4/mcp": "1.55.1",
|
|
211
211
|
"@likec4/devops": "1.42.0",
|
|
212
|
-
"@likec4/diagram": "1.55.
|
|
213
|
-
"@likec4/layouts": "1.55.
|
|
214
|
-
"@likec4/
|
|
215
|
-
"@likec4/
|
|
216
|
-
"@likec4/
|
|
217
|
-
"@likec4/
|
|
218
|
-
"@likec4/
|
|
219
|
-
"@likec4/style-preset": "1.55.
|
|
212
|
+
"@likec4/diagram": "1.55.1",
|
|
213
|
+
"@likec4/layouts": "1.55.1",
|
|
214
|
+
"@likec4/react": "1.55.1",
|
|
215
|
+
"@likec4/vite-plugin": "1.55.1",
|
|
216
|
+
"@likec4/generators": "1.55.1",
|
|
217
|
+
"@likec4/tsconfig": "1.55.1",
|
|
218
|
+
"@likec4/styles": "1.55.1",
|
|
219
|
+
"@likec4/style-preset": "1.55.1"
|
|
220
220
|
},
|
|
221
221
|
"scripts": {
|
|
222
222
|
"typecheck": "tsc --build --verbose",
|