@maz-ui/mcp 4.3.2 → 4.3.4-beta.0
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/dist/mcp.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { existsSync, readFileSync, readdirSync } from 'node:fs';
|
|
|
7
7
|
import { resolve, dirname, join } from 'node:path';
|
|
8
8
|
import { fileURLToPath } from 'node:url';
|
|
9
9
|
|
|
10
|
-
const version = "4.3.2
|
|
10
|
+
const version = "4.3.2";
|
|
11
11
|
|
|
12
12
|
const _dirname = dirname(fileURLToPath(import.meta.url));
|
|
13
13
|
class DocumentationService {
|
|
@@ -69,3 +69,7 @@
|
|
|
69
69
|
### updatePosition
|
|
70
70
|
|
|
71
71
|
> Update the popover position <br/>`@description` Manually recalculate and update the popover position<br/>`@usage` `mazPopoverInstance.value?.updatePosition()`
|
|
72
|
+
|
|
73
|
+
### panelRef
|
|
74
|
+
|
|
75
|
+
> Panel reference <br/>`@description` Reference to the popover panel element<br/>`@usage` `mazPopoverInstance.value?.panelRef`
|
|
@@ -21,7 +21,7 @@ All icons follow a consistent naming pattern:
|
|
|
21
21
|
</MazTabs>
|
|
22
22
|
<div class="maz-grid maz-grid-cols-3 maz-gap-2">
|
|
23
23
|
<div v-for="icon in filteredIcons" :key="icon.name" class="maz-flex maz-flex-col maz-items-center maz-gap-3 maz-text-center maz-border maz-border-solid maz-border-divider maz-rounded maz-p-4 maz-truncate hover:maz-bg-surface-600/50 dark:hover:maz-bg-surface-400">
|
|
24
|
-
<
|
|
24
|
+
<component :is="icon.component" class="maz-size-8" />
|
|
25
25
|
<span class="maz-text-xs maz-text-muted maz-truncate">{{ icon.name }}</span>
|
|
26
26
|
<div class="maz-flex maz-flex-row maz-gap-2 maz-w-full">
|
|
27
27
|
<MazBtn v-tooltip="{ text: 'Copy Name', panelClass: 'maz-text-xs' }" class="maz-flex-1" size="xs" color="background" outlined @click="copyIcon(icon.name)" :icon="MazClipboardDocument" />
|
package/docs/src/index.md
CHANGED
|
@@ -513,10 +513,19 @@ description: Build amazing interfaces with Maz-UI - standalone components & tool
|
|
|
513
513
|
</div>
|
|
514
514
|
</section>
|
|
515
515
|
|
|
516
|
+
<Contributors
|
|
517
|
+
repo="louismazel/maz-ui"
|
|
518
|
+
:creators="['LouisMazel']"
|
|
519
|
+
:links="[
|
|
520
|
+
{ username: 'LouisMazel', link: 'https://twitter.com/mazeel', type: 'twitter' },
|
|
521
|
+
]"
|
|
522
|
+
/>
|
|
523
|
+
|
|
516
524
|
<script lang="ts" setup>
|
|
517
525
|
import DemoAuthPage from '../components/DemoAuthPage.vue'
|
|
518
526
|
import DemoDashboardPage from '../components/DemoDashboardPage.vue'
|
|
519
527
|
import DemoProductPage from '../components/DemoProductPage.vue'
|
|
528
|
+
import Contributors from './../.vitepress/theme/components/Contributors.vue'
|
|
520
529
|
|
|
521
530
|
import { ref, computed } from 'vue'
|
|
522
531
|
import { MazStar, MazPlay, MazGithub, MazSun, MazMoon } from '@maz-ui/icons'
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maz-ui/mcp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.3.
|
|
4
|
+
"version": "4.3.4-beta.0",
|
|
5
5
|
"description": "Maz-UI ModelContextProtocol Client",
|
|
6
6
|
"author": "Louis Mazel <me@loicmazuel.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -41,18 +41,18 @@
|
|
|
41
41
|
"docs"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
45
|
-
"@maz-ui/
|
|
46
|
-
"@maz-ui/
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
45
|
+
"@maz-ui/node": "4.3.4-beta.0",
|
|
46
|
+
"@maz-ui/utils": "4.3.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@modelcontextprotocol/inspector": "^0.17.
|
|
50
|
-
"@swc/core": "1.15.
|
|
51
|
-
"eslint": "^9.39.
|
|
49
|
+
"@modelcontextprotocol/inspector": "^0.17.5",
|
|
50
|
+
"@swc/core": "1.15.4",
|
|
51
|
+
"eslint": "^9.39.2",
|
|
52
52
|
"lint-staged": "^16.2.7",
|
|
53
|
-
"prettier": "^3.
|
|
53
|
+
"prettier": "^3.7.4",
|
|
54
54
|
"ts-node-maintained": "^10.9.5",
|
|
55
|
-
"tsx": "^4.
|
|
55
|
+
"tsx": "^4.21.0",
|
|
56
56
|
"unbuild": "^3.6.1",
|
|
57
57
|
"@maz-ui/eslint-config": "4.3.2"
|
|
58
58
|
},
|