@vc-shell/vc-app-skill 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.3](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.2...v2.0.3) (2026-04-30)
4
+
5
+ **Note:** Version bump only for package @vc-shell/vc-app-skill
6
+
3
7
  ## [2.0.2](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.1...v2.0.2) (2026-04-27)
4
8
 
5
9
  **Note:** Version bump only for package @vc-shell/vc-app-skill
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vc-shell/vc-app-skill",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "AI coding skill for scaffolding and generating VirtoCommerce Shell applications. Works with Claude Code, OpenCode, Gemini, Codex, Cursor.",
5
5
  "bin": "./bin/install.cjs",
6
6
  "files": [
package/runtime/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.2
1
+ 2.0.3
@@ -1 +1 @@
1
- Synced from framework at commit a5e644392 on 2026-04-27T09:03:25.568Z
1
+ Synced from framework at commit d658f5b4c on 2026-04-30T07:59:28.391Z
@@ -196,6 +196,15 @@ For read-only display, `VcField` is lighter and cleaner than a disabled `VcInput
196
196
 
197
197
  The `type` prop affects rendering, not validation. Setting `type="email"` does not validate the email format -- it only renders the value as a `mailto:` link. For input validation, use VcInput with validation rules.
198
198
 
199
+ ## Horizontal Layout Without Label
200
+
201
+ In `orientation="horizontal"` the component reserves the `aspectRatio[0]` track even when `label` is omitted. This keeps a column of `VcField`s aligned with their labeled siblings in a form grid. Use vertical orientation if you do not want this reservation.
202
+
203
+ ```vue
204
+ <!-- Reserves the label column to align with sibling fields -->
205
+ <VcField orientation="horizontal" :aspect-ratio="[1, 2]" model-value="No label" />
206
+ ```
207
+
199
208
  ## Related Components
200
209
 
201
210
  - [VcInput](../vc-input/) -- editable text field (use instead when user input is needed)