chrome-devtools-frontend 1.0.1362775 → 1.0.1367881

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 (860) hide show
  1. package/.eslintrc.js +1 -0
  2. package/.stylelintrc.json +2 -1
  3. package/config/gni/devtools_grd_files.gni +14 -2
  4. package/config/gni/devtools_image_files.gni +2 -1
  5. package/docs/contributing/issues.md +15 -0
  6. package/extensions/cxx_debugging/src/ExtensionOptions.ts +0 -1
  7. package/extensions/cxx_debugging/third_party/llvm/README.chromium +1 -1
  8. package/front_end/.eslintrc.js +0 -5
  9. package/front_end/Images/src/button-magic.svg +3 -0
  10. package/front_end/Images/src/performance-panel-delete-annotation.svg +32 -0
  11. package/front_end/Images/src/performance-panel-diagram.svg +19 -14
  12. package/front_end/Images/src/performance-panel-entry-label.svg +9 -16
  13. package/front_end/Images/src/performance-panel-time-range.svg +2 -8
  14. package/front_end/core/common/AppProvider.ts +1 -1
  15. package/front_end/core/common/Object.ts +2 -7
  16. package/front_end/core/common/SettingRegistration.ts +1 -1
  17. package/front_end/core/common/Settings.ts +1 -1
  18. package/front_end/core/host/AidaClient.ts +7 -1
  19. package/front_end/core/host/InspectorFrontendHost.ts +1 -1
  20. package/front_end/core/host/ResourceLoader.ts +1 -1
  21. package/front_end/core/host/UserMetrics.ts +14 -2
  22. package/front_end/core/i18n/time-utilities.ts +7 -1
  23. package/front_end/core/platform/ArrayUtilities.ts +1 -0
  24. package/front_end/core/platform/DevToolsPath.ts +1 -1
  25. package/front_end/core/platform/Timing.ts +1 -1
  26. package/front_end/core/platform/UIString.ts +1 -1
  27. package/front_end/core/platform/UserVisibleError.ts +1 -1
  28. package/front_end/core/root/Runtime.ts +11 -2
  29. package/front_end/core/sdk/AccessibilityModel.ts +3 -4
  30. package/front_end/core/sdk/CPUProfilerModel.ts +3 -4
  31. package/front_end/core/sdk/CSSContainerQuery.ts +3 -3
  32. package/front_end/core/sdk/CSSLayer.ts +2 -2
  33. package/front_end/core/sdk/CSSMatchedStyles.test.ts +1 -0
  34. package/front_end/core/sdk/CSSMatchedStyles.ts +10 -2
  35. package/front_end/core/sdk/CSSMedia.ts +2 -2
  36. package/front_end/core/sdk/CSSMetadata.ts +21 -0
  37. package/front_end/core/sdk/CSSModel.ts +1 -0
  38. package/front_end/core/sdk/CSSProperty.ts +2 -2
  39. package/front_end/core/sdk/CSSQuery.ts +2 -2
  40. package/front_end/core/sdk/CSSRule.ts +2 -2
  41. package/front_end/core/sdk/CSSScope.ts +2 -2
  42. package/front_end/core/sdk/CSSStyleDeclaration.ts +3 -3
  43. package/front_end/core/sdk/CSSStyleSheetHeader.ts +4 -4
  44. package/front_end/core/sdk/CSSSupports.ts +2 -2
  45. package/front_end/core/sdk/CookieModel.ts +1 -1
  46. package/front_end/core/sdk/DOMDebuggerModel.ts +1 -1
  47. package/front_end/core/sdk/DebuggerModel.ts +9 -3
  48. package/front_end/core/sdk/EnhancedTracesParser.test.ts +1 -5
  49. package/front_end/core/sdk/EnhancedTracesParser.ts +2 -6
  50. package/front_end/core/sdk/EventBreakpointsModel.ts +1 -2
  51. package/front_end/core/sdk/FrameAssociated.ts +1 -1
  52. package/front_end/core/sdk/FrameManager.ts +9 -7
  53. package/front_end/core/sdk/HeapProfilerModel.ts +3 -4
  54. package/front_end/core/sdk/IsolateManager.ts +2 -3
  55. package/front_end/core/sdk/LayerTreeBase.ts +2 -2
  56. package/front_end/core/sdk/NetworkManager.ts +1 -1
  57. package/front_end/core/sdk/OverlayModel.ts +2 -2
  58. package/front_end/core/sdk/OverlayPersistentHighlighter.ts +1 -1
  59. package/front_end/core/sdk/PageLoad.ts +1 -1
  60. package/front_end/core/sdk/PageResourceLoader.ts +1 -1
  61. package/front_end/core/sdk/RemoteObject.ts +3 -3
  62. package/front_end/core/sdk/Resource.ts +2 -2
  63. package/front_end/core/sdk/ResourceTreeModel.ts +1 -1
  64. package/front_end/core/sdk/SDKModel.ts +1 -1
  65. package/front_end/core/sdk/Script.ts +5 -5
  66. package/front_end/core/sdk/ServiceWorkerCacheModel.ts +5 -7
  67. package/front_end/core/sdk/SourceMap.ts +1 -1
  68. package/front_end/core/sdk/SourceMapManager.ts +1 -1
  69. package/front_end/core/sdk/SourceMapScopeChainEntry.ts +2 -2
  70. package/front_end/core/sdk/SourceMapScopesInfo.ts +2 -2
  71. package/front_end/core/sdk/Target.ts +3 -2
  72. package/front_end/core/sdk/TargetManager.ts +4 -1
  73. package/front_end/core/sdk/WebAuthnModel.ts +20 -0
  74. package/front_end/core/sdk/sdk-meta.ts +7 -0
  75. package/front_end/devtools_compatibility.js +3 -3
  76. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +1 -1
  77. package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +1 -1
  78. package/front_end/entrypoints/formatter_worker/IdentityFormatter.ts +1 -1
  79. package/front_end/entrypoints/formatter_worker/JSONFormatter.ts +1 -1
  80. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +1 -1
  81. package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +1 -1
  82. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +12 -12
  83. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +1 -1
  84. package/front_end/entrypoints/main/MainImpl.ts +11 -1
  85. package/front_end/generated/InspectorBackendCommands.js +5 -3
  86. package/front_end/generated/SupportedCSSProperties.js +20 -14
  87. package/front_end/generated/protocol-mapping.d.ts +10 -0
  88. package/front_end/generated/protocol-proxy-api.d.ts +12 -0
  89. package/front_end/generated/protocol.ts +32 -1
  90. package/front_end/legacy_test_runner/sdk_test_runner/sdk_test_runner.js +4 -2
  91. package/front_end/models/bindings/CSSWorkspaceBinding.ts +2 -2
  92. package/front_end/models/bindings/CompilerScriptMapping.ts +1 -2
  93. package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +1 -1
  94. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +2 -2
  95. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
  96. package/front_end/models/bindings/DefaultScriptMapping.ts +1 -1
  97. package/front_end/models/bindings/IgnoreListManager.test.ts +49 -12
  98. package/front_end/models/bindings/IgnoreListManager.ts +79 -5
  99. package/front_end/models/bindings/ResourceMapping.ts +1 -1
  100. package/front_end/models/bindings/StylesSourceMapping.ts +11 -6
  101. package/front_end/models/breakpoints/BreakpointManager.test.ts +1 -1
  102. package/front_end/models/extensions/ExtensionPanel.ts +1 -1
  103. package/front_end/models/extensions/ExtensionServer.test.ts +1 -1
  104. package/front_end/models/extensions/ExtensionServer.ts +1 -1
  105. package/front_end/models/extensions/ExtensionView.ts +1 -1
  106. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +1 -1
  107. package/front_end/models/extensions/RecorderPluginManager.ts +1 -1
  108. package/front_end/models/har/Importer.ts +1 -1
  109. package/front_end/models/issues_manager/AttributionReportingIssue.ts +1 -1
  110. package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -2
  111. package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +1 -1
  112. package/front_end/models/issues_manager/CorsIssue.ts +1 -1
  113. package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
  114. package/front_end/models/issues_manager/Issue.ts +1 -1
  115. package/front_end/models/issues_manager/IssueResolver.ts +2 -2
  116. package/front_end/models/issues_manager/IssuesManager.ts +1 -1
  117. package/front_end/models/issues_manager/LowTextContrastIssue.ts +1 -1
  118. package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
  119. package/front_end/models/issues_manager/PropertyRuleIssue.ts +1 -1
  120. package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
  121. package/front_end/models/issues_manager/RelatedIssue.ts +1 -1
  122. package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +3 -3
  123. package/front_end/models/issues_manager/SourceFrameIssuesManager.ts +1 -1
  124. package/front_end/models/issues_manager/StylesheetLoadingIssue.ts +1 -1
  125. package/front_end/models/javascript_metadata/NativeFunctions.js +69 -61
  126. package/front_end/models/live-metrics/LiveMetrics.ts +41 -34
  127. package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +1 -1
  128. package/front_end/models/persistence/EditFileSystemView.ts +1 -1
  129. package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +2 -3
  130. package/front_end/models/persistence/IsolatedFileSystemManager.ts +2 -3
  131. package/front_end/models/persistence/WorkspaceSettingsTab.ts +2 -2
  132. package/front_end/models/text_utils/ContentProvider.ts +3 -3
  133. package/front_end/models/text_utils/StaticContentProvider.ts +1 -5
  134. package/front_end/models/text_utils/TextUtils.ts +1 -1
  135. package/front_end/models/text_utils/WasmDisassembly.ts +1 -1
  136. package/front_end/models/timeline_model/TimelineProfileTree.test.ts +21 -21
  137. package/front_end/models/timeline_model/TimelineProfileTree.ts +1 -1
  138. package/front_end/models/trace/ModelImpl.test.ts +1 -1
  139. package/front_end/models/trace/ModelImpl.ts +10 -27
  140. package/front_end/models/trace/Processor.test.ts +16 -15
  141. package/front_end/models/trace/Processor.ts +33 -9
  142. package/front_end/models/trace/extras/FilmStrip.ts +2 -2
  143. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +2 -2
  144. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +10 -1
  145. package/front_end/models/trace/handlers/MetaHandler.ts +4 -0
  146. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +1 -1
  147. package/front_end/models/trace/handlers/RendererHandler.test.ts +1 -1
  148. package/front_end/models/trace/handlers/SamplesHandler.test.ts +2 -2
  149. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +5 -4
  150. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +7 -5
  151. package/front_end/models/trace/handlers/Threads.ts +2 -2
  152. package/front_end/models/trace/handlers/WarningsHandler.ts +1 -1
  153. package/front_end/models/trace/helpers/Network.ts +20 -2
  154. package/front_end/models/trace/helpers/SyntheticEvents.test.ts +1 -1
  155. package/front_end/models/trace/helpers/Trace.test.ts +34 -3
  156. package/front_end/models/trace/helpers/Trace.ts +12 -0
  157. package/front_end/models/trace/helpers/TreeHelpers.test.ts +52 -0
  158. package/front_end/models/trace/helpers/TreeHelpers.ts +80 -1
  159. package/front_end/models/trace/insights/Common.ts +1 -1
  160. package/front_end/models/trace/insights/CumulativeLayoutShift.test.ts +24 -2
  161. package/front_end/models/trace/insights/CumulativeLayoutShift.ts +102 -27
  162. package/front_end/models/trace/insights/DocumentLatency.test.ts +22 -11
  163. package/front_end/models/trace/insights/DocumentLatency.ts +9 -6
  164. package/front_end/models/trace/insights/FontDisplay.ts +5 -1
  165. package/front_end/models/trace/insights/InteractionToNextPaint.ts +4 -3
  166. package/front_end/models/trace/insights/LargestContentfulPaint.test.ts +9 -1
  167. package/front_end/models/trace/insights/LargestContentfulPaint.ts +26 -6
  168. package/front_end/models/trace/insights/RenderBlocking.test.ts +10 -16
  169. package/front_end/models/trace/insights/RenderBlocking.ts +6 -4
  170. package/front_end/models/trace/insights/SlowCSSSelector.ts +3 -1
  171. package/front_end/models/trace/insights/ThirdPartyWeb.ts +15 -2
  172. package/front_end/models/trace/insights/Viewport.ts +1 -0
  173. package/front_end/models/trace/insights/types.ts +14 -11
  174. package/front_end/models/trace/lantern/graph/BaseNode.ts +2 -2
  175. package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +4 -3
  176. package/front_end/models/trace/lantern/simulation/TCPConnection.ts +1 -1
  177. package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +1 -1
  178. package/front_end/models/trace/root-causes/LayoutShift.ts +3 -20
  179. package/front_end/models/trace/types/Extensions.ts +3 -7
  180. package/front_end/models/trace/types/File.ts +2 -8
  181. package/front_end/models/trace/types/TraceEvents.ts +10 -4
  182. package/front_end/models/workspace/UISourceCode.test.ts +3 -3
  183. package/front_end/models/workspace/WorkspaceImpl.ts +1 -1
  184. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +1 -1
  185. package/front_end/panels/animation/AnimationGroupPreviewUI.ts +1 -1
  186. package/front_end/panels/animation/AnimationModel.ts +1 -1
  187. package/front_end/panels/animation/AnimationTimeline.ts +1 -1
  188. package/front_end/panels/animation/AnimationUI.ts +1 -1
  189. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +90 -0
  190. package/front_end/panels/application/ApplicationPanelSidebar.ts +123 -20
  191. package/front_end/panels/application/ApplicationPanelTreeElement.ts +1 -1
  192. package/front_end/panels/application/BackForwardCacheTreeElement.ts +1 -1
  193. package/front_end/panels/application/BounceTrackingMitigationsTreeElement.ts +1 -1
  194. package/front_end/panels/application/DOMStorageItemsView.ts +4 -2
  195. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +89 -0
  196. package/front_end/panels/application/ExtensionStorageItemsView.ts +219 -0
  197. package/front_end/panels/application/ExtensionStorageModel.test.ts +12 -0
  198. package/front_end/panels/application/ExtensionStorageModel.ts +56 -13
  199. package/front_end/panels/application/IndexedDBViews.ts +14 -19
  200. package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
  201. package/front_end/panels/application/PreloadingTreeElement.ts +1 -1
  202. package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
  203. package/front_end/panels/application/ResourcesPanel.ts +18 -1
  204. package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +1 -1
  205. package/front_end/panels/application/SharedStorageListTreeElement.ts +1 -1
  206. package/front_end/panels/application/SharedStorageTreeElement.ts +2 -2
  207. package/front_end/panels/application/StorageBucketsTreeElement.ts +1 -1
  208. package/front_end/panels/application/TrustTokensTreeElement.ts +1 -1
  209. package/front_end/panels/application/application.ts +2 -0
  210. package/front_end/panels/application/components/BackForwardCacheView.ts +76 -72
  211. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +32 -29
  212. package/front_end/panels/application/components/EndpointsGrid.ts +5 -4
  213. package/front_end/panels/application/components/FrameDetailsView.ts +110 -127
  214. package/front_end/panels/application/components/InterestGroupAccessGrid.ts +11 -11
  215. package/front_end/panels/application/components/OriginTrialTreeView.ts +36 -34
  216. package/front_end/panels/application/components/PermissionsPolicySection.ts +31 -33
  217. package/front_end/panels/application/components/ProtocolHandlersView.ts +15 -14
  218. package/front_end/panels/application/components/ReportsGrid.ts +11 -9
  219. package/front_end/panels/application/components/ServiceWorkerRouterView.ts +0 -1
  220. package/front_end/panels/application/components/SharedStorageAccessGrid.ts +11 -11
  221. package/front_end/panels/application/components/SharedStorageMetadataView.ts +16 -14
  222. package/front_end/panels/application/components/StackTrace.ts +18 -17
  223. package/front_end/panels/application/components/StorageMetadataView.ts +19 -18
  224. package/front_end/panels/application/components/TrustTokensView.ts +17 -16
  225. package/front_end/panels/application/preloading/PreloadingView.ts +14 -11
  226. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +7 -6
  227. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +42 -45
  228. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +13 -11
  229. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +11 -9
  230. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +5 -4
  231. package/front_end/panels/application/preloading/components/PreloadingString.ts +2 -0
  232. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +10 -8
  233. package/front_end/panels/application/preloading/components/RuleSetGrid.ts +20 -16
  234. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +50 -57
  235. package/front_end/panels/application/resourcesSidebar.css +0 -3
  236. package/front_end/panels/autofill/AutofillView.ts +19 -14
  237. package/front_end/panels/console/ConsoleFilter.ts +1 -1
  238. package/front_end/panels/console/ConsoleSidebar.ts +1 -1
  239. package/front_end/panels/console/ConsoleViewMessage.ts +2 -2
  240. package/front_end/panels/console/consoleView.css +4 -3
  241. package/front_end/panels/coverage/CoverageDecorationManager.ts +1 -1
  242. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +1 -1
  243. package/front_end/panels/css_overview/CSSOverviewController.ts +2 -2
  244. package/front_end/panels/css_overview/CSSOverviewModel.ts +2 -3
  245. package/front_end/panels/css_overview/CSSOverviewPanel.ts +5 -7
  246. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +12 -10
  247. package/front_end/panels/elements/AccessibilityTreeUtils.ts +9 -4
  248. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +3 -3
  249. package/front_end/panels/elements/ComputedStyleWidget.ts +6 -4
  250. package/front_end/panels/elements/ElementsPanel.ts +7 -6
  251. package/front_end/panels/elements/ElementsTreeElement.ts +35 -0
  252. package/front_end/panels/elements/ElementsTreeOutline.ts +1 -1
  253. package/front_end/panels/elements/PropertyMatchers.test.ts +57 -0
  254. package/front_end/panels/elements/PropertyMatchers.ts +78 -1
  255. package/front_end/panels/elements/StyleEditorWidget.ts +2 -2
  256. package/front_end/panels/elements/StylePropertiesSection.test.ts +1 -0
  257. package/front_end/panels/elements/StylePropertyHighlighter.test.ts +1 -0
  258. package/front_end/panels/elements/StylePropertyHighlighter.ts +2 -2
  259. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +36 -3
  260. package/front_end/panels/elements/StylePropertyTreeElement.ts +72 -26
  261. package/front_end/panels/elements/StylesSidebarPane.test.ts +2 -0
  262. package/front_end/panels/elements/TopLayerContainer.ts +1 -2
  263. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +8 -7
  264. package/front_end/panels/elements/components/AdornerSettingsPane.ts +3 -4
  265. package/front_end/panels/elements/components/AnchorFunctionLinkSwatch.ts +8 -7
  266. package/front_end/panels/elements/components/CSSHintDetailsView.ts +3 -2
  267. package/front_end/panels/elements/components/CSSPropertyDocsView.ts +3 -2
  268. package/front_end/panels/elements/components/CSSQuery.ts +0 -1
  269. package/front_end/panels/elements/components/CSSVariableValueView.ts +1 -3
  270. package/front_end/panels/elements/components/ComputedStyleProperty.ts +0 -1
  271. package/front_end/panels/elements/components/ComputedStyleTrace.ts +0 -1
  272. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +15 -11
  273. package/front_end/panels/elements/components/ElementsBreadcrumbsUtils.ts +1 -1
  274. package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +6 -4
  275. package/front_end/panels/elements/components/LayoutPane.ts +8 -7
  276. package/front_end/panels/elements/components/QueryContainer.test.ts +2 -3
  277. package/front_end/panels/elements/components/QueryContainer.ts +10 -9
  278. package/front_end/panels/elements/components/StylePropertyEditor.ts +4 -4
  279. package/front_end/panels/elements/components/computedStyleProperty.css +2 -1
  280. package/front_end/panels/elements/components/cssPropertyDocsView.css +3 -2
  281. package/front_end/panels/elements/elementsTreeOutline.css +17 -0
  282. package/front_end/panels/elements/stylesSidebarPane.css +2 -2
  283. package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
  284. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +3 -1
  285. package/front_end/panels/explain/components/ConsoleInsight.ts +47 -46
  286. package/front_end/panels/explain/components/consoleInsight.css +0 -9
  287. package/front_end/panels/freestyler/AiAgent.ts +8 -2
  288. package/front_end/panels/freestyler/DrJonesFileAgent.test.ts +201 -0
  289. package/front_end/panels/freestyler/DrJonesFileAgent.ts +196 -0
  290. package/front_end/panels/freestyler/DrJonesNetworkAgent.test.ts +1 -1
  291. package/front_end/panels/freestyler/DrJonesNetworkAgent.ts +34 -31
  292. package/front_end/panels/freestyler/DrJonesPerformanceAgent.test.ts +195 -0
  293. package/front_end/panels/freestyler/DrJonesPerformanceAgent.ts +193 -0
  294. package/front_end/panels/freestyler/FreestylerAgent.test.ts +177 -12
  295. package/front_end/panels/freestyler/FreestylerAgent.ts +83 -8
  296. package/front_end/panels/freestyler/FreestylerEvaluateAction.test.ts +21 -1
  297. package/front_end/panels/freestyler/FreestylerEvaluateAction.ts +3 -0
  298. package/front_end/panels/freestyler/FreestylerPanel.test.ts +16 -2
  299. package/front_end/panels/freestyler/FreestylerPanel.ts +126 -15
  300. package/front_end/panels/freestyler/components/FreestylerChatUi.test.ts +21 -2
  301. package/front_end/panels/freestyler/components/FreestylerChatUi.ts +294 -145
  302. package/front_end/panels/freestyler/components/ProvideFeedback.ts +16 -13
  303. package/front_end/panels/freestyler/components/freestylerChatUi.css +78 -26
  304. package/front_end/panels/freestyler/freestyler-meta.ts +64 -9
  305. package/front_end/panels/freestyler/freestyler.ts +2 -0
  306. package/front_end/panels/issues/AffectedResourcesView.ts +2 -2
  307. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +5 -4
  308. package/front_end/panels/issues/CorsIssueDetailsView.ts +6 -6
  309. package/front_end/panels/issues/GenericIssueDetailsView.ts +3 -3
  310. package/front_end/panels/issues/IssueView.ts +2 -2
  311. package/front_end/panels/issues/components/ElementsPanelLink.ts +3 -1
  312. package/front_end/panels/issues/components/HideIssuesMenu.ts +6 -5
  313. package/front_end/panels/lighthouse/LighthouseController.ts +2 -2
  314. package/front_end/panels/lighthouse/LighthousePanel.ts +1 -1
  315. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +2 -6
  316. package/front_end/panels/lighthouse/LighthouseStartView.ts +1 -1
  317. package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -1
  318. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -1
  319. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +8 -2
  320. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +6 -6
  321. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +11 -0
  322. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +26 -31
  323. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +5 -5
  324. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +11 -14
  325. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +1 -3
  326. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +5 -4
  327. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +0 -1
  328. package/front_end/panels/media/EventDisplayTable.ts +1 -1
  329. package/front_end/panels/media/EventTimelineView.ts +1 -1
  330. package/front_end/panels/media/PlayerDetailView.ts +3 -3
  331. package/front_end/panels/media/PlayerListView.ts +2 -2
  332. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +23 -29
  333. package/front_end/panels/network/NetworkConfigView.ts +1 -2
  334. package/front_end/panels/network/NetworkDataGridNode.ts +4 -153
  335. package/front_end/panels/network/NetworkFrameGrouper.ts +1 -1
  336. package/front_end/panels/network/NetworkItemView.ts +1 -1
  337. package/front_end/panels/network/NetworkLogView.ts +1 -1
  338. package/front_end/panels/network/NetworkLogViewColumns.ts +4 -6
  339. package/front_end/panels/network/NetworkWaterfallColumn.ts +5 -8
  340. package/front_end/panels/network/RequestBinaryResponseView.test.ts +69 -0
  341. package/front_end/panels/network/RequestBinaryResponseView.ts +67 -0
  342. package/front_end/panels/network/RequestResponseView.test.ts +28 -1
  343. package/front_end/panels/network/RequestResponseView.ts +14 -7
  344. package/front_end/panels/network/components/EditableSpan.ts +0 -1
  345. package/front_end/panels/network/components/HeaderSectionRow.test.ts +1 -1
  346. package/front_end/panels/network/components/HeaderSectionRow.ts +22 -21
  347. package/front_end/panels/network/components/RequestHeaderSection.ts +7 -7
  348. package/front_end/panels/network/components/RequestHeadersView.ts +25 -26
  349. package/front_end/panels/network/components/RequestTrustTokensView.ts +32 -35
  350. package/front_end/panels/network/components/ResponseHeaderSection.ts +8 -10
  351. package/front_end/panels/network/components/WebBundleInfoView.ts +13 -11
  352. package/front_end/panels/network/network.ts +2 -0
  353. package/front_end/panels/network/networkConfigView.css +12 -5
  354. package/front_end/panels/network/networkLogView.css +4 -15
  355. package/front_end/panels/network/requestHTMLView.css +1 -0
  356. package/front_end/panels/profiler/BottomUpProfileDataGrid.ts +3 -3
  357. package/front_end/panels/profiler/HeapProfileView.ts +1 -1
  358. package/front_end/panels/profiler/HeapProfilerPanel.ts +2 -2
  359. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +3 -3
  360. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +3 -3
  361. package/front_end/panels/profiler/HeapSnapshotProxy.ts +1 -1
  362. package/front_end/panels/profiler/ProfileLauncherView.ts +3 -3
  363. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +4 -2
  364. package/front_end/panels/protocol_monitor/components/JSONEditor.ts +22 -15
  365. package/front_end/panels/protocol_monitor/components/Toolbar.ts +4 -4
  366. package/front_end/panels/recorder/RecorderController.ts +39 -43
  367. package/front_end/panels/recorder/components/ControlButton.ts +1 -1
  368. package/front_end/panels/recorder/components/CreateRecordingView.ts +15 -15
  369. package/front_end/panels/recorder/components/ExtensionView.ts +9 -8
  370. package/front_end/panels/recorder/components/RecordingListView.ts +15 -13
  371. package/front_end/panels/recorder/components/RecordingView.ts +92 -84
  372. package/front_end/panels/recorder/components/ReplaySection.ts +6 -6
  373. package/front_end/panels/recorder/components/SelectButton.ts +21 -20
  374. package/front_end/panels/recorder/components/StartView.ts +14 -18
  375. package/front_end/panels/recorder/components/StepEditor.ts +3 -3
  376. package/front_end/panels/recorder/components/StepView.ts +20 -20
  377. package/front_end/panels/recorder/components/TimelineSection.ts +3 -2
  378. package/front_end/panels/recorder/converters/ExtensionConverter.ts +2 -2
  379. package/front_end/panels/recorder/converters/JSONConverter.ts +1 -1
  380. package/front_end/panels/recorder/converters/LighthouseConverter.ts +1 -1
  381. package/front_end/panels/recorder/converters/PuppeteerConverter.ts +1 -1
  382. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.ts +1 -1
  383. package/front_end/panels/recorder/injected/RecordingClient.ts +7 -10
  384. package/front_end/panels/recorder/injected/SelectorComputer.ts +5 -5
  385. package/front_end/panels/recorder/injected/SelectorPicker.ts +2 -2
  386. package/front_end/panels/recorder/injected/Step.ts +1 -1
  387. package/front_end/panels/recorder/injected/injected.ts +1 -1
  388. package/front_end/panels/recorder/injected/selectors/ARIASelector.ts +1 -1
  389. package/front_end/panels/recorder/injected/selectors/PierceSelector.ts +6 -7
  390. package/front_end/panels/recorder/injected/selectors/TextSelector.ts +3 -5
  391. package/front_end/panels/recorder/injected/util.ts +1 -1
  392. package/front_end/panels/recorder/models/RecordingPlayer.ts +1 -1
  393. package/front_end/panels/recorder/models/RecordingSettings.ts +1 -4
  394. package/front_end/panels/recorder/models/RecordingStorage.ts +1 -1
  395. package/front_end/panels/recorder/models/SDKUtils.ts +3 -2
  396. package/front_end/panels/recorder/models/ScreenshotUtils.ts +1 -1
  397. package/front_end/panels/recorder/models/Section.ts +2 -2
  398. package/front_end/panels/search/SearchResultsPane.ts +1 -2
  399. package/front_end/panels/search/SearchView.ts +1 -1
  400. package/front_end/panels/security/OriginTreeElement.ts +1 -1
  401. package/front_end/panels/security/SecurityAndPrivacyPanelSidebar.ts +1 -1
  402. package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +1 -1
  403. package/front_end/panels/sensors/SensorsView.ts +16 -0
  404. package/front_end/panels/sensors/sensors.css +16 -0
  405. package/front_end/panels/settings/AISettingsTab.test.ts +41 -11
  406. package/front_end/panels/settings/AISettingsTab.ts +103 -58
  407. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +9 -0
  408. package/front_end/panels/settings/SettingsScreen.ts +1 -1
  409. package/front_end/panels/settings/components/SyncSection.ts +18 -13
  410. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +33 -30
  411. package/front_end/panels/settings/settings-meta.ts +2 -2
  412. package/front_end/panels/sources/DebuggerPlugin.ts +1 -1
  413. package/front_end/panels/sources/EditingLocationHistoryManager.ts +2 -2
  414. package/front_end/panels/sources/GoToLineQuickOpen.ts +1 -1
  415. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +1 -1
  416. package/front_end/panels/sources/OutlineQuickOpen.ts +1 -1
  417. package/front_end/panels/sources/SourcesNavigator.test.ts +1 -0
  418. package/front_end/panels/sources/SourcesPanel.ts +7 -0
  419. package/front_end/panels/sources/TabbedEditorContainer.ts +1 -1
  420. package/front_end/panels/sources/UISourceCodeFrame.ts +1 -1
  421. package/front_end/panels/sources/components/BreakpointsView.ts +25 -26
  422. package/front_end/panels/sources/components/HeadersView.ts +17 -15
  423. package/front_end/panels/timeline/AnimationsTrackAppender.ts +18 -3
  424. package/front_end/panels/timeline/AnnotationHelpers.ts +1 -1
  425. package/front_end/panels/timeline/AppenderUtils.ts +1 -1
  426. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +27 -10
  427. package/front_end/panels/timeline/CountersGraph.ts +1 -1
  428. package/front_end/panels/timeline/EntriesFilter.test.ts +68 -0
  429. package/front_end/panels/timeline/EntriesFilter.ts +13 -0
  430. package/front_end/panels/timeline/EventsTimelineTreeView.ts +1 -1
  431. package/front_end/panels/timeline/InteractionsTrackAppender.ts +10 -0
  432. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +135 -1
  433. package/front_end/panels/timeline/ModificationsManager.test.ts +160 -0
  434. package/front_end/panels/timeline/ModificationsManager.ts +31 -0
  435. package/front_end/panels/timeline/TimelineDetailsView.test.ts +4 -2
  436. package/front_end/panels/timeline/TimelineDetailsView.ts +34 -12
  437. package/front_end/panels/timeline/TimelineEventOverview.ts +1 -0
  438. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +53 -0
  439. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +50 -20
  440. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +57 -0
  441. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +18 -0
  442. package/front_end/panels/timeline/TimelineFlameChartView.ts +90 -29
  443. package/front_end/panels/timeline/TimelineHistoryManager.ts +3 -1
  444. package/front_end/panels/timeline/TimelineLoader.ts +1 -1
  445. package/front_end/panels/timeline/TimelinePanel.ts +49 -37
  446. package/front_end/panels/timeline/TimelineSelectorStatsView.ts +16 -12
  447. package/front_end/panels/timeline/TimelineTreeView.test.ts +9 -9
  448. package/front_end/panels/timeline/TimelineTreeView.ts +1 -1
  449. package/front_end/panels/timeline/TimelineUIUtils.ts +116 -41
  450. package/front_end/panels/timeline/TimingsTrackAppender.ts +1 -1
  451. package/front_end/panels/timeline/components/BreadcrumbsUI.ts +2 -3
  452. package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +8 -7
  453. package/front_end/panels/timeline/components/FieldSettingsDialog.ts +28 -27
  454. package/front_end/panels/timeline/components/InteractionBreakdown.ts +3 -2
  455. package/front_end/panels/timeline/components/LayoutShiftDetails.test.ts +13 -11
  456. package/front_end/panels/timeline/components/LayoutShiftDetails.ts +217 -87
  457. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +194 -69
  458. package/front_end/panels/timeline/components/LiveMetricsView.ts +327 -141
  459. package/front_end/panels/timeline/components/MetricCard.test.ts +8 -8
  460. package/front_end/panels/timeline/components/MetricCard.ts +6 -4
  461. package/front_end/panels/timeline/components/MetricCompareStrings.ts +1 -1
  462. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +16 -13
  463. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +12 -10
  464. package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +35 -2
  465. package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +30 -13
  466. package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +74 -0
  467. package/front_end/panels/timeline/components/RelatedInsightChips.ts +92 -0
  468. package/front_end/panels/timeline/components/Sidebar.test.ts +74 -0
  469. package/front_end/panels/timeline/components/Sidebar.ts +32 -13
  470. package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +66 -0
  471. package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +108 -39
  472. package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +11 -1
  473. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +70 -37
  474. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +59 -1
  475. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +90 -34
  476. package/front_end/panels/timeline/components/Utils.test.ts +65 -0
  477. package/front_end/panels/timeline/components/Utils.ts +117 -0
  478. package/front_end/panels/timeline/components/components.ts +2 -0
  479. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +67 -53
  480. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +98 -14
  481. package/front_end/panels/timeline/components/insights/EventRef.ts +92 -0
  482. package/front_end/panels/timeline/components/insights/FontDisplay.ts +24 -13
  483. package/front_end/panels/timeline/components/insights/Helpers.ts +48 -43
  484. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +20 -18
  485. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +93 -48
  486. package/front_end/panels/timeline/components/insights/LCPPhases.ts +28 -9
  487. package/front_end/panels/timeline/components/insights/NodeLink.ts +3 -1
  488. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +33 -25
  489. package/front_end/panels/timeline/components/insights/SidebarInsight.ts +92 -15
  490. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +26 -39
  491. package/front_end/panels/timeline/components/insights/Table.ts +12 -9
  492. package/front_end/panels/timeline/components/insights/ThirdParties.ts +20 -12
  493. package/front_end/panels/timeline/components/insights/Viewport.ts +23 -20
  494. package/front_end/panels/timeline/components/insights/insights.ts +2 -0
  495. package/front_end/panels/timeline/components/insights/sidebarInsight.css +54 -9
  496. package/front_end/panels/timeline/components/insights/table.css +9 -1
  497. package/front_end/panels/timeline/components/layoutShiftDetails.css +22 -20
  498. package/front_end/panels/timeline/components/liveMetricsView.css +46 -16
  499. package/front_end/panels/timeline/components/networkRequestDetails.css +2 -1
  500. package/front_end/panels/timeline/components/relatedInsightChips.css +45 -0
  501. package/front_end/panels/timeline/components/sidebarInsightsTab.css +24 -6
  502. package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +18 -4
  503. package/front_end/panels/timeline/extensions/ExtensionUI.ts +4 -1
  504. package/front_end/panels/timeline/fixtures/traces/basic.json.gz +0 -0
  505. package/front_end/panels/timeline/fixtures/traces/many-redirects.json.gz +0 -0
  506. package/front_end/panels/timeline/fixtures/traces/missing-url.json.gz +0 -0
  507. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +40 -51
  508. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +87 -39
  509. package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +13 -11
  510. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +24 -32
  511. package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +23 -24
  512. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +42 -0
  513. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +25 -19
  514. package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +0 -14
  515. package/front_end/panels/timeline/overlays/components/timeRangeOverlay.css +16 -13
  516. package/front_end/panels/timeline/overlays/components/timespanBreakdownOverlay.css +59 -20
  517. package/front_end/panels/timeline/timelineFlameChartView.css +3 -2
  518. package/front_end/panels/timeline/timelineFlamechartPopover.css +19 -0
  519. package/front_end/panels/timeline/timelineHistoryManager.css +4 -0
  520. package/front_end/panels/timeline/timelinePanel.css +2 -10
  521. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +7 -7
  522. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +1 -1
  523. package/front_end/panels/timeline/utils/Helpers.test.ts +38 -0
  524. package/front_end/panels/timeline/utils/Helpers.ts +94 -0
  525. package/front_end/panels/timeline/utils/ImageCache.test.ts +106 -0
  526. package/front_end/panels/timeline/utils/ImageCache.ts +55 -0
  527. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +13 -1
  528. package/front_end/panels/timeline/utils/SourceMapsResolver.ts +11 -2
  529. package/front_end/panels/timeline/utils/utils.ts +4 -0
  530. package/front_end/panels/utils/utils.ts +1 -1
  531. package/front_end/panels/web_audio/graph_visualizer/EdgeView.ts +1 -1
  532. package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +3 -9
  533. package/front_end/panels/webauthn/WebauthnPane.test.ts +75 -4
  534. package/front_end/panels/webauthn/WebauthnPane.ts +24 -3
  535. package/front_end/testing/EnvironmentHelpers.ts +19 -4
  536. package/front_end/testing/ExtensionHelpers.ts +1 -1
  537. package/front_end/testing/LanguagePluginHelpers.ts +1 -1
  538. package/front_end/testing/MockConnection.ts +1 -1
  539. package/front_end/testing/MockIssuesManager.ts +1 -1
  540. package/front_end/testing/MockScopeChain.ts +1 -1
  541. package/front_end/testing/MutationHelpers.test.ts +6 -8
  542. package/front_end/testing/TraceHelpers.ts +3 -1
  543. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  544. package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
  545. package/front_end/third_party/codemirror.next/chunk/java.js +1 -1
  546. package/front_end/third_party/codemirror.next/chunk/java.js.map +1 -1
  547. package/front_end/third_party/codemirror.next/chunk/sass.js +1 -1
  548. package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
  549. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +11 -3
  550. package/front_end/third_party/codemirror.next/package.json +5 -5
  551. package/front_end/third_party/i18n/localized-string-set.ts +1 -1
  552. package/front_end/third_party/puppeteer/README.chromium +2 -2
  553. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
  554. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
  555. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts.map +1 -1
  556. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js.map +1 -1
  557. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +9 -9
  558. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
  559. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js +84 -84
  560. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
  561. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
  562. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
  563. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  564. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js +1 -2
  565. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js.map +1 -1
  566. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts.map +1 -1
  567. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.js.map +1 -1
  568. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  569. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  570. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Navigation.d.ts.map +1 -1
  571. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Navigation.js.map +1 -1
  572. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts.map +1 -1
  573. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js.map +1 -1
  574. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
  575. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.js.map +1 -1
  576. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts.map +1 -1
  577. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.js.map +1 -1
  578. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  579. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.js.map +1 -1
  580. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
  581. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.js.map +1 -1
  582. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  583. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +7 -4
  584. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
  585. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  586. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js +2 -3
  587. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js.map +1 -1
  588. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  589. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
  590. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts +2 -0
  591. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts.map +1 -1
  592. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js +17 -0
  593. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js.map +1 -1
  594. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts.map +1 -1
  595. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  596. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts.map +1 -1
  597. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js +1 -2
  598. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js.map +1 -1
  599. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
  600. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +1 -1
  601. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
  602. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.d.ts +1 -1
  603. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.d.ts.map +1 -1
  604. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.js +1 -1
  605. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.js.map +1 -1
  606. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
  607. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
  608. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.js +1 -1
  609. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.js.map +1 -1
  610. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
  611. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
  612. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.js.map +1 -1
  613. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +2 -2
  614. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +2 -2
  615. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
  616. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +2 -1
  617. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +114 -97
  618. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
  619. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
  620. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts.map +1 -1
  621. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js.map +1 -1
  622. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +9 -9
  623. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
  624. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js +82 -83
  625. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
  626. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
  627. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
  628. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  629. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js +2 -3
  630. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js.map +1 -1
  631. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts.map +1 -1
  632. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.js.map +1 -1
  633. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  634. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  635. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Navigation.d.ts.map +1 -1
  636. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Navigation.js.map +1 -1
  637. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts.map +1 -1
  638. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js.map +1 -1
  639. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
  640. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.js.map +1 -1
  641. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts.map +1 -1
  642. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.js.map +1 -1
  643. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  644. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.js.map +1 -1
  645. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
  646. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.js.map +1 -1
  647. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  648. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +7 -4
  649. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
  650. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  651. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js +3 -4
  652. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js.map +1 -1
  653. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  654. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
  655. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts +2 -0
  656. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts.map +1 -1
  657. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js +17 -0
  658. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js.map +1 -1
  659. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts.map +1 -1
  660. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  661. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts.map +1 -1
  662. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +1 -2
  663. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js.map +1 -1
  664. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
  665. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +1 -1
  666. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
  667. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.d.ts +1 -1
  668. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.d.ts.map +1 -1
  669. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.js +1 -1
  670. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.js.map +1 -1
  671. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
  672. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
  673. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.js +1 -1
  674. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.js.map +1 -1
  675. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
  676. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.js.map +1 -1
  677. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +2 -2
  678. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +2 -2
  679. package/front_end/third_party/puppeteer/package/lib/types.d.ts +2 -1
  680. package/front_end/third_party/puppeteer/package/package.json +2 -2
  681. package/front_end/third_party/puppeteer/package/src/api/Browser.ts +1 -1
  682. package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +1 -1
  683. package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +89 -89
  684. package/front_end/third_party/puppeteer/package/src/api/Page.ts +1 -1
  685. package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +6 -2
  686. package/front_end/third_party/puppeteer/package/src/bidi/core/Browser.ts +1 -1
  687. package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +1 -1
  688. package/front_end/third_party/puppeteer/package/src/bidi/core/Navigation.ts +1 -1
  689. package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +2 -2
  690. package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +1 -1
  691. package/front_end/third_party/puppeteer/package/src/bidi/core/Session.ts +1 -1
  692. package/front_end/third_party/puppeteer/package/src/bidi/core/UserContext.ts +1 -1
  693. package/front_end/third_party/puppeteer/package/src/bidi/core/UserPrompt.ts +1 -1
  694. package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +9 -5
  695. package/front_end/third_party/puppeteer/package/src/cdp/ElementHandle.ts +7 -3
  696. package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +1 -1
  697. package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +22 -1
  698. package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +1 -1
  699. package/front_end/third_party/puppeteer/package/src/common/QueryHandler.ts +1 -3
  700. package/front_end/third_party/puppeteer/package/src/common/util.ts +2 -1
  701. package/front_end/third_party/puppeteer/package/src/generated/injected.ts +1 -1
  702. package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
  703. package/front_end/third_party/puppeteer/package/src/injected/PQuerySelector.ts +1 -1
  704. package/front_end/third_party/puppeteer/package/src/node/ScreenRecorder.ts +1 -1
  705. package/front_end/third_party/puppeteer/package/src/revisions.ts +2 -2
  706. package/front_end/third_party/puppeteer/puppeteer.ts +1 -1
  707. package/front_end/ui/components/buttons/Button.ts +18 -17
  708. package/front_end/ui/components/buttons/button.css +0 -4
  709. package/front_end/ui/components/cards/Card.test.ts +66 -0
  710. package/front_end/ui/components/cards/Card.ts +57 -0
  711. package/front_end/ui/components/cards/card.css +32 -0
  712. package/front_end/ui/components/cards/cards.ts +9 -0
  713. package/front_end/ui/components/chrome_link/ChromeLink.test.ts +5 -3
  714. package/front_end/ui/components/chrome_link/ChromeLink.ts +3 -1
  715. package/front_end/ui/components/data_grid/DataGrid.test.ts +3 -1
  716. package/front_end/ui/components/data_grid/DataGrid.ts +25 -23
  717. package/front_end/ui/components/data_grid/DataGridContextMenuUtils.ts +2 -2
  718. package/front_end/ui/components/data_grid/DataGridController.ts +9 -5
  719. package/front_end/ui/components/data_grid/DataGridEvents.ts +1 -1
  720. package/front_end/ui/components/data_grid/DataGridRenderers.ts +7 -4
  721. package/front_end/ui/components/dialogs/Dialog.ts +4 -2
  722. package/front_end/ui/components/dialogs/IconDialog.ts +9 -7
  723. package/front_end/ui/components/dialogs/ShortcutDialog.ts +10 -8
  724. package/front_end/ui/components/diff_view/DiffView.ts +9 -8
  725. package/front_end/ui/components/docs/create_breadcrumbs.ts +3 -1
  726. package/front_end/ui/components/docs/expandable_list/basic.ts +4 -2
  727. package/front_end/ui/components/docs/floating_button/basic.html +26 -0
  728. package/front_end/ui/components/docs/floating_button/basic.ts +20 -0
  729. package/front_end/ui/components/docs/freestyler/basic.ts +5 -0
  730. package/front_end/ui/components/docs/freestyler/empty_state.ts +5 -0
  731. package/front_end/ui/components/docs/icon_dialog/basic.ts +5 -3
  732. package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +7 -4
  733. package/front_end/ui/components/docs/performance_panel/flamechart.html +4 -0
  734. package/front_end/ui/components/docs/performance_panel/flamechart.ts +45 -0
  735. package/front_end/ui/components/docs/recorder_select_button/basic.ts +21 -18
  736. package/front_end/ui/components/docs/report/basic.ts +19 -23
  737. package/front_end/ui/components/docs/theme_colors/basic.ts +4 -2
  738. package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +4 -2
  739. package/front_end/ui/components/expandable_list/ExpandableList.test.ts +5 -3
  740. package/front_end/ui/components/expandable_list/ExpandableList.ts +6 -4
  741. package/front_end/ui/components/floating_button/FloatingButton.ts +51 -0
  742. package/front_end/ui/components/floating_button/floatingButton.css +63 -0
  743. package/front_end/ui/components/floating_button/floating_button.ts +7 -0
  744. package/front_end/ui/components/helpers/helpers.test.ts +18 -14
  745. package/front_end/ui/components/icon_button/Icon.ts +2 -2
  746. package/front_end/ui/components/icon_button/IconButton.ts +15 -10
  747. package/front_end/ui/components/issue_counter/IssueCounter.ts +5 -1
  748. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +7 -4
  749. package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +0 -1
  750. package/front_end/ui/components/linkifier/LinkifierImpl.ts +3 -1
  751. package/front_end/ui/components/markdown_view/CodeBlock.test.ts +7 -7
  752. package/front_end/ui/components/markdown_view/CodeBlock.ts +33 -41
  753. package/front_end/ui/components/markdown_view/MarkdownImage.ts +12 -9
  754. package/front_end/ui/components/markdown_view/MarkdownLink.ts +3 -1
  755. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +51 -3
  756. package/front_end/ui/components/markdown_view/MarkdownView.ts +39 -22
  757. package/front_end/ui/components/markdown_view/codeBlock.css +6 -28
  758. package/front_end/ui/components/markdown_view/markdownLink.css +1 -1
  759. package/front_end/ui/components/markdown_view/markdownView.css +4 -0
  760. package/front_end/ui/components/menus/Menu.ts +7 -5
  761. package/front_end/ui/components/menus/SelectMenu.test.ts +3 -1
  762. package/front_end/ui/components/menus/SelectMenu.ts +17 -15
  763. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +5 -3
  764. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +8 -4
  765. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +6 -4
  766. package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +3 -1
  767. package/front_end/ui/components/report_view/ReportView.test.ts +5 -3
  768. package/front_end/ui/components/report_view/ReportView.ts +9 -7
  769. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +8 -5
  770. package/front_end/ui/components/settings/SettingCheckbox.ts +14 -12
  771. package/front_end/ui/components/settings/SettingDeprecationWarning.ts +7 -4
  772. package/front_end/ui/components/spinners/Spinner.ts +3 -1
  773. package/front_end/ui/components/split_view/SplitView.ts +3 -1
  774. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +3 -1
  775. package/front_end/ui/components/suggestion_input/SuggestionInput.ts +3 -2
  776. package/front_end/ui/components/survey_link/SurveyLink.ts +7 -3
  777. package/front_end/ui/components/switch/SwitchImpl.ts +3 -1
  778. package/front_end/ui/components/text_editor/TextEditorHistory.ts +2 -2
  779. package/front_end/ui/components/text_prompt/TextPrompt.ts +3 -1
  780. package/front_end/ui/components/tree_outline/TreeOutline.test.ts +8 -6
  781. package/front_end/ui/components/tree_outline/TreeOutline.ts +9 -8
  782. package/front_end/ui/components/two_states_counter/TwoStatesCounter.ts +5 -3
  783. package/front_end/ui/legacy/Context.ts +1 -1
  784. package/front_end/ui/legacy/Dialog.ts +2 -2
  785. package/front_end/ui/legacy/DockController.ts +2 -2
  786. package/front_end/ui/legacy/FilterBar.ts +1 -1
  787. package/front_end/ui/legacy/FilterSuggestionBuilder.ts +1 -1
  788. package/front_end/ui/legacy/GlassPane.ts +1 -1
  789. package/front_end/ui/legacy/Infobar.ts +1 -1
  790. package/front_end/ui/legacy/InspectorView.ts +5 -5
  791. package/front_end/ui/legacy/Panel.ts +1 -1
  792. package/front_end/ui/legacy/ShortcutRegistry.ts +1 -1
  793. package/front_end/ui/legacy/SplitWidget.test.ts +33 -1
  794. package/front_end/ui/legacy/SplitWidget.ts +62 -7
  795. package/front_end/ui/legacy/TabbedPane.ts +24 -0
  796. package/front_end/ui/legacy/Toolbar.test.ts +39 -0
  797. package/front_end/ui/legacy/Toolbar.ts +16 -17
  798. package/front_end/ui/legacy/UIUtils.ts +1 -1
  799. package/front_end/ui/legacy/View.ts +2 -2
  800. package/front_end/ui/legacy/ViewManager.ts +3 -2
  801. package/front_end/ui/legacy/ViewRegistration.ts +2 -2
  802. package/front_end/ui/legacy/Widget.ts +62 -14
  803. package/front_end/ui/legacy/XElement.ts +0 -1
  804. package/front_end/ui/legacy/XLink.test.ts +3 -1
  805. package/front_end/ui/legacy/XLink.ts +6 -4
  806. package/front_end/ui/legacy/checkboxTextLabel.css +4 -0
  807. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +1 -1
  808. package/front_end/ui/legacy/components/data_grid/DataGridWithPreview.ts +21 -10
  809. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +1 -1
  810. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +10 -7
  811. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +3 -1
  812. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +3 -1
  813. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +9 -9
  814. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +5 -4
  815. package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +2 -2
  816. package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +9 -9
  817. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +49 -13
  818. package/front_end/ui/legacy/components/perf_ui/PieChart.ts +1 -0
  819. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +1 -1
  820. package/front_end/ui/legacy/inspectorCommon.css +0 -1
  821. package/front_end/ui/legacy/themeColors.css +10 -0
  822. package/front_end/ui/legacy/toolbar.css +4 -0
  823. package/front_end/ui/legacy/treeoutline.css +0 -3
  824. package/front_end/ui/lit-html/static.test.ts +8 -8
  825. package/front_end/ui/visual_logging/Debugging.ts +1 -1
  826. package/front_end/ui/visual_logging/KnownContextValues.ts +32 -3
  827. package/front_end/ui/visual_logging/LoggingDriver.ts +1 -1
  828. package/front_end/ui/visual_logging/LoggingEvents.ts +28 -28
  829. package/front_end/ui/visual_logging/LoggingState.ts +1 -1
  830. package/front_end/ui/visual_logging/NonDomState.ts +2 -2
  831. package/front_end/ui/visual_logging/visual_logging.ts +3 -1
  832. package/inspector_overlay/css_grid_label_helpers.test.ts +103 -0
  833. package/inspector_overlay/css_grid_label_helpers.ts +63 -12
  834. package/inspector_overlay/highlight_common.ts +2 -2
  835. package/inspector_overlay/highlight_container_query.ts +1 -2
  836. package/inspector_overlay/highlight_flex_common.test.ts +1 -1
  837. package/inspector_overlay/highlight_flex_common.ts +2 -3
  838. package/inspector_overlay/highlight_grid_common.ts +10 -4
  839. package/inspector_overlay/highlight_isolated_element.ts +1 -1
  840. package/inspector_overlay/highlight_scroll_snap.ts +1 -2
  841. package/inspector_overlay/testing/InspectorOverlayHelpers.ts +1 -1
  842. package/inspector_overlay/tool_highlight.ts +4 -8
  843. package/package.json +4 -3
  844. package/scripts/devtools_paths.js +9 -2
  845. package/scripts/eslint_rules/lib/avoid_assert_equal.js +34 -7
  846. package/scripts/eslint_rules/lib/html_tagged_template.js +55 -0
  847. package/scripts/eslint_rules/lib/inline_type_imports.js +22 -23
  848. package/scripts/eslint_rules/tests/avoid_assert_equal_test.js +61 -2
  849. package/scripts/eslint_rules/tests/html_tagged_template_test.js +96 -0
  850. package/scripts/eslint_rules/tests/inline_type_imports_test.js +5 -25
  851. package/scripts/freestyler/eval/index.js +83 -47
  852. package/scripts/protocol_typescript/protocol_dts_generator.ts +1 -1
  853. package/scripts/stylelint_rules/lib/use_theme_colors.js +2 -1
  854. package/scripts/stylelint_rules/tests/use_theme_colors_test.js +16 -0
  855. package/front_end/Images/src/spark.svg +0 -3
  856. package/front_end/panels/timeline/components/insights/lcpDiscovery.css +0 -13
  857. package/scripts/eslint_rules/lib/ban_literal_devtools_component_tag_names.js +0 -40
  858. package/scripts/eslint_rules/lib/check_component_naming.js +0 -214
  859. package/scripts/eslint_rules/tests/ban_literal_devtools_component_tag_names_test.js +0 -38
  860. package/scripts/eslint_rules/tests/check_component_naming_test.js +0 -246
