devtools-protocol 0.0.1181874 → 0.0.1182435

Sign up to get free protection for your applications and to get access to all the features.
@@ -3867,6 +3867,58 @@
3867
3867
  }
3868
3868
  ]
3869
3869
  },
3870
+ {
3871
+ "id": "CSSPropertyRegistration",
3872
+ "description": "Representation of a custom property registration through CSS.registerProperty",
3873
+ "type": "object",
3874
+ "properties": [
3875
+ {
3876
+ "name": "propertyName",
3877
+ "type": "string"
3878
+ },
3879
+ {
3880
+ "name": "initialValue",
3881
+ "optional": true,
3882
+ "$ref": "Value"
3883
+ },
3884
+ {
3885
+ "name": "inherits",
3886
+ "type": "boolean"
3887
+ },
3888
+ {
3889
+ "name": "syntax",
3890
+ "type": "string"
3891
+ }
3892
+ ]
3893
+ },
3894
+ {
3895
+ "id": "CSSPropertyRule",
3896
+ "description": "CSS property at-rule representation.",
3897
+ "type": "object",
3898
+ "properties": [
3899
+ {
3900
+ "name": "styleSheetId",
3901
+ "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
3902
+ "optional": true,
3903
+ "$ref": "StyleSheetId"
3904
+ },
3905
+ {
3906
+ "name": "origin",
3907
+ "description": "Parent stylesheet's origin.",
3908
+ "$ref": "StyleSheetOrigin"
3909
+ },
3910
+ {
3911
+ "name": "propertyName",
3912
+ "description": "Associated property name.",
3913
+ "$ref": "Value"
3914
+ },
3915
+ {
3916
+ "name": "style",
3917
+ "description": "Associated style declaration.",
3918
+ "$ref": "CSSStyle"
3919
+ }
3920
+ ]
3921
+ },
3870
3922
  {
3871
3923
  "id": "CSSKeyframeRule",
3872
3924
  "description": "CSS keyframe rule representation.",
@@ -4165,6 +4217,24 @@
4165
4217
  "$ref": "CSSPositionFallbackRule"
4166
4218
  }
4167
4219
  },
4220
+ {
4221
+ "name": "cssPropertyRules",
4222
+ "description": "A list of CSS at-property rules matching this node.",
4223
+ "optional": true,
4224
+ "type": "array",
4225
+ "items": {
4226
+ "$ref": "CSSPropertyRule"
4227
+ }
4228
+ },
4229
+ {
4230
+ "name": "cssPropertyRegistrations",
4231
+ "description": "A list of CSS property registrations matching this node.",
4232
+ "optional": true,
4233
+ "type": "array",
4234
+ "items": {
4235
+ "$ref": "CSSPropertyRegistration"
4236
+ }
4237
+ },
4168
4238
  {
4169
4239
  "name": "parentLayoutNodeId",
4170
4240
  "description": "Id of the first parent element that does not have display: contents.",
@@ -23989,7 +24059,8 @@
23989
24059
  "type": "string",
23990
24060
  "enum": [
23991
24061
  "AccountChooser",
23992
- "AutoReauthn"
24062
+ "AutoReauthn",
24063
+ "ConfirmIdpSignin"
23993
24064
  ]
23994
24065
  },
23995
24066
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1181874",
3
+ "version": "0.0.1182435",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1830,6 +1830,28 @@ experimental domain CSS
1830
1830
  # List of keyframes.
1831
1831
  array of CSSKeyframeRule keyframes
1832
1832
 
1833
+ # Representation of a custom property registration through CSS.registerProperty
1834
+ type CSSPropertyRegistration extends object
1835
+ properties
1836
+ string propertyName
1837
+ optional Value initialValue
1838
+ boolean inherits
1839
+ string syntax
1840
+
1841
+
1842
+ # CSS property at-rule representation.
1843
+ type CSSPropertyRule extends object
1844
+ properties
1845
+ # The css style sheet identifier (absent for user agent stylesheet and user-specified
1846
+ # stylesheet rules) this rule came from.
1847
+ optional StyleSheetId styleSheetId
1848
+ # Parent stylesheet's origin.
1849
+ StyleSheetOrigin origin
1850
+ # Associated property name.
1851
+ Value propertyName
1852
+ # Associated style declaration.
1853
+ CSSStyle style
1854
+
1833
1855
  # CSS keyframe rule representation.
