devtools-protocol 0.0.1272579 → 0.0.1273222

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.
@@ -4062,6 +4062,7 @@
4062
4062
  {
4063
4063
  "id": "CSSPositionFallbackRule",
4064
4064
  "description": "CSS position-fallback rule representation.",
4065
+ "deprecated": true,
4065
4066
  "type": "object",
4066
4067
  "properties": [
4067
4068
  {
@@ -4078,6 +4079,34 @@
4078
4079
  }
4079
4080
  ]
4080
4081
  },
4082
+ {
4083
+ "id": "CSSPositionTryRule",
4084
+ "description": "CSS @position-try rule representation.",
4085
+ "type": "object",
4086
+ "properties": [
4087
+ {
4088
+ "name": "name",
4089
+ "description": "The prelude dashed-ident name",
4090
+ "$ref": "Value"
4091
+ },
4092
+ {
4093
+ "name": "styleSheetId",
4094
+ "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
4095
+ "optional": true,
4096
+ "$ref": "StyleSheetId"
4097
+ },
4098
+ {
4099
+ "name": "origin",
4100
+ "description": "Parent stylesheet's origin.",
4101
+ "$ref": "StyleSheetOrigin"
4102
+ },
4103
+ {
4104
+ "name": "style",
4105
+ "description": "Associated style declaration.",
4106
+ "$ref": "CSSStyle"
4107
+ }
4108
+ ]
4109
+ },
4081
4110
  {
4082
4111
  "id": "CSSKeyframesRule",
4083
4112
  "description": "CSS keyframes rule representation.",
@@ -4477,12 +4506,22 @@
4477
4506
  {
4478
4507
  "name": "cssPositionFallbackRules",
4479
4508
  "description": "A list of CSS position fallbacks matching this node.",
4509
+ "deprecated": true,
4480
4510
  "optional": true,
4481
4511
  "type": "array",
4482
4512
  "items": {
4483
4513
  "$ref": "CSSPositionFallbackRule"
4484
4514
  }
4485
4515
  },
4516
+ {
4517
+ "name": "cssPositionTryRules",
4518
+ "description": "A list of CSS @position-try rules matching this node, based on the position-try-options property.",
4519
+ "optional": true,
4520
+ "type": "array",
4521
+ "items": {
4522
+ "$ref": "CSSPositionTryRule"
4523
+ }
4524
+ },
4486
4525
  {
4487
4526
  "name": "cssPropertyRules",
4488
4527
  "description": "A list of CSS at-property rules matching this node.",
@@ -20444,6 +20483,7 @@
20444
20483
  "documentAppend",
20445
20484
  "documentDelete",
20446
20485
  "documentClear",
20486
+ "documentGet",
20447
20487
  "workletSet",
20448
20488
  "workletAppend",
20449
20489
  "workletDelete",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1272579",
3
+ "version": "0.0.1273222",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1944,12 +1944,25 @@ experimental domain CSS
1944
1944
  CSSStyle style
1945
1945
 
1946
1946
  # CSS position-fallback rule representation.
1947
- type CSSPositionFallbackRule extends object
1947
+ deprecated type CSSPositionFallbackRule extends object
1948
1948
  properties
1949
1949
  Value name
1950
1950
  # List of keyframes.
1951
1951
  array of CSSTryRule tryRules
1952
1952
 
1953
+ # CSS @position-try rule representation.
1954
+ type CSSPositionTryRule extends object
1955
+ properties
1956
+ # The prelude dashed-ident name
1957
+ Value name
1958
+ # The css style sheet identifier (absent for user agent stylesheet and user-specified
1959
+ # stylesheet rules) this rule came from.
1960
+ optional StyleSheetId styleSheetId
1961
+ # Parent stylesheet's origin.
1962
+ StyleSheetOrigin origin
1963
+ # Associated style declaration.
1964
+ CSSStyle style
1965
+
1953
1966
  # CSS keyframes rule representation.
1954
1967
  type CSSKeyframesRule extends object
1955
1968
  properties
@@ -2123,7 +2136,9 @@ experimental domain CSS
2123
2136
  # A list of CSS keyframed animations matching this node.
2124
2137
  optional array of CSSKeyframesRule cssKeyframesRules
2125
2138
  # A list of CSS position fallbacks matching this node.
2126
- optional array of CSSPositionFallbackRule cssPositionFallbackRules
2139
+ deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
2140
+ # A list of CSS @position-try rules matching this node, based on the position-try-options property.
2141
+ optional array of CSSPositionTryRule cssPositionTryRules
2127
2142
  # A list of CSS at-property rules matching this node.
2128
2143
  optional array of CSSPropertyRule cssPropertyRules
2129
2144
  # A list of CSS property registrations matching this node.
@@ -9674,6 +9689,7 @@ experimental domain Storage
9674
9689
  documentAppend
9675
9690
  documentDelete
9676
9691
  documentClear
9692
+ documentGet
9677
9693
  workletSet
9678
9694
  workletAppend
9679
9695
  workletDelete
@@ -5086,6 +5086,29 @@ export namespace Protocol {
5086
5086
  tryRules: CSSTryRule[];
5087
5087
  }
5088
5088
 
5089
+ /**
5090
+ * CSS @position-try rule representation.
5091
+ */
5092
+ export interface CSSPositionTryRule {
5093
+ /**
5094
+ * The prelude dashed-ident name
5095
+ */
5096
+ name: Value;
5097
+ /**
5098
+ * The css style sheet identifier (absent for user agent stylesheet and user-specified
5099
+ * stylesheet rules) this rule came from.
5100
+ */
5101
+ styleSheetId?: StyleSheetId;
5102
+ /**
5103
+ * Parent stylesheet's origin.
5104
+ */
5105
+ origin: StyleSheetOrigin;
5106
+ /**
5107
+ * Associated style declaration.
5108
+ */
5109
+ style: CSSStyle;
5110
+ }
5111
+
5089
5112
  /**
5090
5113
  * CSS keyframes rule representation.
5091
5114
  */
@@ -5351,6 +5374,10 @@ export namespace Protocol {
5351
5374
  * A list of CSS position fallbacks matching this node.
5352
5375
  */
5353
5376
  cssPositionFallbackRules?: CSSPositionFallbackRule[];
5377
+ /**
5378
+ * A list of CSS @position-try rules matching this node, based on the position-try-options property.
5379
+ */
5380
+ cssPositionTryRules?: CSSPositionTryRule[];
5354
5381
  /**
5355
5382
  * A list of CSS at-property rules matching this node.
5356
5383
  */
@@ -15352,7 +15379,7 @@ export namespace Protocol {
15352
15379
  /**
15353
15380
  * Enum of shared storage access types.
15354
15381
  */
15355
- export type SharedStorageAccessType = ('documentAddModule' | 'documentSelectURL' | 'documentRun' | 'documentSet' | 'documentAppend' | 'documentDelete' | 'documentClear' | 'workletSet' | 'workletAppend' | 'workletDelete' | 'workletClear' | 'workletGet' | 'workletKeys' | 'workletEntries' | 'workletLength' | 'workletRemainingBudget' | 'headerSet' | 'headerAppend' | 'headerDelete' | 'headerClear');
15382
+ export type SharedStorageAccessType = ('documentAddModule' | 'documentSelectURL' | 'documentRun' | 'documentSet' | 'documentAppend' | 'documentDelete' | 'documentClear' | 'documentGet' | 'workletSet' | 'workletAppend' | 'workletDelete' | 'workletClear' | 'workletGet' | 'workletKeys' | 'workletEntries' | 'workletLength' | 'workletRemainingBudget' | 'headerSet' | 'headerAppend' | 'headerDelete' | 'headerClear');
15356
15383
 
15357
15384
  /**
15358
15385
  * Struct for a single key-value pair in an origin's shared storage.