@ng-primitives/mcp 0.118.0 → 0.120.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
|
@@ -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
|
],
|
|
@@ -3747,6 +3747,13 @@
|
|
|
3747
3747
|
"isRequired": false,
|
|
3748
3748
|
"defaultValue": "false"
|
|
3749
3749
|
},
|
|
3750
|
+
{
|
|
3751
|
+
"name": "ngpTooltipTriggerAnchor",
|
|
3752
|
+
"type": "HTMLElement | null",
|
|
3753
|
+
"description": "Define an anchor element for positioning the tooltip.\nIf provided, the tooltip will be positioned relative to this element instead of the trigger.",
|
|
3754
|
+
"isRequired": false,
|
|
3755
|
+
"defaultValue": "null"
|
|
3756
|
+
},
|
|
3750
3757
|
{
|
|
3751
3758
|
"name": "ngpTooltipTriggerContext",
|
|
3752
3759
|
"type": "T | undefined",
|
|
@@ -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",
|
|
@@ -433,6 +435,7 @@
|
|
|
433
435
|
"exports": [
|
|
434
436
|
"injectDatePickerConfig",
|
|
435
437
|
"provideDatePickerConfig",
|
|
438
|
+
"type NgpDatePickerConfig",
|
|
436
439
|
"NgpDatePickerCellRender",
|
|
437
440
|
"injectDatePickerCellDate",
|
|
438
441
|
"injectDatePickerCellRender",
|