cabloy 5.1.66 → 5.1.67

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.
Files changed (209) hide show
  1. package/.claude/skills/cabloy-resource-field-update/SKILL.md +6 -0
  2. package/CHANGELOG.md +11 -0
  3. package/package.json +1 -1
  4. package/vona/packages-cli/cli/package.json +1 -1
  5. package/vona/packages-cli/cli-set-api/cli/templates/create/module/boilerplate/_package.json +1 -1
  6. package/vona/packages-cli/cli-set-api/package.json +2 -2
  7. package/vona/packages-vona/vona/package.json +1 -1
  8. package/vona/pnpm-lock.yaml +15 -0
  9. package/vona/src/suite/a-demo/modules/demo-basic/package.json +1 -1
  10. package/vona/src/suite/a-home/modules/home-base/package.json +1 -1
  11. package/vona/src/suite/a-home/modules/home-index/package.json +1 -1
  12. package/vona/src/suite/a-home/modules/home-user/package.json +1 -1
  13. package/vona/src/suite/a-training/modules/training-record/package.json +1 -1
  14. package/vona/src/suite/a-training/modules/training-record/src/.metadata/index.ts +232 -3
  15. package/vona/src/suite/a-training/modules/training-record/src/bean/ssrMenu.record.ts +29 -0
  16. package/vona/src/suite/a-training/modules/training-record/src/config/locale/en-us.ts +9 -1
  17. package/vona/src/suite/a-training/modules/training-record/src/config/locale/zh-cn.ts +9 -1
  18. package/vona/src/suite/a-training/modules/training-record/src/controller/record.ts +59 -0
  19. package/vona/src/suite/a-training/modules/training-record/src/dto/detailRecordSubjectBase.tsx +18 -0
  20. package/vona/src/suite/a-training/modules/training-record/src/dto/detailRecordSubjectMutate.tsx +17 -0
  21. package/vona/src/suite/a-training/modules/training-record/src/dto/detailRecordSubjectResItem.tsx +60 -0
  22. package/vona/src/suite/a-training/modules/training-record/src/dto/detailRecordSubjectView.tsx +17 -0
  23. package/vona/src/suite/a-training/modules/training-record/src/dto/recordCreate.tsx +45 -0
  24. package/vona/src/suite/a-training/modules/training-record/src/dto/recordSelectReq.tsx +38 -0
  25. package/vona/src/suite/a-training/modules/training-record/src/dto/recordSelectRes.tsx +11 -0
  26. package/vona/src/suite/a-training/modules/training-record/src/dto/recordSelectResItem.tsx +39 -0
  27. package/vona/src/suite/a-training/modules/training-record/src/dto/recordUpdate.tsx +45 -0
  28. package/vona/src/suite/a-training/modules/training-record/src/dto/recordView.tsx +42 -0
  29. package/vona/src/suite/a-training/modules/training-record/src/entity/record.tsx +23 -6
  30. package/vona/src/suite/a-training/modules/training-record/src/model/record.ts +15 -2
  31. package/vona/src/suite/a-training/modules/training-record/src/service/record.ts +50 -0
  32. package/vona/src/suite/a-training/modules/training-record/test/record.test.ts +138 -0
  33. package/vona/src/suite/a-training/modules/training-recordsubject/package.json +53 -0
  34. package/vona/src/suite/a-training/modules/training-recordsubject/src/.metadata/index.ts +198 -0
  35. package/vona/src/suite/a-training/modules/training-recordsubject/src/.metadata/locales.ts +18 -0
  36. package/vona/src/suite/a-training/modules/training-recordsubject/src/.metadata/this.ts +2 -0
  37. package/vona/src/suite/a-training/modules/training-recordsubject/src/bean/meta.index.ts +12 -0
  38. package/vona/src/suite/a-training/modules/training-recordsubject/src/bean/meta.version.ts +21 -0
  39. package/vona/src/suite/a-training/modules/training-recordsubject/src/config/locale/en-us.ts +9 -0
  40. package/vona/src/suite/a-training/modules/training-recordsubject/src/config/locale/zh-cn.ts +9 -0
  41. package/vona/src/suite/a-training/modules/training-recordsubject/src/entity/subject.tsx +42 -0
  42. package/vona/src/suite/a-training/modules/training-recordsubject/src/index.ts +2 -0
  43. package/vona/src/suite/a-training/modules/training-recordsubject/src/model/subject.ts +10 -0
  44. package/vona/src/suite/a-training/modules/training-recordsubject/tsconfig.build.json +11 -0
  45. package/vona/src/suite/a-training/modules/training-recordsubject/tsconfig.json +7 -0
  46. package/vona/src/suite/a-training/modules/training-student/package.json +1 -1
  47. package/vona/src/suite/a-training/modules/training-student/src/config/locale/en-us.ts +8 -4
  48. package/vona/src/suite/a-training/modules/training-student/src/config/locale/zh-cn.ts +8 -4
  49. package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordBase.tsx +10 -1
  50. package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordMutate.tsx +11 -2
  51. package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordResItem.tsx +1 -0
  52. package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordView.tsx +11 -2
  53. package/vona/src/suite/a-training/modules/training-student/src/entity/student.tsx +2 -0
  54. package/vona/src/suite/a-training/modules/training-student/src/service/student.ts +17 -5
  55. package/vona/src/suite/a-training/modules/training-student/test/student.test.ts +69 -15
  56. package/vona/src/suite/a-training/package.json +1 -0
  57. package/vona/src/suite/a-training/tsconfig.json +3 -0
  58. package/vona/src/suite/cabloy-basic/modules/basic-siteadmin/package.json +1 -1
  59. package/vona/src/suite/cabloy-basic/modules/basic-siteweb/package.json +1 -1
  60. package/vona/src/suite-vendor/a-auth/modules/a-auth/package.json +2 -2
  61. package/vona/src/suite-vendor/a-auth/modules/auth-oauth/package.json +2 -2
  62. package/vona/src/suite-vendor/a-auth/modules/auth-simple/package.json +2 -2
  63. package/vona/src/suite-vendor/a-auth/package.json +2 -2
  64. package/vona/src/suite-vendor/a-cabloy/modules/a-cabloy/package.json +2 -2
  65. package/vona/src/suite-vendor/a-cabloy/modules/a-datasharding/package.json +2 -2
  66. package/vona/src/suite-vendor/a-cabloy/modules/a-datasource/package.json +2 -2
  67. package/vona/src/suite-vendor/a-cabloy/modules/a-socket/package.json +2 -2
  68. package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/package.json +2 -2
  69. package/vona/src/suite-vendor/a-cabloy/modules/a-ssrhmr/package.json +2 -2
  70. package/vona/src/suite-vendor/a-cabloy/modules/a-status/package.json +2 -2
  71. package/vona/src/suite-vendor/a-cabloy/package.json +1 -1
  72. package/vona/src/suite-vendor/a-captcha/modules/a-captcha/package.json +2 -2
  73. package/vona/src/suite-vendor/a-captcha/modules/captcha-simple/package.json +2 -2
  74. package/vona/src/suite-vendor/a-captcha/package.json +1 -1
  75. package/vona/src/suite-vendor/a-paypal/modules/a-paypal/package.json +2 -2
  76. package/vona/src/suite-vendor/a-paypal/package.json +1 -1
  77. package/vona/src/suite-vendor/a-vona/modules/a-aspect/package.json +2 -2
  78. package/vona/src/suite-vendor/a-vona/modules/a-aspectutils/package.json +2 -2
  79. package/vona/src/suite-vendor/a-vona/modules/a-bean/package.json +2 -2
  80. package/vona/src/suite-vendor/a-vona/modules/a-beanmutate/package.json +2 -2
  81. package/vona/src/suite-vendor/a-vona/modules/a-body/package.json +2 -2
  82. package/vona/src/suite-vendor/a-vona/modules/a-broadcast/package.json +2 -2
  83. package/vona/src/suite-vendor/a-vona/modules/a-cache/package.json +2 -2
  84. package/vona/src/suite-vendor/a-vona/modules/a-caching/package.json +2 -2
  85. package/vona/src/suite-vendor/a-vona/modules/a-core/package.json +2 -2
  86. package/vona/src/suite-vendor/a-vona/modules/a-election/package.json +2 -2
  87. package/vona/src/suite-vendor/a-vona/modules/a-error/package.json +2 -2
  88. package/vona/src/suite-vendor/a-vona/modules/a-event/package.json +2 -2
  89. package/vona/src/suite-vendor/a-vona/modules/a-executor/package.json +2 -2
  90. package/vona/src/suite-vendor/a-vona/modules/a-hmr/package.json +2 -2
  91. package/vona/src/suite-vendor/a-vona/modules/a-hmrbase/package.json +2 -2
  92. package/vona/src/suite-vendor/a-vona/modules/a-index/package.json +2 -2
  93. package/vona/src/suite-vendor/a-vona/modules/a-instance/package.json +2 -2
  94. package/vona/src/suite-vendor/a-vona/modules/a-jwt/package.json +2 -2
  95. package/vona/src/suite-vendor/a-vona/modules/a-locale/package.json +2 -2
  96. package/vona/src/suite-vendor/a-vona/modules/a-logger/package.json +2 -2
  97. package/vona/src/suite-vendor/a-vona/modules/a-mail/package.json +2 -2
  98. package/vona/src/suite-vendor/a-vona/modules/a-mailconfirm/package.json +2 -2
  99. package/vona/src/suite-vendor/a-vona/modules/a-menu/package.json +2 -2
  100. package/vona/src/suite-vendor/a-vona/modules/a-meta/package.json +2 -2
  101. package/vona/src/suite-vendor/a-vona/modules/a-onion/package.json +2 -2
  102. package/vona/src/suite-vendor/a-vona/modules/a-openapi/package.json +2 -2
  103. package/vona/src/suite-vendor/a-vona/modules/a-openapischema/package.json +2 -2
  104. package/vona/src/suite-vendor/a-vona/modules/a-openapiutils/package.json +2 -2
  105. package/vona/src/suite-vendor/a-vona/modules/a-orm/package.json +2 -2
  106. package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoGet.ts +4 -0
  107. package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoMutate.ts +5 -3
  108. package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/utils.ts +1 -1
  109. package/vona/src/suite-vendor/a-vona/modules/a-orm/src/service/relations_.ts +5 -0
  110. package/vona/src/suite-vendor/a-vona/modules/a-ormdialect/package.json +2 -2
  111. package/vona/src/suite-vendor/a-vona/modules/a-ormutils/package.json +2 -2
  112. package/vona/src/suite-vendor/a-vona/modules/a-permission/package.json +2 -2
  113. package/vona/src/suite-vendor/a-vona/modules/a-play/package.json +2 -2
  114. package/vona/src/suite-vendor/a-vona/modules/a-printtip/package.json +2 -2
  115. package/vona/src/suite-vendor/a-vona/modules/a-queue/package.json +2 -2
  116. package/vona/src/suite-vendor/a-vona/modules/a-redis/package.json +2 -2
  117. package/vona/src/suite-vendor/a-vona/modules/a-redlock/package.json +2 -2
  118. package/vona/src/suite-vendor/a-vona/modules/a-runtime/package.json +2 -2
  119. package/vona/src/suite-vendor/a-vona/modules/a-schedule/package.json +2 -2
  120. package/vona/src/suite-vendor/a-vona/modules/a-security/package.json +2 -2
  121. package/vona/src/suite-vendor/a-vona/modules/a-serialization/package.json +2 -2
  122. package/vona/src/suite-vendor/a-vona/modules/a-startup/package.json +2 -2
  123. package/vona/src/suite-vendor/a-vona/modules/a-static/package.json +2 -2
  124. package/vona/src/suite-vendor/a-vona/modules/a-summer/package.json +2 -2
  125. package/vona/src/suite-vendor/a-vona/modules/a-swagger/package.json +2 -2
  126. package/vona/src/suite-vendor/a-vona/modules/a-upload/package.json +2 -2
  127. package/vona/src/suite-vendor/a-vona/modules/a-user/package.json +2 -2
  128. package/vona/src/suite-vendor/a-vona/modules/a-validation/package.json +2 -2
  129. package/vona/src/suite-vendor/a-vona/modules/a-version/package.json +2 -2
  130. package/vona/src/suite-vendor/a-vona/modules/a-vona/package.json +2 -2
  131. package/vona/src/suite-vendor/a-vona/modules/a-web/package.json +2 -2
  132. package/vona/src/suite-vendor/a-vona/modules/a-worker/package.json +2 -2
  133. package/vona/src/suite-vendor/a-vona/modules/a-zod/package.json +2 -2
  134. package/vona/src/suite-vendor/a-vona/package.json +1 -1
  135. package/zova/packages-cli/cli/package.json +2 -2
  136. package/zova/packages-cli/cli-set-front/cli/templates/create/module/boilerplate/_package.json +1 -1
  137. package/zova/packages-cli/cli-set-front/package.json +2 -2
  138. package/zova/packages-zova/zova/package.json +2 -2
  139. package/zova/pnpm-lock.yaml +144 -100
  140. package/zova/src/suite/a-demo/modules/demo-basic/package.json +1 -1
  141. package/zova/src/suite/a-demo/modules/demo-todo/package.json +1 -1
  142. package/zova/src/suite/a-devui/modules/devui-adapter/package.json +1 -1
  143. package/zova/src/suite/a-home/modules/home-api/package.json +1 -1
  144. package/zova/src/suite/a-home/modules/home-base/package.json +1 -1
  145. package/zova/src/suite/a-home/modules/home-icon/package.json +1 -1
  146. package/zova/src/suite/a-home/modules/home-indexadmin/package.json +1 -1
  147. package/zova/src/suite/a-home/modules/home-indexweb/package.json +1 -1
  148. package/zova/src/suite/a-home/modules/home-layoutadmin/package.json +1 -1
  149. package/zova/src/suite/a-home/modules/home-layoutempty/package.json +1 -1
  150. package/zova/src/suite/a-home/modules/home-layoutweb/package.json +1 -1
  151. package/zova/src/suite/a-home/modules/home-login/package.json +1 -1
  152. package/zova/src/suite/a-home/modules/home-passport/package.json +1 -1
  153. package/zova/src/suite/a-home/modules/home-theme/package.json +1 -1
  154. package/zova/src/suite/a-training/modules/training-student/package.json +1 -1
  155. package/zova/src/suite/cabloy-basic/modules/basic-adapter/package.json +1 -1
  156. package/zova/src/suite/cabloy-basic/modules/basic-app/package.json +1 -1
  157. package/zova/src/suite/cabloy-basic/modules/basic-captcha/package.json +1 -1
  158. package/zova/src/suite/cabloy-basic/modules/basic-commands/package.json +1 -1
  159. package/zova/src/suite/cabloy-basic/modules/basic-commandssync/package.json +1 -1
  160. package/zova/src/suite/cabloy-basic/modules/basic-currency/package.json +1 -1
  161. package/zova/src/suite/cabloy-basic/modules/basic-date/package.json +1 -1
  162. package/zova/src/suite/cabloy-basic/modules/basic-details/package.json +1 -1
  163. package/zova/src/suite/cabloy-basic/modules/basic-form/package.json +1 -1
  164. package/zova/src/suite/cabloy-basic/modules/basic-input/package.json +1 -1
  165. package/zova/src/suite/cabloy-basic/modules/basic-page/package.json +1 -1
  166. package/zova/src/suite/cabloy-basic/modules/basic-pageentry/package.json +1 -1
  167. package/zova/src/suite/cabloy-basic/modules/basic-resource/package.json +52 -0
  168. package/zova/src/suite/cabloy-basic/modules/basic-resource/src/.metadata/component/formFieldResourcePicker.ts +31 -0
  169. package/zova/src/suite/cabloy-basic/modules/basic-resource/src/.metadata/index.ts +103 -0
  170. package/zova/src/suite/cabloy-basic/modules/basic-resource/src/.metadata/this.ts +2 -0
  171. package/zova/src/suite/cabloy-basic/modules/basic-resource/src/bean/tableCell.resourcePicker.tsx +46 -0
  172. package/zova/src/suite/cabloy-basic/modules/basic-resource/src/component/formFieldResourcePicker/controller.tsx +157 -0
  173. package/zova/src/suite/cabloy-basic/modules/basic-resource/src/index.ts +1 -0
  174. package/zova/src/suite/cabloy-basic/modules/basic-resource/tsconfig.build.json +13 -0
  175. package/zova/src/suite/cabloy-basic/modules/basic-resource/tsconfig.json +5 -0
  176. package/zova/src/suite/cabloy-basic/modules/basic-select/package.json +1 -1
  177. package/zova/src/suite/cabloy-basic/modules/basic-table/package.json +1 -1
  178. package/zova/src/suite/cabloy-basic/modules/basic-text/package.json +1 -1
  179. package/zova/src/suite/cabloy-basic/package.json +1 -0
  180. package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/package.json +2 -2
  181. package/zova/src/suite-vendor/a-cabloy/package.json +2 -2
  182. package/zova/src/suite-vendor/a-zova/modules/a-api/package.json +2 -2
  183. package/zova/src/suite-vendor/a-zova/modules/a-app/package.json +2 -2
  184. package/zova/src/suite-vendor/a-zova/modules/a-bean/package.json +2 -2
  185. package/zova/src/suite-vendor/a-zova/modules/a-behavior/package.json +2 -2
  186. package/zova/src/suite-vendor/a-zova/modules/a-behaviors/package.json +2 -2
  187. package/zova/src/suite-vendor/a-zova/modules/a-boundary/package.json +2 -2
  188. package/zova/src/suite-vendor/a-zova/modules/a-command/package.json +2 -2
  189. package/zova/src/suite-vendor/a-zova/modules/a-fetch/package.json +2 -2
  190. package/zova/src/suite-vendor/a-zova/modules/a-form/package.json +2 -2
  191. package/zova/src/suite-vendor/a-zova/modules/a-icon/package.json +2 -2
  192. package/zova/src/suite-vendor/a-zova/modules/a-interceptor/package.json +2 -2
  193. package/zova/src/suite-vendor/a-zova/modules/a-logger/package.json +2 -2
  194. package/zova/src/suite-vendor/a-zova/modules/a-meta/package.json +2 -2
  195. package/zova/src/suite-vendor/a-zova/modules/a-model/package.json +2 -2
  196. package/zova/src/suite-vendor/a-zova/modules/a-model/src/bean/bean.model/bean.model.useQuery.ts +2 -1
  197. package/zova/src/suite-vendor/a-zova/modules/a-openapi/package.json +2 -2
  198. package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/model/sdk.ts +4 -0
  199. package/zova/src/suite-vendor/a-zova/modules/a-router/package.json +2 -2
  200. package/zova/src/suite-vendor/a-zova/modules/a-routerstack/package.json +2 -2
  201. package/zova/src/suite-vendor/a-zova/modules/a-routertabs/package.json +2 -2
  202. package/zova/src/suite-vendor/a-zova/modules/a-ssr/package.json +2 -2
  203. package/zova/src/suite-vendor/a-zova/modules/a-ssrhmr/package.json +2 -2
  204. package/zova/src/suite-vendor/a-zova/modules/a-ssrserver/package.json +2 -2
  205. package/zova/src/suite-vendor/a-zova/modules/a-style/package.json +2 -2
  206. package/zova/src/suite-vendor/a-zova/modules/a-table/package.json +2 -2
  207. package/zova/src/suite-vendor/a-zova/modules/a-zod/package.json +2 -2
  208. package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +2 -2
  209. package/zova/src/suite-vendor/a-zova/package.json +26 -26