package/.eslintrc.js CHANGED
@@ -139,6 +139,7 @@ module.exports = {
139
139
  // DevTools specific rules
140
140
  'rulesdir/es_modules_import': 'error',
141
141
  'rulesdir/check_license_header': 'error',
142
+ 'rulesdir/html_tagged_template': 'error',
142
143
  /**
143
144
  * Ensures that JS Doc comments are properly aligned - all the starting
144
145
  * `*` are in the right place.
package/.stylelintrc.json CHANGED
@@ -26,6 +26,7 @@
26
26
  "selector-no-vendor-prefix": null,
27
27
  "property-no-vendor-prefix": null,
28
28
  "value-no-vendor-prefix": null,
29
- "media-feature-name-no-vendor-prefix": null
29
+ "media-feature-name-no-vendor-prefix": null,
30
+ "no-descending-specificity": null
30
31
  }
31
32
  }
@@ -58,6 +58,7 @@ grd_files_release_sources = [
58
58
  "front_end/Images/brush.svg",
59
59
  "front_end/Images/bug.svg",
60
60
  "front_end/Images/bundle.svg",
61
+ "front_end/Images/button-magic.svg",
61
62
  "front_end/Images/calendar-today.svg",
62
63
  "front_end/Images/check-circle.svg",
63
64
  "front_end/Images/check-double.svg",
@@ -197,6 +198,7 @@ grd_files_release_sources = [
197
198
  "front_end/Images/pause-circle.svg",
198
199
  "front_end/Images/pause.svg",
199
200
  "front_end/Images/pen-spark.svg",
201
+ "front_end/Images/performance-panel-delete-annotation.svg",
200
202
  "front_end/Images/performance-panel-diagram.svg",
201
203
  "front_end/Images/performance-panel-entry-label.svg",
202
204
  "front_end/Images/performance-panel-time-range.svg",
@@ -235,7 +237,6 @@ grd_files_release_sources = [
235
237
  "front_end/Images/smart-assistant.svg",
236
238
  "front_end/Images/snippet.svg",
237
239
  "front_end/Images/spark-info.svg",
238
- "front_end/Images/spark.svg",
239
240
  "front_end/Images/star.svg",
240
241
  "front_end/Images/step-into.svg",
241
242
  "front_end/Images/step-out.svg",
@@ -677,6 +678,7 @@ grd_files_release_sources = [
677
678
  "front_end/ui/components/dialogs/dialogs.js",
678
679
  "front_end/ui/components/diff_view/diff_view.js",
679
680
  "front_end/ui/components/expandable_list/expandable_list.js",
681
+ "front_end/ui/components/floating_button/floating_button.js",
680
682
  "front_end/ui/components/helpers/helpers.js",
681
683
  "front_end/ui/components/highlighting/highlighting.js",
682
684
  "front_end/ui/components/icon_button/icon_button.js",
@@ -1131,6 +1133,7 @@ grd_files_debug_sources = [
1131
1133
  "front_end/panels/application/CookieItemsView.js",
1132
1134
  "front_end/panels/application/DOMStorageItemsView.js",
1133
1135
  "front_end/panels/application/DOMStorageModel.js",
1136
+ "front_end/panels/application/ExtensionStorageItemsView.js",
1134
1137
  "front_end/panels/application/ExtensionStorageModel.js",
1135
1138
  "front_end/panels/application/IndexedDBModel.js",
1136
1139
  "front_end/panels/application/IndexedDBViews.js",
@@ -1380,7 +1383,9 @@ grd_files_debug_sources = [
1380
1383
  "front_end/panels/explain/components/consoleInsightSourcesList.css.js",
1381
1384
  "front_end/panels/freestyler/AiAgent.js",
1382
1385
  "front_end/panels/freestyler/ChangeManager.js",
1386
+ "front_end/panels/freestyler/DrJonesFileAgent.js",
1383
1387
  "front_end/panels/freestyler/DrJonesNetworkAgent.js",
1388
+ "front_end/panels/freestyler/DrJonesPerformanceAgent.js",
1384
1389
  "front_end/panels/freestyler/ExtensionScope.js",
1385
1390
  "front_end/panels/freestyler/FreestylerAgent.js",
1386
1391
  "front_end/panels/freestyler/FreestylerEvaluateAction.js",
@@ -1497,6 +1502,7 @@ grd_files_debug_sources = [
1497
1502
  "front_end/panels/network/NetworkSearchScope.js",
1498
1503
  "front_end/panels/network/NetworkTimeCalculator.js",
1499
1504
  "front_end/panels/network/NetworkWaterfallColumn.js",
1505
+ "front_end/panels/network/RequestBinaryResponseView.js",
1500
1506
  "front_end/panels/network/RequestCookiesView.js",
1501
1507
  "front_end/panels/network/RequestHTMLView.js",
1502
1508
  "front_end/panels/network/RequestInitiatorView.js",
@@ -1790,6 +1796,7 @@ grd_files_debug_sources = [
1790
1796
  "front_end/panels/timeline/components/NetworkRequestDetails.js",
1791
1797
  "front_end/panels/timeline/components/NetworkRequestTooltip.js",
1792
1798
  "front_end/panels/timeline/components/NetworkThrottlingSelector.js",
1799
+ "front_end/panels/timeline/components/RelatedInsightChips.js",
1793
1800
  "front_end/panels/timeline/components/Sidebar.js",
1794
1801
  "front_end/panels/timeline/components/SidebarAnnotationsTab.js",
1795
1802
  "front_end/panels/timeline/components/SidebarInsightsTab.js",
@@ -1800,6 +1807,7 @@ grd_files_debug_sources = [
1800
1807
  "front_end/panels/timeline/components/fieldSettingsDialog.css.js",
1801
1808
  "front_end/panels/timeline/components/insights/CLSCulprits.js",
1802
1809
  "front_end/panels/timeline/components/insights/DocumentLatency.js",
1810
+ "front_end/panels/timeline/components/insights/EventRef.js",
1803
1811
  "front_end/panels/timeline/components/insights/FontDisplay.js",
1804
1812
  "front_end/panels/timeline/components/insights/Helpers.js",
1805
1813
  "front_end/panels/timeline/components/insights/InteractionToNextPaint.js",
@@ -1812,7 +1820,6 @@ grd_files_debug_sources = [
1812
1820
  "front_end/panels/timeline/components/insights/Table.js",
1813
1821
  "front_end/panels/timeline/components/insights/ThirdParties.js",
1814
1822
  "front_end/panels/timeline/components/insights/Viewport.js",
1815
- "front_end/panels/timeline/components/insights/lcpDiscovery.css.js",
1816
1823
  "front_end/panels/timeline/components/insights/sidebarInsight.css.js",
1817
1824
  "front_end/panels/timeline/components/insights/table.css.js",
1818
1825
  "front_end/panels/timeline/components/insights/types.js",
@@ -1824,6 +1831,7 @@ grd_files_debug_sources = [
1824
1831
  "front_end/panels/timeline/components/networkRequestDetails.css.js",
1825
1832
  "front_end/panels/timeline/components/networkRequestTooltip.css.js",
1826
1833
  "front_end/panels/timeline/components/networkThrottlingSelector.css.js",
1834
+ "front_end/panels/timeline/components/relatedInsightChips.css.js",
1827
1835
  "front_end/panels/timeline/components/sidebarAnnotationsTab.css.js",
1828
1836
  "front_end/panels/timeline/components/sidebarInsightsTab.css.js",
1829
1837
  "front_end/panels/timeline/components/sidebarSingleInsightSet.css.js",
@@ -1845,7 +1853,9 @@ grd_files_debug_sources = [
1845
1853
  "front_end/panels/timeline/timelinePaintProfiler.css.js",
1846
1854
  "front_end/panels/timeline/timelinePanel.css.js",
1847
1855
  "front_end/panels/timeline/timelineStatusDialog.css.js",
1856
+ "front_end/panels/timeline/utils/Helpers.js",
1848
1857
  "front_end/panels/timeline/utils/IgnoreList.js",
1858
+ "front_end/panels/timeline/utils/ImageCache.js",
1849
1859
  "front_end/panels/timeline/utils/NetworkRequest.js",
1850
1860
  "front_end/panels/timeline/utils/SourceMapsResolver.js",
1851
1861
  "front_end/panels/web_audio/AudioContextContentBuilder.js",
@@ -2140,6 +2150,8 @@ grd_files_debug_sources = [
2140
2150
  "front_end/ui/components/diff_view/diffView.css.js",
2141
2151
  "front_end/ui/components/expandable_list/ExpandableList.js",
2142
2152
  "front_end/ui/components/expandable_list/expandableList.css.js",
2153
+ "front_end/ui/components/floating_button/FloatingButton.js",
2154
+ "front_end/ui/components/floating_button/floatingButton.css.js",
2143
2155
  "front_end/ui/components/helpers/component-server-setup.js",
2144
2156
  "front_end/ui/components/helpers/directives.js",
2145
2157
  "front_end/ui/components/helpers/get-root-node.js",
@@ -65,6 +65,7 @@ devtools_svg_sources = [
65
65
  "brush.svg",
66
66
  "bug.svg",
67
67
  "bundle.svg",
68
+ "button-magic.svg",
68
69
  "calendar-today.svg",
69
70
  "check-circle.svg",
70
71
  "check-double.svg",
@@ -197,6 +198,7 @@ devtools_svg_sources = [
197
198
  "pause-circle.svg",
198
199
  "pause.svg",
199
200
  "pen-spark.svg",
201
+ "performance-panel-delete-annotation.svg",
200
202
  "performance-panel-diagram.svg",
201
203
  "performance-panel-entry-label.svg",
202
204
  "performance-panel-time-range.svg",
@@ -234,7 +236,6 @@ devtools_svg_sources = [
234
236
  "smart-assistant.svg",
235
237
  "snippet.svg",
236
238
  "spark-info.svg",
237
- "spark.svg",
238
239
  "star.svg",
239
240
  "step-into.svg",
240
241
  "step-out.svg",
@@ -171,6 +171,21 @@ the triage status, Chromium DevTools might show up with a high percentage of
171
171
  untriaged issues due to this fact.
172
172
  ***
173
173
 
174
+ ### T-Shirt Sizes
175
+
176
+ We use the T-Shirt sizes approach to estimate effort for the `Chromium>Platform>DevTools`
177
+ component tree, based on the following guidelines:
178
+
179
+ | Size | Description | Examples |
180
+ | :--- | :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------ |
181
+ | XXS | Trivial CSS or logic change | [Styles bar loses focus in Chrome OS DevTools](http://crbug.com/338348417), [Add 20x CPU throttling preset](https://crbug.com/324978881) |
182
+ | XS | One CL change | [Remove 'Consistent source map variable experiment'](http://crbug.com/40944633), [Autofill tab breaks with phone numbers starting with '+'](https://b.corp.google.com/issues/335409093) |
183
+ | S | series of CLs or a large CL | [Local overrides for New Tab Page misses one "/" in folder name](http://crbug.com/328210785), [Memory tool should highlight common problems and opportunities](http://crbug.com/337094903), [Improve the developer experience of using compression dictionaries](http://crbug.com/333756098) |
184
+ | M | quarter-long single-person project | [Exceptions in promise constructor should be treated as promise rejection](http://crbug.com/40283985) |
185
+ | L | multi-quarter or -person project | [Replace regex-matching in the StylesSidebarPane](http://crbug.com/40945390) |
186
+ | XL | multi-quarter and -person project | [MPArch migration](http://crbug.com/40238399), [GM3 adoption](http://crbug.com/40273199) |
187
+ | XXL | multi-year project with a dedicated team | [Performance Insights](http://crbug.com/40810111) |
188
+
174
189
  ## SLOs
175
190
 
176
191
  In order to deliver a better product experience for developers using Chromium
@@ -2,7 +2,6 @@
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
5
- /* eslint-disable rulesdir/ban_literal_devtools_component_tag_names */
6
5
  /* eslint-disable rulesdir/check_component_naming */
7
6
  /* eslint-disable rulesdir/inject_checkbox_styles */
8
7
  /* eslint-disable rulesdir/lit_html_data_as_type */
@@ -1,7 +1,7 @@
1
1
  Name: LLVM Compiler Infrastructure
2
2
  Short Name: llvm-project
3
3
  URL: https://github.com/llvm/llvm-project
4
- Version: 0
4
+ Version: N/A
5
5
  Date: 2022-11-30
6
6
  Revision: 3c51ea3619e488db19cd26840ed46d58cfc7062f
7
7
  License: Apache 2.0 with LLVM Exceptions
@@ -39,11 +39,9 @@ module.exports = {
39
39
  'rulesdir/no_bound_component_methods': 'error',
40
40
  'rulesdir/lit_html_data_as_type': 'error',
41
41
  'rulesdir/lit_no_style_interpolation': 'error',
42
- 'rulesdir/ban_literal_devtools_component_tag_names': 'error',
43
42
  'rulesdir/ban_self_closing_custom_element_tagnames': 'error',
44
43
  'rulesdir/ban_style_tags_in_lit_html': 'error',
45
44
  'rulesdir/ban_a_tags_in_lit_html': 'error',
46
- 'rulesdir/check_component_naming': 'error',
47
45
  'rulesdir/check_css_import': 'error',
48
46
  'rulesdir/enforce-optional-properties-last': 'error',
49
47
  'rulesdir/check_enumerated_histograms': 'error',
@@ -71,7 +69,6 @@ module.exports = {
71
69
  {
72
70
  files: ['*.test.ts', '**/testing/*.ts'],
73
71
  rules: {
74
- 'rulesdir/check_component_naming': 'off',
75
72
  '@typescript-eslint/explicit-function-return-type': 'off',
76
73
  },
77
74
  },
@@ -85,8 +82,6 @@ module.exports = {
85
82
  {
86
83
  files: ['panels/recorder/**/*.ts', 'panels/protocol_monitor/**/*.ts', 'ui/components/suggestion_input/*.ts'],
87
84
  rules: {
88
- 'rulesdir/check_component_naming': 'off',
89
- 'rulesdir/ban_literal_devtools_component_tag_names': 'off',
90
85
  // TODO(crbug/1402569): Reenable once https://github.com/microsoft/TypeScript/issues/48885 is closed.
91
86
  'rulesdir/use_private_class_members': 'off',
92
87
  }
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13 18L11 16L13 14L15 16L13 18ZM7 16L2 11L7 6L12 11L7 16ZM14.5 10C14.5 8.74542 14.0636 7.68181 13.1908 6.80917C12.3182 5.93639 11.2546 5.5 10 5.5C11.2546 5.5 12.3182 5.06361 13.1908 4.19083C14.0636 3.31819 14.5 2.25458 14.5 1C14.5 2.25458 14.9364 3.31819 15.8092 4.19083C16.6818 5.06361 17.7454 5.5 19 5.5C17.7454 5.5 16.6818 5.93639 15.8092 6.80917C14.9364 7.68181 14.5 8.74542 14.5 10Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,32 @@
1
+ <svg width="192" height="106" viewBox="0 0 192 106" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_6116_325248)">
3
+ <path d="M0 0H192V106H0V0Z" fill="white"/>
4
+ <rect x="-48" y="36" width="240" height="68" fill="#F3F6FC"/>
5
+ <path d="M-36 58C-36 52.4772 -31.5228 48 -26 48H30C35.5229 48 40 52.4772 40 58C40 63.5228 35.5229 68 30 68H-26C-31.5228 68 -36 63.5228 -36 58Z" fill="#D190FF"/>
6
+ <path d="M-26.6348 62V56.6621H-27.6836V55.6543H-26.6348V54.9688C-26.6348 53.7031 -25.9902 53.082 -24.666 53.082C-24.3789 53.082 -24.1328 53.1055 -23.916 53.1406V54.0898C-24.0332 54.0723 -24.2031 54.0605 -24.4023 54.0605C-25.1055 54.0605 -25.3926 54.3828 -25.3926 55.0273V55.6543H-23.9688V56.6621H-25.375V62H-26.6348ZM-20.0898 62.123C-21.959 62.123 -23.1016 60.875 -23.1016 58.8184C-23.1016 56.7676 -21.9531 55.5137 -20.0898 55.5137C-18.2324 55.5137 -17.084 56.7617 -17.084 58.8184C-17.084 60.875 -18.2266 62.123 -20.0898 62.123ZM-20.0898 61.0508C-19 61.0508 -18.3789 60.2305 -18.3789 58.8184C-18.3789 57.4004 -19 56.5801 -20.0898 56.5801C-21.1855 56.5801 -21.8008 57.4004 -21.8008 58.8184C-21.8008 60.2363 -21.1855 61.0508 -20.0898 61.0508ZM-15.5664 62V55.6367H-14.3535V56.6445H-14.2598C-13.9492 55.9414 -13.3164 55.5137 -12.3555 55.5137C-10.9316 55.5137 -10.1465 56.3633 -10.1465 57.8809V62H-11.4062V58.1797C-11.4062 57.125 -11.8516 56.6094 -12.7832 56.6094C-13.7148 56.6094 -14.3066 57.2422 -14.3066 58.2676V62H-15.5664ZM-7.92578 54.0312H-6.66602V55.6543H-5.2832V56.6621H-6.66602V60.0195C-6.66602 60.7051 -6.39062 61.0039 -5.76367 61.0039C-5.57031 61.0039 -5.45898 60.9922 -5.2832 60.9746V61.9766C-5.48828 62.0117 -5.72266 62.041 -5.96875 62.041C-7.36914 62.041 -7.92578 61.5488 -7.92578 60.3242V56.6621H-8.93945V55.6543H-7.92578V54.0312ZM-2.82227 62.0879C-3.31445 62.0879 -3.68359 61.7188 -3.68359 61.2441C-3.68359 60.7695 -3.31445 60.4004 -2.82227 60.4004C-2.32422 60.4004 -1.96094 60.7695 -1.96094 61.2441C-1.96094 61.7188 -2.32422 62.0879 -2.82227 62.0879ZM7.4375 55.6367L5.68555 62H4.37891L3.06055 57.2539H2.96094L1.64844 62H0.353516L-1.4043 55.6367H-0.126953L1.01562 60.5469H1.10938L2.42188 55.6367H3.62891L4.94141 60.5469H5.04102L6.17773 55.6367H7.4375ZM11.1875 62.123C9.31836 62.123 8.17578 60.875 8.17578 58.8184C8.17578 56.7676 9.32422 55.5137 11.1875 55.5137C13.0449 55.5137 14.1934 56.7617 14.1934 58.8184C14.1934 60.875 13.0508 62.123 11.1875 62.123ZM11.1875 61.0508C12.2773 61.0508 12.8984 60.2305 12.8984 58.8184C12.8984 57.4004 12.2773 56.5801 11.1875 56.5801C10.0918 56.5801 9.47656 57.4004 9.47656 58.8184C9.47656 60.2363 10.0918 61.0508 11.1875 61.0508ZM16.1621 62V56.6621H15.1133V55.6543H16.1621V54.9688C16.1621 53.7031 16.8066 53.082 18.1309 53.082C18.418 53.082 18.6641 53.1055 18.8809 53.1406V54.0898C18.7637 54.0723 18.5938 54.0605 18.3945 54.0605C17.6914 54.0605 17.4043 54.3828 17.4043 55.0273V55.6543H18.8281V56.6621H17.4219V62H16.1621ZM20.7324 62V56.6621H19.6836V55.6543H20.7324V54.9688C20.7324 53.7031 21.377 53.082 22.7012 53.082C22.9883 53.082 23.2344 53.1055 23.4512 53.1406V54.0898C23.334 54.0723 23.1641 54.0605 22.9648 54.0605C22.2617 54.0605 21.9746 54.3828 21.9746 55.0273V55.6543H23.3984V56.6621H21.9922V62H20.7324ZM24.7578 55.9941C24.7578 54.4414 25.959 53.3398 27.6641 53.3398C29.252 53.3398 30.3945 54.3535 30.3945 55.7422C30.3945 56.7207 29.9668 57.418 28.4844 58.9062L26.6211 60.7812V60.8809H30.5234V62H24.8281V61.1094L27.7227 58.0977C28.7949 56.9785 29.0762 56.5566 29.0762 55.8711C29.0762 55.0508 28.5195 54.4238 27.582 54.4238C26.627 54.4238 26 55.0566 26 55.9941H24.7578Z" fill="#1F1F1F"/>
7
+ <path d="M-33.8672 84.6543V88H-34.9219V79.5449H-31.6934C-30.0645 79.5449 -28.998 80.541 -28.998 82.0645C-28.998 83.2422 -29.6367 84.1562 -30.6973 84.4902L-28.7402 88H-29.9766L-31.7871 84.6543H-33.8672ZM-33.8672 80.4824V83.7168H-31.7871C-30.7031 83.7168 -30.0879 83.1367 -30.0879 82.0996C-30.0879 81.0859 -30.7441 80.4824 -31.834 80.4824H-33.8672ZM-23.2031 86.3652H-22.1953C-22.4883 87.4434 -23.4727 88.1113 -24.8555 88.1113C-26.6074 88.1113 -27.7031 86.8457 -27.7031 84.8477C-27.7031 82.8613 -26.5898 81.5723 -24.8555 81.5723C-23.1504 81.5723 -22.1133 82.7852 -22.1133 84.748V85.1348H-26.6543V85.1816C-26.6016 86.4297 -25.9043 87.2207 -24.832 87.2207C-24.0176 87.2207 -23.4668 86.9219 -23.2031 86.3652ZM-24.8672 82.4629C-25.875 82.4629 -26.5781 83.2012 -26.6543 84.3203H-23.1738C-23.1973 83.2012 -23.8652 82.4629 -24.8672 82.4629ZM-20.5312 88V81.6836H-19.5703V82.6797H-19.4766C-19.1602 81.9824 -18.5449 81.5723 -17.5781 81.5723C-16.1602 81.5723 -15.3691 82.4102 -15.3691 83.9102V88H-16.377V84.1562C-16.377 83.0195 -16.8574 82.4805 -17.8652 82.4805C-18.873 82.4805 -19.5234 83.1543 -19.5234 84.2617V88H-20.5312ZM-11.1855 88.1113C-12.8027 88.1113 -13.8398 86.8281 -13.8398 84.8418C-13.8398 82.8613 -12.791 81.5723 -11.1855 81.5723C-10.3066 81.5723 -9.5625 81.9883 -9.20508 82.6797H-9.11719V79.1758H-8.10938V88H-9.07031V86.9922H-9.16406C-9.5625 87.6953 -10.3125 88.1113 -11.1855 88.1113ZM-10.9512 82.4805C-12.0996 82.4805 -12.7969 83.3711 -12.7969 84.8418C-12.7969 86.3184 -12.1055 87.2031 -10.9512 87.2031C-9.80273 87.2031 -9.09375 86.3008 -9.09375 84.8418C-9.09375 83.3945 -9.80859 82.4805 -10.9512 82.4805ZM-1.96875 86.3652H-0.960938C-1.25391 87.4434 -2.23828 88.1113 -3.62109 88.1113C-5.37305 88.1113 -6.46875 86.8457 -6.46875 84.8477C-6.46875 82.8613 -5.35547 81.5723 -3.62109 81.5723C-1.91602 81.5723 -0.878906 82.7852 -0.878906 84.748V85.1348H-5.41992V85.1816C-5.36719 86.4297 -4.66992 87.2207 -3.59766 87.2207C-2.7832 87.2207 -2.23242 86.9219 -1.96875 86.3652ZM-3.63281 82.4629C-4.64062 82.4629 -5.34375 83.2012 -5.41992 84.3203H-1.93945C-1.96289 83.2012 -2.63086 82.4629 -3.63281 82.4629ZM0.703125 88V81.6836H1.66406V82.6211H1.75781C1.94531 82.0059 2.67188 81.5723 3.50977 81.5723C3.67383 81.5723 3.88477 81.584 4.01367 81.6016V82.6094C3.93164 82.5859 3.56836 82.5508 3.36914 82.5508C2.4082 82.5508 1.71094 83.1953 1.71094 84.0859V88H0.703125ZM11.8008 88.1113C10.9219 88.1113 10.1719 87.6953 9.77344 86.9922H9.67969V88H8.71875V79.1758H9.72656V82.6797H9.82031C10.166 82 10.9336 81.5723 11.8008 81.5723C13.4062 81.5723 14.4492 82.8555 14.4492 84.8418C14.4492 86.8164 13.4004 88.1113 11.8008 88.1113ZM11.5664 82.4805C10.418 82.4805 9.70312 83.3828 9.70312 84.8418C9.70312 86.3008 10.418 87.2031 11.5664 87.2031C12.7207 87.2031 13.4062 86.3184 13.4062 84.8418C13.4062 83.3652 12.7207 82.4805 11.5664 82.4805ZM16.0898 88V79.1758H17.0977V88H16.0898ZM21.6504 88.1113C19.8516 88.1113 18.7383 86.8691 18.7383 84.8418C18.7383 82.8086 19.8516 81.5723 21.6504 81.5723C23.4492 81.5723 24.5625 82.8086 24.5625 84.8418C24.5625 86.8691 23.4492 88.1113 21.6504 88.1113ZM21.6504 87.2031C22.8457 87.2031 23.5195 86.3359 23.5195 84.8418C23.5195 83.3418 22.8457 82.4805 21.6504 82.4805C20.4551 82.4805 19.7812 83.3418 19.7812 84.8418C19.7812 86.3359 20.4551 87.2031 21.6504 87.2031ZM31.3711 83.6172H30.3516C30.1875 82.9902 29.6309 82.4805 28.7227 82.4805C27.5859 82.4805 26.8711 83.3887 26.8711 84.8184C26.8711 86.2773 27.5977 87.2031 28.7227 87.2031C29.5723 87.2031 30.1641 86.8105 30.3516 86.0957H31.3711C31.1895 87.2559 30.2461 88.1113 28.7285 88.1113C26.959 88.1113 25.8281 86.8281 25.8281 84.8184C25.8281 82.8496 26.9531 81.5723 28.7227 81.5723C30.2578 81.5723 31.1953 82.4922 31.3711 83.6172ZM34.0195 84.4434L36.7617 81.6836H37.998L35.2793 84.3906L38.1797 88H36.8965L34.5293 85.041L33.9258 85.6035V88H32.918V79.1758H33.9258V84.4434H34.0195ZM39.9023 80.4648C39.5156 80.4648 39.1992 80.1484 39.1992 79.7617C39.1992 79.375 39.5156 79.0586 39.9023 79.0586C40.2891 79.0586 40.6055 79.375 40.6055 79.7617C40.6055 80.1484 40.2891 80.4648 39.9023 80.4648ZM39.3984 88V81.6836H40.4062V88H39.3984ZM42.3281 88V81.6836H43.2891V82.6797H43.3828C43.6992 81.9824 44.3145 81.5723 45.2812 81.5723C46.6992 81.5723 47.4902 82.4102 47.4902 83.9102V88H46.4824V84.1562C46.4824 83.0195 46.002 82.4805 44.9941 82.4805C43.9863 82.4805 43.3359 83.1543 43.3359 84.2617V88H42.3281ZM51.9375 90.4258C50.4141 90.4258 49.4414 89.7402 49.2891 88.6973H50.3555C50.4668 89.2129 51.0293 89.5469 51.9375 89.5469C53.0684 89.5469 53.7422 88.9902 53.7422 88.0586V86.8164H53.6484C53.25 87.5137 52.5352 87.9062 51.668 87.9062C50.0332 87.9062 49.0195 86.6406 49.0195 84.748C49.0195 82.8555 50.0449 81.5723 51.668 81.5723C52.5527 81.5723 53.332 82.0059 53.6953 82.6855H53.7891V81.6836H54.75V88.1113C54.75 89.5234 53.6602 90.4258 51.9375 90.4258ZM51.8906 87.0156C53.0625 87.0156 53.7656 86.125 53.7656 84.748C53.7656 83.3711 53.0566 82.4805 51.8906 82.4805C50.7188 82.4805 50.0625 83.3711 50.0625 84.748C50.0625 86.125 50.7188 87.0156 51.8906 87.0156Z" fill="#1F1F1F"/>
8
+ <mask id="path-7-inside-1_6116_325248" fill="white">
9
+ <path d="M-48 0H192V28H-48V0Z"/>
10
+ </mask>
11
+ <path d="M-48 0H192V28H-48V0Z" fill="#EFF3FA"/>
12
+ <path d="M192 27H-48V29H192V27Z" fill="#D3E3FD" mask="url(#path-7-inside-1_6116_325248)"/>
13
+ <path d="M34.5879 17.5L33.8145 15.2148H30.5918L29.8125 17.5H28.4648L31.5176 9.04492H32.9297L35.9824 17.5H34.5879ZM32.1562 10.5391L30.9258 14.1602H33.4805L32.2559 10.5391H32.1562ZM37.3125 17.5V11.1367H38.5254V12.1445H38.6191C38.9297 11.4414 39.5625 11.0137 40.5234 11.0137C41.9473 11.0137 42.7324 11.8633 42.7324 13.3809V17.5H41.4727V13.6797C41.4727 12.625 41.0273 12.1094 40.0957 12.1094C39.1641 12.1094 38.5723 12.7422 38.5723 13.7676V17.5H37.3125ZM44.5078 17.5V11.1367H45.7207V12.1445H45.8145C46.125 11.4414 46.7578 11.0137 47.7188 11.0137C49.1426 11.0137 49.9277 11.8633 49.9277 13.3809V17.5H48.668V13.6797C48.668 12.625 48.2227 12.1094 47.291 12.1094C46.3594 12.1094 45.7676 12.7422 45.7676 13.7676V17.5H44.5078ZM54.3984 17.623C52.5293 17.623 51.3867 16.375 51.3867 14.3184C51.3867 12.2676 52.5352 11.0137 54.3984 11.0137C56.2559 11.0137 57.4043 12.2617 57.4043 14.3184C57.4043 16.375 56.2617 17.623 54.3984 17.623ZM54.3984 16.5508C55.4883 16.5508 56.1094 15.7305 56.1094 14.3184C56.1094 12.9004 55.4883 12.0801 54.3984 12.0801C53.3027 12.0801 52.6875 12.9004 52.6875 14.3184C52.6875 15.7363 53.3027 16.5508 54.3984 16.5508ZM59.3672 9.53125H60.627V11.1543H62.0098V12.1621H60.627V15.5195C60.627 16.2051 60.9023 16.5039 61.5293 16.5039C61.7227 16.5039 61.834 16.4922 62.0098 16.4746V17.4766C61.8047 17.5117 61.5703 17.541 61.3242 17.541C59.9238 17.541 59.3672 17.0488 59.3672 15.8242V12.1621H58.3535V11.1543H59.3672V9.53125ZM65.2559 17.6055C64.0254 17.6055 63.1289 16.8672 63.1289 15.707C63.1289 14.5645 63.9844 13.9023 65.502 13.8086L67.2305 13.7031V13.1465C67.2305 12.4492 66.7852 12.0566 65.9238 12.0566C65.2207 12.0566 64.7344 12.3203 64.5938 12.7832H63.375C63.5039 11.7109 64.5352 11.0137 65.9824 11.0137C67.582 11.0137 68.4844 11.8105 68.4844 13.1465V17.5H67.2715V16.5977H67.1719C66.791 17.2422 66.0938 17.6055 65.2559 17.6055ZM65.5781 16.5918C66.5273 16.5918 67.2305 15.9707 67.2305 15.1504V14.5996L65.6719 14.7051C64.793 14.7637 64.3945 15.0742 64.3945 15.6543C64.3945 16.2461 64.8926 16.5918 65.5781 16.5918ZM70.7227 9.53125H71.9824V11.1543H73.3652V12.1621H71.9824V15.5195C71.9824 16.2051 72.2578 16.5039 72.8848 16.5039C73.0781 16.5039 73.1895 16.4922 73.3652 16.4746V17.4766C73.1602 17.5117 72.9258 17.541 72.6797 17.541C71.2793 17.541 70.7227 17.0488 70.7227 15.8242V12.1621H69.709V11.1543H70.7227V9.53125ZM75.498 10C75.0586 10 74.7012 9.64258 74.7012 9.20898C74.7012 8.76953 75.0586 8.41211 75.498 8.41211C75.9375 8.41211 76.2949 8.76953 76.2949 9.20898C76.2949 9.64258 75.9375 10 75.498 10ZM74.8711 17.5V11.1367H76.125V17.5H74.8711ZM80.6719 17.623C78.8027 17.623 77.6602 16.375 77.6602 14.3184C77.6602 12.2676 78.8086 11.0137 80.6719 11.0137C82.5293 11.0137 83.6777 12.2617 83.6777 14.3184C83.6777 16.375 82.5352 17.623 80.6719 17.623ZM80.6719 16.5508C81.7617 16.5508 82.3828 15.7305 82.3828 14.3184C82.3828 12.9004 81.7617 12.0801 80.6719 12.0801C79.5762 12.0801 78.9609 12.9004 78.9609 14.3184C78.9609 15.7363 79.5762 16.5508 80.6719 16.5508ZM85.1953 17.5V11.1367H86.4082V12.1445H86.502C86.8125 11.4414 87.4453 11.0137 88.4062 11.0137C89.8301 11.0137 90.6152 11.8633 90.6152 13.3809V17.5H89.3555V13.6797C89.3555 12.625 88.9102 12.1094 87.9785 12.1094C87.0469 12.1094 86.4551 12.7422 86.4551 13.7676V17.5H85.1953ZM92.2441 12.918C92.2441 11.8105 93.2812 11.0137 94.7227 11.0137C96.1582 11.0137 97.0957 11.6816 97.2188 12.7832H96.0117C95.8945 12.3086 95.4375 11.998 94.7227 11.998C94.0195 11.998 93.4863 12.3438 93.4863 12.8594C93.4863 13.252 93.8086 13.498 94.5 13.6621L95.5605 13.9082C96.7734 14.1895 97.3418 14.7109 97.3418 15.6367C97.3418 16.8203 96.2227 17.623 94.6992 17.623C93.1816 17.623 92.1914 16.9375 92.0801 15.8301H93.3398C93.498 16.3281 93.9668 16.6387 94.7285 16.6387C95.5137 16.6387 96.0703 16.2754 96.0703 15.7539C96.0703 15.3555 95.7715 15.0977 95.1328 14.9453L94.0195 14.6816C92.8066 14.4004 92.2441 13.8613 92.2441 12.918Z" fill="#0B57D0"/>
14
+ <path d="M102.5 13.5C102.5 9.63401 105.634 6.5 109.5 6.5C113.366 6.5 116.5 9.63401 116.5 13.5C116.5 17.366 113.366 20.5 109.5 20.5C105.634 20.5 102.5 17.366 102.5 13.5Z" fill="white"/>
15
+ <path d="M102.5 13.5C102.5 9.63401 105.634 6.5 109.5 6.5C113.366 6.5 116.5 9.63401 116.5 13.5C116.5 17.366 113.366 20.5 109.5 20.5C105.634 20.5 102.5 17.366 102.5 13.5Z" stroke="#D3E3FD"/>
16
+ <path d="M108.517 13.4927V12.5474H109.452C110.29 12.5474 110.87 12.021 110.87 11.2744C110.87 10.5923 110.354 10.0498 109.484 10.0498C108.603 10.0498 108.039 10.5063 107.969 11.3174H106.831C106.911 10.0015 107.921 9.06152 109.554 9.06152C111.154 9.06152 112.062 10.0229 112.057 11.124C112.051 12.0586 111.466 12.6763 110.655 12.9019V12.9932C111.686 13.1489 112.352 13.8364 112.352 14.8999C112.352 16.2212 111.133 17.188 109.516 17.188C107.878 17.188 106.75 16.291 106.686 14.9268H107.84C107.91 15.6895 108.56 16.1782 109.5 16.1782C110.451 16.1782 111.117 15.6411 111.117 14.8354C111.117 14.0083 110.494 13.4927 109.484 13.4927H108.517Z" fill="#0B57D0"/>
17
+ <rect x="18" y="26" width="109" height="2" fill="#1B6EF3"/>
18
+ <g clip-path="url(#clip1_6116_325248)">
19
+ <path d="M164 79C163.45 79 162.975 78.8083 162.575 78.425C162.192 78.025 162 77.55 162 77V64H161V62H166V61H172V62H177V64H176V77C176 77.55 175.8 78.025 175.4 78.425C175.017 78.8083 174.55 79 174 79H164ZM174 64H164V77H174V64ZM166 75H168V66H166V75ZM170 75H172V66H170V75ZM164 64V77V64Z" fill="#444746"/>
20
+ </g>
21
+ <rect x="149.096" y="50.459" width="39" height="39" rx="19.5" stroke="#0B57D0"/>
22
+ <circle opacity="0.2" cx="168.596" cy="69.959" r="20" fill="#0B57D0"/>
23
+ </g>
24
+ <defs>
25
+ <clipPath id="clip0_6116_325248">
26
+ <path d="M0 0H192V106H0V0Z" fill="white"/>
27
+ </clipPath>
28
+ <clipPath id="clip1_6116_325248">
29
+ <rect width="20" height="20" fill="white" transform="translate(159 60)"/>
30
+ </clipPath>
31
+ </defs>
32
+ </svg>
@@ -1,29 +1,34 @@
1
1
  <svg width="186" height="50" viewBox="0 0 186 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect x="0.5" width="81" height="16" fill="#FFE07C"/>
3
- <rect x="82.5" width="42" height="16" fill="#FFE07C"/>
4
- <rect x="42.5" y="17" width="10" height="16" fill="#D9BAFD"/>
5
- <rect x="53.5" y="17" width="84" height="16" fill="#D9BAFD"/>
6
- <rect x="138.5" y="17" width="39" height="16" fill="#D9BAFD"/>
7
- <rect x="56.5" y="34" width="74" height="16" fill="#80DA88"/>
8
- <rect x="131.5" y="34" width="54" height="16" fill="#80DA88"/>
2
+ <rect x="0.5" width="81" height="16" fill="#FACC15"/>
3
+ <rect x="82.5" width="42" height="16" fill="#FACC15"/>
4
+ <rect x="42.5" y="17" width="10" height="16" fill="#D190FF"/>
5
+ <rect x="53.5" y="17" width="84" height="16" fill="#D190FF"/>
6
+ <rect x="138.5" y="17" width="39" height="16" fill="#D190FF"/>
7
+ <rect x="56.5" y="34" width="74" height="16" fill="#37BE5F"/>
8
+ <rect x="131.5" y="34" width="54" height="16" fill="#37BE5F"/>
9
9
  <rect x="1.5" y="1" width="79" height="14" stroke="#1F1F1F" stroke-width="2"/>
10
10
  <rect x="132.5" y="35" width="52" height="14" stroke="#1F1F1F" stroke-width="2"/>
11
- <g filter="url(#filter0_d_4690_314721)">
11
+ <g filter="url(#filter0_dd_4690_314721)">
12
12
  <path d="M78.7261 6.95605L128.208 39.0898" stroke="#1F1F1F" stroke-width="2" stroke-linecap="round"/>
13
13
  <circle cx="80.4031" cy="8.04544" r="2" transform="rotate(33 80.4031 8.04544)" fill="white" stroke="#1F1F1F" stroke-width="2"/>
14
14
  <circle cx="132.401" cy="41.813" r="2" transform="rotate(33 132.401 41.813)" fill="white" stroke="#1F1F1F" stroke-width="2"/>
15
15
  <path d="M129.239 40.749C129.949 40.7371 130.42 40.0107 130.143 39.3578L127.213 32.4675C126.899 31.7305 125.89 31.6425 125.454 32.3142L120.897 39.3304C120.461 40.002 120.952 40.8883 121.753 40.8749L129.239 40.749Z" fill="#1F1F1F"/>
16
16
  </g>
17
17
  <defs>
18
- <filter id="filter0_d_4690_314721" x="73.0747" y="-0.458984" width="63.3262" height="48.2744" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18
+ <filter id="filter0_dd_4690_314721" x="70.0747" y="-2.45898" width="69.3262" height="54.2744" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
19
19
  <feFlood flood-opacity="0" result="BackgroundImageFix"/>
20
20
  <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
21
- <feOffset/>
22
- <feGaussianBlur stdDeviation="0.5"/>
23
- <feComposite in2="hardAlpha" operator="out"/>
24
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0"/>
21
+ <feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_4690_314721"/>
22
+ <feOffset dy="1"/>
23
+ <feGaussianBlur stdDeviation="1.5"/>
24
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
25
25
  <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4690_314721"/>
26
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4690_314721" result="shape"/>
26
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
27
+ <feOffset dy="1"/>
28
+ <feGaussianBlur stdDeviation="1"/>
29
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
30
+ <feBlend mode="normal" in2="effect1_dropShadow_4690_314721" result="effect2_dropShadow_4690_314721"/>
31
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_4690_314721" result="shape"/>
27
32
  </filter>
28
33
  </defs>
29
34
  </svg>
@@ -5,8 +5,8 @@
5
5
  <rect x="163.5" y="38" width="2" height="8" fill="#E1E3E1"/>
6
6
  <g clip-path="url(#clip1_4690_314478)">
7
7
  <rect width="68" height="16" transform="translate(45.5 34)" fill="white"/>
8
- <rect opacity="0.4" x="45.5" y="34" width="68" height="16" fill="#80DA88"/>
9
- <rect x="51.5" y="34" width="62" height="16" fill="#80DA88"/>
8
+ <rect opacity="0.4" x="45.5" y="34" width="68" height="16" fill="#37BE5F"/>
9
+ <rect x="51.5" y="34" width="62" height="16" fill="#37BE5F"/>
10
10
  </g>
11
11
  </g>
12
12
  <rect x="22.5" y="59" width="167" height="2" fill="#E1E3E1"/>
@@ -14,24 +14,24 @@
14
14
  <rect x="189.5" y="56" width="2" height="8" fill="#E1E3E1"/>
15
15
  <g clip-path="url(#clip2_4690_314478)">
16
16
  <rect width="83" height="16" transform="translate(71.5 52)" fill="white"/>
17
- <rect opacity="0.4" x="71.5" y="52" width="83" height="16" fill="#FFE07C"/>
18
- <rect x="77.5" y="52" width="77" height="16" fill="#FFE07C"/>
17
+ <rect opacity="0.4" x="71.5" y="52" width="83" height="16" fill="#FACC15"/>
18
+ <rect x="77.5" y="52" width="77" height="16" fill="#FACC15"/>
19
19
  </g>
20
20
  <rect x="82.5" y="77" width="104" height="2" fill="#E1E3E1"/>
21
21
  <rect x="80.5" y="74" width="2" height="8" fill="#E1E3E1"/>
22
22
  <rect x="186.5" y="74" width="2" height="8" fill="#E1E3E1"/>
23
23
  <g clip-path="url(#clip3_4690_314478)">
24
24
  <rect width="44" height="16" transform="translate(102.5 70)" fill="white"/>
25
- <rect opacity="0.4" x="102.5" y="70" width="44" height="16" fill="#80DA88"/>
26
- <rect x="113.5" y="70" width="33" height="16" fill="#80DA88"/>
25
+ <rect opacity="0.4" x="102.5" y="70" width="44" height="16" fill="#37BE5F"/>
26
+ <rect x="113.5" y="70" width="33" height="16" fill="#37BE5F"/>
27
27
  </g>
28
28
  <rect x="2.5" y="23" width="150" height="2" fill="#E1E3E1"/>
29
29
  <rect x="0.5" y="20" width="2" height="8" fill="#E1E3E1"/>
30
30
  <rect x="152.5" y="20" width="2" height="8" fill="#E1E3E1"/>
31
31
  <g clip-path="url(#clip4_4690_314478)">
32
32
  <rect width="142" height="16" transform="translate(10.5 16)" fill="white"/>
33
- <rect opacity="0.4" x="10.5" y="16" width="142" height="16" fill="#D9BAFD"/>
34
- <rect x="14.5" y="16" width="138" height="16" fill="#D9BAFD"/>
33
+ <rect opacity="0.4" x="10.5" y="16" width="142" height="16" fill="#D190FF"/>
34
+ <rect x="14.5" y="16" width="138" height="16" fill="#D190FF"/>
35
35
  </g>
36
36
  <rect x="34.5" y="35" width="130" height="14" stroke="#1F1F1F" stroke-width="2"/>
37
37
  <g filter="url(#filter0_dd_4690_314478)">
@@ -39,16 +39,9 @@
39
39
  <path d="M79.042 18.667V20H72.8896V10.1357H74.4209V18.667H79.042ZM82.8701 20.123C81.4346 20.123 80.3887 19.2617 80.3887 17.9082C80.3887 16.5752 81.3867 15.8027 83.1572 15.6934L85.1738 15.5703V14.9209C85.1738 14.1074 84.6543 13.6494 83.6494 13.6494C82.8291 13.6494 82.2617 13.957 82.0977 14.4971H80.6758C80.8262 13.2461 82.0293 12.4326 83.7178 12.4326C85.584 12.4326 86.6367 13.3623 86.6367 14.9209V20H85.2217V18.9473H85.1055C84.6611 19.6992 83.8477 20.123 82.8701 20.123ZM83.2461 18.9404C84.3535 18.9404 85.1738 18.2158 85.1738 17.2588V16.6162L83.3555 16.7393C82.3301 16.8076 81.8652 17.1699 81.8652 17.8467C81.8652 18.5371 82.4463 18.9404 83.2461 18.9404ZM92.6729 20.123C91.6338 20.123 90.7656 19.6445 90.3213 18.8242H90.2119V20H88.7969V9.66406H90.2666V13.752H90.3828C90.7793 12.9453 91.6543 12.4463 92.6729 12.4463C94.5596 12.4463 95.749 13.9297 95.749 16.2881C95.749 18.626 94.5527 20.123 92.6729 20.123ZM92.249 13.7041C91.0186 13.7041 90.2461 14.6953 90.2393 16.2881C90.2461 17.8809 91.0117 18.8652 92.249 18.8652C93.4932 18.8652 94.2383 17.8945 94.2383 16.2881C94.2383 14.6816 93.4932 13.7041 92.249 13.7041ZM102.4 18.0107H103.815C103.494 19.3232 102.291 20.1436 100.589 20.1436C98.4561 20.1436 97.1504 18.6738 97.1504 16.3018C97.1504 13.9434 98.4834 12.4326 100.582 12.4326C102.653 12.4326 103.904 13.8477 103.904 16.1719V16.6777H98.6475V16.7461C98.6953 18.0928 99.4541 18.9404 100.63 18.9404C101.519 18.9404 102.127 18.6123 102.4 18.0107ZM100.575 13.6289C99.4883 13.6289 98.7295 14.4219 98.6475 15.6182H102.407C102.373 14.415 101.662 13.6289 100.575 13.6289ZM105.736 20V9.66406H107.206V20H105.736Z" fill="white"/>
40
40
  <path fill-rule="evenodd" clip-rule="evenodd" d="M100.95 35.1415L96.0001 30.1917L92.5 26.606L89.6361 26.6562L99.5356 36.5557L100.95 35.1415Z" fill="#1F1F1F"/>
41
41
  <circle cx="3" cy="3" r="3" transform="matrix(-0.707107 -0.707107 -0.707107 0.707107 103.778 35.1416)" fill="#1F1F1F"/>
42
- <rect x="47.5" y="8.70996" width="12" height="12" rx="6" fill="white"/>
43
- <mask id="mask0_4690_314478" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="45" y="6" width="17" height="17">
44
- <rect x="45.5" y="6.70996" width="16" height="16" fill="#D9D9D9"/>
45
- </mask>
46
- <g mask="url(#mask0_4690_314478)">
47
- <path d="M49.4002 18.1096C49.9668 17.6763 50.6002 17.3346 51.3002 17.0846C52.0002 16.8346 52.7335 16.7096 53.5002 16.7096C54.2668 16.7096 55.0002 16.8346 55.7002 17.0846C56.4002 17.3346 57.0335 17.6763 57.6002 18.1096C57.9891 17.6541 58.2918 17.1374 58.5085 16.5596C58.7252 15.9819 58.8335 15.3652 58.8335 14.7096C58.8335 13.2319 58.3141 11.9735 57.2752 10.9346C56.2363 9.89575 54.9779 9.3763 53.5002 9.3763C52.0224 9.3763 50.7641 9.89575 49.7252 10.9346C48.6863 11.9735 48.1668 13.2319 48.1668 14.7096C48.1668 15.3652 48.2752 15.9819 48.4918 16.5596C48.7085 17.1374 49.0113 17.6541 49.4002 18.1096ZM53.5002 15.3763C52.8446 15.3763 52.2918 15.1513 51.8418 14.7013C51.3918 14.2513 51.1668 13.6985 51.1668 13.043C51.1668 12.3874 51.3918 11.8346 51.8418 11.3846C52.2918 10.9346 52.8446 10.7096 53.5002 10.7096C54.1557 10.7096 54.7085 10.9346 55.1585 11.3846C55.6085 11.8346 55.8335 12.3874 55.8335 13.043C55.8335 13.6985 55.6085 14.2513 55.1585 14.7013C54.7085 15.1513 54.1557 15.3763 53.5002 15.3763ZM53.5002 21.3763C52.5779 21.3763 51.7113 21.2013 50.9002 20.8513C50.0891 20.5013 49.3835 20.0263 48.7835 19.4263C48.1835 18.8263 47.7085 18.1207 47.3585 17.3096C47.0085 16.4985 46.8335 15.6319 46.8335 14.7096C46.8335 13.7874 47.0085 12.9207 47.3585 12.1096C47.7085 11.2985 48.1835 10.593 48.7835 9.99297C49.3835 9.39297 50.0891 8.91797 50.9002 8.56797C51.7113 8.21797 52.5779 8.04297 53.5002 8.04297C54.4224 8.04297 55.2891 8.21797 56.1002 8.56797C56.9113 8.91797 57.6168 9.39297 58.2168 9.99297C58.8168 10.593 59.2918 11.2985 59.6418 12.1096C59.9918 12.9207 60.1668 13.7874 60.1668 14.7096C60.1668 15.6319 59.9918 16.4985 59.6418 17.3096C59.2918 18.1207 58.8168 18.8263 58.2168 19.4263C57.6168 20.0263 56.9113 20.5013 56.1002 20.8513C55.2891 21.2013 54.4224 21.3763 53.5002 21.3763ZM53.5002 20.043C54.0891 20.043 54.6446 19.9569 55.1668 19.7846C55.6891 19.6124 56.1668 19.3652 56.6002 19.043C56.1668 18.7207 55.6891 18.4735 55.1668 18.3013C54.6446 18.1291 54.0891 18.043 53.5002 18.043C52.9113 18.043 52.3557 18.1291 51.8335 18.3013C51.3113 18.4735 50.8335 18.7207 50.4002 19.043C50.8335 19.3652 51.3113 19.6124 51.8335 19.7846C52.3557 19.9569 52.9113 20.043 53.5002 20.043ZM53.5002 14.043C53.7891 14.043 54.0279 13.9485 54.2168 13.7596C54.4057 13.5707 54.5002 13.3319 54.5002 13.043C54.5002 12.7541 54.4057 12.5152 54.2168 12.3263C54.0279 12.1374 53.7891 12.043 53.5002 12.043C53.2113 12.043 52.9724 12.1374 52.7835 12.3263C52.5946 12.5152 52.5002 12.7541 52.5002 13.043C52.5002 13.3319 52.5946 13.5707 52.7835 13.7596C52.9724 13.9485 53.2113 14.043 53.5002 14.043Z" fill="#1F1F1F"/>
48
- </g>
49
42
  </g>
50
43
  <defs>
51
- <filter id="filter0_dd_4690_314478" x="41.5" y="0" width="96" height="47.2129" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
44
+ <filter id="filter0_dd_4690_314478" x="61.5" y="0" width="76" height="47.2129" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
52
45
  <feFlood flood-opacity="0" result="BackgroundImageFix"/>
53
46
  <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
54
47
  <feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_4690_314478"/>
@@ -4,14 +4,8 @@
4
4
  </mask>
5
5
  <path d="M0 0H160V66H0V0Z" fill="url(#paint0_linear_4690_314791)" fill-opacity="0.15"/>
6
6
  <path d="M160 66V70H161V66H160ZM0 66H-1V70H0V66ZM159 0V66H161V0H159ZM160 62H0V70H160V62ZM1 66V0H-1V66H1Z" fill="#FF4896" mask="url(#path-1-inside-1_4690_314791)"/>
7
- <path d="M69.042 33.667V35H62.8896V25.1357H64.4209V33.667H69.042ZM72.8701 35.123C71.4346 35.123 70.3887 34.2617 70.3887 32.9082C70.3887 31.5752 71.3867 30.8027 73.1572 30.6934L75.1738 30.5703V29.9209C75.1738 29.1074 74.6543 28.6494 73.6494 28.6494C72.8291 28.6494 72.2617 28.957 72.0977 29.4971H70.6758C70.8262 28.2461 72.0293 27.4326 73.7178 27.4326C75.584 27.4326 76.6367 28.3623 76.6367 29.9209V35H75.2217V33.9473H75.1055C74.6611 34.6992 73.8477 35.123 72.8701 35.123ZM73.2461 33.9404C74.3535 33.9404 75.1738 33.2158 75.1738 32.2588V31.6162L73.3555 31.7393C72.3301 31.8076 71.8652 32.1699 71.8652 32.8467C71.8652 33.5371 72.4463 33.9404 73.2461 33.9404ZM82.6729 35.123C81.6338 35.123 80.7656 34.6445 80.3213 33.8242H80.2119V35H78.7969V24.6641H80.2666V28.752H80.3828C80.7793 27.9453 81.6543 27.4463 82.6729 27.4463C84.5596 27.4463 85.749 28.9297 85.749 31.2881C85.749 33.626 84.5527 35.123 82.6729 35.123ZM82.249 28.7041C81.0186 28.7041 80.2461 29.6953 80.2393 31.2881C80.2461 32.8809 81.0117 33.8652 82.249 33.8652C83.4932 33.8652 84.2383 32.8945 84.2383 31.2881C84.2383 29.6816 83.4932 28.7041 82.249 28.7041ZM92.4004 33.0107H93.8154C93.4941 34.3232 92.291 35.1436 90.5889 35.1436C88.4561 35.1436 87.1504 33.6738 87.1504 31.3018C87.1504 28.9434 88.4834 27.4326 90.582 27.4326C92.6533 27.4326 93.9043 28.8477 93.9043 31.1719V31.6777H88.6475V31.7461C88.6953 33.0928 89.4541 33.9404 90.6299 33.9404C91.5186 33.9404 92.127 33.6123 92.4004 33.0107ZM90.5752 28.6289C89.4883 28.6289 88.7295 29.4219 88.6475 30.6182H92.4072C92.373 29.415 91.6621 28.6289 90.5752 28.6289ZM95.7363 35V24.6641H97.2061V35H95.7363Z" fill="#FF4896"/>
8
- <path d="M70.8047 54V52.3184H66.6797V51.2051C67.793 49.2949 69.0352 47.2969 70.2012 45.5449H72.0703V51.2051H73.2363V52.3184H72.0703V54H70.8047ZM67.9395 51.1465V51.2285H70.8223V46.6523H70.7461C69.8379 48.0176 68.8066 49.6641 67.9395 51.1465ZM75.4746 54.0879C74.9824 54.0879 74.6133 53.7188 74.6133 53.2441C74.6133 52.7695 74.9824 52.4004 75.4746 52.4004C75.9727 52.4004 76.3359 52.7695 76.3359 53.2441C76.3359 53.7188 75.9727 54.0879 75.4746 54.0879ZM78.0117 47.9941C78.0117 46.4414 79.2129 45.3398 80.918 45.3398C82.5059 45.3398 83.6484 46.3535 83.6484 47.7422C83.6484 48.7207 83.2207 49.418 81.7383 50.9062L79.875 52.7812V52.8809H83.7773V54H78.082V53.1094L80.9766 50.0977C82.0488 48.9785 82.3301 48.5566 82.3301 47.8711C82.3301 47.0508 81.7734 46.4238 80.8359 46.4238C79.8809 46.4238 79.2539 47.0566 79.2539 47.9941H78.0117ZM88.4531 54.2051C86.7715 54.2051 85.5879 53.1797 85.5059 51.709H86.7598C86.8535 52.5527 87.5391 53.1094 88.459 53.1094C89.4844 53.1094 90.1758 52.3711 90.1758 51.2695C90.1758 50.2031 89.4902 49.4883 88.4941 49.4883C87.7441 49.4883 87.1523 49.8398 86.8418 50.4258H85.6406L86.1152 45.5449H91.0195V46.6582H87.1348L86.8887 49.2539H86.9883C87.375 48.7324 88.002 48.457 88.8574 48.457C90.2871 48.457 91.459 49.5586 91.459 51.2461C91.459 53.0039 90.2461 54.2051 88.4531 54.2051ZM96.252 49.418C96.252 48.3105 97.2891 47.5137 98.7305 47.5137C100.166 47.5137 101.104 48.1816 101.227 49.2832H100.02C99.9023 48.8086 99.4453 48.498 98.7305 48.498C98.0273 48.498 97.4941 48.8438 97.4941 49.3594C97.4941 49.752 97.8164 49.998 98.5078 50.1621L99.5684 50.4082C100.781 50.6895 101.35 51.2109 101.35 52.1367C101.35 53.3203 100.23 54.123 98.707 54.123C97.1895 54.123 96.1992 53.4375 96.0879 52.3301H97.3477C97.5059 52.8281 97.9746 53.1387 98.7363 53.1387C99.5215 53.1387 100.078 52.7754 100.078 52.2539C100.078 51.8555 99.7793 51.5977 99.1406 51.4453L98.0273 51.1816C96.8145 50.9004 96.252 50.3613 96.252 49.418Z" fill="#FF4896"/>
9
- <mask id="mask0_4690_314791" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="6" y="42" width="16" height="16">
10
- <rect x="6" y="42" width="16" height="16" fill="#D9D9D9"/>
11
- </mask>
12
- <g mask="url(#mask0_4690_314791)">
13
- <path d="M9.90016 53.3997C10.4668 52.9663 11.1002 52.6247 11.8002 52.3747C12.5002 52.1247 13.2335 51.9997 14.0002 51.9997C14.7668 51.9997 15.5002 52.1247 16.2002 52.3747C16.9002 52.6247 17.5335 52.9663 18.1002 53.3997C18.4891 52.9441 18.7918 52.4275 19.0085 51.8497C19.2252 51.2719 19.3335 50.6552 19.3335 49.9997C19.3335 48.5219 18.8141 47.2636 17.7752 46.2247C16.7363 45.1858 15.4779 44.6663 14.0002 44.6663C12.5224 44.6663 11.2641 45.1858 10.2252 46.2247C9.18627 47.2636 8.66683 48.5219 8.66683 49.9997C8.66683 50.6552 8.77516 51.2719 8.99183 51.8497C9.2085 52.4275 9.51127 52.9441 9.90016 53.3997ZM14.0002 50.6663C13.3446 50.6663 12.7918 50.4413 12.3418 49.9913C11.8918 49.5413 11.6668 48.9886 11.6668 48.333C11.6668 47.6775 11.8918 47.1247 12.3418 46.6747C12.7918 46.2247 13.3446 45.9997 14.0002 45.9997C14.6557 45.9997 15.2085 46.2247 15.6585 46.6747C16.1085 47.1247 16.3335 47.6775 16.3335 48.333C16.3335 48.9886 16.1085 49.5413 15.6585 49.9913C15.2085 50.4413 14.6557 50.6663 14.0002 50.6663ZM14.0002 56.6663C13.0779 56.6663 12.2113 56.4913 11.4002 56.1413C10.5891 55.7913 9.8835 55.3163 9.2835 54.7163C8.6835 54.1163 8.2085 53.4108 7.8585 52.5997C7.5085 51.7886 7.3335 50.9219 7.3335 49.9997C7.3335 49.0775 7.5085 48.2108 7.8585 47.3997C8.2085 46.5886 8.6835 45.883 9.2835 45.283C9.8835 44.683 10.5891 44.208 11.4002 43.858C12.2113 43.508 13.0779 43.333 14.0002 43.333C14.9224 43.333 15.7891 43.508 16.6002 43.858C17.4113 44.208 18.1168 44.683 18.7168 45.283C19.3168 45.883 19.7918 46.5886 20.1418 47.3997C20.4918 48.2108 20.6668 49.0775 20.6668 49.9997C20.6668 50.9219 20.4918 51.7886 20.1418 52.5997C19.7918 53.4108 19.3168 54.1163 18.7168 54.7163C18.1168 55.3163 17.4113 55.7913 16.6002 56.1413C15.7891 56.4913 14.9224 56.6663 14.0002 56.6663Z" fill="#FF4896"/>
14
- </g>
7
+ <path d="M69.042 33.667V35H62.8896V25.1357H64.4209V33.667H69.042ZM72.8701 35.123C71.4346 35.123 70.3887 34.2617 70.3887 32.9082C70.3887 31.5752 71.3867 30.8027 73.1572 30.6934L75.1738 30.5703V29.9209C75.1738 29.1074 74.6543 28.6494 73.6494 28.6494C72.8291 28.6494 72.2617 28.957 72.0977 29.4971H70.6758C70.8262 28.2461 72.0293 27.4326 73.7178 27.4326C75.584 27.4326 76.6367 28.3623 76.6367 29.9209V35H75.2217V33.9473H75.1055C74.6611 34.6992 73.8477 35.123 72.8701 35.123ZM73.2461 33.9404C74.3535 33.9404 75.1738 33.2158 75.1738 32.2588V31.6162L73.3555 31.7393C72.3301 31.8076 71.8652 32.1699 71.8652 32.8467C71.8652 33.5371 72.4463 33.9404 73.2461 33.9404ZM82.6729 35.123C81.6338 35.123 80.7656 34.6445 80.3213 33.8242H80.2119V35H78.7969V24.6641H80.2666V28.752H80.3828C80.7793 27.9453 81.6543 27.4463 82.6729 27.4463C84.5596 27.4463 85.749 28.9297 85.749 31.2881C85.749 33.626 84.5527 35.123 82.6729 35.123ZM82.249 28.7041C81.0186 28.7041 80.2461 29.6953 80.2393 31.2881C80.2461 32.8809 81.0117 33.8652 82.249 33.8652C83.4932 33.8652 84.2383 32.8945 84.2383 31.2881C84.2383 29.6816 83.4932 28.7041 82.249 28.7041ZM92.4004 33.0107H93.8154C93.4941 34.3232 92.291 35.1436 90.5889 35.1436C88.4561 35.1436 87.1504 33.6738 87.1504 31.3018C87.1504 28.9434 88.4834 27.4326 90.582 27.4326C92.6533 27.4326 93.9043 28.8477 93.9043 31.1719V31.6777H88.6475V31.7461C88.6953 33.0928 89.4541 33.9404 90.6299 33.9404C91.5186 33.9404 92.127 33.6123 92.4004 33.0107ZM90.5752 28.6289C89.4883 28.6289 88.7295 29.4219 88.6475 30.6182H92.4072C92.373 29.415 91.6621 28.6289 90.5752 28.6289ZM95.7363 35V24.6641H97.2061V35H95.7363Z" fill="#B90063"/>
8
+ <path d="M70.8047 54V52.3184H66.6797V51.2051C67.793 49.2949 69.0352 47.2969 70.2012 45.5449H72.0703V51.2051H73.2363V52.3184H72.0703V54H70.8047ZM67.9395 51.1465V51.2285H70.8223V46.6523H70.7461C69.8379 48.0176 68.8066 49.6641 67.9395 51.1465ZM75.4746 54.0879C74.9824 54.0879 74.6133 53.7188 74.6133 53.2441C74.6133 52.7695 74.9824 52.4004 75.4746 52.4004C75.9727 52.4004 76.3359 52.7695 76.3359 53.2441C76.3359 53.7188 75.9727 54.0879 75.4746 54.0879ZM78.0117 47.9941C78.0117 46.4414 79.2129 45.3398 80.918 45.3398C82.5059 45.3398 83.6484 46.3535 83.6484 47.7422C83.6484 48.7207 83.2207 49.418 81.7383 50.9062L79.875 52.7812V52.8809H83.7773V54H78.082V53.1094L80.9766 50.0977C82.0488 48.9785 82.3301 48.5566 82.3301 47.8711C82.3301 47.0508 81.7734 46.4238 80.8359 46.4238C79.8809 46.4238 79.2539 47.0566 79.2539 47.9941H78.0117ZM88.4531 54.2051C86.7715 54.2051 85.5879 53.1797 85.5059 51.709H86.7598C86.8535 52.5527 87.5391 53.1094 88.459 53.1094C89.4844 53.1094 90.1758 52.3711 90.1758 51.2695C90.1758 50.2031 89.4902 49.4883 88.4941 49.4883C87.7441 49.4883 87.1523 49.8398 86.8418 50.4258H85.6406L86.1152 45.5449H91.0195V46.6582H87.1348L86.8887 49.2539H86.9883C87.375 48.7324 88.002 48.457 88.8574 48.457C90.2871 48.457 91.459 49.5586 91.459 51.2461C91.459 53.0039 90.2461 54.2051 88.4531 54.2051ZM96.252 49.418C96.252 48.3105 97.2891 47.5137 98.7305 47.5137C100.166 47.5137 101.104 48.1816 101.227 49.2832H100.02C99.9023 48.8086 99.4453 48.498 98.7305 48.498C98.0273 48.498 97.4941 48.8438 97.4941 49.3594C97.4941 49.752 97.8164 49.998 98.5078 50.1621L99.5684 50.4082C100.781 50.6895 101.35 51.2109 101.35 52.1367C101.35 53.3203 100.23 54.123 98.707 54.123C97.1895 54.123 96.1992 53.4375 96.0879 52.3301H97.3477C97.5059 52.8281 97.9746 53.1387 98.7363 53.1387C99.5215 53.1387 100.078 52.7754 100.078 52.2539C100.078 51.8555 99.7793 51.5977 99.1406 51.4453L98.0273 51.1816C96.8145 50.9004 96.252 50.3613 96.252 49.418Z" fill="#B90063"/>
15
9
  <defs>
16
10
  <linearGradient id="paint0_linear_4690_314791" x1="80" y1="0" x2="80" y2="66" gradientUnits="userSpaceOnUse">
17
11
  <stop stop-color="#FF7DD2" stop-opacity="0"/>
@@ -4,7 +4,7 @@
4
4
 
5
5
  import * as Root from '../root/root.js';
6
6
 
7
- import {type App} from './App.js';
7
+ import type {App} from './App.js';
8
8
 
9
9
  export interface AppProvider {
10
10
  createApp(): App;
@@ -29,13 +29,8 @@
29
29
 
30
30
  import type * as Platform from '../platform/platform.js';
31
31
 
32
- import {
33
- type EventDescriptor,
34
- type EventListener,
35
- type EventPayloadToRestParameters,
36
- type EventTarget,
37
- type EventTargetEvent,
38
- } from './EventTarget.js';
32
+ import type {
33
+ EventDescriptor, EventListener, EventPayloadToRestParameters, EventTarget, EventTargetEvent} from './EventTarget.js';
39
34
 
40
35
  export interface ListenerCallbackTuple<Events, T extends keyof Events> {
41
36
  thisObject?: Object;
@@ -6,7 +6,7 @@ import * as i18n from '../i18n/i18n.js';
6
6
  import type * as Platform from '../platform/platform.js';
7
7
  import * as Root from '../root/root.js';
8
8
 
9
- import {type SettingStorageType} from './Settings.js';
9
+ import type {SettingStorageType} from './Settings.js';
10
10
 
11
11
  const UIStrings = {
12
12
  /**
@@ -32,7 +32,7 @@ import * as Platform from '../platform/platform.js';
32
32
  import * as Root from '../root/root.js';
33
33
 
34
34
  import {Console} from './Console.js';
35
- import {type EventDescriptor, type EventTargetEvent, type GenericEvents} from './EventTarget.js';
35
+ import type {EventDescriptor, EventTargetEvent, GenericEvents} from './EventTarget.js';
36
36
  import {ObjectWrapper} from './Object.js';
37
37
  import {
38
38
  getLocalizedSettingsCategory,
@@ -5,7 +5,7 @@
5
5
  import * as Common from '../common/common.js';
6
6
 
7
7
  import {InspectorFrontendHostInstance} from './InspectorFrontendHost.js';
8
- import {type AidaClientResult, type SyncInformation} from './InspectorFrontendHostAPI.js';
8
+ import type {AidaClientResult, SyncInformation} from './InspectorFrontendHostAPI.js';
9
9
  import {bindOutputStream} from './ResourceLoader.js';
10
10
 
11
11
  export enum Entity {
@@ -40,6 +40,12 @@ export enum ClientFeature {
40
40
  CHROME_CONSOLE_INSIGHTS = 1,
41
41
  // Chrome freestyler.
42
42
  CHROME_FREESTYLER = 2,
43
+ // Chrome DrJones Network Agent.
44
+ CHROME_DRJONES_NETWORK_AGENT = 7,
45
+ // Chrome DrJones Performance Agent.
46
+ CHROME_DRJONES_PERFORMANCE_AGENT = 8,
47
+ // Chrome DrJones File Agent.
48
+ CHROME_DRJONES_FILE_AGENT = 9,
43
49
  }
44
50
 
45
51
  export enum UserTier {
@@ -417,7 +417,7 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
417
417
  temperature: -1,
418
418
  enabled: false,
419
419
  },
420
- devToolsFreestylerDogfood: {
420
+ devToolsFreestyler: {
421
421
  modelId: '',
422
422
  temperature: -1,
423
423
  enabled: false,
@@ -8,7 +8,7 @@ import * as Common from '../common/common.js';
8
8
  import * as i18n from '../i18n/i18n.js';
9
9
 
10
10
  import {InspectorFrontendHostInstance} from './InspectorFrontendHost.js';
11
- import {type LoadNetworkResourceResult} from './InspectorFrontendHostAPI.js';
11
+ import type {LoadNetworkResourceResult} from './InspectorFrontendHostAPI.js';
12
12
 
13
13
  const UIStrings = {
14
14
  /**
@@ -376,6 +376,15 @@ export class UserMetrics {
376
376
  InspectorFrontendHostInstance.recordEnumeratedHistogram(
377
377
  EnumeratedHistogram.ResourceTypeFilterItemSelected, resourceType, ResourceType.MAX_VALUE);
378
378
  }
379
+
380
+ freestylerQueryLength(numberOfCharacters: number): void {
381
+ InspectorFrontendHostInstance.recordCountHistogram(
382
+ 'DevTools.Freestyler.QueryLength', numberOfCharacters, 0, 100_000, 100);
383
+ }
384
+
385
+ freestylerEvalResponseSize(bytes: number): void {
386
+ InspectorFrontendHostInstance.recordCountHistogram('DevTools.Freestyler.EvalResponseSize', bytes, 0, 100_000, 100);
387
+ }
379
388
  }
380
389
 
381
390
  /**
@@ -560,7 +569,8 @@ export enum Action {
560
569
  InsightsReminderTeaserSettingsLinkClicked = 166,
561
570
  InsightsReminderTeaserAbortedInSettings = 167,
562
571
  GeneratingInsightWithoutDisclaimer = 168,
563
- MAX_VALUE = 169,
572
+ FreestylerOpenedFromElementsPanelFloatingButton = 169,
573
+ MAX_VALUE = 170,
564
574
  /* eslint-enable @typescript-eslint/naming-convention */
565
575
  }
566
576
 
@@ -1008,10 +1018,12 @@ export enum DevtoolsExperiments {
1008
1018
  'timeline-observations' = 96,
1009
1019
  'timeline-server-timings' = 98,
1010
1020
  'extension-storage-viewer' = 100,
1021
+ 'floating-entry-points-for-ai-assistance' = 101,
1022
+ 'timeline-experimental-insights' = 102,
1011
1023
  /* eslint-enable @typescript-eslint/naming-convention */
1012
1024
 
1013
1025
  // Increment this when new experiments are added.
1014
- MAX_VALUE = 101,
1026
+ MAX_VALUE = 103,
1015
1027
  }
1016
1028
 
1017
1029
  export const enum ColorPickerOpenedFrom {
@@ -9,16 +9,22 @@ import {getLocalizedString, registerUIStrings} from './i18nImpl.js';
9
9
  const UIStrings = {
10
10
  /**
11
11
  *@description μs is the short form of micro-seconds and the placeholder is a number
12
+ * The shortest form or abbreviation of micro-seconds should be used, as there is
13
+ * limited room in this UI.
12
14
  *@example {2} PH1
13
15
  */
14
16
  fmms: '{PH1} μs',
15
17
  /**
16
18
  *@description ms is the short form of milli-seconds and the placeholder is a decimal number
19
+ * The shortest form or abbreviation of milli-seconds should be used, as there is
20
+ * limited room in this UI.
17
21
  *@example {2.14} PH1
18
22
  */
19
23
  fms: '{PH1} ms',
20
24
  /**
21
25
  *@description s is short for seconds and the placeholder is a decimal number
26
+ * The shortest form or abbreviation of seconds should be used, as there is
27
+ * limited room in this UI.
22
28
  *@example {2.14} PH1
23
29
  */
24
30
  fs: '{PH1} s',
@@ -39,7 +45,7 @@ const UIStrings = {
39
45
  fdays: '{PH1} days',
40
46
 
41
47
  /**
42
- *@description describes a number of milliseconds
48
+ *@description describes a number of milliseconds (the unit should not abbreviated)
43
49
  *@example {2.14} PH1
44
50
  */
45
51
  fmsExpanded: '{PH1} milliseconds',
@@ -202,6 +202,7 @@ const enum NearestSearchStart {
202
202
  * arr[i] > 5 you would be returned 2 because array[2] = 6.
203
203
  *
204
204
  * Please note: this presupposes that the array is already ordered.
205
+ * This function uses a variation of Binary Search.
205
206
  */
206
207
  function nearestIndex<T>(
207
208
  arr: readonly T[], predicate: (arrayItem: T) => boolean, searchStart: NearestSearchStart): number|null {