cabloy 5.1.79 ā 5.1.81
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/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/scripts/release.ts +33 -15
- package/vona/patches/zova-core@5.1.66.patch +56 -0
- package/vona/pnpm-lock.yaml +29 -29
- package/vona/pnpm-workspace.yaml +1 -1
- package/zova/packages-utils/zova-jsx/package.json +2 -2
- package/zova/packages-zova/zova/package.json +3 -3
- package/zova/packages-zova/zova-core/package.json +1 -1
- package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/scripts/release.ts
CHANGED
|
@@ -159,8 +159,8 @@ function readLocalZovaCoreVersion(): string {
|
|
|
159
159
|
return version;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
function
|
|
163
|
-
const patchLine = ` zova-core@${version}: patches/zova-core@${version}.patch
|
|
162
|
+
function updateVonaPatchedDependency(version?: string): void {
|
|
163
|
+
const patchLine = version ? ` zova-core@${version}: patches/zova-core@${version}.patch` : null;
|
|
164
164
|
const lines = readFileSync(VONA_WORKSPACE_PATH, 'utf-8').split('\n');
|
|
165
165
|
const patchedDependenciesIndex = lines.findIndex(line => line.trim() === 'patchedDependencies:');
|
|
166
166
|
if (patchedDependenciesIndex === -1) {
|
|
@@ -180,13 +180,19 @@ function normalizeVonaPatchedDependency(version: string): void {
|
|
|
180
180
|
);
|
|
181
181
|
const newLines = [
|
|
182
182
|
...lines.slice(0, patchedDependenciesIndex + 1),
|
|
183
|
-
patchLine,
|
|
183
|
+
...(patchLine ? [patchLine] : []),
|
|
184
184
|
...preservedBlockLines,
|
|
185
185
|
...lines.slice(blockEndIndex),
|
|
186
186
|
];
|
|
187
187
|
writeFileSync(VONA_WORKSPACE_PATH, `${newLines.join('\n').replace(/\n+$/, '\n')}\n`);
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
+
function ensureFileExists(filePath: string): void {
|
|
191
|
+
if (!existsSync(filePath)) {
|
|
192
|
+
writeFileSync(filePath, '');
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
190
196
|
function replaceOrThrow(
|
|
191
197
|
content: string,
|
|
192
198
|
search: RegExp,
|
|
@@ -222,7 +228,7 @@ function applyKnownZovaCorePatchEdits(editDir: string): void {
|
|
|
222
228
|
const envContent = readFileSync(envPath, 'utf-8');
|
|
223
229
|
const envNext = replaceOrThrow(
|
|
224
230
|
envContent,
|
|
225
|
-
/declare global \{\n {4}namespace NodeJS \{\n
|
|
231
|
+
/declare global \{\n {4}namespace NodeJS \{\n {8}interface ProcessEnv \{[\s\S]*?\n \}\n \}\n\}\n?/,
|
|
226
232
|
'',
|
|
227
233
|
'the NodeJS.ProcessEnv augmentation',
|
|
228
234
|
);
|
|
@@ -231,7 +237,7 @@ function applyKnownZovaCorePatchEdits(editDir: string): void {
|
|
|
231
237
|
const moduleContent = readFileSync(modulePath, 'utf-8');
|
|
232
238
|
const moduleNext = replaceOrThrow(
|
|
233
239
|
moduleContent,
|
|
234
|
-
/declare module '@cabloy\/module-info' \{\n {4}interface IModule \{[\s\S]*?\n
|
|
240
|
+
/declare module '@cabloy\/module-info' \{\n {4}interface IModule \{[\s\S]*?\n {4}\}\n\}\n?/,
|
|
235
241
|
'',
|
|
236
242
|
'the @cabloy/module-info augmentation',
|
|
237
243
|
);
|
|
@@ -275,17 +281,28 @@ function regenerateVonaZovaCorePatch(
|
|
|
275
281
|
console.log(`\n𩹠Regenerating the Vona zova-core patch for ${targetVersion}...`);
|
|
276
282
|
|
|
277
283
|
if (dryRun) {
|
|
284
|
+
// eslint-disable-next-line
|
|
285
|
+
console.log(
|
|
286
|
+
' [dry-run] Temporarily remove the current zova-core patched dependency registration',
|
|
287
|
+
);
|
|
288
|
+
exec(`pnpm --dir "${VONA_DIR}" install`, true);
|
|
278
289
|
exec(
|
|
279
290
|
`pnpm --dir "${VONA_DIR}" patch zova-core@${targetVersion} --edit-dir "${editDir}" --ignore-existing`,
|
|
280
291
|
true,
|
|
281
292
|
);
|
|
282
293
|
// eslint-disable-next-line
|
|
283
294
|
console.log(' [dry-run] Apply the known zova-core declaration-file patch edits');
|
|
284
|
-
exec(`pnpm --dir "${VONA_DIR}" patch-commit "${editDir}"`, true);
|
|
285
295
|
// eslint-disable-next-line
|
|
286
|
-
console.log(` [dry-run]
|
|
296
|
+
console.log(` [dry-run] Ensure ${newPatchFilePath} exists before patch-commit`);
|
|
297
|
+
exec(
|
|
298
|
+
`pnpm --dir "${VONA_DIR}" patch-commit "${editDir}" --patches-dir "${VONA_PATCHES_DIR}"`,
|
|
299
|
+
true,
|
|
300
|
+
);
|
|
301
|
+
// eslint-disable-next-line
|
|
302
|
+
console.log(` [dry-run] Restore ${VONA_WORKSPACE_PATH} to point at ${newPatchFilePath}`);
|
|
287
303
|
// eslint-disable-next-line
|
|
288
304
|
console.log(` [dry-run] Remove ${oldPatchFilePath} if it still exists`);
|
|
305
|
+
exec(`pnpm --dir "${VONA_DIR}" install`, true);
|
|
289
306
|
return;
|
|
290
307
|
}
|
|
291
308
|
|
|
@@ -293,20 +310,27 @@ function regenerateVonaZovaCorePatch(
|
|
|
293
310
|
mkdirSync(dirname(editDir), { recursive: true });
|
|
294
311
|
|
|
295
312
|
try {
|
|
313
|
+
updateVonaPatchedDependency();
|
|
314
|
+
execInherited(`pnpm --dir "${VONA_DIR}" install`);
|
|
315
|
+
|
|
296
316
|
execInherited(
|
|
297
317
|
`pnpm --dir "${VONA_DIR}" patch zova-core@${targetVersion} --edit-dir "${editDir}" --ignore-existing`,
|
|
298
318
|
);
|
|
299
319
|
applyKnownZovaCorePatchEdits(editDir);
|
|
300
|
-
execInherited(`pnpm --dir "${VONA_DIR}" patch-commit "${editDir}"`);
|
|
301
320
|
|
|
302
|
-
|
|
321
|
+
ensureFileExists(newPatchFilePath);
|
|
322
|
+
execInherited(
|
|
323
|
+
`pnpm --dir "${VONA_DIR}" patch-commit "${editDir}" --patches-dir "${VONA_PATCHES_DIR}"`,
|
|
324
|
+
);
|
|
303
325
|
|
|
326
|
+
updateVonaPatchedDependency(targetVersion);
|
|
304
327
|
if (!existsSync(newPatchFilePath)) {
|
|
305
328
|
throw new Error(`Expected regenerated patch file is missing: ${newPatchFilePath}`);
|
|
306
329
|
}
|
|
307
330
|
if (currentPatchedVersion !== targetVersion && existsSync(oldPatchFilePath)) {
|
|
308
331
|
rmSync(oldPatchFilePath);
|
|
309
332
|
}
|
|
333
|
+
execInherited(`pnpm --dir "${VONA_DIR}" install`);
|
|
310
334
|
} finally {
|
|
311
335
|
rmSync(editDir, { recursive: true, force: true });
|
|
312
336
|
}
|
|
@@ -380,12 +404,6 @@ async function postReleaseCompensation(options: ReleaseOptions): Promise<void> {
|
|
|
380
404
|
return;
|
|
381
405
|
}
|
|
382
406
|
|
|
383
|
-
if (compareVersions(localZovaCoreVersion, currentPatchedVersion) <= 0) {
|
|
384
|
-
// eslint-disable-next-line
|
|
385
|
-
console.log('No newer local zova-core version needs patch compensation. Skipping.');
|
|
386
|
-
return;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
407
|
regenerateVonaZovaCorePatch(currentPatchedVersion, localZovaCoreVersion, options.dryRun);
|
|
390
408
|
refreshVonaLockfile(options.dryRun);
|
|
391
409
|
verifyCompensationPatch(options.dryRun);
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
diff --git a/dist/bean/resource/error/errorGlobal.d.ts b/dist/bean/resource/error/errorGlobal.d.ts
|
|
2
|
+
index 73cebe18f3e260c295bdf42a3d1ab9e86fa2de87..cb0ff5c3b541f646105198ee23ac0fc3d805023e 100644
|
|
3
|
+
--- a/dist/bean/resource/error/errorGlobal.d.ts
|
|
4
|
+
+++ b/dist/bean/resource/error/errorGlobal.d.ts
|
|
5
|
+
@@ -1,9 +1 @@
|
|
6
|
+
-import type { TypeScopesErrorCodes } from '../../type.ts';
|
|
7
|
+
-declare global {
|
|
8
|
+
- export interface Error {
|
|
9
|
+
- code?: TypeScopesErrorCodes | number | undefined;
|
|
10
|
+
- status?: number | string | undefined;
|
|
11
|
+
- }
|
|
12
|
+
-}
|
|
13
|
+
export {};
|
|
14
|
+
-//# sourceMappingURL=errorGlobal.d.ts.map
|
|
15
|
+
|
|
16
|
+
diff --git a/dist/types/interface/module.d.ts b/dist/types/interface/module.d.ts
|
|
17
|
+
index 838e299407218b7bfac469d42a12d6ab59820380..314deb46c0c40670e9c0bc0c6146024e23b147d7 100644
|
|
18
|
+
--- a/dist/types/interface/module.d.ts
|
|
19
|
+
+++ b/dist/types/interface/module.d.ts
|
|
20
|
+
@@ -23,12 +23,6 @@ export interface IModuleResource {
|
|
21
|
+
components: TypeModuleResourceComponents;
|
|
22
|
+
}
|
|
23
|
+
export declare const SymbolInstalled: unique symbol;
|
|
24
|
+
-declare module '@cabloy/module-info' {
|
|
25
|
+
- interface IModule {
|
|
26
|
+
- resource: IModuleResource;
|
|
27
|
+
- info: IModuleInfo;
|
|
28
|
+
- }
|
|
29
|
+
-}
|
|
30
|
+
export interface IModuleApp {
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=module.d.ts.map
|
|
33
|
+
diff --git a/dist/types/utils/env.d.ts b/dist/types/utils/env.d.ts
|
|
34
|
+
index 708c0a584dfec65b8c7ad2d049156f900de49928..df2bfa254283a8dce5122d97e931244e9d86e41a 100644
|
|
35
|
+
--- a/dist/types/utils/env.d.ts
|
|
36
|
+
+++ b/dist/types/utils/env.d.ts
|
|
37
|
+
@@ -34,19 +34,4 @@ export interface ZovaConfigEnv {
|
|
38
|
+
MOCK_BUILD: string | undefined;
|
|
39
|
+
MOCK_BUILD_PORT: string | undefined;
|
|
40
|
+
}
|
|
41
|
+
-declare global {
|
|
42
|
+
- namespace NodeJS {
|
|
43
|
+
- interface ProcessEnv {
|
|
44
|
+
- NODE_ENV: ZovaMetaMode;
|
|
45
|
+
- META_FLAVOR: ZovaMetaFlavor;
|
|
46
|
+
- META_MODE: ZovaMetaMode;
|
|
47
|
+
- META_APP_MODE: ZovaMetaAppMode;
|
|
48
|
+
- SSR: boolean;
|
|
49
|
+
- DEV: boolean;
|
|
50
|
+
- PROD: boolean;
|
|
51
|
+
- CLIENT: boolean;
|
|
52
|
+
- SERVER: boolean;
|
|
53
|
+
- }
|
|
54
|
+
- }
|
|
55
|
+
-}
|
|
56
|
+
//# sourceMappingURL=env.d.ts.map
|
package/vona/pnpm-lock.yaml
CHANGED
|
@@ -16,7 +16,7 @@ overrides:
|
|
|
16
16
|
zod: npm:@cabloy/zod@4.3.8
|
|
17
17
|
|
|
18
18
|
patchedDependencies:
|
|
19
|
-
zova-core@5.1.
|
|
19
|
+
zova-core@5.1.66: 19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d
|
|
20
20
|
|
|
21
21
|
importers:
|
|
22
22
|
|
|
@@ -474,11 +474,11 @@ importers:
|
|
|
474
474
|
specifier: npm:@cabloy/zod@4.3.8
|
|
475
475
|
version: '@cabloy/zod@4.3.8'
|
|
476
476
|
zova:
|
|
477
|
-
specifier: ^5.1.
|
|
478
|
-
version: 5.1.
|
|
477
|
+
specifier: ^5.1.122
|
|
478
|
+
version: 5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
|
|
479
479
|
zova-jsx:
|
|
480
|
-
specifier: ^1.1.
|
|
481
|
-
version: 1.1.
|
|
480
|
+
specifier: ^1.1.70
|
|
481
|
+
version: 1.1.70(typescript@5.9.3)
|
|
482
482
|
zova-module-a-api:
|
|
483
483
|
specifier: ^5.1.21
|
|
484
484
|
version: 5.1.21
|
|
@@ -546,11 +546,11 @@ importers:
|
|
|
546
546
|
specifier: npm:@cabloy/zod@4.3.8
|
|
547
547
|
version: '@cabloy/zod@4.3.8'
|
|
548
548
|
zova:
|
|
549
|
-
specifier: ^5.1.
|
|
550
|
-
version: 5.1.
|
|
549
|
+
specifier: ^5.1.122
|
|
550
|
+
version: 5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
|
|
551
551
|
zova-jsx:
|
|
552
|
-
specifier: ^1.1.
|
|
553
|
-
version: 1.1.
|
|
552
|
+
specifier: ^1.1.70
|
|
553
|
+
version: 1.1.70(typescript@5.9.3)
|
|
554
554
|
zova-module-a-api:
|
|
555
555
|
specifier: ^5.1.21
|
|
556
556
|
version: 5.1.21
|
|
@@ -7535,11 +7535,11 @@ packages:
|
|
|
7535
7535
|
peerDependencies:
|
|
7536
7536
|
zod: ^3.25.28 || ^4
|
|
7537
7537
|
|
|
7538
|
-
zova-core@5.1.
|
|
7539
|
-
resolution: {integrity: sha512-
|
|
7538
|
+
zova-core@5.1.66:
|
|
7539
|
+
resolution: {integrity: sha512-1zADVAYTSOmqqHdF1/30qIXSbd6TVi2/UwkEK+Wmk00qAUZsEWpbTMF9cRm/TijOipJrzGwFMAgHAk3eqUCzLg==}
|
|
7540
7540
|
|
|
7541
|
-
zova-jsx@1.1.
|
|
7542
|
-
resolution: {integrity: sha512-
|
|
7541
|
+
zova-jsx@1.1.70:
|
|
7542
|
+
resolution: {integrity: sha512-UEBqyh9a6mNrT8k1v1FhfQoA4L5yX0afhwZj2sCwE38m3XHRMvC95kAEn0jNuKEXnJAUKKmG/5bp6bH3/mr+Gw==}
|
|
7543
7543
|
|
|
7544
7544
|
zova-module-a-api@5.1.21:
|
|
7545
7545
|
resolution: {integrity: sha512-qjm/hfjC4/+7Ap/uzJfBzV0PwRlp2idEmEKwCZYxquaXq6QtJBbTWTznw1iukT4lkJZip2KFkjOvXTzdvZA2UA==}
|
|
@@ -7613,17 +7613,17 @@ packages:
|
|
|
7613
7613
|
zova-module-a-zod@5.1.35:
|
|
7614
7614
|
resolution: {integrity: sha512-hCZG81WY5MPG5ozaYLMiNML4FtdCGNOJpi5drEKTP/xpsvzil66ZaOXkWj+XO/3MlkulmcBEThBx7amcHHWszg==}
|
|
7615
7615
|
|
|
7616
|
-
zova-module-a-zova@5.1.
|
|
7617
|
-
resolution: {integrity: sha512-
|
|
7616
|
+
zova-module-a-zova@5.1.85:
|
|
7617
|
+
resolution: {integrity: sha512-L4s4oNLrWYJJzgdlwuK0NfLKQoV0clzTWwtSt5rqXKLNXi6URslYoZGiT14Hp6F3s1e6JmlCtc2NQugKQr8uVg==}
|
|
7618
7618
|
|
|
7619
7619
|
zova-module-rest-resource@5.1.40:
|
|
7620
7620
|
resolution: {integrity: sha512-rMqZaXSK6nJ4LW2O1yO/jZqxI7joCiWylzjutMTKpx7EfNmtK1t1nVoWFd+gCTxqgbbv9uXh0vfFaSFA7GKYFg==}
|
|
7621
7621
|
|
|
7622
|
-
zova-suite-a-zova@5.1.
|
|
7623
|
-
resolution: {integrity: sha512-
|
|
7622
|
+
zova-suite-a-zova@5.1.121:
|
|
7623
|
+
resolution: {integrity: sha512-9xeqe7lUCVkDVtLlOM1qjxqxDwCPWTf1NvkNCrBSQR+kyfLaxhUlD6ZapPHTlL8Jf0KSw3EqN/s95P78N41d4w==}
|
|
7624
7624
|
|
|
7625
|
-
zova@5.1.
|
|
7626
|
-
resolution: {integrity: sha512-
|
|
7625
|
+
zova@5.1.122:
|
|
7626
|
+
resolution: {integrity: sha512-hsXGeOXPsB5CwOlnMjQOiP/6e0/V3Doq/fi6HuwU7hyWwBKwkk3RtlS9rY9KR9KAA59SEf6Ms2u7SoCR6KL+Eg==}
|
|
7627
7627
|
|
|
7628
7628
|
zwitch@1.0.5:
|
|
7629
7629
|
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
|
|
@@ -13092,7 +13092,7 @@ snapshots:
|
|
|
13092
13092
|
dependencies:
|
|
13093
13093
|
zod: '@cabloy/zod@4.3.8'
|
|
13094
13094
|
|
|
13095
|
-
zova-core@5.1.
|
|
13095
|
+
zova-core@5.1.66(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3):
|
|
13096
13096
|
dependencies:
|
|
13097
13097
|
'@cabloy/compose': link:packages-utils/compose
|
|
13098
13098
|
'@cabloy/extend': link:packages-utils/extend
|
|
@@ -13121,14 +13121,14 @@ snapshots:
|
|
|
13121
13121
|
transitivePeerDependencies:
|
|
13122
13122
|
- typescript
|
|
13123
13123
|
|
|
13124
|
-
zova-jsx@1.1.
|
|
13124
|
+
zova-jsx@1.1.70(typescript@5.9.3):
|
|
13125
13125
|
dependencies:
|
|
13126
13126
|
'@cabloy/compose': link:packages-utils/compose
|
|
13127
13127
|
'@cabloy/utils': link:packages-utils/utils
|
|
13128
13128
|
'@cabloy/word-utils': 2.1.14
|
|
13129
13129
|
typestyle: 2.4.0
|
|
13130
13130
|
vue: 3.5.39(typescript@5.9.3)
|
|
13131
|
-
zova-core: 5.1.
|
|
13131
|
+
zova-core: 5.1.66(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3)
|
|
13132
13132
|
transitivePeerDependencies:
|
|
13133
13133
|
- typescript
|
|
13134
13134
|
|
|
@@ -13229,7 +13229,7 @@ snapshots:
|
|
|
13229
13229
|
'@cabloy/zod-query': link:packages-utils/zod-query
|
|
13230
13230
|
zod: '@cabloy/zod@4.3.8'
|
|
13231
13231
|
|
|
13232
|
-
zova-module-a-zova@5.1.
|
|
13232
|
+
zova-module-a-zova@5.1.85(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
|
|
13233
13233
|
dependencies:
|
|
13234
13234
|
'@cabloy/compose': link:packages-utils/compose
|
|
13235
13235
|
'@cabloy/deps': link:packages-utils/deps
|
|
@@ -13240,14 +13240,14 @@ snapshots:
|
|
|
13240
13240
|
'@cabloy/word-utils': 2.1.14
|
|
13241
13241
|
defu: 6.1.7
|
|
13242
13242
|
luxon: 3.7.2
|
|
13243
|
-
zova-jsx: 1.1.
|
|
13243
|
+
zova-jsx: 1.1.70(typescript@5.9.3)
|
|
13244
13244
|
transitivePeerDependencies:
|
|
13245
13245
|
- typescript
|
|
13246
13246
|
- vue
|
|
13247
13247
|
|
|
13248
13248
|
zova-module-rest-resource@5.1.40: {}
|
|
13249
13249
|
|
|
13250
|
-
zova-suite-a-zova@5.1.
|
|
13250
|
+
zova-suite-a-zova@5.1.121(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
|
|
13251
13251
|
dependencies:
|
|
13252
13252
|
zova-module-a-api: 5.1.21
|
|
13253
13253
|
zova-module-a-app: 5.1.24
|
|
@@ -13273,7 +13273,7 @@ snapshots:
|
|
|
13273
13273
|
zova-module-a-style: 5.1.32
|
|
13274
13274
|
zova-module-a-table: 5.1.37(vue@3.5.39(typescript@5.9.3))
|
|
13275
13275
|
zova-module-a-zod: 5.1.35
|
|
13276
|
-
zova-module-a-zova: 5.1.
|
|
13276
|
+
zova-module-a-zova: 5.1.85(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
|
|
13277
13277
|
transitivePeerDependencies:
|
|
13278
13278
|
- '@vue/composition-api'
|
|
13279
13279
|
- debug
|
|
@@ -13281,10 +13281,10 @@ snapshots:
|
|
|
13281
13281
|
- typescript
|
|
13282
13282
|
- vue
|
|
13283
13283
|
|
|
13284
|
-
zova@5.1.
|
|
13284
|
+
zova@5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
|
|
13285
13285
|
dependencies:
|
|
13286
|
-
zova-core: 5.1.
|
|
13287
|
-
zova-suite-a-zova: 5.1.
|
|
13286
|
+
zova-core: 5.1.66(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3)
|
|
13287
|
+
zova-suite-a-zova: 5.1.121(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
|
|
13288
13288
|
transitivePeerDependencies:
|
|
13289
13289
|
- '@vue/composition-api'
|
|
13290
13290
|
- debug
|
package/vona/pnpm-workspace.yaml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-jsx",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.70",
|
|
4
4
|
"gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
|
|
5
5
|
"description": "Zova JSX",
|
|
6
6
|
"keywords": [
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@cabloy/word-utils": "^2.1.14",
|
|
51
51
|
"typestyle": "^2.4.0",
|
|
52
52
|
"vue": "^3.5.38",
|
|
53
|
-
"zova-core": "^5.1.
|
|
53
|
+
"zova-core": "^5.1.66"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"clean-package": "^2.2.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.122",
|
|
4
4
|
"gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
|
|
5
5
|
"description": "A vue3 framework with ioc",
|
|
6
6
|
"keywords": [
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"postpack": "clean-package restore"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"zova-core": "^5.1.
|
|
49
|
-
"zova-suite-a-zova": "^5.1.
|
|
48
|
+
"zova-core": "^5.1.66",
|
|
49
|
+
"zova-suite-a-zova": "^5.1.121"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"clean-package": "^2.2.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-module-a-zova",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.85",
|
|
4
4
|
"gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
|
|
5
5
|
"description": "zova",
|
|
6
6
|
"keywords": [
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@cabloy/word-utils": "^2.1.14",
|
|
44
44
|
"defu": "^6.1.7",
|
|
45
45
|
"luxon": "^3.7.2",
|
|
46
|
-
"zova-jsx": "^1.1.
|
|
46
|
+
"zova-jsx": "^1.1.70"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@cabloy/cli": "^3.1.27",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-suite-a-zova",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.121",
|
|
4
4
|
"gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
|
|
5
5
|
"description": "zova",
|
|
6
6
|
"license": "MIT",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"zova-module-a-style": "^5.1.32",
|
|
33
33
|
"zova-module-a-table": "^5.1.37",
|
|
34
34
|
"zova-module-a-zod": "^5.1.35",
|
|
35
|
-
"zova-module-a-zova": "^5.1.
|
|
35
|
+
"zova-module-a-zova": "^5.1.85"
|
|
36
36
|
},
|
|
37
37
|
"title": "a-zova"
|
|
38
38
|
}
|