@morya-ui/mcp 0.2.8 → 0.2.9
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/README.md +1 -1
- package/data/catalog.json +74 -74
- package/data/example-coverage.json +2 -2
- package/data/golden-pages/dashboard-page.vue +41 -8
- package/data/golden-pages/empty-state.vue +22 -1
- package/data/golden-pages/form-page.vue +1 -1
- package/data/golden-pages/landing-page.vue +31 -1
- package/data/golden-pages/list-page.vue +25 -12
- package/data/golden-pages/login-page.vue +44 -4
- package/dist/__tests__/tools.test.js +10 -0
- package/dist/decisions.js +136 -1
- package/dist/page-snippets.js +27 -17
- package/dist/patterns.d.ts +4 -2
- package/dist/patterns.js +4 -2
- package/dist/tools.js +23 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,7 +119,7 @@ For a starter Vue file, pass `includeScaffold: true` to `recommend_page`:
|
|
|
119
119
|
`recommend_component` modes:
|
|
120
120
|
|
|
121
121
|
- omit `query` and `decision` → list decision guides
|
|
122
|
-
- `decision` only → read one guide (e.g. `overlay-choice`)
|
|
122
|
+
- `decision` only → read one guide (e.g. `overlay-choice`, `selection-choice`, `status-label-choice`, `empty-result-choice`, `action-menu-choice`)
|
|
123
123
|
- `query` → recommend a component for a UI question
|
|
124
124
|
|
|
125
125
|
## Develop
|