devtools-protocol 0.0.1642743 → 0.0.1643702

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.
@@ -8853,6 +8853,12 @@
8853
8853
  "name": "enable",
8854
8854
  "description": "If true, opens the popover and keeps it open. If false, closes the\npopover if it was previously force-opened.",
8855
8855
  "type": "boolean"
8856
+ },
8857
+ {
8858
+ "name": "invokerNodeId",
8859
+ "description": "Optional ID of the element invoking this popover, used to establish the implicit anchor.\nIf not provided, it will fall back to the first invoker in the document, preferring\nelements with a popovertarget attribute over those with a commandfor attribute. Note that\nif there are multiple invokers, this is just an estimate.",
8860
+ "optional": true,
8861
+ "$ref": "BackendNodeId"
8856
8862
  }
8857
8863
  ],
8858
8864
  "returns": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1642743",
3
+ "version": "0.0.1643702",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -816,6 +816,11 @@ domain DOM
816
816
  # If true, opens the popover and keeps it open. If false, closes the
817
817
  # popover if it was previously force-opened.
818
818
  boolean enable
819
+ # Optional ID of the element invoking this popover, used to establish the implicit anchor.
820
+ # If not provided, it will fall back to the first invoker in the document, preferring
821
+ # elements with a popovertarget attribute over those with a commandfor attribute. Note that
822
+ # if there are multiple invokers, this is just an estimate.
823
+ optional BackendNodeId invokerNodeId
819
824
  returns
820
825
  # List of popovers that were closed in order to respect popover stacking order.
821
826
  array of NodeId nodeIds
@@ -8056,6 +8056,13 @@ export namespace Protocol {
8056
8056
  * popover if it was previously force-opened.
8057
8057
  */
8058
8058
  enable: boolean;
8059
+ /**
8060
+ * Optional ID of the element invoking this popover, used to establish the implicit anchor.
8061
+ * If not provided, it will fall back to the first invoker in the document, preferring
8062
+ * elements with a popovertarget attribute over those with a commandfor attribute. Note that
8063
+ * if there are multiple invokers, this is just an estimate.
8064
+ */
8065
+ invokerNodeId?: BackendNodeId;
8059
8066
  }
8060
8067
 
8061
8068
  export interface ForceShowPopoverResponse {