@@ -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
@@ -95,7 +95,7 @@ importers:
95
95
  version: 6.1.7
96
96
  express:
97
97
  specifier: ^5.2.1
98
- version: 5.2.1
98
+ version: 5.2.1(supports-color@10.2.2)
99
99
  luxon:
100
100
  specifier: ^3.7.2
101
101
  version: 3.7.2
@@ -246,6 +246,9 @@ importers:
246
246
  zova-module-basic-pageentry:
247
247
  specifier: workspace:^
248
248
  version: link:src/suite/cabloy-basic/modules/basic-pageentry
249
+ zova-module-basic-resource:
250
+ specifier: workspace:^
251
+ version: link:src/suite/cabloy-basic/modules/basic-resource
249
252
  zova-module-basic-select:
250
253
  specifier: workspace:^
251
254
  version: link:src/suite/cabloy-basic/modules/basic-select
@@ -305,11 +308,11 @@ importers:
305
308
  version: link:src/suite/a-training/modules/training-student
306
309
  devDependencies:
307
310
  '@cabloy/cli':
308
- specifier: ^3.1.21
309
- version: 3.1.21(vue@3.5.38(typescript@5.9.3))
311
+ specifier: ^3.1.23
312
+ version: 3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
310
313
  '@cabloy/lint':
