devtools-protocol 0.0.952091 → 0.0.952438

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.
@@ -4355,7 +4355,11 @@
4355
4355
  "scrollbar-track-piece",
4356
4356
  "scrollbar-corner",
4357
4357
  "resizer",
4358
- "input-list-button"
4358
+ "input-list-button",
4359
+ "transition",
4360
+ "transition-container",
4361
+ "transition-old-content",
4362
+ "transition-new-content"
4359
4363
  ]
4360
4364
  },
4361
4365
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.952091",
3
+ "version": "0.0.952438",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2049,6 +2049,10 @@ domain DOM
2049
2049
  scrollbar-corner
2050
2050
  resizer
2051
2051
  input-list-button
2052
+ transition
2053
+ transition-container
2054
+ transition-old-content
2055
+ transition-new-content
2052
2056
 
2053
2057
  # Shadow root type.
2054
2058
  type ShadowRootType extends string
@@ -5075,7 +5075,7 @@ export namespace Protocol {
5075
5075
  /**
5076
5076
  * Pseudo element type.
5077
5077
  */
5078
- export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button');
5078
+ export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'transition' | 'transition-container' | 'transition-old-content' | 'transition-new-content');
5079
5079
 
5080
5080
  /**
5081
5081
  * Shadow root type.