@maz-ui/mcp 5.0.0-beta.34 → 5.0.0-beta.36

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, statSync } from 'node:fs';
7
7
  import { resolve, join, dirname } from 'node:path';
8
8
  import { fileURLToPath } from 'node:url';
9
9
 
10
- const version = "5.0.0-beta.34";
10
+ const version = "5.0.0-beta.36";
11
11
 
12
12
  class MetadataExtractor {
13
13
  extract(name, type, content, manualTags = []) {
@@ -4,7 +4,7 @@
4
4
  | ---------------------- | ----------- | ---------------- | -------- |
5
5
  | **distance** | | `number` | No |
6
6
  | **offset** | | `number` | No |
7
- | **on-click** | | `TSFunctionType` | No |
7
+ | **on-refresh** | | `TSFunctionType` | No |
8
8
  | **container-selector** | | `string` | No |
9
9
  | **header-class** | | `string` | No |
10
10
  | **spinner-color** | | `MazColor` | No |
@@ -30,7 +30,7 @@ async function pullToRefreshAction() {
30
30
  <MazPullToRefresh
31
31
  header-class="maz:bg-bg-dark maz:text-foreground-light"
32
32
  class="maz:flex maz:min-h-screen maz:w-full maz:flex-col"
33
- :action="pullToRefreshAction"
33
+ :on-refresh="pullToRefreshAction"
34
34
  spinner-color="contrast"
35
35
  standalone-mode
36
36
  :disabled="false"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maz-ui/mcp",
3
3
  "type": "module",
4
- "version": "5.0.0-beta.34",
4
+ "version": "5.0.0-beta.36",
5
5
  "description": "Maz-UI ModelContextProtocol Client",
6
6
  "author": "Louis Mazel <me@loicmazuel.com>",
7
7
  "license": "MIT",
@@ -43,7 +43,7 @@
43
43
  "dependencies": {
44
44
  "@modelcontextprotocol/sdk": "^1.29.0",
45
45
  "@maz-ui/utils": "5.0.0-beta.28",
46
- "maz-ui": "5.0.0-beta.34"
46
+ "maz-ui": "5.0.0-beta.36"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@modelcontextprotocol/inspector": "^0.21.2",
@@ -52,8 +52,8 @@
52
52
  "ts-node-maintained": "^10.9.5",
53
53
  "tsx": "^4.22.3",
54
54
  "unbuild": "^3.6.1",
55
- "@maz-ui/eslint-config": "5.0.0-beta.28",
56
- "@maz-ui/node": "5.0.0-beta.26"
55
+ "@maz-ui/node": "5.0.0-beta.26",
56
+ "@maz-ui/eslint-config": "5.0.0-beta.28"
57
57
  },
58
58
  "lint-staged": {
59
59
  "*.{js,ts,mjs,mts,cjs,md,yml,json}": "cross-env NODE_ENV=production eslint --fix"