@ng-primitives/mcp 0.118.0 → 0.119.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ng-primitives/mcp",
3
- "version": "0.118.0",
3
+ "version": "0.119.0",
4
4
  "description": "MCP server for Angular Primitives - headless UI library",
5
5
  "type": "commonjs",
6
6
  "main": "./src/index.js",
@@ -369,8 +369,8 @@
369
369
  "inputs": [
370
370
  {
371
371
  "name": "disabled",
372
- "type": "boolean",
373
- "description": "Whether the button is disabled.",
372
+ "type": "boolean | \"soft\"",
373
+ "description": "Whether the button is disabled. Use `'soft'` for an aria-disabled\nbutton that stays focusable; events still fire, so guard your handlers.",
374
374
  "isRequired": false
375
375
  }
376
376
  ],
@@ -272,7 +272,9 @@
272
272
  "hasSecondaryEntryPoint": true,
273
273
  "category": "form",
274
274
  "description": "A button is a clickable element that can be used to trigger an action. This primitive enhances the native button element with improved accessibility and interaction handling for hover, press and focus.",
275
- "accessibility": [],
275
+ "accessibility": [
276
+ "ARIA pattern"
277
+ ],
276
278
  "examples": [
277
279
  {
278
280
  "name": "example-0",