devtools-protocol 0.0.1004052 → 0.0.1004164

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.
@@ -4804,6 +4804,11 @@
4804
4804
  "name": "compatibilityMode",
4805
4805
  "optional": true,
4806
4806
  "$ref": "CompatibilityMode"
4807
+ },
4808
+ {
4809
+ "name": "assignedSlot",
4810
+ "optional": true,
4811
+ "$ref": "BackendNode"
4807
4812
  }
4808
4813
  ]
4809
4814
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1004052",
3
+ "version": "0.0.1004164",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2274,6 +2274,7 @@ domain DOM
2274
2274
  # Whether the node is SVG.
2275
2275
  optional boolean isSVG
2276
2276
  optional CompatibilityMode compatibilityMode
2277
+ optional BackendNode assignedSlot
2277
2278
 
2278
2279
  # A structure holding an RGBA color.
2279
2280
  type RGBA extends object
@@ -5381,6 +5381,7 @@ export namespace Protocol {
5381
5381
  */
5382
5382
  isSVG?: boolean;
5383
5383
  compatibilityMode?: CompatibilityMode;
5384
+ assignedSlot?: BackendNode;
5384
5385
  }
5385
5386
 
5386
5387
  /**