devtools-protocol 0.0.1538951 → 0.0.1541017

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.
@@ -734,7 +734,8 @@
734
734
  },
735
735
  {
736
736
  "name": "iterations",
737
- "description": "`AnimationEffect`'s iterations.",
737
+ "description": "`AnimationEffect`'s iterations. Omitted if the value is infinite.",
738
+ "optional": true,
738
739
  "type": "number"
739
740
  },
740
741
  {
@@ -6775,7 +6776,9 @@
6775
6776
  "file-selector-button",
6776
6777
  "details-content",
6777
6778
  "picker",
6778
- "permission-icon"
6779
+ "permission-icon",
6780
+ "overscroll-area-parent",
6781
+ "overscroll-client-area"
6779
6782
  ]
6780
6783
  },
6781
6784
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1538951",
3
+ "version": "0.0.1541017",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -68,8 +68,8 @@ experimental domain Animation
68
68
  number endDelay
69
69
  # `AnimationEffect`'s iteration start.
70
70
  number iterationStart
71
- # `AnimationEffect`'s iterations.
72
- number iterations
71
+ # `AnimationEffect`'s iterations. Omitted if the value is infinite.
72
+ optional number iterations
73
73
  # `AnimationEffect`'s iteration duration.
74
74
  # Milliseconds for time based animations and
75
75
  # percentage [0 - 100] for scroll driven animations
@@ -72,6 +72,8 @@ domain DOM
72
72
  details-content
73
73
  picker
74
74
  permission-icon
75
+ overscroll-area-parent
76
+ overscroll-client-area
75
77
 
76
78
  # Shadow root type.
77
79
  type ShadowRootType extends string
@@ -3230,9 +3230,9 @@ export namespace Protocol {
3230
3230
  */
3231
3231
  iterationStart: number;
3232
3232
  /**
3233
- * `AnimationEffect`'s iterations.
3233
+ * `AnimationEffect`'s iterations. Omitted if the value is infinite.
3234
3234
  */
3235
- iterations: number;
3235
+ iterations?: number;
3236
3236
  /**
3237
3237
  * `AnimationEffect`'s iteration duration.
3238
3238
  * Milliseconds for time based animations and
@@ -6753,7 +6753,7 @@ export namespace Protocol {
6753
6753
  /**
6754
6754
  * Pseudo element type.
6755
6755
  */
6756
- export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
6756
+ export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon' | 'overscroll-area-parent' | 'overscroll-client-area');
6757
6757
 
6758
6758
  /**
6759
6759
  * Shadow root type.