1834
1856
  type CSSKeyframeRule extends object
1835
1857
  properties
@@ -1957,6 +1979,10 @@ experimental domain CSS
1957
1979
  optional array of CSSKeyframesRule cssKeyframesRules
1958
1980
  # A list of CSS position fallbacks matching this node.
1959
1981
  optional array of CSSPositionFallbackRule cssPositionFallbackRules
1982
+ # A list of CSS at-property rules matching this node.
1983
+ optional array of CSSPropertyRule cssPropertyRules
1984
+ # A list of CSS property registrations matching this node.
1985
+ optional array of CSSPropertyRegistration cssPropertyRegistrations
1960
1986
  # Id of the first parent element that does not have display: contents.
1961
1987
  experimental optional DOM.NodeId parentLayoutNodeId
1962
1988
 
@@ -11372,6 +11398,7 @@ experimental domain FedCm
11372
11398
  enum
11373
11399
  AccountChooser
11374
11400
  AutoReauthn
11401
+ ConfirmIdpSignin
11375
11402
 
11376
11403
  # Corresponds to IdentityRequestAccount
11377
11404
  type Account extends object
@@ -4963,6 +4963,39 @@ export namespace Protocol {
4963
4963
  keyframes: CSSKeyframeRule[];
4964
4964
  }
4965
4965
 
4966
+ /**
4967
+ * Representation of a custom property registration through CSS.registerProperty
4968
+ */
4969
+ export interface CSSPropertyRegistration {
4970
+ propertyName: string;
4971
+ initialValue?: Value;
4972
+ inherits: boolean;
4973
+ syntax: string;
4974
+ }
4975
+
4976
+ /**
4977
+ * CSS property at-rule representation.
4978
+ */
4979
+ export interface CSSPropertyRule {
4980
+ /**
4981
+ * The css style sheet identifier (absent for user agent stylesheet and user-specified
4982
+ * stylesheet rules) this rule came from.
4983
+ */
4984
+ styleSheetId?: StyleSheetId;
4985
+ /**
4986
+ * Parent stylesheet's origin.
4987
+ */
4988
+ origin: StyleSheetOrigin;
4989
+ /**
4990
+ * Associated property name.
4991
+ */
4992
+ propertyName: Value;
4993
+ /**
4994
+ * Associated style declaration.
4995
+ */
4996
+ style: CSSStyle;
4997
+ }
4998
+
4966
4999
  /**
4967
5000
  * CSS keyframe rule representation.
4968
5001
  */
@@ -5152,6 +5185,14 @@ export namespace Protocol {
5152
5185
  * A list of CSS position fallbacks matching this node.
5153
5186
  */
5154
5187
  cssPositionFallbackRules?: CSSPositionFallbackRule[];
5188
+ /**
5189
+ * A list of CSS at-property rules matching this node.
5190
+ */
5191
+ cssPropertyRules?: CSSPropertyRule[];
5192
+ /**
5193
+ * A list of CSS property registrations matching this node.
5194
+ */
5195
+ cssPropertyRegistrations?: CSSPropertyRegistration[];
5155
5196
  /**
5156
5197
  * Id of the first parent element that does not have display: contents.
5157
5198
  */
@@ -17487,7 +17528,7 @@ export namespace Protocol {
17487
17528
  /**
17488
17529
  * Whether the dialog shown is an account chooser or an auto re-authentication dialog.
17489
17530
  */
17490
- export type DialogType = ('AccountChooser' | 'AutoReauthn');
17531
+ export type DialogType = ('AccountChooser' | 'AutoReauthn' | 'ConfirmIdpSignin');
17491
17532
 
17492
17533
  /**
17493
17534
  * Corresponds to IdentityRequestAccount