chrome-devtools-frontend 1.0.1001476 → 1.0.1002543

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 (73) hide show
  1. package/config/gni/devtools_grd_files.gni +4 -6
  2. package/front_end/core/common/ParsedURL.ts +3 -3
  3. package/front_end/core/host/InspectorFrontendHost.ts +30 -1
  4. package/front_end/core/i18n/locales/en-US.json +6 -30
  5. package/front_end/core/i18n/locales/en-XL.json +6 -30
  6. package/front_end/core/protocol_client/InspectorBackend.ts +4 -0
  7. package/front_end/core/root/Runtime.ts +7 -3
  8. package/front_end/core/sdk/ServiceWorkerManager.ts +6 -5
  9. package/front_end/entrypoints/formatter_worker/FormatterActions.ts +14 -0
  10. package/front_end/entrypoints/formatter_worker/ScopeParser.ts +491 -0
  11. package/front_end/entrypoints/formatter_worker/Substitute.ts +4 -440
  12. package/front_end/entrypoints/formatter_worker/formatter_worker.ts +2 -0
  13. package/front_end/generated/InspectorBackendCommands.js +38 -10
  14. package/front_end/generated/protocol-mapping.d.ts +5 -1
  15. package/front_end/generated/protocol-proxy-api.d.ts +4 -1
  16. package/front_end/generated/protocol.ts +50 -10
  17. package/front_end/models/bindings/CompilerScriptMapping.ts +1 -1
  18. package/front_end/models/issues_manager/AttributionReportingIssue.ts +5 -36
  19. package/front_end/models/issues_manager/DeprecationIssue.ts +0 -69
  20. package/front_end/models/issues_manager/Issue.ts +8 -4
  21. package/front_end/models/timeline_model/TimelineModel.ts +0 -48
  22. package/front_end/panels/application/AppManifestView.ts +3 -3
  23. package/front_end/panels/application/ApplicationPanelCacheSection.ts +3 -1
  24. package/front_end/panels/application/ApplicationPanelSidebar.ts +11 -6
  25. package/front_end/panels/application/ApplicationPanelTreeElement.ts +2 -2
  26. package/front_end/panels/application/BackgroundServiceView.ts +5 -4
  27. package/front_end/panels/application/ResourcesPanel.ts +1 -1
  28. package/front_end/panels/console/ConsoleViewMessage.ts +6 -3
  29. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +3 -2
  30. package/front_end/panels/elements/StylePropertyTreeElement.ts +19 -13
  31. package/front_end/panels/elements/StylesSidebarPane.ts +53 -0
  32. package/front_end/panels/issues/AffectedResourcesView.ts +4 -3
  33. package/front_end/panels/issues/AffectedSourcesView.ts +2 -1
  34. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +0 -43
  35. package/front_end/panels/issues/IssueView.ts +1 -1
  36. package/front_end/panels/lighthouse/LighthouseController.ts +5 -3
  37. package/front_end/panels/lighthouse/LighthouseReporterTypes.ts +2 -1
  38. package/front_end/panels/lighthouse/lighthousePanel.css +4 -0
  39. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +2 -2
  40. package/front_end/panels/profiler/HeapSnapshotView.ts +2 -1
  41. package/front_end/panels/profiler/ProfileDataGrid.ts +1 -1
  42. package/front_end/panels/security/SecurityPanel.ts +6 -5
  43. package/front_end/panels/settings/SettingsScreen.ts +2 -3
  44. package/front_end/panels/timeline/PerformanceModel.ts +2 -6
  45. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +1 -14
  46. package/front_end/panels/timeline/TimelineUIUtils.ts +14 -12
  47. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1036 -1088
  48. package/front_end/third_party/lighthouse/locales/en-US.json +241 -4
  49. package/front_end/third_party/lighthouse/locales/en-XL.json +241 -4
  50. package/front_end/third_party/lighthouse/report/bundle.d.ts +2 -0
  51. package/front_end/third_party/lighthouse/report/bundle.js +18 -12
  52. package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
  53. package/front_end/ui/components/docs/linkifier/simple-url.ts +2 -1
  54. package/front_end/ui/components/docs/panel_feedback/basic.ts +3 -2
  55. package/front_end/ui/components/docs/panel_feedback/button.ts +2 -1
  56. package/front_end/ui/components/linkifier/LinkifierImpl.ts +4 -3
  57. package/front_end/ui/components/linkifier/LinkifierUtils.ts +2 -3
  58. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +4 -6
  59. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +5 -4
  60. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +3 -3
  61. package/front_end/ui/legacy/EmptyWidget.ts +2 -1
  62. package/front_end/ui/legacy/UIUtils.ts +4 -4
  63. package/front_end/ui/legacy/XLink.ts +12 -13
  64. package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +2 -4
  65. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +1 -1
  66. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +0 -2
  67. package/front_end/ui/legacy/components/utils/ImagePreview.ts +3 -7
  68. package/front_end/ui/legacy/components/utils/Linkifier.ts +23 -23
  69. package/front_end/ui/legacy/toolbar.css +1 -1
  70. package/package.json +1 -1
  71. package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourceEventId.md +0 -3
  72. package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourceExpiry.md +0 -4
  73. package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourcePriority.md +0 -4

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.