likec4 1.17.0 → 1.18.0
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/{dist/__app__ → __app__}/react/likec4.tsx +9 -26
- package/{dist/__app__/src/chunks/-index-overview-DNT3FQkn.js → __app__/src/chunks/-index-overview-CBnvpD1d.js} +12 -12
- package/{dist/__app__/src/chunks/likec4-CLNXvKhh.js → __app__/src/chunks/likec4-DslTxitT.js} +50 -41
- package/{dist/__app__/src/chunks/main-Beyl8kQ7.js → __app__/src/chunks/main-ByUdz_Be.js} +14236 -13301
- package/{dist/__app__/src/chunks/mantine-CdYQpHSU.js → __app__/src/chunks/mantine-oFa3ZrEq.js} +1731 -713
- package/{dist/__app__/src/chunks/tanstack-router-DJI32bwX.js → __app__/src/chunks/tanstack-router-BWjXKr0n.js} +1 -1
- package/{dist/__app__ → __app__}/src/main.js +1 -1
- package/{dist/__app__ → __app__}/src/style.css +1 -1
- package/{dist/__app__ → __app__}/webcomponent/webcomponent.js +30987 -28447
- package/dist/chunks/prompt.mjs +3 -3
- package/dist/cli/index.mjs +210 -179
- package/dist/index.d.mts +1785 -722
- package/dist/index.d.ts +1785 -722
- package/dist/index.mjs +1 -1
- package/dist/shared/likec4.lgHXhASw.mjs +1832 -0
- package/package.json +37 -37
- package/react/index.d.ts +896 -423
- package/react/index.mjs +32935 -29389
- package/react/style.css +1 -1
- package/dist/shared/likec4.D5WUQlNc.mjs +0 -1824
- /package/{dist/__app__ → __app__}/favicon.ico +0 -0
- /package/{dist/__app__ → __app__}/favicon.svg +0 -0
- /package/{dist/__app__ → __app__}/index.html +0 -0
- /package/{dist/__app__ → __app__}/robots.txt +0 -0
- /package/{dist/__app__ → __app__}/src/chunks/-view-lazy-data-WZmbIsHq.js +0 -0
- /package/{dist/__app__ → __app__}/src/chunks/index-CIsxIzOH.js +0 -0
- /package/{dist/__app__ → __app__}/src/const.js +0 -0
- /package/{dist/__app__ → __app__}/src/icons.js +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "likec4",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://likec4.dev",
|
|
6
6
|
"author": "Denis Davydkov <denis@davydkov.com>",
|
|
@@ -68,12 +68,12 @@
|
|
|
68
68
|
"typecheck": "run-p --print-label 'typecheck:*'",
|
|
69
69
|
"build-cli": "unbuild",
|
|
70
70
|
"build-app": "run-p --print-label 'bundle:*'",
|
|
71
|
+
"build-react-dts": "tsx scripts/dts-react.ts",
|
|
71
72
|
"bundle:app": "tsx scripts/bundle-app.ts",
|
|
72
73
|
"bundle:react": "tsx scripts/bundle-react.ts",
|
|
73
|
-
"bundle:react-dts": "tsx scripts/dts-react.ts",
|
|
74
74
|
"bundle:webcomponent": "tsx scripts/bundle-webcomponent.ts",
|
|
75
75
|
"generate": "tsx scripts/generate.ts",
|
|
76
|
-
"prepack": "
|
|
76
|
+
"prepack": "tsx scripts/prepack.ts",
|
|
77
77
|
"lint": "run -T eslint src/ --fix",
|
|
78
78
|
"clean": "rm -r -f dist app/dist dev/.export dev/dist node_modules/.vite",
|
|
79
79
|
"dev": "tsx watch src/cli/index.ts serve dev",
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"dev:docs:dynamic-view": "tsx watch src/cli/index.ts serve ../../apps/docs/src/components/dynamic-view",
|
|
82
82
|
"dev:docs:index-page": "tsx watch src/cli/index.ts serve ../../apps/docs/src/components/index-page",
|
|
83
83
|
"dev:docs:theme": "tsx watch src/cli/index.ts serve ../../apps/docs/src/components/likec4-theme",
|
|
84
|
+
"dev:playground:deployment": "tsx watch src/cli/index.ts serve ../../apps/playground/src/examples/deployment",
|
|
84
85
|
"dev:template": "tsx watch src/cli/index.ts serve ../create-likec4/template",
|
|
85
86
|
"dev:example-cloud": "tsx watch src/cli/index.ts serve ../../examples/cloud-system",
|
|
86
87
|
"dev:failed": "tsx watch src/cli/index.ts serve ../../examples/failed",
|
|
@@ -96,44 +97,44 @@
|
|
|
96
97
|
"test:watch": "vitest"
|
|
97
98
|
},
|
|
98
99
|
"dependencies": {
|
|
99
|
-
"@hpcc-js/wasm-graphviz": "1.
|
|
100
|
-
"@vitejs/plugin-react-swc": "3.7.
|
|
101
|
-
"playwright": "1.
|
|
100
|
+
"@hpcc-js/wasm-graphviz": "1.7.0",
|
|
101
|
+
"@vitejs/plugin-react-swc": "3.7.2",
|
|
102
|
+
"playwright": "1.49.0",
|
|
102
103
|
"react": "^18.3.1",
|
|
103
104
|
"react-dom": "^18.3.1",
|
|
104
|
-
"type-fest": "4.
|
|
105
|
+
"type-fest": "4.28.1",
|
|
105
106
|
"vite": "5.4.11"
|
|
106
107
|
},
|
|
107
108
|
"devDependencies": {
|
|
108
109
|
"@fontsource/ibm-plex-sans": "^5.1.0",
|
|
109
|
-
"@likec4/core": "1.
|
|
110
|
-
"@likec4/diagram": "1.
|
|
111
|
-
"@likec4/generators": "1.
|
|
112
|
-
"@likec4/icons": "1.
|
|
113
|
-
"@likec4/language-server": "1.
|
|
114
|
-
"@likec4/layouts": "1.
|
|
115
|
-
"@likec4/log": "1.
|
|
116
|
-
"@likec4/tsconfig": "1.
|
|
117
|
-
"@mantine/core": "7.
|
|
118
|
-
"@mantine/hooks": "7.
|
|
119
|
-
"@mantine/
|
|
110
|
+
"@likec4/core": "1.18.0",
|
|
111
|
+
"@likec4/diagram": "1.18.0",
|
|
112
|
+
"@likec4/generators": "1.18.0",
|
|
113
|
+
"@likec4/icons": "1.18.0",
|
|
114
|
+
"@likec4/language-server": "1.18.0",
|
|
115
|
+
"@likec4/layouts": "1.18.0",
|
|
116
|
+
"@likec4/log": "1.18.0",
|
|
117
|
+
"@likec4/tsconfig": "1.18.0",
|
|
118
|
+
"@mantine/core": "7.15.1",
|
|
119
|
+
"@mantine/hooks": "7.15.1",
|
|
120
|
+
"@mantine/spotlight": "7.15.1",
|
|
121
|
+
"@mantine/vanilla-extract": "7.15.1",
|
|
120
122
|
"@nanostores/react": "0.8.0",
|
|
121
123
|
"@react-hookz/web": "^24.0.4",
|
|
122
124
|
"@tabler/icons-react": "3.17.0",
|
|
123
125
|
"@tanstack/react-router": "1.45.13",
|
|
124
126
|
"@tanstack/router-cli": "1.45.13",
|
|
125
127
|
"@tanstack/router-vite-plugin": "1.45.13",
|
|
126
|
-
"@types/node": "^20.
|
|
128
|
+
"@types/node": "^20.17.7",
|
|
127
129
|
"@types/prop-types": "^15.7.13",
|
|
128
130
|
"@types/react": "18.3.11",
|
|
129
131
|
"@types/react-dom": "18.3.1",
|
|
130
|
-
"@types/string-hash": "^1.1.3",
|
|
131
132
|
"@types/yargs": "^17.0.33",
|
|
132
|
-
"@vanilla-extract/css": "^1.16.
|
|
133
|
+
"@vanilla-extract/css": "^1.16.1",
|
|
133
134
|
"@vanilla-extract/dynamic": "^2.1.2",
|
|
134
|
-
"@vanilla-extract/vite-plugin": "^4.0.
|
|
135
|
-
"@xyflow/react": "12.3.
|
|
136
|
-
"@xyflow/system": "0.0.
|
|
135
|
+
"@vanilla-extract/vite-plugin": "^4.0.18",
|
|
136
|
+
"@xyflow/react": "12.3.5",
|
|
137
|
+
"@xyflow/system": "0.0.46",
|
|
137
138
|
"autoprefixer": "^10.4.20",
|
|
138
139
|
"classnames": "^2.5.1",
|
|
139
140
|
"clsx": "^2.1.1",
|
|
@@ -144,39 +145,38 @@
|
|
|
144
145
|
"execa": "^9.3.1",
|
|
145
146
|
"fast-equals": "^5.0.1",
|
|
146
147
|
"fdir": "^6.4.2",
|
|
147
|
-
"framer-motion": "^11.
|
|
148
|
+
"framer-motion": "^11.14.1",
|
|
148
149
|
"get-port": "^7.1.0",
|
|
149
150
|
"glob": "^11.0.0",
|
|
150
151
|
"html-to-image": "^1.11.11",
|
|
151
152
|
"json5": "^2.2.3",
|
|
152
|
-
"langium": "3.
|
|
153
|
+
"langium": "3.3.0",
|
|
153
154
|
"mkdirp": "^3.0.1",
|
|
154
155
|
"nanostores": "0.11.3",
|
|
155
|
-
"npm-run-all2": "^
|
|
156
|
+
"npm-run-all2": "^7.0.1",
|
|
156
157
|
"p-limit": "^6.1.0",
|
|
157
158
|
"package-up": "^5.0.0",
|
|
158
|
-
"postcss": "^8.4.
|
|
159
|
+
"postcss": "^8.4.49",
|
|
159
160
|
"postcss-preset-mantine": "^1.17.0",
|
|
160
|
-
"pretty-ms": "^9.
|
|
161
|
+
"pretty-ms": "^9.2.0",
|
|
161
162
|
"prop-types": "^15.8.1",
|
|
162
163
|
"react-error-boundary": "^4.1.2",
|
|
163
|
-
"react-resizable-panels": "^2.1.
|
|
164
|
+
"react-resizable-panels": "^2.1.7",
|
|
164
165
|
"react-shadow": "^20.5.0",
|
|
165
|
-
"remeda": "^2.
|
|
166
|
-
"std-env": "^3.
|
|
167
|
-
"string-hash": "^1.1.3",
|
|
166
|
+
"remeda": "^2.17.4",
|
|
167
|
+
"std-env": "^3.8.0",
|
|
168
168
|
"strip-indent": "^4.0.0",
|
|
169
169
|
"terser": "^5.33.0",
|
|
170
170
|
"tinyrainbow": "^1.2.0",
|
|
171
171
|
"tsx": "~4.9.3",
|
|
172
|
-
"turbo": "^2.
|
|
173
|
-
"typescript": "^5.
|
|
172
|
+
"turbo": "^2.3.3",
|
|
173
|
+
"typescript": "^5.7.2",
|
|
174
174
|
"ufo": "^1.5.4",
|
|
175
175
|
"unbuild": "^3.0.0-rc.11",
|
|
176
176
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
177
177
|
"vite-plugin-shadow-style": "^1.1.1",
|
|
178
|
-
"vitest": "^2.1.
|
|
178
|
+
"vitest": "^2.1.8",
|
|
179
179
|
"yargs": "17.7.2"
|
|
180
180
|
},
|
|
181
|
-
"packageManager": "yarn@4.5.
|
|
181
|
+
"packageManager": "yarn@4.5.3"
|
|
182
182
|
}
|