morya-ui 0.2.5 → 0.2.6
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 +14 -0
- package/README.md +2 -2
- package/README.zh-CN.md +2 -2
- package/dist/components/ConfigProvider/ConfigProvider.vue.d.ts.map +1 -1
- package/dist/components/Layout/styles.css +5 -0
- package/dist/components/Layout/types.d.ts +1 -1
- package/dist/components/Layout/types.d.ts.map +1 -1
- package/dist/components/Menu/styles.css +19 -0
- package/dist/config-provider/index.js +27 -14
- package/dist/index.js +27 -14
- package/dist/layout/style.css +5 -0
- package/dist/menu/style.css +19 -0
- package/dist/styles.css +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "morya-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.6",
|
|
5
5
|
"description": "Open-source Vue 3 component library with design tokens, themes, and interactive docs.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://morya-space.github.io/morya-ui/",
|
|
@@ -697,6 +697,7 @@
|
|
|
697
697
|
"eslint": "^10.9.1",
|
|
698
698
|
"happy-dom": "^20.11.2",
|
|
699
699
|
"husky": "^9.1.7",
|
|
700
|
+
"markdown-it": "^15.0.2",
|
|
700
701
|
"shiki": "^4.4.3",
|
|
701
702
|
"typescript": "^5.9.3",
|
|
702
703
|
"unocss": "^66.10.2",
|
|
@@ -725,7 +726,7 @@
|
|
|
725
726
|
"docs:extract-demos": "node scripts/extract-doc-demos.mjs",
|
|
726
727
|
"lint": "eslint .",
|
|
727
728
|
"lint:fix": "eslint . --fix",
|
|
728
|
-
"test": "vitest run",
|
|
729
|
+
"test": "vitest run && node --test scripts/docs-seo.test.mjs",
|
|
729
730
|
"test:coverage": "vitest run --coverage",
|
|
730
731
|
"release": "node scripts/release.mjs",
|
|
731
732
|
"release:prepare": "node scripts/release.mjs prepare",
|