311
314
  specifier: ^5.1.27
312
- 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)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
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)))
313
316
  '@cabloy/openapi-typescript':
314
317
  specifier: ^7.9.2
315
318
  version: 7.9.2(typescript@5.9.3)
@@ -345,7 +348,7 @@ importers:
345
348
  version: 1.101.0
346
349
  textlint:
347
350
  specifier: ^15.7.0
348
- version: 15.7.1
351
+ version: 15.7.1(supports-color@10.2.2)
349
352
  textlint-rule-en-no-mixed-period:
350
353
  specifier: ^3.0.2
351
354
  version: 3.0.2
@@ -380,8 +383,8 @@ importers:
380
383
  packages-cli/cli:
381
384
  dependencies:
382
385
  '@cabloy/cli':
383
- specifier: ^3.1.21
384
- version: 3.1.21(vue@3.5.38(typescript@5.9.3))
386
+ specifier: ^3.1.23
387
+ version: 3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
385
388
  '@cabloy/process-helper':
386
389
  specifier: ^3.1.8
387
390
  version: 3.1.8
@@ -392,7 +395,7 @@ importers:
392
395
  specifier: ^7.6.2
393
396
  version: 7.8.5
394
397
  zova-cli-set-front:
395
- specifier: ^1.2.82
398
+ specifier: ^1.2.84
396
399
  version: link:../cli-set-front
397
400
  devDependencies:
398
401
  clean-package:
@@ -414,8 +417,8 @@ importers:
414
417
  specifier: ^7.28.6
415
418
  version: 7.29.7(@babel/core@7.29.7)
416
419
  '@cabloy/cli':
417
- specifier: ^3.1.21
418
- version: 3.1.21(vue@3.5.38(typescript@5.9.3))
420
+ specifier: ^3.1.23
421
+ version: 3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
419
422
  '@cabloy/extend':
420
423
  specifier: ^3.2.8
421
424
  version: 3.2.8
@@ -729,7 +732,7 @@ importers:
729
732
  version: 3.5.16
730
733
  '@cabloy/vue-router':
731
734
  specifier: ^4.4.16
