@morya-ui/mcp 0.2.3 → 0.2.5
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 +1871 -1017
- package/data/example-coverage.json +100 -9
- package/data/golden-pages/dashboard-page.vue +1 -1
- package/data/golden-pages/empty-state.vue +66 -0
- package/data/golden-pages/form-page.vue +7 -3
- package/data/golden-pages/landing-page.vue +328 -0
- package/data/golden-pages/list-page.vue +16 -6
- package/data/golden-pages/login-page.vue +191 -0
- package/dist/__tests__/resources.test.js +1 -1
- package/dist/__tests__/tools.test.js +56 -3
- package/dist/decisions.js +70 -0
- package/dist/golden-pages.js +22 -1
- package/dist/index.js +1 -1
- package/dist/page-snippets.js +115 -2
- package/dist/patterns.d.ts +41 -7
- package/dist/patterns.js +315 -33
- package/dist/resources.d.ts +1 -1
- package/dist/tools.js +153 -56
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ Component lookup accepts common aliases such as `DataTable`, `数据表格`, `Pa
|
|
|
90
90
|
**Plan a page:**
|
|
91
91
|
|
|
92
92
|
1. `recommend_page` with business intent, page type, and features
|
|
93
|
-
2. `get_golden_page` for the matched golden sample (`list-page`, `form-page`, `dashboard-page`)
|
|
93
|
+
2. `get_golden_page` for the matched golden sample (`list-page`, `form-page`, `dashboard-page`, `login-page`, `landing-page`, `empty-state`)
|
|
94
94
|
3. `get_pattern` for the returned `matchedPattern`
|
|
95
95
|
4. `get_design_rules` for MPage* composition recipes
|
|
96
96
|
5. `get_component` / `get_example` for core components (including `Page`)
|