cabloy 5.1.75 → 5.1.77
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/.claude/hooks/contract-loop-gate.ts +1 -1
- package/.claude/skills/cabloy-contract-loop/SKILL.md +7 -5
- package/.claude/skills/cabloy-contract-loop/references/contract-loop-map.md +2 -1
- package/.claude/skills/cabloy-contract-loop/references/verification-checklist.md +3 -3
- package/.claude/skills/cabloy-frontend-scaffold/SKILL.md +1 -1
- package/.claude/skills/cabloy-frontend-scaffold/references/follow-up-checklist.md +3 -2
- package/.claude/skills/cabloy-resource-field-update/SKILL.md +3 -3
- package/.claude/skills/cabloy-resource-field-update/references/custom-renderer-demo-checklist.md +3 -3
- package/.claude/skills/cabloy-resource-field-update/references/follow-up-checklist.md +5 -3
- package/.claude/skills/cabloy-resource-field-update/references/verification-checklist.md +12 -5
- package/CHANGELOG.md +14 -0
- package/CLAUDE.md +2 -3
- package/cabloy-docs/fullstack/contract-loop-playbook.md +13 -6
- package/cabloy-docs/fullstack/frontend-metadata-to-backend.md +6 -5
- package/cabloy-docs/fullstack/introduction.md +1 -1
- package/cabloy-docs/fullstack/tutorial-4-custom-level-renderers.md +1 -1
- package/cabloy-docs/fullstack/tutorials-overview.md +2 -1
- package/package.json +1 -1
- package/vona/packages-cli/cli/package.json +1 -1
- package/vona/packages-cli/cli-set-api/package.json +1 -1
- package/vona/packages-utils/zod-errors-custom/package.json +3 -2
- package/vona/packages-vona/vona/package.json +1 -1
- package/vona/packages-vona/vona-core/package.json +1 -1
- package/vona/packages-vona/vona-mock/package.json +1 -1
- package/vona/pnpm-lock.yaml +75 -2
- package/vona/src/suite-vendor/a-vona/modules/a-core/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/package.json +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 +2 -2
- package/zova/pnpm-lock.yaml +21 -21
- package/zova/src/suite-vendor/a-zova/modules/a-zod/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/package.json +3 -3
|
@@ -234,7 +234,7 @@ function buildMessages(filePath: string, result: AnalysisResult): string {
|
|
|
234
234
|
|
|
235
235
|
if (result.reverseReason) {
|
|
236
236
|
messages.push(
|
|
237
|
-
`Reverse chain: ${result.reverseReason} If backend tooling or backend metadata will consume this handoff, refresh generated metadata when applicable, then run \`npm run build:zova:admin\` and \`npm run
|
|
237
|
+
`Reverse chain: ${result.reverseReason} If backend tooling or backend metadata will consume this handoff, refresh generated metadata when applicable, run the relevant Zova build first, and then run \`npm run deps:vona\` for the Cabloy Basic path. Use \`npm run build:zova:admin\` for Admin changes, and also run \`npm run build:zova:web\` when the Web flavor is affected.`,
|
|
238
238
|
);
|
|
239
239
|
if (isHighConfidenceReverseSource(filePath)) {
|
|
240
240
|
if (shouldSkipAutoSync(filePath)) {
|
|
@@ -11,17 +11,19 @@ Read the public [Contract Loop Playbook](../../../cabloy-docs/fullstack/contract
|
|
|
11
11
|
|
|
12
12
|
## Important recovery note for stale local file consumers
|
|
13
13
|
|
|
14
|
-
When generated `.zova-rest`
|
|
14
|
+
When the generated `.zova-rest` artifacts or other generated consumer artifacts already contain the expected new keys or types but Vona still sees stale consumer types, treat that first as a local dependency drift problem rather than a source-editing problem.
|
|
15
15
|
|
|
16
16
|
This includes the reverse fullstack direction where newly added frontend resources such as custom renderers are later consumed by backend metadata.
|
|
17
17
|
|
|
18
18
|
In that situation:
|
|
19
19
|
|
|
20
20
|
1. run the normal sync or regeneration flow first
|
|
21
|
-
2.
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
2. run the relevant Zova build from the repo root before `npm run deps:vona`
|
|
22
|
+
- use `npm run build:zova:admin` for Admin-facing render/action/metadata changes
|
|
23
|
+
- also run `npm run build:zova:web` when the Web flavor is affected
|
|
24
|
+
3. do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together
|
|
25
|
+
4. run `npm run deps:vona`
|
|
26
|
+
5. if the generated `.zova-rest` artifacts already contain the expected changes but Vona still sees stale types, delete `vona/node_modules` and reinstall dependencies
|
|
25
27
|
|
|
26
28
|
Do not keep debugging source-level contract or renderer changes until the local file-package installation state is known to be healthy.
|
|
27
29
|
|
|
@@ -123,8 +123,9 @@ Practical check after generation:
|
|
|
123
123
|
- module metadata
|
|
124
124
|
2. generated handoff
|
|
125
125
|
- metadata output
|
|
126
|
-
- flavor build output
|
|
126
|
+
- the relevant flavor build output
|
|
127
127
|
3. sync surface
|
|
128
|
+
- run the relevant Zova build first
|
|
128
129
|
- `deps:vona`
|
|
129
130
|
4. consumer layers
|
|
130
131
|
- backend `ZovaRender.*(...)` references
|
|
@@ -50,10 +50,10 @@ If all of these are true:
|
|
|
50
50
|
- generated `.zova-rest` or related generated consumer artifacts already contain the expected new keys or types
|
|
51
51
|
- the normal regeneration or sync flow already ran
|
|
52
52
|
- when relevant, the affected Zova flavor build already ran
|
|
53
|
-
- `deps:vona` already ran
|
|
54
|
-
- Vona still
|
|
53
|
+
- `npm run deps:vona` already ran
|
|
54
|
+
- Vona still sees stale types
|
|
55
55
|
|
|
56
|
-
Then suspect a stale or unhealthy local installation state in `vona/node_modules`.
|
|
56
|
+
Then treat it as local dependency drift and suspect a stale or unhealthy local installation state in `vona/node_modules`.
|
|
57
57
|
|
|
58
58
|
Recovery action:
|
|
59
59
|
|
|
@@ -185,7 +185,7 @@ Stay frontend-first, but if the frontend task clearly depends on backend contrac
|
|
|
185
185
|
- backend OpenAPI output may need refresh or inspection
|
|
186
186
|
- backend DTO/controller response shape may be the real source of truth
|
|
187
187
|
- frontend SDK or schema-driven layers should be regenerated from contract output rather than hand-patched
|
|
188
|
-
- newly added frontend resources that backend metadata will consume may require a reverse handoff through
|
|
188
|
+
- newly added frontend resources that backend metadata will consume may require a reverse handoff through the relevant Zova build first and then `npm run deps:vona`
|
|
189
189
|
|
|
190
190
|
Do not turn the skill into a backend workflow. Only surface the reminder when the contract boundary is clearly involved.
|
|
191
191
|
|
|
@@ -15,8 +15,9 @@ After generating or extending a frontend thread, check which follow-up layers ap
|
|
|
15
15
|
- SSR init-data needs
|
|
16
16
|
- OpenAPI SDK or schema-driven layer impact
|
|
17
17
|
- backend contract reminder if frontend depends on generated backend contract output
|
|
18
|
-
- if backend metadata will consume newly added frontend render resources, run the relevant Zova build and then `deps:vona`
|
|
19
|
-
-
|
|
18
|
+
- if backend metadata will consume newly added frontend render resources, run the relevant Zova build first and then `npm run deps:vona`
|
|
19
|
+
- do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together
|
|
20
|
+
- if the generated `.zova-rest` artifacts are updated but backend still sees stale shared types after `npm run deps:vona`, treat it as local dependency drift and rebuild `vona/node_modules` and reinstall
|
|
20
21
|
|
|
21
22
|
## Interaction and UI follow-up
|
|
22
23
|
|
|
@@ -9,12 +9,12 @@ Use this skill when the user wants to change a field on an existing Vona backend
|
|
|
9
9
|
|
|
10
10
|
## Important recovery note for stale generated consumers
|
|
11
11
|
|
|
12
|
-
When generated `.zova-rest`
|
|
12
|
+
When the generated `.zova-rest` artifacts already contain the expected new keys or types but Vona still sees stale consumer types, treat that first as a local dependency drift problem rather than a source-editing problem.
|
|
13
13
|
|
|
14
14
|
In that situation:
|
|
15
15
|
|
|
16
|
-
1. run the normal sync flow
|
|
17
|
-
2. if the stale behavior remains, rebuild `vona/node_modules` and reinstall dependencies
|
|
16
|
+
1. run the normal sync flow, including the relevant Zova build first and then `npm run deps:vona`
|
|
17
|
+
2. if the generated `.zova-rest` artifacts already contain the expected changes but the stale behavior remains, rebuild `vona/node_modules` and reinstall dependencies
|
|
18
18
|
|
|
19
19
|
Keep this recovery rule visible during renderer-aware or contract-loop follow-up work. Do not keep debugging source-level renderer registrations until the local file-package installation state is known to be healthy.
|
|
20
20
|
|
package/.claude/skills/cabloy-resource-field-update/references/custom-renderer-demo-checklist.md
CHANGED
|
@@ -94,9 +94,9 @@ cd vona && npm test -- <resource-test>.test.ts
|
|
|
94
94
|
|
|
95
95
|
## 6. Recovery rule when generated keys still look stale
|
|
96
96
|
|
|
97
|
-
If the generated `.zova-rest`
|
|
97
|
+
If the generated `.zova-rest` artifacts already contain the new renderer keys but Vona still sees stale types after the normal sync flow:
|
|
98
98
|
|
|
99
|
-
-
|
|
100
|
-
- after
|
|
99
|
+
- treat it as local dependency drift
|
|
100
|
+
- after the relevant Zova build and `npm run deps:vona`, rebuild `vona/node_modules` and reinstall dependencies if needed
|
|
101
101
|
|
|
102
102
|
This is an installation-state recovery step, not the normal first move.
|
|
@@ -67,14 +67,16 @@ Apply when the user explicitly wants to demonstrate custom renderer development:
|
|
|
67
67
|
### If custom frontend renderers were introduced
|
|
68
68
|
|
|
69
69
|
- `npm run zova :tools:metadata <module-name>`
|
|
70
|
-
-
|
|
70
|
+
- run the relevant Zova build first:
|
|
71
|
+
- `npm run build:zova:admin` for Admin-facing render/action/metadata changes
|
|
72
|
+
- also `npm run build:zova:web` when the Web flavor is affected
|
|
71
73
|
- `npm run deps:vona`
|
|
72
74
|
- `cd vona && npm run tsc`
|
|
73
75
|
- `cd vona && npm test -- <resource-test>.test.ts`
|
|
74
76
|
|
|
75
77
|
## Common recovery rule
|
|
76
78
|
|
|
77
|
-
If generated `.zova-rest`
|
|
79
|
+
If the generated `.zova-rest` artifacts already contain the new renderer keys but Vona still sees stale types after the normal sync flow:
|
|
78
80
|
|
|
79
|
-
-
|
|
81
|
+
- treat it as local dependency drift
|
|
80
82
|
- rebuild `vona/node_modules` and reinstall dependencies if normal `deps:vona` sync did not recover the local file-package installation state
|
|
@@ -58,7 +58,14 @@ cd vona && npm run tsc
|
|
|
58
58
|
cd vona && npm test -- <resource-test>.test.ts
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
If
|
|
61
|
+
If the same handoff must also be available to Web, also run:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
npm run build:zova:web
|
|
65
|
+
npm run deps:vona
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together.
|
|
62
69
|
|
|
63
70
|
## 4. What to verify in the result
|
|
64
71
|
|
|
@@ -82,11 +89,11 @@ Confirm:
|
|
|
82
89
|
|
|
83
90
|
If all of these are true:
|
|
84
91
|
|
|
85
|
-
- generated `.zova-rest`
|
|
86
|
-
- `deps:vona` was run
|
|
87
|
-
- Vona still
|
|
92
|
+
- the generated `.zova-rest` artifacts already contain the new renderer keys
|
|
93
|
+
- `npm run deps:vona` was run after the relevant Zova build
|
|
94
|
+
- Vona still sees stale renderer types
|
|
88
95
|
|
|
89
|
-
Then suspect a stale or unhealthy local installation state in `vona/node_modules`.
|
|
96
|
+
Then treat it as local dependency drift and suspect a stale or unhealthy local installation state in `vona/node_modules`.
|
|
90
97
|
|
|
91
98
|
Recovery action:
|
|
92
99
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.1.77
|
|
4
|
+
|
|
5
|
+
### Improvements
|
|
6
|
+
|
|
7
|
+
- Update package metadata and lockfile for the 5.1.77 release.
|
|
8
|
+
- Publish version 5.1.77.
|
|
9
|
+
|
|
10
|
+
## 5.1.76
|
|
11
|
+
|
|
12
|
+
### Improvements
|
|
13
|
+
|
|
14
|
+
- Unify wording around reverse-chain dependency drift.
|
|
15
|
+
- Finish cleanup of reverse-chain documentation wording.
|
|
16
|
+
|
|
3
17
|
## 5.1.75
|
|
4
18
|
|
|
5
19
|
### Improvements
|
package/CLAUDE.md
CHANGED
|
@@ -46,9 +46,8 @@ Before inventing a custom implementation path:
|
|
|
46
46
|
- Treat contract-loop work as one of four branches: forward chain, reverse chain, consumer drift, or local dependency drift.
|
|
47
47
|
- For the forward chain, change backend contract truth first and regenerate frontend consumers rather than hand-patching them.
|
|
48
48
|
- After forward regeneration, keep frontend follow-up thin: prefer semantic model facades and reuse the existing resource-owner when the custom API still belongs to the same resource.
|
|
49
|
-
- For the reverse chain,
|
|
50
|
-
- If generated artifacts already contain the expected changes but consumers still
|
|
51
|
-
- For Vona consumption drift after Zova-generated type/rest output changes, if `npm run deps:vona` still leaves stale consumer types, delete `vona/node_modules` and reinstall dependencies before further debugging or hand-patching dependency links.
|
|
49
|
+
- For the reverse chain, always run the relevant Zova build first, then run `npm run deps:vona`: use `npm run build:zova:admin` for Admin changes, and also run `npm run build:zova:web` when the Web flavor is affected. Do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together.
|
|
50
|
+
- If the generated `.zova-rest` artifacts already contain the expected changes but Vona consumers still see stale types after `npm run deps:vona`, treat it as local dependency drift: delete `vona/node_modules` and reinstall dependencies before further debugging or hand-patching dependency links.
|
|
52
51
|
- For Cabloy Start, apply the same reverse-chain logic but resolve the Start-specific flavor names and generated-output paths from the active Start repo before recommending commands.
|
|
53
52
|
- Treat legacy docs as input material, not as unquestioned truth. When docs conflict with source code, prefer current source code.
|
|
54
53
|
- For frontend work, assume Cabloy Basic and Cabloy Start share a frontend engineering layer but may diverge in UI layer, frontend flavors, suite/module availability, SSR site baselines, project assets, and generated outputs.
|
|
@@ -162,9 +162,9 @@ Then diagnose **generated-output drift**:
|
|
|
162
162
|
|
|
163
163
|
Examples:
|
|
164
164
|
|
|
165
|
-
- generated `.zova-rest`
|
|
166
|
-
- generated SDK already contains the new method
|
|
167
|
-
- backend or frontend still
|
|
165
|
+
- the generated `.zova-rest` artifacts already contain the new keys or types
|
|
166
|
+
- the generated SDK already contains the new method
|
|
167
|
+
- backend or frontend still sees stale consumers after the normal sync flow
|
|
168
168
|
|
|
169
169
|
Then suspect **local dependency drift**:
|
|
170
170
|
|
|
@@ -272,7 +272,7 @@ and then the relevant build path for the active edition and flavor.
|
|
|
272
272
|
|
|
273
273
|
### Stage 3: Vona sync handoff
|
|
274
274
|
|
|
275
|
-
After the frontend-generated handoff is ready, re-sync Vona’s local
|
|
275
|
+
After the frontend-generated handoff is ready, run the relevant Zova build first and then re-sync Vona’s local dependency state with `npm run deps:vona`.
|
|
276
276
|
|
|
277
277
|
For the current **Cabloy Basic Admin** branch, the representative sequence is:
|
|
278
278
|
|
|
@@ -281,7 +281,14 @@ npm run build:zova:admin
|
|
|
281
281
|
npm run deps:vona
|
|
282
282
|
```
|
|
283
283
|
|
|
284
|
-
If the same resource path must also be available to Web, also
|
|
284
|
+
If the same resource path must also be available to Web, also run:
|
|
285
|
+
|
|
286
|
+
```bash
|
|
287
|
+
npm run build:zova:web
|
|
288
|
+
npm run deps:vona
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
Do not treat `build:rest:*` alone as sufficient. The SSR bundle and the generated rest output should move together.
|
|
285
292
|
|
|
286
293
|
For **Cabloy Start**, use the same reverse-chain logic, but resolve the Start-specific flavor names and output paths from the active Start repo before recommending commands.
|
|
287
294
|
|
|
@@ -300,7 +307,7 @@ Typical checks:
|
|
|
300
307
|
Use this branch only when all of these are already true:
|
|
301
308
|
|
|
302
309
|
- source truth was edited in the right place
|
|
303
|
-
-
|
|
310
|
+
- the generated `.zova-rest` artifacts or other build output already contain the intended change
|
|
304
311
|
- the normal sync flow already ran
|
|
305
312
|
- consumers still behave stale
|
|
306
313
|
|
|
@@ -125,7 +125,7 @@ For Cabloy Basic, the representative reverse-chain path is:
|
|
|
125
125
|
|
|
126
126
|
1. change the frontend-owned truth
|
|
127
127
|
2. regenerate frontend metadata when applicable
|
|
128
|
-
3.
|
|
128
|
+
3. run the relevant Zova build so the shared handoff is refreshed
|
|
129
129
|
4. run `npm run deps:vona`
|
|
130
130
|
5. verify backend-side consumers can now see the refreshed handoff
|
|
131
131
|
|
|
@@ -137,7 +137,7 @@ npm run build:zova:admin
|
|
|
137
137
|
npm run deps:vona
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
-
If the same resource path must also be available for Web,
|
|
140
|
+
If the same resource path must also be available for Web, also run:
|
|
141
141
|
|
|
142
142
|
```bash
|
|
143
143
|
npm run build:zova:web
|
|
@@ -146,7 +146,8 @@ npm run deps:vona
|
|
|
146
146
|
|
|
147
147
|
A practical rule is:
|
|
148
148
|
|
|
149
|
-
- treat metadata generation, flavor build, and `deps:vona` as one reverse-chain handoff
|
|
149
|
+
- treat metadata generation, the relevant flavor build, and `deps:vona` as one reverse-chain handoff
|
|
150
|
+
- do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output should move together
|
|
150
151
|
- do not stop after the frontend source edit alone
|
|
151
152
|
|
|
152
153
|
## `training-student` as a compact reverse-chain specimen
|
|
@@ -194,8 +195,8 @@ This is the problem when:
|
|
|
194
195
|
Typical fix:
|
|
195
196
|
|
|
196
197
|
1. stop editing source files
|
|
197
|
-
2. run the normal sync flow with `npm run deps:vona`
|
|
198
|
-
3. if
|
|
198
|
+
2. run the normal sync flow with the relevant Zova build first and then `npm run deps:vona`
|
|
199
|
+
3. if the generated `.zova-rest` artifacts already contain the expected changes but Vona still sees stale types, rebuild `vona/node_modules` and reinstall dependencies
|
|
199
200
|
|
|
200
201
|
Representative recovery path:
|
|
201
202
|
|
|
@@ -103,7 +103,7 @@ Use the playbook to distinguish four cases clearly:
|
|
|
103
103
|
|
|
104
104
|
The contract-loop model is shared across Cabloy Basic and Cabloy Start. Detect the edition to choose concrete flavor commands and generated-output paths, not to redefine the workflow model.
|
|
105
105
|
|
|
106
|
-
When the reverse direction involves newly added frontend resources that backend tooling or backend metadata will consume, treat that as an operational handoff rather than a conceptual one: refresh generated frontend output, run the relevant flavor build, run `npm run deps:vona`, and if Vona still sees stale shared types, rebuild `vona/node_modules` and reinstall dependencies.
|
|
106
|
+
When the reverse direction involves newly added frontend resources that backend tooling or backend metadata will consume, treat that as an operational handoff rather than a conceptual one: refresh generated frontend output, run the relevant flavor build, then run `npm run deps:vona`, and if the generated `.zova-rest` artifacts already contain the expected changes but Vona still sees stale shared types, rebuild `vona/node_modules` and reinstall dependencies.
|
|
107
107
|
|
|
108
108
|
## How the fullstack system stays connected
|
|
109
109
|
|
|
@@ -126,7 +126,7 @@ npm run build:zova:web
|
|
|
126
126
|
npm run deps:vona
|
|
127
127
|
```
|
|
128
128
|
|
|
129
|
-
If backend-side type consumers still cannot see the new shared renderer types even though generated `.zova-rest`
|
|
129
|
+
If backend-side type consumers still cannot see the new shared renderer types even though the generated `.zova-rest` artifacts are already correct after the normal sync flow, treat it as local dependency drift and rebuild `vona/node_modules` and reinstall dependencies:
|
|
130
130
|
|
|
131
131
|
```bash
|
|
132
132
|
cd vona && rm -rf node_modules && pnpm install
|
|
@@ -73,7 +73,8 @@ Important handoff note for this phase:
|
|
|
73
73
|
- Tutorial 4 uses the custom resource handoff branch
|
|
74
74
|
- once a frontend resource created in these tutorials is later consumed by backend metadata, do not stop at frontend source edits alone
|
|
75
75
|
- refresh the generated frontend output, run the relevant flavor build, then run `npm run deps:vona`
|
|
76
|
-
-
|
|
76
|
+
- do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together
|
|
77
|
+
- if the generated `.zova-rest` artifacts already contain the expected changes but backend-side shared types still look stale after that normal sync flow, treat it as local dependency drift and rebuild `vona/node_modules` and reinstall dependencies
|
|
77
78
|
|
|
78
79
|
See [Contract Loop Playbook](/fullstack/contract-loop-playbook) and [Frontend Metadata Back to Backend](/fullstack/frontend-metadata-to-backend) for the full reverse-chain explanation.
|
|
79
80
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cabloy/zod-errors-custom",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
4
4
|
"gitHead": "a79189b882c17af5911573896a781bbb0046d37d",
|
|
5
5
|
"description": "zod-errors-custom",
|
|
6
6
|
"keywords": [
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"postpack": "clean-package restore"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@cabloy/word-utils": "^2.1.8"
|
|
47
|
+
"@cabloy/word-utils": "^2.1.8",
|
|
48
|
+
"zod": "^4.3.6"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
51
|
"clean-package": "^2.2.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vona",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.62",
|
|
4
4
|
"gitHead": "a79189b882c17af5911573896a781bbb0046d37d",
|
|
5
5
|
"description": "Vona is an intuitive, elegant and powerful Node.js framework for rapidly developing enterprise applications of any size",
|
|
6
6
|
"keywords": [
|
package/vona/pnpm-lock.yaml
CHANGED
|
@@ -474,8 +474,8 @@ 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.119
|
|
478
|
+
version: 5.1.119(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
|
|
479
479
|
zova-jsx:
|
|
480
480
|
specifier: ^1.1.67
|
|
481
481
|
version: 1.1.67(typescript@5.9.3)
|
|
@@ -1114,6 +1114,9 @@ importers:
|
|
|
1114
1114
|
'@cabloy/word-utils':
|
|
1115
1115
|
specifier: ^2.1.8
|
|
1116
1116
|
version: 2.1.14
|
|
1117
|
+
zod:
|
|
1118
|
+
specifier: npm:@cabloy/zod@4.3.8
|
|
1119
|
+
version: '@cabloy/zod@4.3.8'
|
|
1117
1120
|
devDependencies:
|
|
1118
1121
|
clean-package:
|
|
1119
1122
|
specifier: ^2.2.0
|
|
@@ -7613,15 +7616,24 @@ packages:
|
|
|
7613
7616
|
zova-module-a-zova@5.1.81:
|
|
7614
7617
|
resolution: {integrity: sha512-H5D3TwmGVi7C4syp6EZJSy0JZB8pk92gh4zWOelj8l/WT2Xqfc/98RtL/o21lsrOobSjJC8hfplSdJWuTUO60w==}
|
|
7615
7618
|
|
|
7619
|
+
zova-module-a-zova@5.1.82:
|
|
7620
|
+
resolution: {integrity: sha512-JDgLmu/7+oPrFLb7/zhHtl739+dhuBL/J508ObWuahiVymU7wzJEPPSmi/XaCnKB58FXpfcaoe0rMoxNsT0gmA==}
|
|
7621
|
+
|
|
7616
7622
|
zova-module-rest-resource@5.1.40:
|
|
7617
7623
|
resolution: {integrity: sha512-rMqZaXSK6nJ4LW2O1yO/jZqxI7joCiWylzjutMTKpx7EfNmtK1t1nVoWFd+gCTxqgbbv9uXh0vfFaSFA7GKYFg==}
|
|
7618
7624
|
|
|
7619
7625
|
zova-suite-a-zova@5.1.117:
|
|
7620
7626
|
resolution: {integrity: sha512-Ceo7CqXmmDHCGKvwQ9cb90DLbF5P0s2qT/jYyBeTf8BllpSjIqYqxUPE0Eh88XYWHlTWgH28wP6SD7DeGfPaCA==}
|
|
7621
7627
|
|
|
7628
|
+
zova-suite-a-zova@5.1.118:
|
|
7629
|
+
resolution: {integrity: sha512-DhnlKOT6VG0+v60TjQNN/Qaa9v1UEsGU8jo/layFlLociG5AHUuoiCABSN4dklYcBnAVwu1EvCVQhcgnWwrPfA==}
|
|
7630
|
+
|
|
7622
7631
|
zova@5.1.118:
|
|
7623
7632
|
resolution: {integrity: sha512-hgj4FKy68B2Mve47NrhqhQEaESbdZUci/7WtlGagaZgyFzfBn19CHkWDRkJNToeBVb/LD1Zwt0HY7TDEe7WPDw==}
|
|
7624
7633
|
|
|
7634
|
+
zova@5.1.119:
|
|
7635
|
+
resolution: {integrity: sha512-st8Wwh4NvoNcZUvNb67XsG7GVhaMyFIK/EZ6Zfc0uqwdKtUShC6IBGHMc3u/28cIXRcpsH5REi9HL6SB8WQj/Q==}
|
|
7636
|
+
|
|
7625
7637
|
zwitch@1.0.5:
|
|
7626
7638
|
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
|
|
7627
7639
|
|
|
@@ -13242,6 +13254,22 @@ snapshots:
|
|
|
13242
13254
|
- typescript
|
|
13243
13255
|
- vue
|
|
13244
13256
|
|
|
13257
|
+
zova-module-a-zova@5.1.82(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
|
|
13258
|
+
dependencies:
|
|
13259
|
+
'@cabloy/compose': link:packages-utils/compose
|
|
13260
|
+
'@cabloy/deps': link:packages-utils/deps
|
|
13261
|
+
'@cabloy/json5': link:packages-utils/json5
|
|
13262
|
+
'@cabloy/module-info': 2.0.0
|
|
13263
|
+
'@cabloy/utils': link:packages-utils/utils
|
|
13264
|
+
'@cabloy/vue-router': 4.4.16(vue@3.5.39(typescript@5.9.3))
|
|
13265
|
+
'@cabloy/word-utils': 2.1.14
|
|
13266
|
+
defu: 6.1.7
|
|
13267
|
+
luxon: 3.7.2
|
|
13268
|
+
zova-jsx: 1.1.67(typescript@5.9.3)
|
|
13269
|
+
transitivePeerDependencies:
|
|
13270
|
+
- typescript
|
|
13271
|
+
- vue
|
|
13272
|
+
|
|
13245
13273
|
zova-module-rest-resource@5.1.40: {}
|
|
13246
13274
|
|
|
13247
13275
|
zova-suite-a-zova@5.1.117(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
|
|
@@ -13278,6 +13306,40 @@ snapshots:
|
|
|
13278
13306
|
- typescript
|
|
13279
13307
|
- vue
|
|
13280
13308
|
|
|
13309
|
+
zova-suite-a-zova@5.1.118(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
|
|
13310
|
+
dependencies:
|
|
13311
|
+
zova-module-a-api: 5.1.21
|
|
13312
|
+
zova-module-a-app: 5.1.24
|
|
13313
|
+
zova-module-a-bean: 5.1.31
|
|
13314
|
+
zova-module-a-behavior: 5.1.25
|
|
13315
|
+
zova-module-a-behaviors: 5.1.21
|
|
13316
|
+
zova-module-a-boundary: 5.1.21
|
|
13317
|
+
zova-module-a-command: 5.1.33
|
|
13318
|
+
zova-module-a-fetch: 5.1.23
|
|
13319
|
+
zova-module-a-form: 5.1.43(vue@3.5.39(typescript@5.9.3))
|
|
13320
|
+
zova-module-a-icon: 5.1.26
|
|
13321
|
+
zova-module-a-interceptor: 5.1.29
|
|
13322
|
+
zova-module-a-logger: 5.1.26
|
|
13323
|
+
zova-module-a-meta: 5.1.21
|
|
13324
|
+
zova-module-a-model: 5.1.30(vue@3.5.39(typescript@5.9.3))
|
|
13325
|
+
zova-module-a-openapi: 5.1.41
|
|
13326
|
+
zova-module-a-router: 5.1.29
|
|
13327
|
+
zova-module-a-routerstack: 5.1.26
|
|
13328
|
+
zova-module-a-routertabs: 5.1.32
|
|
13329
|
+
zova-module-a-ssr: 5.1.26
|
|
13330
|
+
zova-module-a-ssrhmr: 5.1.22
|
|
13331
|
+
zova-module-a-ssrserver: 5.1.22
|
|
13332
|
+
zova-module-a-style: 5.1.32
|
|
13333
|
+
zova-module-a-table: 5.1.37(vue@3.5.39(typescript@5.9.3))
|
|
13334
|
+
zova-module-a-zod: 5.1.34
|
|
13335
|
+
zova-module-a-zova: 5.1.82(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
|
|
13336
|
+
transitivePeerDependencies:
|
|
13337
|
+
- '@vue/composition-api'
|
|
13338
|
+
- debug
|
|
13339
|
+
- supports-color
|
|
13340
|
+
- typescript
|
|
13341
|
+
- vue
|
|
13342
|
+
|
|
13281
13343
|
zova@5.1.118(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
|
|
13282
13344
|
dependencies:
|
|
13283
13345
|
zova-core: 5.1.61(patch_hash=0f4164c4d2bbb16d671beb5c26759dff37769be0709df941bc7b90b94261ac54)(typescript@5.9.3)
|
|
@@ -13289,6 +13351,17 @@ snapshots:
|
|
|
13289
13351
|
- typescript
|
|
13290
13352
|
- vue
|
|
13291
13353
|
|
|
13354
|
+
zova@5.1.119(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
|
|
13355
|
+
dependencies:
|
|
13356
|
+
zova-core: 5.1.61(patch_hash=0f4164c4d2bbb16d671beb5c26759dff37769be0709df941bc7b90b94261ac54)(typescript@5.9.3)
|
|
13357
|
+
zova-suite-a-zova: 5.1.118(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
|
|
13358
|
+
transitivePeerDependencies:
|
|
13359
|
+
- '@vue/composition-api'
|
|
13360
|
+
- debug
|
|
13361
|
+
- supports-color
|
|
13362
|
+
- typescript
|
|
13363
|
+
- vue
|
|
13364
|
+
|
|
13292
13365
|
zwitch@1.0.5: {}
|
|
13293
13366
|
|
|
13294
13367
|
zwitch@2.0.4: {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-jsx",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.68",
|
|
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.62"
|
|
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.120",
|
|
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.62",
|
|
49
|
+
"zova-suite-a-zova": "^5.1.119"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"clean-package": "^2.2.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-core",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.62",
|
|
4
4
|
"gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
|
|
5
5
|
"description": "A vue3 framework with ioc",
|
|
6
6
|
"keywords": [
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@cabloy/vue-runtime-dom": "^3.5.13",
|
|
61
61
|
"@cabloy/vue-server-renderer": "^3.5.18",
|
|
62
62
|
"@cabloy/word-utils": "^2.1.14",
|
|
63
|
-
"@cabloy/zod-errors-custom": "^2.1.
|
|
63
|
+
"@cabloy/zod-errors-custom": "^2.1.10",
|
|
64
64
|
"@cabloy/zod-openapi": "^1.1.9",
|
|
65
65
|
"@cabloy/zod-query": "^2.1.12",
|
|
66
66
|
"@types/js-cookie": "^3.0.6",
|
package/zova/pnpm-lock.yaml
CHANGED
|
@@ -74,7 +74,7 @@ importers:
|
|
|
74
74
|
version: 10.5.1(postcss@8.5.15)
|
|
75
75
|
axios:
|
|
76
76
|
specifier: ^1.16.1
|
|
77
|
-
version: 1.18.1
|
|
77
|
+
version: 1.18.1(supports-color@10.2.2)
|
|
78
78
|
compression:
|
|
79
79
|
specifier: ^1.8.1
|
|
80
80
|
version: 1.8.1
|
|
@@ -308,8 +308,8 @@ importers:
|
|
|
308
308
|
version: link:src/suite/a-training/modules/training-student
|
|
309
309
|
devDependencies:
|
|
310
310
|
'@cabloy/cli':
|
|
311
|
-
specifier: ^3.1.
|
|
312
|
-
version: 3.1.
|
|
311
|
+
specifier: ^3.1.27
|
|
312
|
+
version: 3.1.27(vue@3.5.38(typescript@5.9.3))
|
|
313
313
|
'@cabloy/lint':
|
|
314
314
|
specifier: ^5.1.27
|
|
315
315
|
version: 5.1.30(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3))(@typescript-eslint/utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.71.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
|
|
@@ -383,8 +383,8 @@ importers:
|
|
|
383
383
|
packages-cli/cli:
|
|
384
384
|
dependencies:
|
|
385
385
|
'@cabloy/cli':
|
|
386
|
-
specifier: ^3.1.
|
|
387
|
-
version: 3.1.
|
|
386
|
+
specifier: ^3.1.27
|
|
387
|
+
version: 3.1.27(vue@3.5.38(typescript@5.9.3))
|
|
388
388
|
'@cabloy/process-helper':
|
|
389
389
|
specifier: ^3.1.8
|
|
390
390
|
version: 3.1.8
|
|
@@ -395,7 +395,7 @@ importers:
|
|
|
395
395
|
specifier: ^7.6.2
|
|
396
396
|
version: 7.8.5
|
|
397
397
|
zova-cli-set-front:
|
|
398
|
-
specifier: ^1.2.
|
|
398
|
+
specifier: ^1.2.92
|
|
399
399
|
version: link:../cli-set-front
|
|
400
400
|
devDependencies:
|
|
401
401
|
clean-package:
|
|
@@ -417,8 +417,8 @@ importers:
|
|
|
417
417
|
specifier: ^7.28.6
|
|
418
418
|
version: 7.29.7(@babel/core@7.29.7)
|
|
419
419
|
'@cabloy/cli':
|
|
420
|
-
specifier: ^3.1.
|
|
421
|
-
version: 3.1.
|
|
420
|
+
specifier: ^3.1.27
|
|
421
|
+
version: 3.1.27(vue@3.5.38(typescript@5.9.3))
|
|
422
422
|
'@cabloy/extend':
|
|
423
423
|
specifier: ^3.2.8
|
|
424
424
|
version: 3.2.8
|
|
@@ -816,7 +816,7 @@ importers:
|
|
|
816
816
|
specifier: ^5.1.61
|
|
817
817
|
version: link:../zova-core
|
|
818
818
|
zova-suite-a-zova:
|
|
819
|
-
specifier: ^5.1.
|
|
819
|
+
specifier: ^5.1.118
|
|
820
820
|
version: link:../../src/suite-vendor/a-zova
|
|
821
821
|
devDependencies:
|
|
822
822
|
clean-package:
|
|
@@ -1001,7 +1001,7 @@ importers:
|
|
|
1001
1001
|
specifier: ^5.1.34
|
|
1002
1002
|
version: link:modules/a-zod
|
|
1003
1003
|
zova-module-a-zova:
|
|
1004
|
-
specifier: ^5.1.
|
|
1004
|
+
specifier: ^5.1.82
|
|
1005
1005
|
version: link:modules/a-zova
|
|
1006
1006
|
|
|
1007
1007
|
src/suite-vendor/a-zova/modules/a-api:
|
|
@@ -1075,7 +1075,7 @@ importers:
|
|
|
1075
1075
|
dependencies:
|
|
1076
1076
|
axios:
|
|
1077
1077
|
specifier: ^1.16.1
|
|
1078
|
-
version: 1.18.1
|
|
1078
|
+
version: 1.18.1(supports-color@10.2.2)
|
|
1079
1079
|
devDependencies:
|
|
1080
1080
|
clean-package:
|
|
1081
1081
|
specifier: ^2.2.0
|
|
@@ -1344,8 +1344,8 @@ importers:
|
|
|
1344
1344
|
version: link:../../../../../packages-utils/zova-jsx
|
|
1345
1345
|
devDependencies:
|
|
1346
1346
|
'@cabloy/cli':
|
|
1347
|
-
specifier: ^3.1.
|
|
1348
|
-
version: 3.1.
|
|
1347
|
+
specifier: ^3.1.27
|
|
1348
|
+
version: 3.1.27(vue@3.5.38(typescript@5.9.3))
|
|
1349
1349
|
'@types/luxon':
|
|
1350
1350
|
specifier: ^3.7.1
|
|
1351
1351
|
version: 3.7.2
|
|
@@ -1961,8 +1961,8 @@ packages:
|
|
|
1961
1961
|
'@bufbuild/protobuf@2.12.1':
|
|
1962
1962
|
resolution: {integrity: sha512-BvAMfS6LrgZiryOAZ4pBYucu4wG/Ei/9o9DZ9akbREnMLbPJiom2i8b9C8IsKErQoiKqVhrerzt3kOT/RrzLHg==}
|
|
1963
1963
|
|
|
1964
|
-
'@cabloy/cli@3.1.
|
|
1965
|
-
resolution: {integrity: sha512-
|
|
1964
|
+
'@cabloy/cli@3.1.27':
|
|
1965
|
+
resolution: {integrity: sha512-KMNKh6AbkxfgWx4+HL5ufDEInVdx11k8mIXLL55LMChA4h0dkwQ4z7CReSr4sDXs0jW2nGxgAdi7xjVzn8yZnw==}
|
|
1966
1966
|
|
|
1967
1967
|
'@cabloy/compose@2.1.8':
|
|
1968
1968
|
resolution: {integrity: sha512-TdEr9BY54BYoIlTjkrOKkzK8yJWmP07OrRTh4punJMnWzM+oDExQ2EGCGAHXnEHjLWqdhyMGm/ejmxnVgBmraQ==}
|
|
@@ -8189,7 +8189,7 @@ snapshots:
|
|
|
8189
8189
|
|
|
8190
8190
|
'@bufbuild/protobuf@2.12.1': {}
|
|
8191
8191
|
|
|
8192
|
-
'@cabloy/cli@3.1.
|
|
8192
|
+
'@cabloy/cli@3.1.27(vue@3.5.38(typescript@5.9.3))':
|
|
8193
8193
|
dependencies:
|
|
8194
8194
|
'@babel/parser': 7.29.7
|
|
8195
8195
|
'@cabloy/module-glob': 5.3.16
|
|
@@ -10252,7 +10252,7 @@ snapshots:
|
|
|
10252
10252
|
|
|
10253
10253
|
acorn@8.17.0: {}
|
|
10254
10254
|
|
|
10255
|
-
agent-base@6.0.2:
|
|
10255
|
+
agent-base@6.0.2(supports-color@10.2.2):
|
|
10256
10256
|
dependencies:
|
|
10257
10257
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10258
10258
|
transitivePeerDependencies:
|
|
@@ -10364,11 +10364,11 @@ snapshots:
|
|
|
10364
10364
|
dependencies:
|
|
10365
10365
|
possible-typed-array-names: 1.1.0
|
|
10366
10366
|
|
|
10367
|
-
axios@1.18.1:
|
|
10367
|
+
axios@1.18.1(supports-color@10.2.2):
|
|
10368
10368
|
dependencies:
|
|
10369
10369
|
follow-redirects: 1.16.0
|
|
10370
10370
|
form-data: 4.0.6
|
|
10371
|
-
https-proxy-agent: 5.0.1
|
|
10371
|
+
https-proxy-agent: 5.0.1(supports-color@10.2.2)
|
|
10372
10372
|
proxy-from-env: 2.1.0
|
|
10373
10373
|
transitivePeerDependencies:
|
|
10374
10374
|
- debug
|
|
@@ -11784,9 +11784,9 @@ snapshots:
|
|
|
11784
11784
|
statuses: 2.0.2
|
|
11785
11785
|
toidentifier: 1.0.1
|
|
11786
11786
|
|
|
11787
|
-
https-proxy-agent@5.0.1:
|
|
11787
|
+
https-proxy-agent@5.0.1(supports-color@10.2.2):
|
|
11788
11788
|
dependencies:
|
|
11789
|
-
agent-base: 6.0.2
|
|
11789
|
+
agent-base: 6.0.2(supports-color@10.2.2)
|
|
11790
11790
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11791
11791
|
transitivePeerDependencies:
|
|
11792
11792
|
- supports-color
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-module-a-zod",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.35",
|
|
4
4
|
"gitHead": "09d901d17140a80ee0764211b441cda72fd94663",
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"postpack": "clean-package restore"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@cabloy/zod-errors-custom": "^2.1.
|
|
37
|
+
"@cabloy/zod-errors-custom": "^2.1.10",
|
|
38
38
|
"@cabloy/zod-openapi": "^1.1.9",
|
|
39
39
|
"@cabloy/zod-query": "^2.1.12",
|
|
40
40
|
"zod": "^4.4.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-module-a-zova",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.83",
|
|
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.68"
|
|
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.119",
|
|
4
4
|
"gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
|
|
5
5
|
"description": "zova",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"zova-module-a-ssrserver": "^5.1.22",
|
|
32
32
|
"zova-module-a-style": "^5.1.32",
|
|
33
33
|
"zova-module-a-table": "^5.1.37",
|
|
34
|
-
"zova-module-a-zod": "^5.1.
|
|
35
|
-
"zova-module-a-zova": "^5.1.
|
|
34
|
+
"zova-module-a-zod": "^5.1.35",
|
|
35
|
+
"zova-module-a-zova": "^5.1.83"
|
|
36
36
|
},
|
|
37
37
|
"title": "a-zova"
|
|
38
38
|
}
|