diff --git a/apps/designer/package.json b/apps/designer/package.json index ad60cdd..07e0c7c 100644 --- a/apps/designer/package.json +++ b/apps/designer/package.json @@ -15,17 +15,17 @@ "typecheck": "vue-tsc --noEmit --skipLibCheck" }, "dependencies": { - "@vtj/core": "^0.11.11", - "@vtj/designer": "0.11.11", - "@vtj/icons": "0.11.11", - "@vtj/local": "^0.11.11", - "@vtj/materials": "^0.11.11", + "@vtj/core": "^0.11.12", + "@vtj/designer": "0.11.12", + "@vtj/icons": "0.11.12", + "@vtj/local": "^0.11.12", + "@vtj/materials": "^0.11.12", "@vtj/node": "0.11.2", - "@vtj/pro": "^0.11.11", - "@vtj/renderer": "^0.11.11", - "@vtj/ui": "^0.11.11", - "@vtj/utils": "0.11.11", - "@vtj/web": "^0.11.11", + "@vtj/pro": "^0.11.12", + "@vtj/renderer": "^0.11.12", + "@vtj/ui": "^0.11.12", + "@vtj/utils": "0.11.12", + "@vtj/web": "^0.11.12", "axios": "^1.8.1", "element-plus": "^2.9.4", "licia-es": "^1.46.0", diff --git a/apps/designer/src/views/index.vue b/apps/designer/src/views/index.vue index 1699cc2..cba39d1 100644 --- a/apps/designer/src/views/index.vue +++ b/apps/designer/src/views/index.vue @@ -28,10 +28,10 @@ onMounted(async () => { console.log('get parent model', model); userStore.setToken(model.accessToken); localStorage.setItem('y-code-access-token', model.accessToken); - // request.useRequest((req) => { - // req.headers.set('Authorization', `Bearer ${model.accessToken}`); - // return req; - // }); + request.useRequest((req) => { + req.headers.set('Authorization', `Bearer ${model.accessToken}`); + return req; + }); sessionStorage.setItem('projectId', model.projectId); const _engine = new Engine({ container, @@ -66,7 +66,7 @@ onMounted(async () => { widgetManager.set('History', { // 有 bug,先隐藏 - invisible: true + // invisible: true }); }); }); diff --git a/apps/designer/src/views/preview.vue b/apps/designer/src/views/preview.vue index 34b3104..2322491 100644 --- a/apps/designer/src/views/preview.vue +++ b/apps/designer/src/views/preview.vue @@ -9,10 +9,10 @@ import { jsonp, request } from '@vtj/utils'; const userStore = useUserStore(); const service = new LowCodeService(); -// request.useRequest((req) => { -// req.headers.set('Authorization', `Bearer ${userStore.token}`); -// return req; -// }); +request.useRequest((req) => { + req.headers.set('Authorization', `Bearer ${userStore.token}`); + return req; +}); const { provider, onReady } = createProvider({ mode: ContextMode.Runtime, service, diff --git a/apps/platform/src/router/routes/modules/application.ts b/apps/platform/src/router/routes/modules/application.ts index 4756ad0..aa7d218 100644 --- a/apps/platform/src/router/routes/modules/application.ts +++ b/apps/platform/src/router/routes/modules/application.ts @@ -11,6 +11,7 @@ const routes: Array = [ meta: { title: '应用管理', icon: 'ant-design:appstore-outlined', + hideInMenu: true, }, children: [ { diff --git a/apps/platform/src/router/routes/modules/micro.ts b/apps/platform/src/router/routes/modules/micro.ts index 112e044..d741fc4 100644 --- a/apps/platform/src/router/routes/modules/micro.ts +++ b/apps/platform/src/router/routes/modules/micro.ts @@ -33,6 +33,7 @@ const routes: RouteRecordRaw[] = [ url: `${VITE_DESIGNER_URL}`, projectId: LOW_CODE_PROJECT_ID, name: 'admin-designer', + accessToken: localStorage.getItem('y-code-access-token'), route, }; }, diff --git a/apps/platform/src/router/routes/modules/project.ts b/apps/platform/src/router/routes/modules/project.ts index 3103d9e..cc748e5 100644 --- a/apps/platform/src/router/routes/modules/project.ts +++ b/apps/platform/src/router/routes/modules/project.ts @@ -12,9 +12,10 @@ const routes: Array = [ path: '/project', name: moduleName, meta: { - hideInMenu: true, + // hideInMenu: true, title: '项目管理', icon: 'ant-design:appstore-outlined', + redirect: '/project/list', }, children: [ { @@ -23,7 +24,7 @@ const routes: Array = [ meta: { title: '项目列表', icon: 'ant-design:list', - hideInMenu: true, + // hideInMenu: true, }, component: Renderer, props: (route) => { diff --git a/apps/renderer/package.json b/apps/renderer/package.json index b05d20e..6394aa4 100644 --- a/apps/renderer/package.json +++ b/apps/renderer/package.json @@ -16,15 +16,15 @@ "dependencies": { "@sentry/vue": "^9.7.0", "@tanstack/vue-query": "^5.69.0", - "@vtj/charts": "^0.11.11", - "@vtj/core": "^0.11.11", - "@vtj/icons": "0.11.11", - "@vtj/materials": "^0.11.11", - "@vtj/pro": "^0.11.11", - "@vtj/renderer": "^0.11.11", - "@vtj/ui": "^0.11.11", - "@vtj/utils": "^0.11.11", - "@vtj/web": "^0.11.11", + "@vtj/charts": "^0.11.12", + "@vtj/core": "^0.11.12", + "@vtj/icons": "0.11.12", + "@vtj/materials": "^0.11.12", + "@vtj/pro": "^0.11.12", + "@vtj/renderer": "^0.11.12", + "@vtj/ui": "^0.11.12", + "@vtj/utils": "^0.11.12", + "@vtj/web": "^0.11.12", "ant-design-vue": "catalog:", "axios": "catalog:", "core-js": "catalog:", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 778dda5..de6b7b5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -620,38 +620,38 @@ importers: apps/designer: dependencies: '@vtj/core': - specifier: ^0.11.11 - version: 0.11.11 + specifier: ^0.11.12 + version: 0.11.12 '@vtj/designer': - specifier: 0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: 0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) '@vtj/icons': - specifier: 0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: 0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) '@vtj/local': - specifier: ^0.11.11 - version: 0.11.11 + specifier: ^0.11.12 + version: 0.11.12 '@vtj/materials': - specifier: ^0.11.11 - version: 0.11.11 + specifier: ^0.11.12 + version: 0.11.12 '@vtj/node': specifier: 0.11.2 version: 0.11.2 '@vtj/pro': - specifier: ^0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: ^0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) '@vtj/renderer': - specifier: ^0.11.11 - version: 0.11.11 + specifier: ^0.11.12 + version: 0.11.12 '@vtj/ui': - specifier: ^0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: ^0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) '@vtj/utils': - specifier: 0.11.11 - version: 0.11.11 + specifier: 0.11.12 + version: 0.11.12 '@vtj/web': - specifier: ^0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: ^0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) axios: specifier: ^1.8.1 version: 1.8.4(debug@4.4.0) @@ -848,32 +848,32 @@ importers: specifier: ^5.69.0 version: 5.69.0(vue@3.5.13(typescript@5.8.2)) '@vtj/charts': - specifier: ^0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: ^0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) '@vtj/core': - specifier: ^0.11.11 - version: 0.11.11 + specifier: ^0.11.12 + version: 0.11.12 '@vtj/icons': - specifier: 0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: 0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) '@vtj/materials': - specifier: ^0.11.11 - version: 0.11.11 + specifier: ^0.11.12 + version: 0.11.12 '@vtj/pro': - specifier: ^0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: ^0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) '@vtj/renderer': - specifier: ^0.11.11 - version: 0.11.11 + specifier: ^0.11.12 + version: 0.11.12 '@vtj/ui': - specifier: ^0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: ^0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) '@vtj/utils': - specifier: ^0.11.11 - version: 0.11.11 + specifier: ^0.11.12 + version: 0.11.12 '@vtj/web': - specifier: ^0.11.11 - version: 0.11.11(vue@3.5.13(typescript@5.8.2)) + specifier: ^0.11.12 + version: 0.11.12(vue@3.5.13(typescript@5.8.2)) ant-design-vue: specifier: 'catalog:' version: 4.2.6(vue@3.5.13(typescript@5.8.2)) @@ -5579,8 +5579,8 @@ packages: '@vtj/base@0.11.2': resolution: {integrity: sha512-HY40hCd+jCoM0ysU5W2ifSPynZeGrKUCfq7JqHedRitXpNwgWrezwwTrhJMhoqEv6llOftT5gKWfa+jeAVOeWw==} - '@vtj/charts@0.11.11': - resolution: {integrity: sha512-ER54vi9ZFwrD7RgC3eg8w6EdLgu3hAiF+oi8XRtc5Kjrm6CsHZkmutu+Fs/c5BvUZsNnhoBtha9vUvn3irrSEw==} + '@vtj/charts@0.11.12': + resolution: {integrity: sha512-SGsRmzuhlqMmKCkx76TS1UgA3G2epkiZB/ME/4skss6kuheJwbpSIVJ/45mA5JezkgzOrQDJBCqvBxmNtx0ROQ==} engines: {node: '>=16.0.0'} '@vtj/cli@0.11.2': @@ -5588,48 +5588,48 @@ packages: engines: {node: '>=20.0.0'} hasBin: true - '@vtj/coder@0.11.11': - resolution: {integrity: sha512-k0gn7yoeEzW6w97XrM38OdbHIi3XoGUgJ+adEhYaifdomaE0cr+t0qgFL3VEPCzSuJXSZgOOw4amF/G0OKUnYg==} + '@vtj/coder@0.11.12': + resolution: {integrity: sha512-YFCnGQqv3vfIPGS3XDiG4grDuMi9r3JufF4+5ZeqgdXcSWbDniAFZVgQCNyTl/MQXR67mObRKYWq1GJLOtRqbA==} - '@vtj/core@0.11.11': - resolution: {integrity: sha512-SmB2CxxhVZ8JlmQBTWjXGMkniihtJ52YI2k6GeTxCGa3b6P7UVVBOpeey6w5sEmhHDi4brvqueAzY3hGX2TDYQ==} + '@vtj/core@0.11.12': + resolution: {integrity: sha512-p3FaAIt2dAxmx7L3WJ+08f9Nu0aecmpIZMXh6woyon6SkRsaqmx1/j40vN51z0m2ren5v+pfb/6UWFaoi7C+Ug==} - '@vtj/designer@0.11.11': - resolution: {integrity: sha512-IbAFq1NGpf3wVyvQ6sQC9CypM2+MuFXaOFt+WirX1nQVCWGt71UCvJ0Osf9SsHUj0DRpCQKq8sei2yviAYIbJA==} + '@vtj/designer@0.11.12': + resolution: {integrity: sha512-oPsFb236LkTMks7sbTTNZmsIV5ggWaAPUe6tJFQmw3kYl1X1rssp8pENfc1+7gvKRgtCmAEfx7p22spujnvHXw==} - '@vtj/icons@0.11.11': - resolution: {integrity: sha512-I1b2Y450cGMLgPqAzGewq8dRAajYVaExHtAC/owV16J/j+zf7Julaq+60dAhPrzMmcPYkVuTLEQi3OUDNve9uQ==} + '@vtj/icons@0.11.12': + resolution: {integrity: sha512-FpWObZeMy41bYDnj6uQvrox+yxTPDc+NEvWd0EI6LSepmC3VH9MAWQrwXvJJeKHUFEUxONY0FNfbp3V3ijjYPg==} - '@vtj/local@0.11.11': - resolution: {integrity: sha512-zOdCwJalTxjY1SubnTMixeHcWJxVNbkzPkvCn8H+vA5oO08hCB/WF8RXZHgXONbpeKqO6eGYxUtb6pIbInRldw==} + '@vtj/local@0.11.12': + resolution: {integrity: sha512-I+ut+6HhqJY6jYq3Y5PbUS+DUfuhlg1H6c0t0smzUWuXXcnFFEuSoRWffXVH5gnS3koZkM1n7Vx8/Fnv54tcdg==} - '@vtj/materials@0.11.11': - resolution: {integrity: sha512-xjmcNon8J+hwp5pdB8RKr//5F5AhgjWyRmfo6a1+/jqvfY7IqE997SXKuz4z6naoDW3vdyl7yk9KQyJlxheCOw==} + '@vtj/materials@0.11.12': + resolution: {integrity: sha512-ZGzxcxCgJa3+EZKvrItF9WcGHG67vOJB9IxtugoSdMspC468wFH1RlmM8hNNH09WdD9Rvyda1uafVajr5Au8kA==} '@vtj/node@0.11.2': resolution: {integrity: sha512-zKKXbOgU9rUSI3+Zuw5rEI0V7dKPGuqtXPOcOHUktaQXajvjBFlVgAQZsbH/Fqgjwh6paNzxX2ulaAANKLrL8g==} - '@vtj/parser@0.11.11': - resolution: {integrity: sha512-3yMiT7Yrt/n++ApQbhm9eKp66gCYTc6/8BhisAWSYWhP35V2anMPM7Z6aq7pDaekpahdUIvBfd65n5WKbrghmw==} + '@vtj/parser@0.11.12': + resolution: {integrity: sha512-50hsnTD7KpdRDQAXXUY5SFnro1ISr4U1DmWs+DNueh64Goxd5I3K7c01aeiShYJ5rGpJWsxAT3FFT3YSR/j6RQ==} - '@vtj/pro@0.11.11': - resolution: {integrity: sha512-eLJ4wWu1LnAVA9MYL+I2a03xDqj9y41f8a9lf9uJhY4unBT1fMVWVyTsVFSzCh1yydG3BvnluvzzvI9gC23NpA==} + '@vtj/pro@0.11.12': + resolution: {integrity: sha512-iBx3c5eRDVYpjcf3jkkF15W9tL755egc01jJbxB86YGpuhA4N+BQkl9/QjriBZvCkm2PFvmspl9Ql2peRcVO5A==} - '@vtj/renderer@0.11.11': - resolution: {integrity: sha512-cP05HVMWnnIvsuXbfecT6Ffxi+CLKZ956DsrBf8oZF6Q+o8wsFqIpcqrPEjC3H50KlHRe7PWBLiyvCBFYsecPA==} + '@vtj/renderer@0.11.12': + resolution: {integrity: sha512-b7V0yOeByzoAl8kcE+O//4iK4b0C5NxJqPHRNDYnEvAbu8dSosubREfK2QDBk/MpsbT+KGaoTTljD0NkSCyyug==} - '@vtj/ui@0.11.11': - resolution: {integrity: sha512-unDQXaTR+G6LPQd30vSQ7tdwa9n1/805jetlj75iB76vJ4iTkUxpuKn7jve7KQe2sFwIV8pSHmiEHOcnXxREaA==} + '@vtj/ui@0.11.12': + resolution: {integrity: sha512-i2HmFQK3ECvZbktC7E0zMosFB6JGyDMOZS0kKtppPx0NKIDRnSIJtv80ckZT8yP+3MOAe1xEtKWr1WO9JIg33g==} engines: {node: '>=16.0.0'} - '@vtj/uni@0.11.11': - resolution: {integrity: sha512-Z6/WzH91g5mV9krs98gu9pKgkDkNq12pKrJxuN8keXPuSgX9mUWOwMoWkuQYzywsBGm3Ex1Q17BUu+DTXNPAAg==} + '@vtj/uni@0.11.12': + resolution: {integrity: sha512-lE2vJakeMm1vMKg4nBsZmhwVJzSlWTvY2XjANBtFS5dI9VSN3RFxlsMcEWJnONFFT/72d0scpTqrfBQAstA7ig==} - '@vtj/utils@0.11.11': - resolution: {integrity: sha512-wkPmXpf0NlGCVuqkueUDvNGn6GiHpNgucnZ69QSL2itzb/vH/fI85M7leNPJlV0CvS11MW1an70walrUzU1YdQ==} + '@vtj/utils@0.11.12': + resolution: {integrity: sha512-IQ6hiQFYiRR004T061vxhnuCqa3ROCwC54XoJo1DxpP59vJ6uoyzzTYqcOpb+tigDdt4GwePpl3fL+XfoCc9qA==} - '@vtj/web@0.11.11': - resolution: {integrity: sha512-/bECpSUmmIK8svnaDVoo1lH1QGd/dJfZC+3vy9Vmt4RFcVr1w3v8hibrVMnOLF9G1Raduz82Y5gXWEaBfX+HDQ==} + '@vtj/web@0.11.12': + resolution: {integrity: sha512-YtsCkO70t/wwOD2h/xVa8nyqnFddSZsayvTMAD9fsdAg7cJW0BLo4XAaIwqUTchMit75Wrd+bfiLHAPrD+1Nzg==} '@vue/babel-helper-vue-transform-on@1.4.0': resolution: {integrity: sha512-mCokbouEQ/ocRce/FpKCRItGo+013tHg7tixg3DUNS+6bmIchPt66012kBMm476vyEIJPafrvOf4E5OYj3shSw==} @@ -5929,8 +5929,8 @@ packages: alien-signals@0.4.14: resolution: {integrity: sha512-itUAVzhczTmP2U5yX67xVpsbbOiquusbWVyA9N+sy6+r6YVbFkahXvNCeEPWEOMhwDYwbVbGHFkVL03N9I5g+Q==} - alien-signals@1.0.9: - resolution: {integrity: sha512-2dQYgGZHrW4pOYv0BWiw4cH/ElhwmLnQDcj/fdnRRF2OO3YBqgJXSleI1EbbXdQsuC5oCvr6+VKAOEElsmcx4Q==} + alien-signals@1.0.10: + resolution: {integrity: sha512-pBrgovDvA/c55/aA+ar5pxNCvjQB5IlODtpOQXmUyrpclWIsHmUMsfIuCWsSU/l1iLU2O3ZhICdPaYTsuvGu8Q==} align-text@0.1.4: resolution: {integrity: sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg==} @@ -9837,8 +9837,8 @@ packages: nth-check@2.1.1: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - nwsapi@2.2.19: - resolution: {integrity: sha512-94bcyI3RsqiZufXjkr3ltkI86iEl+I7uiHVDtcq9wJUTwYQJ5odHDeSzkkrRzi80jJ8MaeZgqKjH1bAWAFw9bA==} + nwsapi@2.2.20: + resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} nypm@0.6.0: resolution: {integrity: sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==} @@ -13494,7 +13494,7 @@ snapshots: '@babel/parser': 7.27.0 '@babel/template': 7.27.0 '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/types': 7.26.10 convert-source-map: 2.0.0 debug: 4.4.0 gensync: 1.0.0-beta.2 @@ -13521,7 +13521,7 @@ snapshots: '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.26.10 '@babel/helper-compilation-targets@7.27.0': dependencies: @@ -13565,14 +13565,14 @@ snapshots: '@babel/helper-member-expression-to-functions@7.25.9': dependencies: '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/types': 7.26.10 transitivePeerDependencies: - supports-color '@babel/helper-module-imports@7.25.9': dependencies: '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/types': 7.26.10 transitivePeerDependencies: - supports-color @@ -13587,7 +13587,7 @@ snapshots: '@babel/helper-optimise-call-expression@7.25.9': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.26.10 '@babel/helper-plugin-utils@7.26.5': {} @@ -13612,7 +13612,7 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/types': 7.26.10 transitivePeerDependencies: - supports-color @@ -15567,7 +15567,7 @@ snapshots: '@grpc/grpc-js@1.9.15': dependencies: '@grpc/proto-loader': 0.7.13 - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@grpc/proto-loader@0.7.13': dependencies: @@ -16839,15 +16839,15 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/connect@3.4.38': dependencies: - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/conventional-commits-parser@5.0.1': dependencies: - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/d3-timer@2.0.3': {} @@ -16867,7 +16867,7 @@ snapshots: '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/hast@3.0.4': dependencies: @@ -16879,13 +16879,13 @@ snapshots: '@types/http-proxy@1.17.16': dependencies: - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/json-schema@7.0.15': {} '@types/jsonfile@6.1.4': dependencies: - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/linkify-it@5.0.0': {} @@ -16954,7 +16954,7 @@ snapshots: '@types/readdir-glob@1.1.5': dependencies: - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/resolve@1.20.2': {} @@ -16963,12 +16963,12 @@ snapshots: '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.17.28 + '@types/node': 22.13.14 '@types/send': 0.17.4 '@types/sortablejs@1.15.8': {} @@ -17444,10 +17444,10 @@ snapshots: '@types/numeral': 2.0.5 reflect-metadata: 0.2.2 - '@vtj/charts@0.11.11(vue@3.5.13(typescript@5.8.2))': + '@vtj/charts@0.11.12(vue@3.5.13(typescript@5.8.2))': dependencies: - '@vtj/icons': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/utils': 0.11.11 + '@vtj/icons': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/utils': 0.11.12 '@vueuse/core': 13.0.0(vue@3.5.13(typescript@5.8.2)) echarts: 5.6.0 transitivePeerDependencies: @@ -17575,24 +17575,24 @@ snapshots: - vue - yaml - '@vtj/coder@0.11.11': + '@vtj/coder@0.11.12': dependencies: '@vtj/base': 0.11.2 - '@vtj/core': 0.11.11 + '@vtj/core': 0.11.12 prettier: 3.5.3 - '@vtj/core@0.11.11': + '@vtj/core@0.11.12': dependencies: '@vtj/base': 0.11.2 - '@vtj/designer@0.11.11(vue@3.5.13(typescript@5.8.2))': + '@vtj/designer@0.11.12(vue@3.5.13(typescript@5.8.2))': dependencies: - '@vtj/core': 0.11.11 - '@vtj/icons': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/renderer': 0.11.11 - '@vtj/ui': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/uni': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/utils': 0.11.11 + '@vtj/core': 0.11.12 + '@vtj/icons': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/renderer': 0.11.12 + '@vtj/ui': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/uni': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/utils': 0.11.12 html2canvas: 1.4.1 mockjs: 1.1.0 monaco-editor: 0.52.2 @@ -17600,24 +17600,24 @@ snapshots: - '@vue/composition-api' - vue - '@vtj/icons@0.11.11(vue@3.5.13(typescript@5.8.2))': + '@vtj/icons@0.11.12(vue@3.5.13(typescript@5.8.2))': dependencies: '@element-plus/icons-vue': 2.3.1(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - vue - '@vtj/local@0.11.11': + '@vtj/local@0.11.12': dependencies: - '@vtj/coder': 0.11.11 - '@vtj/core': 0.11.11 + '@vtj/coder': 0.11.12 + '@vtj/core': 0.11.12 '@vtj/node': 0.11.2 - '@vtj/parser': 0.11.11 + '@vtj/parser': 0.11.12 formidable: 3.5.2 transitivePeerDependencies: - debug - supports-color - '@vtj/materials@0.11.11': {} + '@vtj/materials@0.11.12': {} '@vtj/node@0.11.2': dependencies: @@ -17628,42 +17628,42 @@ snapshots: transitivePeerDependencies: - debug - '@vtj/parser@0.11.11': + '@vtj/parser@0.11.12': dependencies: '@babel/generator': 7.26.10 '@babel/parser': 7.26.10 '@babel/traverse': 7.26.10 '@vtj/base': 0.11.2 - '@vtj/coder': 0.11.11 - '@vtj/core': 0.11.11 + '@vtj/coder': 0.11.12 + '@vtj/core': 0.11.12 '@vue/compiler-dom': 3.5.13 '@vue/compiler-sfc': 3.5.13 transitivePeerDependencies: - supports-color - '@vtj/pro@0.11.11(vue@3.5.13(typescript@5.8.2))': + '@vtj/pro@0.11.12(vue@3.5.13(typescript@5.8.2))': dependencies: - '@vtj/core': 0.11.11 - '@vtj/designer': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/local': 0.11.11 - '@vtj/materials': 0.11.11 - '@vtj/renderer': 0.11.11 - '@vtj/uni': 0.11.11(vue@3.5.13(typescript@5.8.2)) + '@vtj/core': 0.11.12 + '@vtj/designer': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/local': 0.11.12 + '@vtj/materials': 0.11.12 + '@vtj/renderer': 0.11.12 + '@vtj/uni': 0.11.12(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - '@vue/composition-api' - debug - supports-color - vue - '@vtj/renderer@0.11.11': + '@vtj/renderer@0.11.12': dependencies: - '@vtj/core': 0.11.11 - '@vtj/utils': 0.11.11 + '@vtj/core': 0.11.12 + '@vtj/utils': 0.11.12 - '@vtj/ui@0.11.11(vue@3.5.13(typescript@5.8.2))': + '@vtj/ui@0.11.12(vue@3.5.13(typescript@5.8.2))': dependencies: - '@vtj/icons': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/utils': 0.11.11 + '@vtj/icons': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/utils': 0.11.12 '@vueuse/core': 13.0.0(vue@3.5.13(typescript@5.8.2)) element-plus: 2.9.7(vue@3.5.13(typescript@5.8.2)) sortablejs: 1.15.6 @@ -17673,27 +17673,27 @@ snapshots: - '@vue/composition-api' - vue - '@vtj/uni@0.11.11(vue@3.5.13(typescript@5.8.2))': + '@vtj/uni@0.11.12(vue@3.5.13(typescript@5.8.2))': dependencies: - '@vtj/core': 0.11.11 - '@vtj/icons': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/renderer': 0.11.11 - '@vtj/utils': 0.11.11 + '@vtj/core': 0.11.12 + '@vtj/icons': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/renderer': 0.11.12 + '@vtj/utils': 0.11.12 transitivePeerDependencies: - vue - '@vtj/utils@0.11.11': + '@vtj/utils@0.11.12': dependencies: '@vtj/base': 0.11.2 - '@vtj/web@0.11.11(vue@3.5.13(typescript@5.8.2))': + '@vtj/web@0.11.12(vue@3.5.13(typescript@5.8.2))': dependencies: - '@vtj/charts': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/core': 0.11.11 - '@vtj/icons': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/renderer': 0.11.11 - '@vtj/ui': 0.11.11(vue@3.5.13(typescript@5.8.2)) - '@vtj/utils': 0.11.11 + '@vtj/charts': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/core': 0.11.12 + '@vtj/icons': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/renderer': 0.11.12 + '@vtj/ui': 0.11.12(vue@3.5.13(typescript@5.8.2)) + '@vtj/utils': 0.11.12 core-js: 3.41.0 regenerator-runtime: 0.14.1 transitivePeerDependencies: @@ -17852,7 +17852,7 @@ snapshots: '@vue/compiler-dom': 3.5.13 '@vue/compiler-vue2': 2.7.16 '@vue/shared': 3.5.13 - alien-signals: 1.0.9 + alien-signals: 1.0.10 minimatch: 9.0.5 muggle-string: 0.4.1 path-browserify: 1.0.1 @@ -18103,7 +18103,7 @@ snapshots: alien-signals@0.4.14: {} - alien-signals@1.0.9: {} + alien-signals@1.0.10: {} align-text@0.1.4: dependencies: @@ -21521,7 +21521,7 @@ snapshots: http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.19 + nwsapi: 2.2.20 parse5: 7.2.1 rrweb-cssom: 0.8.0 saxes: 6.0.0 @@ -22486,7 +22486,7 @@ snapshots: dependencies: boolbase: 1.0.0 - nwsapi@2.2.19: {} + nwsapi@2.2.20: {} nypm@0.6.0: dependencies: @@ -23421,7 +23421,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.17.28 + '@types/node': 22.13.14 long: 5.3.1 proxy-from-env@1.1.0: {}