cabloy 5.1.164 → 5.1.166

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/.cabloy-version CHANGED
@@ -1 +1 @@
1
- 5.1.164
1
+ 5.1.166
@@ -0,0 +1 @@
1
+ {"sessionId":"ca46c3da-f068-490d-8585-52645b0c5e32","pid":48025,"procStart":"Wed Sep 9 23:18:11 2026","acquiredAt":1789174622732}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.1.166
4
+
5
+ ### Improvements
6
+
7
+ - Refresh the Zova lockfile and update the Vona Zova Core patch.
8
+
9
+ ## 5.1.165
10
+
11
+ ### Features
12
+
13
+ - Align bulk actions and component attributes.
14
+ - Update functionality.
15
+
3
16
  ## 5.1.164
4
17
 
5
18
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cabloy",
3
- "version": "5.1.164",
3
+ "version": "5.1.166",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A Node.js fullstack framework",
6
6
  "keywords": [
@@ -133,6 +133,28 @@ For an atomic multi-ID Resource command, have the command DTO validate its reque
133
133
 
134
134
  `a-rbac` exposes `this.bean.rbacResourceBulk.entries(...)` for the reusable integrity and authorization sequence. Pass the facade a fresh, ordinary instance-scoped loader (rather than a cache-backed lookup) from the domain transaction. It preserves the requested order, invokes `checkEntries(...)` only after complete normal-scoped loading, and emits localized `a-rbac` scoped errors for invalid ID lists and absent entries.
135
135
 
136
+ A canonical Resource bulk-delete controller shape is:
137
+
138
+ ```typescript
139
+ @Web.post('bulk/delete')
140
+ @Api.body(z.null())
141
+ @Core.transaction()
142
+ @Passport.rbac({ dataScope: true, actionInherit: 'delete' })
143
+ async deleteBulk(
144
+ @Arg.body() command: DtoRecordDeleteBulk,
145
+ @Arg.rbacScopeCurrent() rbacScopeCurrent: IRbacScopeAccess,
146
+ ) {
147
+ const entries = await this.bean.rbacResourceBulk.entries(
148
+ command.ids,
149
+ ids => this.scope.model.record.select({ where: rbacScopeCurrent.where({ id: ids }) }),
150
+ rbacScopeCurrent,
151
+ );
152
+ await this.scope.service.record.deleteBulk(entries.map(entry => entry.id));
153
+ }
154
+ ```
155
+
156
+ The DTO must require `ids` and declare an operation-appropriate maximum. This controller shape makes `POST <resource>/bulk/delete` compatible with the generic Resource mutation surface while keeping the data-scope preflight and delete in one transaction. A frontend table may hide or disable a selected action as a usability aid, but it must never replace this server-side validation.
157
+
136
158
  A representative list shape is:
137
159
 
138
160
  ```typescript
@@ -1,9 +1,11 @@
1
1
  # Backend Metadata to Frontend Table Actions
2
2
 
3
- This page explains one of the most practical fullstack contract chains in Cabloy Basic:
3
+ This page explains one of the most practical fullstack contract chains in Cabloy:
4
4
 
5
5
  > backend field and row metadata can drive visible frontend table actions, while frontend action resources and generated contract consumers stay aligned with that backend truth.
6
6
 
7
+ The contract model is shared by Cabloy Basic and Cabloy Start. The rendering adapter is edition-specific: the examples below use Basic resource names where they illustrate the general mechanism; Start list pages use `start-page`, `start-table`, `start-commands`, and Vuetify.
8
+
7
9
  This page sits between the pure direction guides:
8
10
 
9
11
  - [Backend OpenAPI to Frontend SDK](/fullstack/openapi-to-sdk)
@@ -300,6 +302,39 @@ This is the same contract idea at a different UI level:
300
302
  - backend or shared page metadata chooses the action resource identity
301
303
  - frontend runtime resolves that identity to a visible action implementation
302
304
 
305
+ ### Cabloy Start selected-resource actions
306
+
307
+ A selected-resource action adds a page-owned selection payload to this same contract. A Training Student list can declare the Start render resources directly in its backend DTO metadata:
308
+
309
+ ```tsx
310
+ ZovaRender.block('start-page:blockToolbarBulk', {
311
+ actions: [
312
+ ZovaRender.tableActionBulk('start-table:actionCreate'),
313
+ ZovaRender.tableActionBulk('start-table:actionDeleteBulk', {
314
+ requiresSelection: true,
315
+ selectedMaxIds: 100,
316
+ }),
317
+ ],
318
+ });
319
+ ```
320
+
321
+ The metadata remains declarative. `start-page:blockPage` owns the normalized selected IDs and currently loaded selected-row snapshots; `start-page:blockTable` bridges that state to Vuetify `VDataTableServer` with page-local checkbox selection. Therefore a page change retains earlier selections, while a new resource, fixed query, submitted/reset filter, sort, page-size change, or successful selected mutation clears the relevant selection.
322
+
323
+ `start-page:blockToolbarBulk` adds the Start **Select**/**Done** mode and selected-count status. It supplies runtime `dynamicSelection` and `dynamicDisabled` props to action resources without overwriting authored `disabled` metadata. Selection-required actions are unavailable when the selection is empty, incomplete, exceeds its declared/default limit, or fails the projected frontend permission check for any selected row.
324
+
325
+ `start-table:actionDeleteBulk` confirms the operation and delegates to `start-commands:deleteBulk`. The command uses the existing `rest-resource.model.resource` owner and calls its generated-resource mutation with `{ ids }`; it clears only successfully deleted IDs after the mutation resolves. A cancel or failed request preserves selection. Browser-side eligibility is only a UX projection: the backend controller remains authoritative.
326
+
327
+ For a Resource bulk delete, expose the canonical endpoint as `POST <resource>/bulk/delete` with a request DTO whose `ids` array is required and bounded. In a `@Core.transaction()` controller action, pass the requested IDs and an ordinary active-instance model loader to `this.bean.rbacResourceBulk.entries(...)`, then mutate only the returned entries. This rejects malformed or normalized-duplicate identities, requires complete scoped resolution, checks every entry through the current data scope, and prevents partial deletion. Missing, soft-deleted, or other-instance rows are uniformly absent; do not issue cross-instance probes merely to distinguish them.
328
+
329
+ After adding or changing a Start action resource, regenerate its Zova metadata and run the paired Admin reverse chain from the repository root:
330
+
331
+ ```bash
332
+ npm run build:zova:admin
333
+ npm run deps:vona
334
+ ```
335
+
336
+ Regenerate generated OpenAPI consumers only after the backend contract output contains the canonical operation; do not hand-edit generated consumers. Build the Web flavor too only when the affected action is consumed by Web.
337
+
303
338
  ## Step 7A: Detail actions follow the same contract idea inside details blocks
304
339
 
305
340
  The same contract model also appears in resource details tables.
@@ -545,7 +545,9 @@ test(
545
545
  name: 'Select all rows on this page',
546
546
  exact: true,
547
547
  });
548
- const selectionStatus = page.getByRole('status').filter({ hasText: /^Selected \d+ items$/ });
548
+ const selectionStatus = page
549
+ .getByRole('status')
550
+ .filter({ hasText: /^Selected (?:\d+ items|one item)$/ });
549
551
  const select = page.getByRole('button', { name: 'Select', exact: true });
550
552
  const done = page.getByRole('button', { name: 'Done', exact: true });
551
553
  const create = page.getByRole('button', { name: 'Create', exact: true });
@@ -597,7 +599,7 @@ test(
597
599
 
598
600
  await rowCheckboxFor(visibleFixtureNames[0]).check();
599
601
  await expect(rowFor(visibleFixtureNames[0])).toHaveAttribute('aria-selected', 'true');
600
- await expect(selectionStatus).toHaveText('Selected 1 items');
602
+ await expect(selectionStatus).toHaveText('Selected one item');
601
603
  await expect(allPageCheckbox).toHaveAttribute('aria-checked', 'mixed');
602
604
  await expect(allPageCheckbox).toHaveJSProperty('indeterminate', true);
603
605
 
@@ -629,7 +631,7 @@ test(
629
631
  await expect(rowFor(visibleFixtureNames[0])).toHaveCount(1);
630
632
  await expect(allPageCheckbox).toBeChecked();
631
633
  await allPageCheckbox.uncheck();
632
- await expect(selectionStatus).toHaveText('Selected 1 items');
634
+ await expect(selectionStatus).toHaveText('Selected one item');
633
635
 
634
636
  await rowCheckboxFor(visibleFixtureNames[9]).check();
635
637
  await expect(selectionStatus).toHaveText('Selected 2 items');
@@ -639,7 +641,7 @@ test(
639
641
  await expect(rowFor(visibleFixtureNames[9])).toHaveAttribute('aria-selected', 'false');
640
642
 
641
643
  await rowCheckboxFor(visibleFixtureNames[9]).check();
642
- await expect(selectionStatus).toHaveText('Selected 1 items');
644
+ await expect(selectionStatus).toHaveText('Selected one item');
643
645
  await page.getByRole('button', { name: 'Reset', exact: true }).click();
644
646
  await expect(page.getByLabel('Student Name')).toHaveValue('');
645
647
  await expect(selectionStatus).toHaveText('Selected 0 items');
@@ -648,7 +650,7 @@ test(
648
650
  await expect(rowFor(visibleFixtureNames[0])).toHaveCount(1);
649
651
 
650
652
  await rowCheckboxFor(visibleFixtureNames[0]).check();
651
- await expect(selectionStatus).toHaveText('Selected 1 items');
653
+ await expect(selectionStatus).toHaveText('Selected one item');
652
654
  const nameSort = page.getByRole('button', { name: 'Sort by name', exact: true });
653
655
  const sortResponse = waitForStudentSelect(page);
654
656
  await nameSort.click();
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vona-cli",
3
- "version": "1.1.146",
3
+ "version": "1.1.147",
4
4
  "gitHead": "a79189b882c17af5911573896a781bbb0046d37d",
5
5
  "description": "vona cli",
6
6
  "keywords": [
@@ -53,17 +53,17 @@ export class Controller<%=argv.resourceNameCapitalize%> extends BeanBase {
53
53
  await this.scope.service.<%=argv.resourceName%>.update(id, <%=argv.resourceName%>);
54
54
  }
55
55
 
56
- @Web.post('bulk/delete', { summary: $locale('BulkDelete') })
57
- @Api.body(z.null())
58
- @Passport.systemAdmin()
59
- async deleteBulk(@Arg.body() command: Dto<%=argv.resourceNameCapitalize%>DeleteBulk): Promise<void> {
60
- await this.scope.service.<%=argv.resourceName%>.deleteBulk(command.ids);
61
- }
62
-
63
56
  @Web.delete(':id', { summary: $locale('<%=argv.resourceNameCapitalize%>Delete') })
64
57
  @Api.body(z.null())
65
58
  @Passport.systemAdmin()
66
59
  async delete(@Arg.param('id', v.tableIdentity()) id: TableIdentity): Promise<void> {
67
60
  await this.scope.service.<%=argv.resourceName%>.delete(id);
68
61
  }
62
+
63
+ @Web.post('bulk/delete', { summary: $locale('BulkDelete') })
64
+ @Api.body(z.null())
65
+ @Passport.systemAdmin()
66
+ async deleteBulk(@Arg.body() command: Dto<%=argv.resourceNameCapitalize%>DeleteBulk): Promise<void> {
67
+ await this.scope.service.<%=argv.resourceName%>.deleteBulk(command.ids);
68
+ }
69
69
  }
@@ -1,5 +1,6 @@
1
1
  import type { TableIdentity } from 'table-identity';
2
2
  import type { IQueryParams } from 'vona-module-a-orm';
3
+ import type { IRbacScopeAccess } from 'vona-module-a-rbac';
3
4
  import type { IDecoratorControllerOptions } from 'vona-module-a-web';
4
5
 
5
6
  import { BeanBase } from 'vona';
@@ -53,17 +54,29 @@ export class Controller<%=argv.resourceNameCapitalize%> extends BeanBase {
53
54
  await this.scope.service.<%=argv.resourceName%>.update(id, <%=argv.resourceName%>);
54
55
  }
55
56
 
56
- @Web.post('bulk/delete', { summary: $locale('BulkDelete') })
57
- @Api.body(z.null())
58
- @Passport.rbac()
59
- async deleteBulk(@Arg.body() command: Dto<%=argv.resourceNameCapitalize%>DeleteBulk): Promise<void> {
60
- await this.scope.service.<%=argv.resourceName%>.deleteBulk(command.ids);
61
- }
62
-
63
57
  @Web.delete(':id', { summary: $locale('<%=argv.resourceNameCapitalize%>Delete') })
64
58
  @Api.body(z.null())
65
59
  @Passport.rbac()
66
60
  async delete(@Arg.param('id', v.tableIdentity()) id: TableIdentity): Promise<void> {
67
61
  await this.scope.service.<%=argv.resourceName%>.delete(id);
68
62
  }
63
+
64
+ @Web.post('bulk/delete', { summary: $locale('BulkDelete') })
65
+ @Api.body(z.null())
66
+ @Passport.rbac({ actionInherit: 'delete' })
67
+ async deleteBulk(
68
+ @Arg.body() command: Dto<%=argv.resourceNameCapitalize%>DeleteBulk,
69
+ @Arg.rbacScopeCurrent() rbacScopeCurrent: IRbacScopeAccess,
70
+ ): Promise<void> {
71
+ const entries = await this.bean.rbacResourceBulk.entries(
72
+ command.ids,
73
+ async ids => {
74
+ return await this.scope.model.<%=argv.resourceName%>.select({
75
+ where: rbacScopeCurrent.where({ id: ids }),
76
+ });
77
+ },
78
+ rbacScopeCurrent,
79
+ );
80
+ await this.scope.service.<%=argv.resourceName%>.deleteBulk(entries.map(entry => entry.id));
81
+ }
69
82
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vona-cli-set-api",
3
- "version": "1.1.144",
3
+ "version": "1.1.145",
4
4
  "gitHead": "a79189b882c17af5911573896a781bbb0046d37d",
5
5
  "description": "vona cli-set-api",
6
6
  "keywords": [
@@ -16,7 +16,7 @@ overrides:
16
16
  zod: npm:@cabloy/zod@4.3.8
17
17
 
18
18
  patchedDependencies:
19
- zova-core@5.1.88: 144450bd7a567a6067e5857c0cf4c780981b7e90bc48745c09e1696a9b6f1b97
19
+ zova-core@5.1.89: 144450bd7a567a6067e5857c0cf4c780981b7e90bc48745c09e1696a9b6f1b97
20
20
 
21
21
  importers:
22
22
 
@@ -564,11 +564,11 @@ importers:
564
564
  specifier: npm:@cabloy/zod@4.3.8
565
565
  version: '@cabloy/zod@4.3.8'
566
566
  zova:
567
- specifier: ^5.1.156
568
- version: 5.1.156(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
567
+ specifier: ^5.1.158
568
+ version: 5.1.158(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
569
569
  zova-jsx:
570
- specifier: ^1.1.88
571
- version: 1.1.88(typescript@5.9.3)
570
+ specifier: ^1.1.89
571
+ version: 1.1.89(typescript@5.9.3)
572
572
  zova-module-a-api:
573
573
  specifier: ^5.1.22
574
574
  version: 5.1.22
@@ -579,8 +579,8 @@ importers:
579
579
  specifier: ^5.1.26
580
580
  version: 5.1.26
581
581
  zova-module-a-command:
582
- specifier: ^5.1.34
583
- version: 5.1.34
582
+ specifier: ^5.1.35
583
+ version: 5.1.35
584
584
  zova-module-a-form:
585
585
  specifier: ^5.1.51
586
586
  version: 5.1.51(vue@3.5.39(typescript@5.9.3))
@@ -594,8 +594,8 @@ importers:
594
594
  specifier: ^5.1.36
595
595
  version: 5.1.36(vue@3.5.39(typescript@5.9.3))
596
596
  zova-module-a-openapi:
597
- specifier: ^5.1.52
598
- version: 5.1.52
597
+ specifier: ^5.1.53
598
+ version: 5.1.53
599
599
  zova-module-a-pay:
600
600
  specifier: ^5.0.7
601
601
  version: 5.0.7
@@ -612,14 +612,14 @@ importers:
612
612
  specifier: ^5.1.35
613
613
  version: 5.1.35
614
614
  zova-module-a-table:
615
- specifier: ^5.1.39
616
- version: 5.1.39(vue@3.5.39(typescript@5.9.3))
615
+ specifier: ^5.1.40
616
+ version: 5.1.40(vue@3.5.39(typescript@5.9.3))
617
617
  zova-module-pay-mock:
618
618
  specifier: ^5.0.5
619
619
  version: 5.0.5
620
620
  zova-module-rest-resource:
621
- specifier: ^5.1.50
622
- version: 5.1.50
621
+ specifier: ^5.1.51
622
+ version: 5.1.51
623
623
 
624
624
  .zova-rest/cabloy-basic-web:
625
625
  dependencies:
@@ -642,11 +642,11 @@ importers:
642
642
  specifier: npm:@cabloy/zod@4.3.8
643
643
  version: '@cabloy/zod@4.3.8'
644
644
  zova:
645
- specifier: ^5.1.156
646
- version: 5.1.156(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
645
+ specifier: ^5.1.158
646
+ version: 5.1.158(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
647
647
  zova-jsx:
648
- specifier: ^1.1.88
649
- version: 1.1.88(typescript@5.9.3)
648
+ specifier: ^1.1.89
649
+ version: 1.1.89(typescript@5.9.3)
650
650
  zova-module-a-api:
651
651
  specifier: ^5.1.22
652
652
  version: 5.1.22
@@ -657,8 +657,8 @@ importers:
657
657
  specifier: ^5.1.26
658
658
  version: 5.1.26
659
659
  zova-module-a-command:
660
- specifier: ^5.1.34
661
- version: 5.1.34
660
+ specifier: ^5.1.35
661
+ version: 5.1.35
662
662
  zova-module-a-form:
663
663
  specifier: ^5.1.51
664
664
  version: 5.1.51(vue@3.5.39(typescript@5.9.3))
@@ -672,8 +672,8 @@ importers:
672
672
  specifier: ^5.1.36
673
673
  version: 5.1.36(vue@3.5.39(typescript@5.9.3))
674
674
  zova-module-a-openapi:
675
- specifier: ^5.1.52
676
- version: 5.1.52
675
+ specifier: ^5.1.53
676
+ version: 5.1.53
677
677
  zova-module-a-pay:
678
678
  specifier: ^5.0.7
679
679
  version: 5.0.7
@@ -690,14 +690,14 @@ importers:
690
690
  specifier: ^5.1.35
691
691
  version: 5.1.35
692
692
  zova-module-a-table:
693
- specifier: ^5.1.39
694
- version: 5.1.39(vue@3.5.39(typescript@5.9.3))
693
+ specifier: ^5.1.40
694
+ version: 5.1.40(vue@3.5.39(typescript@5.9.3))
695
695
  zova-module-pay-mock:
696
696
  specifier: ^5.0.5
697
697
  version: 5.0.5
698
698
  zova-module-rest-resource:
699
- specifier: ^5.1.50
700
- version: 5.1.50
699
+ specifier: ^5.1.51
700
+ version: 5.1.51
701
701
 
702
702
  .zova-rest/cabloy-commerce:
703
703
  dependencies:
@@ -1619,7 +1619,7 @@ importers:
1619
1619
  specifier: ^5.0.3
1620
1620
  version: link:modules/a-markdown
1621
1621
  vona-module-a-rbac:
1622
- specifier: ^5.0.5
1622
+ specifier: ^5.0.6
1623
1623
  version: link:modules/a-rbac
1624
1624
  vona-module-a-socket:
1625
1625
  specifier: workspace:^
@@ -8959,9 +8959,15 @@ packages:
8959
8959
  zova-core@5.1.88:
8960
8960
  resolution: {integrity: sha512-YZ8z1GHE5iAo/khgP8/gnrRN8bUkv80cVvxDzmGSG5p/CEqQpHhcrC8lUH48fbuc4BgeGMTRlZoB+uNopYnALQ==}
8961
8961
 
8962
+ zova-core@5.1.89:
8963
+ resolution: {integrity: sha512-iL41wEsRWGW7RxietDoVAhfO3pM9//feOYsW56q+w8g7lgoehb189uwqBVaSEkmM81eRp7PUwlNH7l2D2DbaCg==}
8964
+
8962
8965
  zova-jsx@1.1.88:
8963
8966
  resolution: {integrity: sha512-DusZAiEor+lrYwsbxrWFhTBjYTArg6ldxuo323ly1GJ39jmNeF+vRDc8liDQF1czstp0fnJtuMNxQCEBaCasxg==}
8964
8967
 
8968
+ zova-jsx@1.1.89:
8969
+ resolution: {integrity: sha512-FjSDPZmWwrFp4tTHE9D3vkJVhfA+qsA8O2ZwKOdgd4JPY+2XPh70MaUL3TuI6D88uwVpjoLArvVjuFiiuTTv1g==}
8970
+
8965
8971
  zova-module-a-api@5.1.22:
8966
8972
  resolution: {integrity: sha512-6KHDm/Kw7dwu3/3R+eM8WR0UBv4b73ksAd9yL44cS7d5KS9o97PD0RDkwep+ziMdod1DvRMHu5QJbvp7DmKIVA==}
8967
8973
 
@@ -8983,6 +8989,9 @@ packages:
8983
8989
  zova-module-a-command@5.1.34:
8984
8990
  resolution: {integrity: sha512-kVXLKvLdQB7XwvnEuYsGClfFqf6z/1uw7QNRNYzxiyij1cvKj7f/j7u5Hg4YfN91bNYwGEJGxPcXcFoUY1DKqg==}
8985
8991
 
8992
+ zova-module-a-command@5.1.35:
8993
+ resolution: {integrity: sha512-Ckxfigexk8HEput1lBRpxwEAU2i9ocjaeilQoulEJ2QCRXrDJb1b+hvu95teR+omUdFNT4qGtCI0/oLm+jNVzg==}
8994
+
8986
8995
  zova-module-a-fetch@5.1.25:
8987
8996
  resolution: {integrity: sha512-kbMB/jIynN0dhivEZLLaY+ic9mU0rZJBeyjXwzAiWuOS330YsxipasxBZhACJD8s29RmLC9EQajI+vVLoBEveQ==}
8988
8997
 
@@ -9007,6 +9016,9 @@ packages:
9007
9016
  zova-module-a-openapi@5.1.52:
9008
9017
  resolution: {integrity: sha512-pUbyEI2tiJ2tEih/qFvfYYR/yqnWZnK0QqyCNfgkD2Nvn4EY+iyIHISLZhVtWDJbYMXcqfXlxvb8Ltvm+GD/PA==}
9009
9018
 
9019
+ zova-module-a-openapi@5.1.53:
9020
+ resolution: {integrity: sha512-vNCIbQGA9WeeC1BXsJPzdpuJANSrCZEwZq2uSSuugyw/CJ7JkJwGFvwYhEeU7YPcWd2+I0J7zNNbgOHlhnO0Xw==}
9021
+
9010
9022
  zova-module-a-pay@5.0.7:
9011
9023
  resolution: {integrity: sha512-LHIArspqUeT3aQ+b8AvxrkYOV9nFnfjTWoQ/zQNliQhy1EllooVFB+AhRY58rhmh4ru/xbem+4Wjuptl9FdU+Q==}
9012
9024
 
@@ -9034,24 +9046,39 @@ packages:
9034
9046
  zova-module-a-table@5.1.39:
9035
9047
  resolution: {integrity: sha512-MhYYlOIFJ32m61xtDCnIHfWf/g17g2HvEL7zRd5k1As7+or/9FPe9DbmFpHvjk7vp/Yba6oTqV0D5GbueJt/OA==}
9036
9048
 
9049
+ zova-module-a-table@5.1.40:
9050
+ resolution: {integrity: sha512-R/vVUMVYt6lEno45fMfwyy+luQz+l0e2er9IfvorSlZ55kgnZOZj5lXGUCiYYBPgPwxJz3p42hHr7HZZpVu9sQ==}
9051
+
9037
9052
  zova-module-a-zod@5.1.37:
9038
9053
  resolution: {integrity: sha512-rXHN9rKbum9w3gDSnC/pIusG2d2FGJOcIauf8jrbT96f+Olk4Q3iV3t2V92mxiLCh9kMvBJPfcOgJFW7pRB5Fw==}
9039
9054
 
9040
9055
  zova-module-a-zova@5.1.103:
9041
9056
  resolution: {integrity: sha512-rtGMHo5NRlXkFlAz07jEgd/J7C/2zzZ9A9UXW8tJBhpSQTY4YBec+1wwCfOEjUcpDjUjNjn6UHGAV7fg1maS/g==}
9042
9057
 
9058
+ zova-module-a-zova@5.1.104:
9059
+ resolution: {integrity: sha512-Ni1KFOzlRIvEZSOIHWMM3d7vDOZLs6qdKj7ONCHFeA2YaU3JJ49dfe4JuVPmeGNHcO9fl4YieVDbCs46iuBjiA==}
9060
+
9043
9061
  zova-module-pay-mock@5.0.5:
9044
9062
  resolution: {integrity: sha512-PFbNz1g2MDVp3NdvKV37WFzHTQ2awSPTD5iexkkOOloAaItmt/KYoV7xadM46wHUCSQZcZQ1SZdgDaUFev+R4Q==}
9045
9063
 
9046
9064
  zova-module-rest-resource@5.1.50:
9047
9065
  resolution: {integrity: sha512-BZp4W9j4DhuQt9mk/jlquRFemzTBHe8saNtV/EUT6smAVj+7Li8AYkeaDUofKbssouqbOxHoFb0Qrlmd+1kZOw==}
9048
9066
 
9067
+ zova-module-rest-resource@5.1.51:
9068
+ resolution: {integrity: sha512-rZy8oaQvtcXmqepkE+OWsXt0MUbBuL+NdY099FuG1eYrtl/nB5WMyvmtFVF5d5NRaz6q+otysFuyo8Q93aHfwA==}
9069
+
9049
9070
  zova-suite-a-zova@5.1.155:
9050
9071
  resolution: {integrity: sha512-w4+mlwOJ3DF+Bl9N1hkZBbgNW0UouP3/Xaw8PtiNEpmmr/ScWj+/+l85RTr/q9F+Qw/hjDCWTLwy4GBukTiBag==}
9051
9072
 
9073
+ zova-suite-a-zova@5.1.157:
9074
+ resolution: {integrity: sha512-oMJHt3stq27tHnOMC8t3w0+QFoipL+wnc1tkhOi6q1MP3hz4g7S8aOSEvNA/3SAiI+Bq+wpeoSVqt/2ze4zVGw==}
9075
+
9052
9076
  zova@5.1.156:
9053
9077
  resolution: {integrity: sha512-LawJuQhiR+M+BdFkLYEz1wLz0zQa2IuZFAR0Vtq/dcNMX1Jus9g2iem/guNbavgeNP8aXRa+P4vCnaFynnWC/w==}
9054
9078
 
9079
+ zova@5.1.158:
9080
+ resolution: {integrity: sha512-lrsU/TlQvghdd3XRUuqeTIOsum7yv2Jm3NBeUqmcjixcDXxeAWRmH7i9g8MG+1Q8GJru6J6UYpD8mvxeTNKgcA==}
9081
+
9055
9082
  zwitch@1.0.5:
9056
9083
  resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
9057
9084
 
@@ -15325,7 +15352,38 @@ snapshots:
15325
15352
  dependencies:
15326
15353
  zod: '@cabloy/zod@4.3.8'
15327
15354
 
15328
- zova-core@5.1.88(patch_hash=144450bd7a567a6067e5857c0cf4c780981b7e90bc48745c09e1696a9b6f1b97)(typescript@5.9.3):
15355
+ zova-core@5.1.88(typescript@5.9.3):
15356
+ dependencies:
15357
+ '@cabloy/compose': link:packages-utils/compose
15358
+ '@cabloy/extend': link:packages-utils/extend
15359
+ '@cabloy/json5': link:packages-utils/json5
15360
+ '@cabloy/localeutil': link:packages-utils/localeutil
15361
+ '@cabloy/logger': 1.1.25
15362
+ '@cabloy/module-info': 2.0.3
15363
+ '@cabloy/utils': link:packages-utils/utils
15364
+ '@cabloy/vue-compiler-sfc': 3.5.14
15365
+ '@cabloy/vue-reactivity': 3.5.16
15366
+ '@cabloy/vue-router': 4.4.16(vue@3.5.39(typescript@5.9.3))
15367
+ '@cabloy/vue-runtime-core': 3.5.57
15368
+ '@cabloy/vue-runtime-dom': 3.5.13
15369
+ '@cabloy/vue-server-renderer': 3.5.18(vue@3.5.39(typescript@5.9.3))
15370
+ '@cabloy/word-utils': 2.1.14
15371
+ '@cabloy/zod-errors-custom': link:packages-utils/zod-errors-custom
15372
+ '@cabloy/zod-openapi': link:packages-utils/zod-openapi
15373
+ '@cabloy/zod-query': link:packages-utils/zod-query
15374
+ '@types/js-cookie': 3.0.6
15375
+ '@types/ms': 2.1.0
15376
+ '@vue/shared': 3.5.36
15377
+ deep-equal: 2.2.3
15378
+ ms: 2.1.3
15379
+ reflect-metadata: 0.2.2
15380
+ vue: 3.5.39(typescript@5.9.3)
15381
+ vue-plugin-render-freeze: 2.0.4(vue@3.5.39(typescript@5.9.3))
15382
+ zod: '@cabloy/zod@4.3.8'
15383
+ transitivePeerDependencies:
15384
+ - typescript
15385
+
15386
+ zova-core@5.1.89(patch_hash=144450bd7a567a6067e5857c0cf4c780981b7e90bc48745c09e1696a9b6f1b97)(typescript@5.9.3):
15329
15387
  dependencies:
15330
15388
  '@cabloy/compose': link:packages-utils/compose
15331
15389
  '@cabloy/extend': link:packages-utils/extend
@@ -15363,7 +15421,18 @@ snapshots:
15363
15421
  '@cabloy/word-utils': 2.1.14
15364
15422
  typestyle: 2.4.0
15365
15423
  vue: 3.5.39(typescript@5.9.3)
15366
- zova-core: 5.1.88(patch_hash=144450bd7a567a6067e5857c0cf4c780981b7e90bc48745c09e1696a9b6f1b97)(typescript@5.9.3)
15424
+ zova-core: 5.1.88(typescript@5.9.3)
15425
+ transitivePeerDependencies:
15426
+ - typescript
15427
+
15428
+ zova-jsx@1.1.89(typescript@5.9.3):
15429
+ dependencies:
15430
+ '@cabloy/compose': link:packages-utils/compose
15431
+ '@cabloy/utils': link:packages-utils/utils
15432
+ '@cabloy/word-utils': 2.1.14
15433
+ typestyle: 2.4.0
15434
+ vue: 3.5.39(typescript@5.9.3)
15435
+ zova-core: 5.1.89(patch_hash=144450bd7a567a6067e5857c0cf4c780981b7e90bc48745c09e1696a9b6f1b97)(typescript@5.9.3)
15367
15436
  transitivePeerDependencies:
15368
15437
  - typescript
15369
15438
 
@@ -15383,6 +15452,8 @@ snapshots:
15383
15452
 
15384
15453
  zova-module-a-command@5.1.34: {}
15385
15454
 
15455
+ zova-module-a-command@5.1.35: {}
15456
+
15386
15457
  zova-module-a-fetch@5.1.25:
15387
15458
  dependencies:
15388
15459
  axios: 1.18.1
@@ -15426,6 +15497,12 @@ snapshots:
15426
15497
  openapi3-ts: 4.6.0
15427
15498
  typestyle: 2.4.0
15428
15499
 
15500
+ zova-module-a-openapi@5.1.53:
15501
+ dependencies:
15502
+ '@cabloy/json-schema-to-zod': 2.6.5
15503
+ openapi3-ts: 4.6.0
15504
+ typestyle: 2.4.0
15505
+
15429
15506
  zova-module-a-pay@5.0.7: {}
15430
15507
 
15431
15508
  zova-module-a-router@5.1.34: {}
@@ -15460,6 +15537,13 @@ snapshots:
15460
15537
  transitivePeerDependencies:
15461
15538
  - vue
15462
15539
 
15540
+ zova-module-a-table@5.1.40(vue@3.5.39(typescript@5.9.3)):
15541
+ dependencies:
15542
+ '@tanstack/table-core': 8.21.3
15543
+ '@tanstack/vue-table': 8.21.3(vue@3.5.39(typescript@5.9.3))
15544
+ transitivePeerDependencies:
15545
+ - vue
15546
+
15463
15547
  zova-module-a-zod@5.1.37:
15464
15548
  dependencies:
15465
15549
  '@cabloy/zod-errors-custom': link:packages-utils/zod-errors-custom
@@ -15483,10 +15567,28 @@ snapshots:
15483
15567
  - typescript
15484
15568
  - vue
15485
15569
 
15570
+ zova-module-a-zova@5.1.104(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
15571
+ dependencies:
15572
+ '@cabloy/compose': link:packages-utils/compose
15573
+ '@cabloy/deps': link:packages-utils/deps
15574
+ '@cabloy/json5': link:packages-utils/json5
15575
+ '@cabloy/module-info': 2.0.3
15576
+ '@cabloy/utils': link:packages-utils/utils
15577
+ '@cabloy/vue-router': 4.4.16(vue@3.5.39(typescript@5.9.3))
15578
+ '@cabloy/word-utils': 2.1.14
15579
+ defu: 6.1.7
15580
+ luxon: 3.7.2
15581
+ zova-jsx: 1.1.89(typescript@5.9.3)
15582
+ transitivePeerDependencies:
15583
+ - typescript
15584
+ - vue
15585
+
15486
15586
  zova-module-pay-mock@5.0.5: {}
15487
15587
 
15488
15588
  zova-module-rest-resource@5.1.50: {}
15489
15589
 
15590
+ zova-module-rest-resource@5.1.51: {}
15591
+
15490
15592
  zova-suite-a-zova@5.1.155(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
15491
15593
  dependencies:
15492
15594
  zova-module-a-api: 5.1.22
@@ -15495,7 +15597,7 @@ snapshots:
15495
15597
  zova-module-a-behavior: 5.1.26
15496
15598
  zova-module-a-behaviors: 5.1.22
15497
15599
  zova-module-a-boundary: 5.1.22
15498
- zova-module-a-command: 5.1.34
15600
+ zova-module-a-command: 5.1.35
15499
15601
  zova-module-a-fetch: 5.1.25
15500
15602
  zova-module-a-form: 5.1.51(vue@3.5.39(typescript@5.9.3))
15501
15603
  zova-module-a-icon: 5.1.27
@@ -15503,7 +15605,7 @@ snapshots:
15503
15605
  zova-module-a-logger: 5.1.28
15504
15606
  zova-module-a-meta: 5.1.22
15505
15607
  zova-module-a-model: 5.1.36(vue@3.5.39(typescript@5.9.3))
15506
- zova-module-a-openapi: 5.1.52
15608
+ zova-module-a-openapi: 5.1.53
15507
15609
  zova-module-a-router: 5.1.34
15508
15610
  zova-module-a-routerstack: 5.1.27
15509
15611
  zova-module-a-routertabs: 5.1.34
@@ -15511,7 +15613,7 @@ snapshots:
15511
15613
  zova-module-a-ssrhmr: 5.1.23
15512
15614
  zova-module-a-ssrserver: 5.1.26
15513
15615
  zova-module-a-style: 5.1.35
15514
- zova-module-a-table: 5.1.39(vue@3.5.39(typescript@5.9.3))
15616
+ zova-module-a-table: 5.1.40(vue@3.5.39(typescript@5.9.3))
15515
15617
  zova-module-a-zod: 5.1.37
15516
15618
  zova-module-a-zova: 5.1.103(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
15517
15619
  transitivePeerDependencies:
@@ -15521,9 +15623,43 @@ snapshots:
15521
15623
  - typescript
15522
15624
  - vue
15523
15625
 
15626
+ zova-suite-a-zova@5.1.157(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
15627
+ dependencies:
15628
+ zova-module-a-api: 5.1.22
15629
+ zova-module-a-app: 5.1.26
15630
+ zova-module-a-bean: 5.1.33
15631
+ zova-module-a-behavior: 5.1.26
15632
+ zova-module-a-behaviors: 5.1.22
15633
+ zova-module-a-boundary: 5.1.22
15634
+ zova-module-a-command: 5.1.35
15635
+ zova-module-a-fetch: 5.1.25
15636
+ zova-module-a-form: 5.1.51(vue@3.5.39(typescript@5.9.3))
15637
+ zova-module-a-icon: 5.1.27
15638
+ zova-module-a-interceptor: 5.1.31
15639
+ zova-module-a-logger: 5.1.28
15640
+ zova-module-a-meta: 5.1.22
15641
+ zova-module-a-model: 5.1.36(vue@3.5.39(typescript@5.9.3))
15642
+ zova-module-a-openapi: 5.1.53
15643
+ zova-module-a-router: 5.1.34
15644
+ zova-module-a-routerstack: 5.1.27
15645
+ zova-module-a-routertabs: 5.1.34
15646
+ zova-module-a-ssr: 5.1.38
15647
+ zova-module-a-ssrhmr: 5.1.23
15648
+ zova-module-a-ssrserver: 5.1.26
15649
+ zova-module-a-style: 5.1.35
15650
+ zova-module-a-table: 5.1.40(vue@3.5.39(typescript@5.9.3))
15651
+ zova-module-a-zod: 5.1.37
15652
+ zova-module-a-zova: 5.1.104(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
15653
+ transitivePeerDependencies:
15654
+ - '@vue/composition-api'
15655
+ - debug
15656
+ - supports-color
15657
+ - typescript
15658
+ - vue
15659
+
15524
15660
  zova@5.1.156(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
15525
15661
  dependencies:
15526
- zova-core: 5.1.88(patch_hash=144450bd7a567a6067e5857c0cf4c780981b7e90bc48745c09e1696a9b6f1b97)(typescript@5.9.3)
15662
+ zova-core: 5.1.88(typescript@5.9.3)
15527
15663
  zova-suite-a-zova: 5.1.155(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
15528
15664
  transitivePeerDependencies:
15529
15665
  - '@vue/composition-api'
@@ -15532,6 +15668,17 @@ snapshots:
15532
15668
  - typescript
15533
15669
  - vue
15534
15670
 
15671
+ zova@5.1.158(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
15672
+ dependencies:
15673
+ zova-core: 5.1.89(patch_hash=144450bd7a567a6067e5857c0cf4c780981b7e90bc48745c09e1696a9b6f1b97)(typescript@5.9.3)
15674
+ zova-suite-a-zova: 5.1.157(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
15675
+ transitivePeerDependencies:
15676
+ - '@vue/composition-api'
15677
+ - debug
15678
+ - supports-color
15679
+ - typescript
15680
+ - vue
15681
+
15535
15682
  zwitch@1.0.5: {}
15536
15683
 
15537
15684
  zwitch@2.0.4: {}
@@ -53,4 +53,4 @@ allowBuilds:
53
53
  vue-demi: true
54
54
 
55
55
  patchedDependencies:
56
- zova-core@5.1.88: patches/zova-core@5.1.88.patch
56
+ zova-core@5.1.89: patches/zova-core@5.1.89.patch
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-jsx",
3
- "version": "1.1.88",
3
+ "version": "1.1.89",
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.88"
53
+ "zova-core": "^5.1.89"
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.157",
3
+ "version": "5.1.158",
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.88",
49
- "zova-suite-a-zova": "^5.1.156"
48
+ "zova-core": "^5.1.89",
49
+ "zova-suite-a-zova": "^5.1.157"
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.88",
3
+ "version": "5.1.89",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A vue3 framework with ioc",
6
6
  "keywords": [
@@ -14,28 +14,34 @@ declare module 'vue' {
14
14
  }
15
15
 
16
16
  export interface IComponentIntrinsicAttributes {
17
- class?: unknown;
18
- style?: unknown;
17
+ 'class'?: unknown;
18
+ 'style'?: unknown;
19
19
  // need not provide onClick/onXXX
20
20
  // onClick?: (e: MouseEvent) => void;
21
- nativeOnClick?: (e: MouseEvent) => void;
22
- nativeOnDblclick?: (e: MouseEvent) => void;
23
- nativeOnMouseenter?: (e: MouseEvent) => void;
24
- nativeOnMouseleave?: (e: MouseEvent) => void;
25
- nativeOnMouseover?: (e: MouseEvent) => void;
26
- nativeOnMouseout?: (e: MouseEvent) => void;
27
- nativeOnMousedown?: (e: MouseEvent) => void;
28
- nativeOnMouseup?: (e: MouseEvent) => void;
29
- nativeOnKeydown?: (e: KeyboardEvent) => void;
30
- nativeOnKeyup?: (e: KeyboardEvent) => void;
31
- nativeOnFocus?: (e: FocusEvent) => void;
32
- nativeOnBlur?: (e: FocusEvent) => void;
33
- nativeOnChange?: (e: Event) => void;
34
- nativeOnInput?: (e: Event) => void;
35
- nativeOnSubmit?: (e: Event) => void;
36
- nativeOnScroll?: (e: Event) => void;
37
- nativeOnWheel?: (e: WheelEvent) => void;
38
- nativeOnContextmenu?: (e: MouseEvent) => void;
21
+ 'nativeOnClick'?: (e: MouseEvent) => void;
22
+ 'nativeOnDblclick'?: (e: MouseEvent) => void;
23
+ 'nativeOnMouseenter'?: (e: MouseEvent) => void;
24
+ 'nativeOnMouseleave'?: (e: MouseEvent) => void;
25
+ 'nativeOnMouseover'?: (e: MouseEvent) => void;
26
+ 'nativeOnMouseout'?: (e: MouseEvent) => void;
27
+ 'nativeOnMousedown'?: (e: MouseEvent) => void;
28
+ 'nativeOnMouseup'?: (e: MouseEvent) => void;
29
+ 'nativeOnKeydown'?: (e: KeyboardEvent) => void;
30
+ 'nativeOnKeyup'?: (e: KeyboardEvent) => void;
31
+ 'nativeOnFocus'?: (e: FocusEvent) => void;
32
+ 'nativeOnBlur'?: (e: FocusEvent) => void;
33
+ 'nativeOnChange'?: (e: Event) => void;
34
+ 'nativeOnInput'?: (e: Event) => void;
35
+ 'nativeOnSubmit'?: (e: Event) => void;
36
+ 'nativeOnScroll'?: (e: Event) => void;
37
+ 'nativeOnWheel'?: (e: WheelEvent) => void;
38
+ 'nativeOnContextmenu'?: (e: MouseEvent) => void;
39
+ 'role'?: string;
40
+ 'title'?: string;
41
+ 'aria-atomic'?: boolean | 'true' | 'false';
42
+ 'aria-describedby'?: string;
43
+ 'aria-label'?: string;
44
+ 'aria-live'?: 'off' | 'assertive' | 'polite';
39
45
  }
40
46
 
41
47
  declare module 'vue/jsx-runtime' {
@@ -77,7 +77,7 @@ importers:
77
77
  version: 10.5.2(postcss@8.5.26)
78
78
  axios:
79
79
  specifier: ^1.18.1
80
- version: 1.18.1(supports-color@10.2.2)
80
+ version: 1.18.1
81
81
  compression:
82
82
  specifier: ^1.8.1
83
83
  version: 1.8.1
@@ -136,7 +136,7 @@ importers:
136
136
  specifier: workspace:^
137
137
  version: link:packages-zova/zova
138
138
  zova-jsx:
139
- specifier: ^1.1.88
139
+ specifier: ^1.1.89
140
140
  version: link:packages-utils/zova-jsx
141
141
  zova-module-a-api:
142
142
  specifier: workspace:^
@@ -363,7 +363,7 @@ importers:
363
363
  devDependencies:
364
364
  '@cabloy/cli':
365
365
  specifier: ^3.1.29
366
- version: 3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
366
+ version: 3.1.29(vue@3.5.38(typescript@5.9.3))
367
367
  '@cabloy/lint':
368
368
  specifier: ^5.1.32
369
369
  version: 5.1.32(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(oxfmt@0.62.0)(oxlint@1.77.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)))
@@ -438,7 +438,7 @@ importers:
438
438
  dependencies:
439
439
  '@cabloy/cli':
440
440
  specifier: ^3.1.29
441
- version: 3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
441
+ version: 3.1.29(vue@3.5.38(typescript@5.9.3))
442
442
  '@cabloy/process-helper':
443
443
  specifier: ^3.1.8
444
444
  version: 3.1.8
@@ -449,7 +449,7 @@ importers:
449
449
  specifier: ^7.6.2
450
450
  version: 7.8.5
451
451
  zova-cli-set-front:
452
- specifier: ^1.2.104
452
+ specifier: ^1.2.105
453
453
  version: link:../cli-set-front
454
454
  devDependencies:
455
455
  clean-package:
@@ -472,7 +472,7 @@ importers:
472
472
  version: 7.29.7(@babel/core@7.29.7)
473
473
  '@cabloy/cli':
474
474
  specifier: ^3.1.29
475
- version: 3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
475
+ version: 3.1.29(vue@3.5.38(typescript@5.9.3))
476
476
  '@cabloy/extend':
477
477
  specifier: ^3.2.8
478
478
  version: 3.2.8
@@ -726,7 +726,7 @@ importers:
726
726
  specifier: ^3.5.38
727
727
  version: 3.5.38(typescript@5.9.3)
728
728
  zova-core:
729
- specifier: ^5.1.88
729
+ specifier: ^5.1.89
730
730
  version: link:../../packages-zova/zova-core
731
731
  devDependencies:
732
732
  clean-package:
@@ -867,10 +867,10 @@ importers:
867
867
  packages-zova/zova:
868
868
  dependencies:
869
869
  zova-core:
870
- specifier: ^5.1.88
870
+ specifier: ^5.1.89
871
871
  version: link:../zova-core
872
872
  zova-suite-a-zova:
873
- specifier: ^5.1.155
873
+ specifier: ^5.1.157
874
874
  version: link:../../src/suite-vendor/a-zova
875
875
  devDependencies:
876
876
  clean-package:
@@ -977,7 +977,7 @@ importers:
977
977
  specifier: ^5.0.1
978
978
  version: link:modules/a-rbac
979
979
  zova-module-rest-resource:
980
- specifier: ^5.1.50
980
+ specifier: ^5.1.51
981
981
  version: link:modules/rest-resource
982
982
 
983
983
  src/suite-vendor/a-cabloy/modules/a-rbac:
@@ -1070,7 +1070,7 @@ importers:
1070
1070
  specifier: ^5.1.22
1071
1071
  version: link:modules/a-boundary
1072
1072
  zova-module-a-command:
1073
- specifier: ^5.1.34
1073
+ specifier: ^5.1.35
1074
1074
  version: link:modules/a-command
1075
1075
  zova-module-a-fetch:
1076
1076
  specifier: ^5.1.25
@@ -1094,7 +1094,7 @@ importers:
1094
1094
  specifier: ^5.1.36
1095
1095
  version: link:modules/a-model
1096
1096
  zova-module-a-openapi:
1097
- specifier: ^5.1.52
1097
+ specifier: ^5.1.53
1098
1098
  version: link:modules/a-openapi
1099
1099
  zova-module-a-router:
1100
1100
  specifier: ^5.1.34
@@ -1118,13 +1118,13 @@ importers:
1118
1118
  specifier: ^5.1.35
1119
1119
  version: link:modules/a-style
1120
1120
  zova-module-a-table:
1121
- specifier: ^5.1.39
1121
+ specifier: ^5.1.40
1122
1122
  version: link:modules/a-table
1123
1123
  zova-module-a-zod:
1124
1124
  specifier: ^5.1.37
1125
1125
  version: link:modules/a-zod
1126
1126
  zova-module-a-zova:
1127
- specifier: ^5.1.103
1127
+ specifier: ^5.1.104
1128
1128
  version: link:modules/a-zova
1129
1129
 
1130
1130
  src/suite-vendor/a-zova/modules/a-api:
@@ -1198,7 +1198,7 @@ importers:
1198
1198
  dependencies:
1199
1199
  axios:
1200
1200
  specifier: ^1.18.1
1201
- version: 1.18.1(supports-color@10.2.2)
1201
+ version: 1.18.1
1202
1202
  devDependencies:
1203
1203
  clean-package:
1204
1204
  specifier: ^2.2.0
@@ -1466,12 +1466,12 @@ importers:
1466
1466
  specifier: ^3.7.2
1467
1467
  version: 3.7.2
1468
1468
  zova-jsx:
1469
- specifier: ^1.1.88
1469
+ specifier: ^1.1.89
1470
1470
  version: link:../../../../../packages-utils/zova-jsx
1471
1471
  devDependencies:
1472
1472
  '@cabloy/cli':
1473
1473
  specifier: ^3.1.29
1474
- version: 3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
1474
+ version: 3.1.29(vue@3.5.38(typescript@5.9.3))
1475
1475
  '@types/luxon':
1476
1476
  specifier: ^3.7.1
1477
1477
  version: 3.7.2
@@ -8810,7 +8810,7 @@ snapshots:
8810
8810
 
8811
8811
  '@bufbuild/protobuf@2.12.1': {}
8812
8812
 
8813
- '@cabloy/cli@3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))':
8813
+ '@cabloy/cli@3.1.29(vue@3.5.38(typescript@5.9.3))':
8814
8814
  dependencies:
8815
8815
  '@babel/parser': 7.29.7
8816
8816
  '@cabloy/module-glob': 5.3.18
@@ -8819,7 +8819,7 @@ snapshots:
8819
8819
  '@cabloy/utils': 2.1.27
8820
8820
  '@cabloy/word-utils': link:packages-utils/word-utils
8821
8821
  '@npmcli/config': 10.11.0
8822
- '@zhennann/common-bin': 4.0.1(supports-color@10.2.2)
8822
+ '@zhennann/common-bin': 4.0.1
8823
8823
  '@zhennann/ejs': 3.0.1
8824
8824
  boxen: 4.2.0
8825
8825
  chalk: 3.0.0
@@ -11053,7 +11053,7 @@ snapshots:
11053
11053
 
11054
11054
  '@vue/shared@3.5.13': {}
11055
11055
 
11056
- '@zhennann/common-bin@4.0.1(supports-color@10.2.2)':
11056
+ '@zhennann/common-bin@4.0.1':
11057
11057
  dependencies:
11058
11058
  chalk: 4.1.2
11059
11059
  change-case: 4.1.2
@@ -11087,7 +11087,7 @@ snapshots:
11087
11087
 
11088
11088
  acorn@8.17.0: {}
11089
11089
 
11090
- agent-base@6.0.2(supports-color@10.2.2):
11090
+ agent-base@6.0.2:
11091
11091
  dependencies:
11092
11092
  debug: 4.4.3(supports-color@10.2.2)
11093
11093
  transitivePeerDependencies:
@@ -11199,11 +11199,11 @@ snapshots:
11199
11199
  dependencies:
11200
11200
  possible-typed-array-names: 1.1.0
11201
11201
 
11202
- axios@1.18.1(supports-color@10.2.2):
11202
+ axios@1.18.1:
11203
11203
  dependencies:
11204
11204
  follow-redirects: 1.16.0
11205
11205
  form-data: 4.0.6
11206
- https-proxy-agent: 5.0.1(supports-color@10.2.2)
11206
+ https-proxy-agent: 5.0.1
11207
11207
  proxy-from-env: 2.1.0
11208
11208
  transitivePeerDependencies:
11209
11209
  - debug
@@ -12616,9 +12616,9 @@ snapshots:
12616
12616
  statuses: 2.0.2
12617
12617
  toidentifier: 1.0.1
12618
12618
 
12619
- https-proxy-agent@5.0.1(supports-color@10.2.2):
12619
+ https-proxy-agent@5.0.1:
12620
12620
  dependencies:
12621
- agent-base: 6.0.2(supports-color@10.2.2)
12621
+ agent-base: 6.0.2
12622
12622
  debug: 4.4.3(supports-color@10.2.2)
12623
12623
  transitivePeerDependencies:
12624
12624
  - supports-color
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-module-a-zova",
3
- "version": "5.1.103",
3
+ "version": "5.1.104",
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.88"
46
+ "zova-jsx": "^1.1.89"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@cabloy/cli": "^3.1.29",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-suite-a-zova",
3
- "version": "5.1.156",
3
+ "version": "5.1.157",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "zova",
6
6
  "license": "MIT",
@@ -32,7 +32,7 @@
32
32
  "zova-module-a-style": "^5.1.35",
33
33
  "zova-module-a-table": "^5.1.40",
34
34
  "zova-module-a-zod": "^5.1.37",
35
- "zova-module-a-zova": "^5.1.103"
35
+ "zova-module-a-zova": "^5.1.104"
36
36
  },
37
37
  "title": "a-zova"
38
38
  }