732
- version: 4.4.16(vue@3.5.38(typescript@5.9.3))
735
+ version: 4.4.16(vue@3.5.13(typescript@5.9.3))
733
736
  '@cabloy/vue-runtime-core':
734
737
  specifier: ^3.5.57
735
738
  version: 3.5.57
@@ -738,7 +741,7 @@ importers:
738
741
  version: 3.5.13
739
742
  '@cabloy/vue-server-renderer':
740
743
  specifier: ^3.5.18
741
- version: 3.5.18(vue@3.5.38(typescript@5.9.3))
744
+ version: 3.5.18(vue@3.5.13(typescript@5.9.3))
742
745
  '@faker-js/faker':
743
746
  specifier: ^8.4.1
744
747
  version: 8.4.1
@@ -747,7 +750,7 @@ importers:
747
750
  version: 22.20.0
748
751
  '@vitejs/plugin-vue-jsx':
749
752
  specifier: ^5.1.5
750
- version: 5.1.6(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))
753
+ version: 5.1.6(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.13(typescript@5.9.3))
751
754
  babel-plugin-transform-typescript-metadata:
752
755
  specifier: ^0.4.0
753
756
  version: 0.4.0(@babel/core@7.29.7)
@@ -813,7 +816,7 @@ importers:
813
816
  specifier: ^5.1.57
814
817
  version: link:../zova-core
815
818
  zova-suite-a-zova:
816
- specifier: ^5.1.107
819
+ specifier: ^5.1.109
817
820
  version: link:../../src/suite-vendor/a-zova
818
821
  devDependencies:
819
822
  clean-package:
@@ -998,7 +1001,7 @@ importers:
998
1001
  specifier: ^5.1.30
999
1002
  version: link:modules/a-zod
1000
1003
  zova-module-a-zova:
1001
- specifier: ^5.1.72
1004
+ specifier: ^5.1.74
1002
1005
  version: link:modules/a-zova
1003
1006
 
1004
1007
  src/suite-vendor/a-zova/modules/a-api:
@@ -1072,7 +1075,7 @@ importers:
1072
1075
  dependencies:
1073
1076
  axios:
1074
1077
  specifier: ^1.16.1
1075
- version: 1.18.1
1078
+ version: 1.18.1(supports-color@10.2.2)
1076
1079
  devDependencies:
1077
1080
  clean-package:
1078
1081
  specifier: ^2.2.0
@@ -1341,8 +1344,8 @@ importers:
1341
1344
  version: link:../../../../../packages-utils/zova-jsx
1342
1345
  devDependencies:
1343
1346
  '@cabloy/cli':
1344
- specifier: ^3.1.21
1345
- version: 3.1.21(vue@3.5.38(typescript@5.9.3))
1347
+ specifier: ^3.1.23
1348
+ version: 3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
1346
1349
  '@types/luxon':
1347
1350
  specifier: ^3.7.1
1348
1351
  version: 3.7.2
@@ -1589,6 +1592,9 @@ importers:
1589
1592
  zova-module-basic-pageentry:
1590
1593
  specifier: ^5.0.7
1591
1594
  version: link:modules/basic-pageentry
1595
+ zova-module-basic-resource:
1596
+ specifier: ^5.0.0
1597
+ version: link:modules/basic-resource
1592
1598
  zova-module-basic-select:
1593
1599
  specifier: ^5.0.4
1594
1600
  version: link:modules/basic-select
@@ -1714,6 +1720,15 @@ importers:
1714
1720
  specifier: ^6.1.3
1715
1721
  version: 6.1.3
1716
1722
 
1723
+ src/suite/cabloy-basic/modules/basic-resource:
1724
+ devDependencies:
1725
+ clean-package:
1726
+ specifier: ^2.2.0
1727
+ version: 2.2.0
1728
+ rimraf:
1729
+ specifier: ^6.1.3
1730
+ version: 6.1.3
1731
+
1717
1732
  src/suite/cabloy-basic/modules/basic-select:
1718
1733
  devDependencies:
1719
1734
  clean-package:
@@ -1946,8 +1961,8 @@ packages:
1946
1961
  '@bufbuild/protobuf@2.12.1':
1947
1962
  resolution: {integrity: sha512-BvAMfS6LrgZiryOAZ4pBYucu4wG/Ei/9o9DZ9akbREnMLbPJiom2i8b9C8IsKErQoiKqVhrerzt3kOT/RrzLHg==}
1948
1963
 
1949
- '@cabloy/cli@3.1.21':
1950
- resolution: {integrity: sha512-FkNtRya9aoaM/OwiU+y6/4J7hEqsmbdS2XYGKqYf7LPR5rkvNDYpsHcxnS+01Y1TETNyn19R7vYx7GW6pl3l3Q==}
1964
+ '@cabloy/cli@3.1.23':
1965
+ resolution: {integrity: sha512-pCjalyjMHFwhaHtrfxcdE2FoJJDgnIhhI0MZgkv/DBDQpRvUGG3TILGurSgL4mRDqpyb1QXHtHJ1F1D9oW8qlw==}
1951
1966
 
1952
1967
  '@cabloy/compose@2.1.8':
1953
1968
  resolution: {integrity: sha512-TdEr9BY54BYoIlTjkrOKkzK8yJWmP07OrRTh4punJMnWzM+oDExQ2EGCGAHXnEHjLWqdhyMGm/ejmxnVgBmraQ==}
@@ -7757,6 +7772,14 @@ packages:
7757
7772
  peerDependencies:
7758
7773
  vue: ^2.0.0||^3.0.0
7759
7774
 
7775
+ vue@3.5.13:
7776
+ resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
7777
+ peerDependencies:
7778
+ typescript: '*'
7779
+ peerDependenciesMeta:
7780
+ typescript:
7781
+ optional: true
7782
+
7760
7783
  vue@3.5.38:
7761
7784
  resolution: {integrity: sha512-vAMKHfImQlYSy0C+PBue4s3ERZ2xGKfgZg5GXAsLInq1dyh2H78ILVP5sK0KPFPVW4kv+OGCIvBEondcjpZp7A==}
7762
7785
  peerDependencies:
@@ -8166,7 +8189,7 @@ snapshots:
8166
8189
 
8167
8190
  '@bufbuild/protobuf@2.12.1': {}
8168
8191
 
8169
- '@cabloy/cli@3.1.21(vue@3.5.38(typescript@5.9.3))':
8192
+ '@cabloy/cli@3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))':
8170
8193
  dependencies:
8171
8194
  '@babel/parser': 7.29.7
8172
8195
  '@cabloy/module-glob': 5.3.13
@@ -8175,7 +8198,7 @@ snapshots:
8175
8198
  '@cabloy/utils': 2.1.22
8176
8199
  '@cabloy/word-utils': link:packages-utils/word-utils
8177
8200
  '@npmcli/config': 10.11.0
8178
- '@zhennann/common-bin': 4.0.1
8201
+ '@zhennann/common-bin': 4.0.1(supports-color@10.2.2)
8179
8202
  '@zhennann/ejs': 3.0.1
8180
8203
  boxen: 4.2.0
8181
8204
  chalk: 3.0.0
@@ -8213,20 +8236,20 @@ snapshots:
8213
8236
  dependencies:
8214
8237
  json5: 2.2.3
8215
8238
 
8216
- '@cabloy/lint@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)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))':
8239
+ '@cabloy/lint@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)))':
8217
8240
  dependencies:
8218
8241
  '@e18e/eslint-plugin': 0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.71.0)
8219
8242
  '@eslint/json': 1.2.0
8220
- '@eslint/markdown': 7.5.1
8243
+ '@eslint/markdown': 7.5.1(supports-color@10.2.2)
8221
8244
  '@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
8222
- '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
8245
+ '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
8223
8246
  eslint-plugin-antfu: 3.2.3(eslint@10.5.0(jiti@2.7.0))
