@ng-primitives/mcp 0.110.0 → 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
|
@@ -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",
|
|
@@ -1716,7 +1716,7 @@
|
|
|
1716
1716
|
},
|
|
1717
1717
|
{
|
|
1718
1718
|
"name": "example-5",
|
|
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 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});",
|
|
1720
1720
|
"description": "Global Configuration"
|
|
1721
1721
|
},
|
|
1722
1722
|
{
|