@maz-ui/mcp 4.0.0-beta.32 → 4.0.0-beta.33

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.0.0-beta.31";
10
+ const version = "4.0.0-beta.32";
11
11
 
12
12
  const _dirname = dirname(fileURLToPath(import.meta.url));
13
13
  class DocumentationService {
@@ -33,12 +33,13 @@
33
33
 
34
34
  ## Events
35
35
 
36
- | Event name | Properties | Description |
37
- | ------------------ | ---------------------------------------- | ---------------------------------- |
38
- | update:model-value | **value** `boolean` - The new open state | Emitted when popover state changes |
39
- | open | | Emitted when popover opens |
40
- | close | | Emitted when popover closes |
41
- | toggle | **value** `boolean` - The new open state | Emitted when popover toggles |
36
+ | Event name | Properties | Description |
37
+ | --------------------- | ---------------------------------------- | ---------------------------------- |
38
+ | update:model-value | **value** `boolean` - The new open state | Emitted when popover state changes |
39
+ | open | | Emitted when popover opens |
40
+ | close | | Emitted when popover closes |
41
+ | after-close-animation | | Emitted after the close animation |
42
+ | toggle | **value** `boolean` - The new open state | Emitted when popover toggles |
42
43
 
43
44
  ## Slots
44
45
 
@@ -369,7 +369,7 @@ The `offset` (in px) option allows you to adjust the position of the tooltip rel
369
369
 
370
370
  <ComponentDemo>
371
371
  <div class="maz-flex maz-gap-3 maz-flex-wrap">
372
- <MazBtn v-tooltip.top="{ text: 'Tooltip text', open: open, trigger: 'click' }">
372
+ <MazBtn v-tooltip.top="{ text: 'Tooltip text', open: open }">
373
373
  Primary
374
374
  </MazBtn>
375
375
  <MazBtn @click="open = !open" color="secondary">
@@ -388,7 +388,7 @@ The `offset` (in px) option allows you to adjust the position of the tooltip rel
388
388
  </script>
389
389
 
390
390
  <template>
391
- <MazBtn v-tooltip.top="{ text: 'Tooltip text', open }">
391
+ <MazBtn v-tooltip.top="{ text: 'Tooltip text', open: open }">
392
392
  Primary
393
393
  </MazBtn>
394
394
  <MazBtn color="secondary" @click="open = !open">
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maz-ui/mcp",
3
3
  "type": "module",
4
- "version": "4.0.0-beta.32",
4
+ "version": "4.0.0-beta.33",
5
5
  "description": "Maz-UI ModelContextProtocol Client",
6
6
  "author": "Louis Mazel <me@loicmazuel.com>",
7
7
  "license": "MIT",
@@ -68,7 +68,7 @@
68
68
  "@swc/core": "1.13.3",
69
69
  "@types/node": "^24.2.0",
70
70
  "@vitest/coverage-v8": "^3.2.4",
71
- "docs": "4.0.0-beta.32",
71
+ "docs": "4.0.0-beta.33",
72
72
  "eslint": "^9.26.0",
73
73
  "lint-staged": "^16.1.4",
74
74
  "prettier": "^3.5.3",
@@ -81,5 +81,5 @@
81
81
  "lint-staged": {
82
82
  "*.{js,ts,mjs,mts,cjs,md,yml,json}": "cross-env NODE_ENV=production eslint --fix"
83
83
  },
84
- "gitHead": "497ce938849e8238741524cbb063c2d8d6b4aacf"
84
+ "gitHead": "9642333b9fdbd396ba03b613b74b209174ba1b7b"
85
85
  }