8224
8247
  eslint-plugin-command: 3.5.2(@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))
8225
8248
  eslint-plugin-eslint-comments: 3.2.0(eslint@10.5.0(jiti@2.7.0))
8226
8249
  eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0))
8227
8250
  eslint-plugin-pnpm: 1.6.1(eslint@10.5.0(jiti@2.7.0))
8228
8251
  eslint-plugin-regexp: 3.1.0(eslint@10.5.0(jiti@2.7.0))
8229
- eslint-plugin-toml: 1.4.0(eslint@10.5.0(jiti@2.7.0))
8252
+ eslint-plugin-toml: 1.4.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)
8230
8253
  eslint-plugin-unused-imports: 4.4.1(@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))(eslint@10.5.0(jiti@2.7.0))
8231
8254
  eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.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))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
8232
8255
  eslint-plugin-yml: 3.5.0(eslint@10.5.0(jiti@2.7.0))
@@ -8291,7 +8314,7 @@ snapshots:
8291
8314
  dotenv-expand: 12.0.3
8292
8315
  elementtree: 0.1.7
8293
8316
  esbuild: 0.27.7
8294
- express: 5.2.1
8317
+ express: 5.2.1(supports-color@10.2.2)
8295
8318
  fs-extra: 11.3.5
8296
8319
  html-minifier-terser: 7.2.0
8297
8320
  inquirer: 13.4.3(@types/node@22.20.0)
@@ -8394,6 +8417,11 @@ snapshots:
8394
8417
  dependencies:
8395
8418
  '@vue/shared': 3.5.13
8396
8419
 
8420
+ '@cabloy/vue-router@4.4.16(vue@3.5.13(typescript@5.9.3))':
8421
+ dependencies:
8422
+ '@vue/devtools-api': 6.6.4
8423
+ vue: 3.5.13(typescript@5.9.3)
8424
+
8397
8425
  '@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3))':
8398
8426
  dependencies:
8399
8427
  '@vue/devtools-api': 6.6.4
@@ -8411,6 +8439,12 @@ snapshots:
8411
8439
  '@vue/shared': 3.5.13
8412
8440
  csstype: 3.2.3
8413
8441
 
8442
+ '@cabloy/vue-server-renderer@3.5.18(vue@3.5.13(typescript@5.9.3))':
8443
+ dependencies:
8444
+ '@vue/compiler-ssr': 3.5.13
8445
+ '@vue/shared': 3.5.13
8446
+ vue: 3.5.13(typescript@5.9.3)
8447
+
8414
8448
  '@cabloy/vue-server-renderer@3.5.18(vue@3.5.38(typescript@5.9.3))':
8415
8449
  dependencies:
8416
8450
  '@vue/compiler-ssr': 3.5.13
@@ -8909,12 +8943,12 @@ snapshots:
8909
8943
  '@humanwhocodes/momoa': 3.3.10
8910
8944
  natural-compare: 1.4.0
8911
8945
 
8912
- '@eslint/markdown@7.5.1':
8946
+ '@eslint/markdown@7.5.1(supports-color@10.2.2)':
8913
8947
  dependencies:
8914
8948
  '@eslint/core': 0.17.0
8915
8949
  '@eslint/plugin-kit': 0.4.1
8916
8950
  github-slugger: 2.0.0
8917
- mdast-util-from-markdown: 2.0.3
8951
+ mdast-util-from-markdown: 2.0.3(supports-color@10.2.2)
8918
8952
  mdast-util-frontmatter: 2.0.1
8919
8953
  mdast-util-gfm: 3.1.0
8920
8954
  micromark-extension-frontmatter: 2.0.0
@@ -9138,8 +9172,8 @@ snapshots:
9138
9172
  cross-spawn: 7.0.6
9139
9173
  eventsource: 3.0.7
9140
9174
  eventsource-parser: 3.1.0
9141
- express: 5.2.1
9142
- express-rate-limit: 8.5.2(express@5.2.1)
9175
+ express: 5.2.1(supports-color@10.2.2)
9176
+ express-rate-limit: 8.5.2(express@5.2.1(supports-color@10.2.2))
9143
9177
  hono: 4.12.27
9144
9178
  jose: 6.2.3
9145
9179
  json-schema-typed: 8.0.2
@@ -9697,7 +9731,7 @@ snapshots:
9697
9731
  dependencies:
9698
9732
  '@textlint/ast-node-types': 15.7.1
9699
9733
 
9700
- '@textlint/config-loader@15.7.1':
9734
+ '@textlint/config-loader@15.7.1(supports-color@10.2.2)':
9701
9735
  dependencies:
9702
9736
  '@textlint/kernel': 15.7.1
9703
9737
  '@textlint/module-interop': 15.7.1
@@ -9711,7 +9745,7 @@ snapshots:
9711
9745
 
9712
9746
  '@textlint/feature-flag@15.7.1': {}
9713
9747
 
9714
- '@textlint/fixer-formatter@15.7.1':
9748
+ '@textlint/fixer-formatter@15.7.1(supports-color@10.2.2)':
9715
9749
  dependencies:
9716
9750
  '@textlint/module-interop': 15.7.1
9717
9751
  '@textlint/resolver': 15.7.1
@@ -9740,7 +9774,7 @@ snapshots:
9740
9774
  transitivePeerDependencies:
9741
9775
  - supports-color
9742
9776
 
9743
- '@textlint/linter-formatter@15.7.1':
9777
+ '@textlint/linter-formatter@15.7.1(supports-color@10.2.2)':
9744
9778
  dependencies:
9745
9779
  '@azu/format-text': 1.0.2
9746
9780
  '@azu/style-format': 1.0.1
@@ -9759,11 +9793,11 @@ snapshots:
9759
9793
  transitivePeerDependencies:
9760
9794
  - supports-color
9761
9795
 
9762
- '@textlint/markdown-to-ast@15.7.1':
9796
+ '@textlint/markdown-to-ast@15.7.1(supports-color@10.2.2)':
9763
9797
  dependencies:
9764
9798
  '@textlint/ast-node-types': 15.7.1
9765
9799
  debug: 4.4.3(supports-color@10.2.2)
9766
- mdast-util-gfm-autolink-literal: 0.1.3
9800
+ mdast-util-gfm-autolink-literal: 0.1.3(supports-color@10.2.2)
9767
9801
  neotraverse: 0.6.18
9768
9802
  remark-footnotes: 3.0.0
9769
9803
  remark-frontmatter: 3.0.0
@@ -9796,9 +9830,9 @@ snapshots:
9796
9830
  dependencies:
9797
9831
  '@textlint/ast-node-types': 15.7.1
9798
9832
 
9799
- '@textlint/textlint-plugin-markdown@15.7.1':
9833
+ '@textlint/textlint-plugin-markdown@15.7.1(supports-color@10.2.2)':
9800
9834
  dependencies:
9801
- '@textlint/markdown-to-ast': 15.7.1
9835
+ '@textlint/markdown-to-ast': 15.7.1(supports-color@10.2.2)
9802
9836
  '@textlint/types': 15.7.1
9803
9837
  transitivePeerDependencies:
9804
9838
  - supports-color
@@ -9951,7 +9985,7 @@ snapshots:
9951
9985
  '@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)':
9952
9986
  dependencies:
9953
9987
  '@eslint-community/regexpp': 4.12.2
9954
- '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
9988
+ '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
9955
9989
  '@typescript-eslint/scope-manager': 8.62.0
9956
9990
  '@typescript-eslint/type-utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
9957
9991
  '@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
@@ -9964,11 +9998,11 @@ snapshots:
9964
9998
  transitivePeerDependencies:
9965
9999
  - supports-color
9966
10000
 
9967
- '@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
10001
+ '@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)':
9968
10002
  dependencies:
9969
10003
  '@typescript-eslint/scope-manager': 8.62.0
