@maz-ui/mcp 4.3.2-beta.1 → 4.3.2
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-beta.
|
|
10
|
+
const version = "4.3.2-beta.2";
|
|
11
11
|
|
|
12
12
|
const _dirname = dirname(fileURLToPath(import.meta.url));
|
|
13
13
|
class DocumentationService {
|
|
@@ -25,7 +25,7 @@ description: MazInputPhoneNumber is a powerful and user-friendly component that
|
|
|
25
25
|
|
|
26
26
|
The simplest way to use MazInputPhoneNumber - just add it and it works!
|
|
27
27
|
|
|
28
|
-
<ComponentDemo>
|
|
28
|
+
<ComponentDemo expanded>
|
|
29
29
|
<MazInputPhoneNumber
|
|
30
30
|
v-model="phoneNumber"
|
|
31
31
|
v-model:country-code="countryCode"
|
|
@@ -42,12 +42,13 @@ The simplest way to use MazInputPhoneNumber - just add it and it works!
|
|
|
42
42
|
|
|
43
43
|
```vue
|
|
44
44
|
<script setup lang="ts">
|
|
45
|
-
import {
|
|
45
|
+
import type { MazInputPhoneNumberData } from 'maz-ui/components/MazInputPhoneNumber'
|
|
46
|
+
import MazInputPhoneNumber from 'maz-ui/components/MazInputPhoneNumber'
|
|
46
47
|
import { ref } from 'vue'
|
|
47
48
|
|
|
48
|
-
const phoneNumber = ref()
|
|
49
|
-
const countryCode = ref()
|
|
50
|
-
const results = ref()
|
|
49
|
+
const phoneNumber = ref<string>()
|
|
50
|
+
const countryCode = ref<string>()
|
|
51
|
+
const results = ref<MazInputPhoneNumberData>()
|
|
51
52
|
</script>
|
|
52
53
|
|
|
53
54
|
<template>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maz-ui/mcp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.3.2
|
|
4
|
+
"version": "4.3.2",
|
|
5
5
|
"description": "Maz-UI ModelContextProtocol Client",
|
|
6
6
|
"author": "Louis Mazel <me@loicmazuel.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
45
|
-
"@maz-ui/
|
|
46
|
-
"@maz-ui/
|
|
45
|
+
"@maz-ui/utils": "4.3.0",
|
|
46
|
+
"@maz-ui/node": "4.3.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@modelcontextprotocol/inspector": "^0.17.2",
|
|
50
50
|
"@swc/core": "1.15.2",
|
|
51
51
|
"eslint": "^9.39.1",
|
|
52
|
-
"lint-staged": "^16.2.
|
|
52
|
+
"lint-staged": "^16.2.7",
|
|
53
53
|
"prettier": "^3.5.3",
|
|
54
54
|
"ts-node-maintained": "^10.9.5",
|
|
55
55
|
"tsx": "^4.20.6",
|
|
56
56
|
"unbuild": "^3.6.1",
|
|
57
|
-
"@maz-ui/eslint-config": "4.3.2
|
|
57
|
+
"@maz-ui/eslint-config": "4.3.2"
|
|
58
58
|
},
|
|
59
59
|
"lint-staged": {
|
|
60
60
|
"*.{js,ts,mjs,mts,cjs,md,yml,json}": "cross-env NODE_ENV=production eslint --fix"
|