chrome-devtools-frontend 1.0.1007307 → 1.0.1008562

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.
Files changed (28) hide show
  1. package/config/gni/devtools_grd_files.gni +3 -0
  2. package/extension-api/ExtensionAPI.d.ts +10 -0
  3. package/front_end/core/common/ParsedURL.ts +9 -1
  4. package/front_end/core/i18n/locales/en-US.json +14 -5
  5. package/front_end/core/i18n/locales/en-XL.json +14 -5
  6. package/front_end/core/sdk/CSSFontFace.ts +8 -0
  7. package/front_end/entrypoints/lighthouse_worker/LighthouseWorkerService.ts +1 -4
  8. package/front_end/generated/InspectorBackendCommands.js +2 -2
  9. package/front_end/generated/protocol.ts +2 -1
  10. package/front_end/legacy_test_runner/lighthouse_test_runner/lighthouse_test_runner.js +16 -0
  11. package/front_end/models/extensions/ExtensionAPI.ts +95 -12
  12. package/front_end/models/extensions/ExtensionEndpoint.ts +69 -0
  13. package/front_end/models/extensions/ExtensionServer.ts +21 -0
  14. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +46 -78
  15. package/front_end/models/extensions/RecorderExtensionEndpoint.ts +43 -0
  16. package/front_end/models/extensions/RecorderPluginManager.ts +30 -0
  17. package/front_end/models/extensions/extensions.ts +2 -0
  18. package/front_end/models/issues_manager/DeprecationIssue.ts +0 -14
  19. package/front_end/panels/application/AppManifestView.ts +2 -1
  20. package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +15 -1
  21. package/front_end/panels/lighthouse/LighthouseController.ts +25 -10
  22. package/front_end/panels/lighthouse/LighthouseStartView.ts +25 -1
  23. package/front_end/panels/lighthouse/LighthouseStartViewFR.ts +1 -1
  24. package/front_end/panels/network/components/RequestHeadersView.css +5 -0
  25. package/front_end/panels/network/components/RequestHeadersView.ts +56 -6
  26. package/front_end/ui/components/tree_outline/TreeOutline.ts +4 -0
  27. package/front_end/ui/components/tree_outline/treeOutline.css +6 -1
  28. package/package.json +1 -1
@@ -9,15 +9,21 @@
9
9
  }
10
10
 
11
11
  li {
12
+ border: 2px solid transparent;
12
13
  list-style: none;
13
14
  text-overflow: ellipsis;
14
15
  min-height: 12px;
15
16
  }
16
17
 
18
+ .compact {
19
+ border: 0;
20
+ }
21
+
17
22
  .tree-node-key {
18
23
  white-space: var(--override-key-whitespace-wrapping);
19
24
  /* Override the default |min-width: auto| to avoid overflows of flex items */
20
25
  min-width: 0;
26
+ flex-grow: 1;
21
27
  }
22
28
 
23
29
  .arrow-icon {
@@ -79,7 +85,6 @@ li.is-top-level:last-child {
79
85
  }
80
86
 
81
87
  .arrow-and-key-wrapper {
82
- border: 2px solid transparent;
83
88
  display: flex;
84
89
  align-content: center;
85
90
  align-items: center;
package/package.json CHANGED
@@ -55,5 +55,5 @@
55
55
  "unittest": "scripts/test/run_unittests.py --no-text-coverage",
56
56
  "watch": "vpython third_party/node/node.py --output scripts/watch_build.js"
57
57
  },
58
- "version": "1.0.1007307"
58
+ "version": "1.0.1008562"
59
59
  }