9970
10004
  '@typescript-eslint/types': 8.62.0
9971
- '@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
10005
+ '@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
9972
10006
  '@typescript-eslint/visitor-keys': 8.62.0
9973
10007
  debug: 4.4.3(supports-color@10.2.2)
9974
10008
  eslint: 10.5.0(jiti@2.7.0)
@@ -9976,7 +10010,7 @@ snapshots:
9976
10010
  transitivePeerDependencies:
9977
10011
  - supports-color
9978
10012
 
9979
- '@typescript-eslint/project-service@8.62.0(typescript@5.9.3)':
10013
+ '@typescript-eslint/project-service@8.62.0(supports-color@10.2.2)(typescript@5.9.3)':
9980
10014
  dependencies:
9981
10015
  '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3)
9982
10016
  '@typescript-eslint/types': 8.62.0
@@ -9987,8 +10021,8 @@ snapshots:
9987
10021
 
9988
10022
  '@typescript-eslint/rule-tester@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
9989
10023
  dependencies:
9990
- '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
9991
- '@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
10024
+ '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
10025
+ '@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
9992
10026
  '@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
9993
10027
  ajv: 6.15.0
9994
10028
  eslint: 10.5.0(jiti@2.7.0)
@@ -10011,7 +10045,7 @@ snapshots:
10011
10045
  '@typescript-eslint/type-utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
10012
10046
  dependencies:
10013
10047
  '@typescript-eslint/types': 8.62.0
10014
- '@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
10048
+ '@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
10015
10049
  '@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
10016
10050
  debug: 4.4.3(supports-color@10.2.2)
10017
10051
  eslint: 10.5.0(jiti@2.7.0)
@@ -10022,9 +10056,9 @@ snapshots:
10022
10056
 
10023
10057
  '@typescript-eslint/types@8.62.0': {}
10024
10058
 
10025
- '@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3)':
10059
+ '@typescript-eslint/typescript-estree@8.62.0(supports-color@10.2.2)(typescript@5.9.3)':
10026
10060
  dependencies:
10027
- '@typescript-eslint/project-service': 8.62.0(typescript@5.9.3)
10061
+ '@typescript-eslint/project-service': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
10028
10062
  '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3)
10029
10063
  '@typescript-eslint/types': 8.62.0
10030
10064
  '@typescript-eslint/visitor-keys': 8.62.0
@@ -10042,7 +10076,7 @@ snapshots:
10042
10076
  '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
10043
10077
  '@typescript-eslint/scope-manager': 8.62.0
10044
10078
  '@typescript-eslint/types': 8.62.0
10045
- '@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
10079
+ '@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
10046
10080
  eslint: 10.5.0(jiti@2.7.0)
10047
10081
  typescript: 5.9.3
10048
10082
  transitivePeerDependencies:
@@ -10084,7 +10118,7 @@ snapshots:
10084
10118
  '@typescript/native-preview-win32-arm64': 7.0.0-dev.20260624.1
10085
10119
  '@typescript/native-preview-win32-x64': 7.0.0-dev.20260624.1
10086
10120
 
10087
- '@vitejs/plugin-vue-jsx@5.1.6(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))':
10121
+ '@vitejs/plugin-vue-jsx@5.1.6(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.13(typescript@5.9.3))':
10088
10122
  dependencies:
10089
10123
  '@babel/core': 7.29.7
10090
10124
  '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
@@ -10092,7 +10126,7 @@ snapshots:
10092
10126
  '@rolldown/pluginutils': 1.0.1
10093
10127
  '@vue/babel-plugin-jsx': '@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)'
10094
10128
  vite: 8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
10095
- vue: 3.5.38(typescript@5.9.3)
10129
+ vue: 3.5.13(typescript@5.9.3)
10096
10130
  transitivePeerDependencies:
10097
10131
  - supports-color
10098
10132
 
@@ -10184,7 +10218,7 @@ snapshots:
10184
10218
 
10185
10219
  '@vue/shared@3.5.13': {}
10186
10220
 
10187
- '@zhennann/common-bin@4.0.1':
10221
+ '@zhennann/common-bin@4.0.1(supports-color@10.2.2)':
10188
10222
  dependencies:
10189
10223
  chalk: 4.1.2
10190
10224
  change-case: 4.1.2
@@ -10218,7 +10252,7 @@ snapshots:
10218
10252
 
10219
10253
  acorn@8.17.0: {}
10220
10254
 
10221
- agent-base@6.0.2:
10255
+ agent-base@6.0.2(supports-color@10.2.2):
10222
10256
  dependencies:
10223
10257
  debug: 4.4.3(supports-color@10.2.2)
10224
10258
  transitivePeerDependencies:
@@ -10330,11 +10364,11 @@ snapshots:
10330
10364
  dependencies:
10331
10365
  possible-typed-array-names: 1.1.0
10332
10366
 
10333
- axios@1.18.1:
10367
+ axios@1.18.1(supports-color@10.2.2):
10334
10368
  dependencies:
10335
10369
  follow-redirects: 1.16.0
10336
10370
  form-data: 4.0.6
10337
- https-proxy-agent: 5.0.1
10371
+ https-proxy-agent: 5.0.1(supports-color@10.2.2)
10338
10372
  proxy-from-env: 2.1.0
10339
10373
  transitivePeerDependencies:
10340
10374
  - debug
@@ -10401,7 +10435,7 @@ snapshots:
10401
10435
  readable-stream: 2.3.8
10402
10436
  safe-buffer: 5.2.1
10403
10437
 
10404
- body-parser@2.3.0:
10438
+ body-parser@2.3.0(supports-color@10.2.2):
10405
10439
  dependencies:
10406
10440
  bytes: 3.1.2
10407
10441
  content-type: 2.0.0
@@ -11178,7 +11212,7 @@ snapshots:
11178
11212
  dependencies:
11179
11213
  '@es-joy/jsdoccomment': 0.84.0
11180
11214
  '@typescript-eslint/rule-tester': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
11181
- '@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
11215
+ '@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
11182
11216
  '@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
11183
11217
  eslint: 10.5.0(jiti@2.7.0)
11184
11218
 
@@ -11232,7 +11266,7 @@ snapshots:
11232
11266
  regexp-ast-analysis: 0.7.1
11233
11267
  scslre: 0.3.0
11234
11268
 
11235
- eslint-plugin-toml@1.4.0(eslint@10.5.0(jiti@2.7.0)):
11269
+ eslint-plugin-toml@1.4.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2):
11236
11270
  dependencies:
11237
11271
  '@eslint/core': 1.2.1
11238
11272
  '@eslint/plugin-kit': 0.7.2
@@ -11261,7 +11295,7 @@ snapshots:
11261
11295
  xml-name-validator: 4.0.0
11262
11296
  optionalDependencies:
11263
11297
  '@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
11264
- '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
11298
+ '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
11265
11299
 
11266
11300
  eslint-plugin-yml@3.5.0(eslint@10.5.0(jiti@2.7.0)):
11267
11301
  dependencies:
@@ -11374,15 +11408,15 @@ snapshots:
11374
11408
  dependencies:
11375
11409
  eventsource-parser: 3.1.0
11376
11410
 
11377
- express-rate-limit@8.5.2(express@5.2.1):
11411
+ express-rate-limit@8.5.2(express@5.2.1(supports-color@10.2.2)):
11378
11412
  dependencies:
11379
- express: 5.2.1
11413
+ express: 5.2.1(supports-color@10.2.2)
11380
11414
  ip-address: 10.2.0
11381
11415
 
11382
- express@5.2.1:
11416
+ express@5.2.1(supports-color@10.2.2):
11383
11417
  dependencies:
11384
11418
  accepts: 2.0.0
