@ng-primitives/mcp 0.109.5 → 0.110.1

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.109.5",
3
+ "version": "0.110.1",
4
4
  "description": "MCP server for Angular Primitives - headless UI library",
5
5
  "type": "commonjs",
6
6
  "main": "./src/index.js",
@@ -1538,7 +1538,7 @@
1538
1538
  },
1539
1539
  {
1540
1540
  "name": "ngpMenuTriggerScrollBehavior",
1541
- "type": "\"reposition\" | \"block\"",
1541
+ "type": "\"close\" | \"reposition\" | \"block\"",
1542
1542
  "description": "Defines how the menu behaves when the window is scrolled.",
1543
1543
  "isRequired": false,
1544
1544
  "defaultValue": "'block'"
@@ -2152,7 +2152,7 @@
2152
2152
  },
2153
2153
  {
2154
2154
  "name": "ngpPopoverTriggerScrollBehavior",
2155
- "type": "\"reposition\" | \"block\"",
2155
+ "type": "\"close\" | \"reposition\" | \"block\"",
2156
2156
  "description": "Defines how the popover behaves when the window is scrolled.",
2157
2157
  "isRequired": false,
2158
2158
  "defaultValue": "'reposition'"
@@ -3196,6 +3196,13 @@
3196
3196
  "description": "Programmatic position for the tooltip. When provided, the tooltip\nwill be positioned at these coordinates instead of the trigger element.\nUse with trackPosition=\"true\" for smooth cursor following.",
3197
3197
  "isRequired": false
3198
3198
  },
3199
+ {
3200
+ "name": "ngpTooltipTriggerScrollBehavior",
3201
+ "type": "\"close\" | \"reposition\"",
3202
+ "description": "Defines how the tooltip behaves when the window is scrolled.",
3203
+ "isRequired": false,
3204
+ "defaultValue": "'reposition'"
3205
+ },
3199
3206
  {
3200
3207
  "name": "ngpTooltipTriggerCooldown",
3201
3208
  "type": "number",
@@ -652,7 +652,9 @@
652
652
  "hasSecondaryEntryPoint": true,
653
653
  "category": "form",
654
654
  "description": "One-Time Password (OTP) input component with individual character slots for secure authentication codes.",
655
- "accessibility": [],
655
+ "accessibility": [
656
+ "screen reader"
657
+ ],
656
658
  "examples": [
657
659
  {
658
660
  "name": "example-0",
@@ -897,7 +899,7 @@
897
899
  "category": "utility",
898
900
  "description": "A navigation menu component for site-wide navigation with dropdown content panels.",
899
901
  "accessibility": [
900
- "Keyboard Navigation"
902
+ "ARIA Navigation"
901
903
  ],
902
904
  "examples": [
903
905
  {
@@ -938,7 +940,9 @@
938
940
  "hasSecondaryEntryPoint": true,
939
941
  "category": "navigation",
940
942
  "description": "The Pagination primitives provide a set of directives to create a pagination control. The pagination control is used to navigate through a set of data that is split into multiple pages.",
941
- "accessibility": [],
943
+ "accessibility": [
944
+ "screen reader"
945
+ ],
942
946
  "examples": [
943
947
  {
944
948
  "name": "example-0",
@@ -1052,6 +1056,7 @@
1052
1056
  "NgpTemplatePortal",
1053
1057
  "NgpPosition",
1054
1058
  "BlockScrollStrategy",
1059
+ "CloseScrollStrategy",
1055
1060
  "NoopScrollStrategy",
1056
1061
  "ScrollStrategy",
1057
1062
  "coerceShift",
@@ -1241,6 +1246,7 @@
1241
1246
  "category": "form",
1242
1247
  "description": "A select is a form control that allows users to select options from a list.",
1243
1248
  "accessibility": [
1249
+ "ARIA Combobox",
1244
1250
  "keyboard navigation"
1245
1251
  ],
1246
1252
  "examples": [
@@ -1519,7 +1525,8 @@
1519
1525
  "category": "feedback",
1520
1526
  "description": "A toast is a non-modal, unobtrusive window element used to display brief, auto-expiring messages to the user.",
1521
1527
  "accessibility": [
1522
- "aria live"
1528
+ "aria live",
1529
+ "screen reader"
1523
1530
  ],
1524
1531
  "examples": [
1525
1532
  {
@@ -1604,7 +1611,9 @@
1604
1611
  "hasSecondaryEntryPoint": true,
1605
1612
  "category": "form",
1606
1613
  "description": "The toggle group primitive is a collection of toggle buttons that can be used to select one or more options.",
1607
- "accessibility": [],
1614
+ "accessibility": [
1615
+ "Keyboard navigation"
1616
+ ],
1608
1617
  "examples": [
1609
1618
  {
1610
1619
  "name": "example-0",
@@ -1676,7 +1685,9 @@
1676
1685
  "hasSecondaryEntryPoint": true,
1677
1686
  "category": "feedback",
1678
1687
  "description": "Display additional information on hover.",
1679
- "accessibility": [],
1688
+ "accessibility": [
1689
+ "ARIA Tooltip"
1690
+ ],
1680
1691
  "examples": [
1681
1692
  {
1682
1693
  "name": "example-0",
@@ -1705,7 +1716,7 @@
1705
1716
  },
1706
1717
  {
1707
1718
  "name": "example-5",
1708
- "code": "import { provideTooltipConfig } from 'ng-primitives/tooltip';\n\nbootstrapApplication(AppComponent, {\n providers: [\n provideTooltipConfig({\n offset: 4,\n placement: 'top',\n showDelay: 0,\n hideDelay: 500,\n flip: true,\n container: document.body,\n showOnOverflow: false,\n useTextContent: true,\n cooldown: 300,\n }),\n ],\n});",
1719
+ "code": "import { provideTooltipConfig } from 'ng-primitives/tooltip';\n\nbootstrapApplication(AppComponent, {\n providers: [\n provideTooltipConfig({\n offset: 4,\n placement: 'top',\n showDelay: 0,\n hideDelay: 500,\n flip: true,\n container: document.body,\n showOnOverflow: false,\n useTextContent: true,\n scrollBehavior: 'reposition',\n cooldown: 300,\n }),\n ],\n});",
1709
1720
  "description": "Global Configuration"
1710
1721
  },
1711
1722
  {