chrome-devtools-frontend 1.0.1622369 → 1.0.1624583

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 (101) hide show
  1. package/.agents/skills/foundation-test-migration/SKILL.md +1 -1
  2. package/front_end/Images/src/expand.svg +1 -0
  3. package/front_end/core/host/AidaClient.ts +6 -5
  4. package/front_end/core/host/AidaClientTypes.ts +3 -1
  5. package/front_end/core/host/DispatchHttpRequestClient.ts +6 -3
  6. package/front_end/core/platform/api/HostRuntime.ts +3 -0
  7. package/front_end/core/platform/browser/HostRuntime.ts +10 -0
  8. package/front_end/core/platform/node/HostRuntime.ts +10 -0
  9. package/front_end/core/root/Runtime.ts +6 -5
  10. package/front_end/entrypoints/greendev_floaty/FloatyEntrypoint.ts +72 -8
  11. package/front_end/entrypoints/greendev_floaty/floaty.html +1 -1
  12. package/front_end/generated/Deprecation.ts +7 -0
  13. package/front_end/generated/InspectorBackendCommands.ts +1 -1
  14. package/front_end/generated/SupportedCSSProperties.js +6 -6
  15. package/front_end/generated/protocol.ts +1 -0
  16. package/front_end/models/ai_assistance/agents/GreenDevAgent.ts +373 -112
  17. package/front_end/models/ai_assistance/agents/NetworkAgent.snapshot.txt +57 -0
  18. package/front_end/models/ai_assistance/agents/NetworkAgent.ts +2 -1
  19. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +3 -10
  20. package/front_end/models/ai_code_completion/AiCodeCompletion.ts +2 -3
  21. package/front_end/models/ai_code_generation/AiCodeGeneration.ts +2 -3
  22. package/front_end/models/javascript_metadata/NativeFunctions.js +9 -4
  23. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +8 -4
  24. package/front_end/panels/ai_assistance/components/ChatMessage.ts +219 -8
  25. package/front_end/panels/ai_assistance/components/ChatView.ts +2 -2
  26. package/front_end/panels/console/ConsoleView.ts +86 -7
  27. package/front_end/panels/console/ConsoleViewMessage.ts +23 -1
  28. package/front_end/panels/elements/StylePropertiesSection.ts +1 -2
  29. package/front_end/panels/elements/StylePropertyTreeElement.ts +3 -3
  30. package/front_end/panels/elements/StylesAiCodeCompletionProvider.ts +11 -2
  31. package/front_end/panels/elements/StylesSidebarPane.ts +29 -5
  32. package/front_end/panels/elements/stylePropertiesTreeOutline.css +5 -1
  33. package/front_end/panels/emulation/DeviceModeToolbar.ts +37 -13
  34. package/front_end/panels/emulation/deviceModeView.css +25 -0
  35. package/front_end/panels/greendev/GreenDevPanel.ts +30 -3
  36. package/front_end/panels/media/EventDisplayTable.ts +1 -1
  37. package/front_end/panels/mobile_throttling/NetworkThrottlingSelector.ts +48 -27
  38. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +67 -38
  39. package/front_end/panels/network/NetworkConfigView.ts +1 -1
  40. package/front_end/panels/profiler/HeapSnapshotView.ts +1 -22
  41. package/front_end/third_party/chromium/README.chromium +1 -1
  42. package/front_end/third_party/lighthouse/README.chromium +2 -2
  43. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +5176 -5104
  44. package/front_end/third_party/lighthouse/locales/ar-XB.json +72 -36
  45. package/front_end/third_party/lighthouse/locales/ar.json +72 -36
  46. package/front_end/third_party/lighthouse/locales/bg.json +72 -36
  47. package/front_end/third_party/lighthouse/locales/ca.json +72 -36
  48. package/front_end/third_party/lighthouse/locales/cs.json +72 -36
  49. package/front_end/third_party/lighthouse/locales/da.json +74 -38
  50. package/front_end/third_party/lighthouse/locales/de.json +72 -36
  51. package/front_end/third_party/lighthouse/locales/el.json +73 -37
  52. package/front_end/third_party/lighthouse/locales/en-GB.json +74 -38
  53. package/front_end/third_party/lighthouse/locales/en-US.json +245 -17
  54. package/front_end/third_party/lighthouse/locales/en-XL.json +245 -17
  55. package/front_end/third_party/lighthouse/locales/es-419.json +72 -36
  56. package/front_end/third_party/lighthouse/locales/es.json +73 -37
  57. package/front_end/third_party/lighthouse/locales/fi.json +72 -36
  58. package/front_end/third_party/lighthouse/locales/fil.json +74 -38
  59. package/front_end/third_party/lighthouse/locales/fr.json +162 -126
  60. package/front_end/third_party/lighthouse/locales/he.json +74 -38
  61. package/front_end/third_party/lighthouse/locales/hi.json +73 -37
  62. package/front_end/third_party/lighthouse/locales/hr.json +72 -36
  63. package/front_end/third_party/lighthouse/locales/hu.json +73 -37
  64. package/front_end/third_party/lighthouse/locales/id.json +74 -38
  65. package/front_end/third_party/lighthouse/locales/it.json +72 -36
  66. package/front_end/third_party/lighthouse/locales/ja.json +72 -36
  67. package/front_end/third_party/lighthouse/locales/ko.json +72 -36
  68. package/front_end/third_party/lighthouse/locales/lt.json +72 -36
  69. package/front_end/third_party/lighthouse/locales/lv.json +72 -36
  70. package/front_end/third_party/lighthouse/locales/nl.json +73 -37
  71. package/front_end/third_party/lighthouse/locales/no.json +72 -36
  72. package/front_end/third_party/lighthouse/locales/pl.json +72 -36
  73. package/front_end/third_party/lighthouse/locales/pt-PT.json +72 -36
  74. package/front_end/third_party/lighthouse/locales/pt.json +74 -38
  75. package/front_end/third_party/lighthouse/locales/ro.json +72 -36
  76. package/front_end/third_party/lighthouse/locales/ru.json +72 -36
  77. package/front_end/third_party/lighthouse/locales/sk.json +72 -36
  78. package/front_end/third_party/lighthouse/locales/sl.json +72 -36
  79. package/front_end/third_party/lighthouse/locales/sr-Latn.json +73 -37
  80. package/front_end/third_party/lighthouse/locales/sr.json +73 -37
  81. package/front_end/third_party/lighthouse/locales/sv.json +75 -39
  82. package/front_end/third_party/lighthouse/locales/ta.json +73 -37
  83. package/front_end/third_party/lighthouse/locales/te.json +72 -36
  84. package/front_end/third_party/lighthouse/locales/th.json +73 -37
  85. package/front_end/third_party/lighthouse/locales/tr.json +72 -36
  86. package/front_end/third_party/lighthouse/locales/uk.json +72 -36
  87. package/front_end/third_party/lighthouse/locales/vi.json +74 -38
  88. package/front_end/third_party/lighthouse/locales/zh-HK.json +72 -36
  89. package/front_end/third_party/lighthouse/locales/zh-TW.json +74 -38
  90. package/front_end/third_party/lighthouse/locales/zh.json +75 -39
  91. package/front_end/third_party/lighthouse/report/bundle.js +2 -1
  92. package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
  93. package/front_end/ui/components/text_editor/AiCodeCompletionProvider.ts +6 -2
  94. package/front_end/ui/components/text_editor/AiCodeGenerationProvider.ts +4 -1
  95. package/front_end/ui/legacy/SuggestBox.ts +1 -0
  96. package/front_end/ui/legacy/TextPrompt.ts +2 -1
  97. package/front_end/ui/legacy/UIUtils.ts +26 -4
  98. package/front_end/ui/visual_logging/KnownContextValues.ts +20 -0
  99. package/package.json +9 -8
  100. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +0 -134
  101. package/front_end/panels/emulation/components/components.ts +0 -9
@@ -1,7 +1,7 @@
1
1
  Name: Lighthouse
2
2
  Short Name: lighthouse
3
- Version: 13.1.0
4
- Revision: 0248afea9c9443c9fddd73e705256e38e8c6e042
3
+ Version: 13.2.0
4
+ Revision: a160d341f363acf2d99314214a6e0de7d0fead1f
5
5
  Update Mechanism: Manual
6
6
  URL: https://github.com/GoogleChrome/lighthouse
7
7
  License: Apache-2.0