11385
- body-parser: 2.3.0
11419
+ body-parser: 2.3.0(supports-color@10.2.2)
11386
11420
  content-disposition: 1.1.0
11387
11421
  content-type: 1.0.5
11388
11422
  cookie: 0.7.2
@@ -11392,7 +11426,7 @@ snapshots:
11392
11426
  encodeurl: 2.0.0
11393
11427
  escape-html: 1.0.3
11394
11428
  etag: 1.8.1
11395
- finalhandler: 2.1.1
11429
+ finalhandler: 2.1.1(supports-color@10.2.2)
11396
11430
  fresh: 2.0.0
11397
11431
  http-errors: 2.0.1
11398
11432
  merge-descriptors: 2.0.0
@@ -11403,8 +11437,8 @@ snapshots:
11403
11437
  proxy-addr: 2.0.7
11404
11438
  qs: 6.15.2
11405
11439
  range-parser: 1.2.1
11406
- router: 2.2.0
11407
- send: 1.2.1
11440
+ router: 2.2.0(supports-color@10.2.2)
11441
+ send: 1.2.1(supports-color@10.2.2)
11408
11442
  serve-static: 2.2.1
11409
11443
  statuses: 2.0.2
11410
11444
  type-is: 2.1.0
@@ -11490,7 +11524,7 @@ snapshots:
11490
11524
  transitivePeerDependencies:
11491
11525
  - supports-color
11492
11526
 
11493
- finalhandler@2.1.1:
11527
+ finalhandler@2.1.1(supports-color@10.2.2):
11494
11528
  dependencies:
11495
11529
  debug: 4.4.3(supports-color@10.2.2)
11496
11530
  encodeurl: 2.0.0
@@ -11750,9 +11784,9 @@ snapshots:
11750
11784
  statuses: 2.0.2
11751
11785
  toidentifier: 1.0.1
11752
11786
 
11753
- https-proxy-agent@5.0.1:
11787
+ https-proxy-agent@5.0.1(supports-color@10.2.2):
11754
11788
  dependencies:
11755
- agent-base: 6.0.2
11789
+ agent-base: 6.0.2(supports-color@10.2.2)
11756
11790
  debug: 4.4.3(supports-color@10.2.2)
11757
11791
  transitivePeerDependencies:
11758
11792
  - supports-color
@@ -12214,7 +12248,7 @@ snapshots:
12214
12248
  mdast-util-footnote@0.1.7:
12215
12249
  dependencies:
12216
12250
  mdast-util-to-markdown: 0.6.5
12217
- micromark: 2.11.4
12251
+ micromark: 2.11.4(supports-color@10.2.2)
12218
12252
  transitivePeerDependencies:
12219
12253
  - supports-color
12220
12254
 
@@ -12222,20 +12256,20 @@ snapshots:
12222
12256
  dependencies:
12223
12257
  '@types/mdast': 3.0.15
12224
12258
  mdast-util-to-string: 2.0.0
12225
- micromark: 2.11.4
12259
+ micromark: 2.11.4(supports-color@10.2.2)
12226
12260
  parse-entities: 2.0.0
12227
12261
  unist-util-stringify-position: 2.0.3
12228
12262
  transitivePeerDependencies:
12229
12263
  - supports-color
12230
12264
 
12231
- mdast-util-from-markdown@2.0.3:
12265
+ mdast-util-from-markdown@2.0.3(supports-color@10.2.2):
12232
12266
  dependencies:
12233
12267
  '@types/mdast': 4.0.4
12234
12268
  '@types/unist': 3.0.3
12235
12269
  decode-named-character-reference: 1.3.0
12236
12270
  devlop: 1.1.0
12237
12271
  mdast-util-to-string: 4.0.0
12238
- micromark: 4.0.2
12272
+ micromark: 4.0.2(supports-color@10.2.2)
12239
12273
  micromark-util-decode-numeric-character-reference: 2.0.2
12240
12274
  micromark-util-decode-string: 2.0.1
12241
12275
  micromark-util-normalize-identifier: 2.0.1
@@ -12254,17 +12288,17 @@ snapshots:
12254
12288
  '@types/mdast': 4.0.4
12255
12289
  devlop: 1.1.0
12256
12290
  escape-string-regexp: 5.0.0
12257
- mdast-util-from-markdown: 2.0.3
12291
+ mdast-util-from-markdown: 2.0.3(supports-color@10.2.2)
12258
12292
  mdast-util-to-markdown: 2.1.2
12259
12293
  micromark-extension-frontmatter: 2.0.0
12260
12294
  transitivePeerDependencies:
12261
12295
  - supports-color
12262
12296
 
12263
- mdast-util-gfm-autolink-literal@0.1.3:
12297
+ mdast-util-gfm-autolink-literal@0.1.3(supports-color@10.2.2):
12264
12298
  dependencies:
12265
12299
  ccount: 1.1.0
12266
12300
  mdast-util-find-and-replace: 1.1.1
12267
- micromark: 2.11.4
12301
+ micromark: 2.11.4(supports-color@10.2.2)
12268
12302
  transitivePeerDependencies:
12269
12303
  - supports-color
12270
12304
 
@@ -12280,7 +12314,7 @@ snapshots:
12280
12314
  dependencies:
12281
12315
  '@types/mdast': 4.0.4
12282
12316
  devlop: 1.1.0
12283
- mdast-util-from-markdown: 2.0.3
12317
+ mdast-util-from-markdown: 2.0.3(supports-color@10.2.2)
12284
12318
  mdast-util-to-markdown: 2.1.2
12285
12319
  micromark-util-normalize-identifier: 2.0.1
12286
12320
  transitivePeerDependencies:
@@ -12293,7 +12327,7 @@ snapshots:
12293
12327
  mdast-util-gfm-strikethrough@2.0.0:
12294
12328
  dependencies:
12295
12329
  '@types/mdast': 4.0.4
12296
- mdast-util-from-markdown: 2.0.3
12330
+ mdast-util-from-markdown: 2.0.3(supports-color@10.2.2)
12297
12331
  mdast-util-to-markdown: 2.1.2
12298
12332
  transitivePeerDependencies:
12299
12333
  - supports-color
@@ -12308,7 +12342,7 @@ snapshots:
12308
12342
  '@types/mdast': 4.0.4
12309
12343
  devlop: 1.1.0
12310
12344
  markdown-table: 3.0.4
12311
- mdast-util-from-markdown: 2.0.3
12345
+ mdast-util-from-markdown: 2.0.3(supports-color@10.2.2)
12312
12346
  mdast-util-to-markdown: 2.1.2
12313
12347
  transitivePeerDependencies:
12314
12348
  - supports-color
@@ -12321,14 +12355,14 @@ snapshots:
12321
12355
  dependencies:
12322
12356
  '@types/mdast': 4.0.4
12323
12357
  devlop: 1.1.0
12324
- mdast-util-from-markdown: 2.0.3
12358
+ mdast-util-from-markdown: 2.0.3(supports-color@10.2.2)
12325
12359
  mdast-util-to-markdown: 2.1.2
12326
12360
  transitivePeerDependencies:
12327
12361
  - supports-color
12328
12362
 
12329
12363
  mdast-util-gfm@0.1.2:
12330
12364
  dependencies:
12331
- mdast-util-gfm-autolink-literal: 0.1.3
12365
+ mdast-util-gfm-autolink-literal: 0.1.3(supports-color@10.2.2)
12332
12366
  mdast-util-gfm-strikethrough: 0.2.3
12333
12367
  mdast-util-gfm-table: 0.1.6
12334
12368
  mdast-util-gfm-task-list-item: 0.1.6
@@ -12338,7 +12372,7 @@ snapshots:
12338
12372
 
12339
12373
  mdast-util-gfm@3.1.0:
12340
12374
  dependencies:
12341
- mdast-util-from-markdown: 2.0.3
12375
+ mdast-util-from-markdown: 2.0.3(supports-color@10.2.2)
12342
12376
  mdast-util-gfm-autolink-literal: 2.0.1
12343
12377
  mdast-util-gfm-footnote: 2.1.0
12344
12378
  mdast-util-gfm-strikethrough: 2.0.0
@@ -12415,7 +12449,7 @@ snapshots:
12415
12449
 
12416
12450
  micromark-extension-footnote@0.3.2:
12417
12451
  dependencies:
12418
- micromark: 2.11.4
12452
+ micromark: 2.11.4(supports-color@10.2.2)
12419
12453
  transitivePeerDependencies:
12420
12454
  - supports-color
12421
12455
 
@@ -12432,7 +12466,7 @@ snapshots:
12432
12466
 
12433
12467
  micromark-extension-gfm-autolink-literal@0.5.7:
12434
12468
  dependencies:
12435
- micromark: 2.11.4
12469
+ micromark: 2.11.4(supports-color@10.2.2)
12436
12470
  transitivePeerDependencies:
12437
12471
  - supports-color
12438
12472
 
@@ -12456,7 +12490,7 @@ snapshots:
12456
12490
 
12457
12491
  micromark-extension-gfm-strikethrough@0.6.5:
12458
12492
  dependencies:
12459
- micromark: 2.11.4
12493
+ micromark: 2.11.4(supports-color@10.2.2)
12460
12494
  transitivePeerDependencies:
12461
12495
  - supports-color
12462
12496
 
@@ -12471,7 +12505,7 @@ snapshots:
12471
12505
 
12472
12506
  micromark-extension-gfm-table@0.4.3:
12473
12507
  dependencies:
12474
- micromark: 2.11.4
12508
+ micromark: 2.11.4(supports-color@10.2.2)
12475
12509
  transitivePeerDependencies:
12476
12510
  - supports-color
12477
12511
 
@@ -12491,7 +12525,7 @@ snapshots:
12491
12525
 
12492
12526
  micromark-extension-gfm-task-list-item@0.3.3:
12493
12527
  dependencies:
12494
- micromark: 2.11.4
12528
+ micromark: 2.11.4(supports-color@10.2.2)
12495
12529
  transitivePeerDependencies:
12496
12530
  - supports-color
12497
12531
 
@@ -12505,7 +12539,7 @@ snapshots:
12505
12539
 
12506
12540
  micromark-extension-gfm@0.3.3:
12507
12541
  dependencies:
12508
- micromark: 2.11.4
12542
+ micromark: 2.11.4(supports-color@10.2.2)
12509
12543
  micromark-extension-gfm-autolink-literal: 0.5.7
12510
12544
  micromark-extension-gfm-strikethrough: 0.6.5
12511
12545
  micromark-extension-gfm-table: 0.4.3
@@ -12617,14 +12651,14 @@ snapshots:
12617
12651
 
12618
12652
  micromark-util-types@2.0.2: {}
12619
12653
 
12620
- micromark@2.11.4:
12654
+ micromark@2.11.4(supports-color@10.2.2):
12621
12655
  dependencies:
12622
12656
  debug: 4.4.3(supports-color@10.2.2)
12623
12657
  parse-entities: 2.0.0
12624
12658
  transitivePeerDependencies:
12625
12659
  - supports-color
12626
12660
 
12627
- micromark@4.0.2:
12661
+ micromark@4.0.2(supports-color@10.2.2):
12628
12662
  dependencies:
12629
12663
  '@types/debug': 4.1.13
12630
12664
  debug: 4.4.3(supports-color@10.2.2)
@@ -13349,7 +13383,7 @@ snapshots:
13349
13383
  optionalDependencies:
13350
13384
  rolldown: 1.1.3
13351
13385
 
13352
- router@2.2.0:
13386
+ router@2.2.0(supports-color@10.2.2):
13353
13387
  dependencies:
13354
13388
  debug: 4.4.3(supports-color@10.2.2)
13355
13389
  depd: 2.0.0
@@ -13506,7 +13540,7 @@ snapshots:
13506
13540
 
13507
13541
  semver@7.8.5: {}
13508
13542
 
13509
- send@1.2.1:
13543
+ send@1.2.1(supports-color@10.2.2):
13510
13544
  dependencies:
13511
13545
  debug: 4.4.3(supports-color@10.2.2)
13512
13546
  encodeurl: 2.0.0
@@ -13535,7 +13569,7 @@ snapshots:
13535
13569
  encodeurl: 2.0.0
13536
13570
  escape-html: 1.0.3
13537
13571
  parseurl: 1.3.3
13538
- send: 1.2.1
13572
+ send: 1.2.1(supports-color@10.2.2)
13539
13573
  transitivePeerDependencies:
13540
13574
  - supports-color
13541
13575
 
@@ -13841,19 +13875,19 @@ snapshots:
13841
13875
  dependencies:
13842
13876
  check-ends-with-period: 3.0.2
13843
13877
 
13844
- textlint@15.7.1:
13878
+ textlint@15.7.1(supports-color@10.2.2):
13845
13879
  dependencies:
13846
13880
  '@modelcontextprotocol/sdk': 1.29.0(@cabloy/zod@4.3.6)
13847
13881
  '@textlint/ast-node-types': 15.7.1
13848
13882
  '@textlint/ast-traverse': 15.7.1
13849
- '@textlint/config-loader': 15.7.1
13883
+ '@textlint/config-loader': 15.7.1(supports-color@10.2.2)
13850
13884
  '@textlint/feature-flag': 15.7.1
13851
- '@textlint/fixer-formatter': 15.7.1
13885
+ '@textlint/fixer-formatter': 15.7.1(supports-color@10.2.2)
13852
13886
  '@textlint/kernel': 15.7.1
13853
- '@textlint/linter-formatter': 15.7.1
13887
+ '@textlint/linter-formatter': 15.7.1(supports-color@10.2.2)
13854
13888
  '@textlint/module-interop': 15.7.1
13855
13889
  '@textlint/resolver': 15.7.1
13856
- '@textlint/textlint-plugin-markdown': 15.7.1
13890
+ '@textlint/textlint-plugin-markdown': 15.7.1(supports-color@10.2.2)
13857
13891
  '@textlint/textlint-plugin-text': 15.7.1
13858
13892
  '@textlint/types': 15.7.1
13859
13893
  '@textlint/utils': 15.7.1
@@ -13968,8 +14002,8 @@ snapshots:
13968
14002
  typescript-eslint@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3):
13969
14003
  dependencies:
13970
14004
  '@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)
13971
- '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
13972
- '@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
14005
+ '@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
14006
+ '@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
13973
14007
  '@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
13974
14008
  eslint: 10.5.0(jiti@2.7.0)
13975
14009
  typescript: 5.9.3
@@ -14215,6 +14249,16 @@ snapshots:
14215
14249
  source-map: 0.6.1
14216
14250
  vue: 3.5.38(typescript@5.9.3)
14217
14251
 
14252
+ vue@3.5.13(typescript@5.9.3):
14253
+ dependencies:
14254
+ '@vue/compiler-dom': 3.5.13
14255
+ '@vue/compiler-sfc': '@cabloy/vue-compiler-sfc@3.5.14'
14256
+ '@vue/runtime-dom': '@cabloy/vue-runtime-dom@3.5.13'
14257
+ '@vue/server-renderer': '@cabloy/vue-server-renderer@3.5.18(vue@3.5.13(typescript@5.9.3))'
14258
+ '@vue/shared': 3.5.13
14259
+ optionalDependencies:
14260
+ typescript: 5.9.3
14261
+
14218
14262
  vue@3.5.38(typescript@5.9.3):
14219
14263
  dependencies:
14220
14264
  '@vue/compiler-dom': 3.5.13