chrome-devtools-frontend 1.0.1362775 → 1.0.1376716

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 (1655) hide show
  1. package/.eslintrc.js +1 -0
  2. package/.stylelintrc.json +2 -1
  3. package/.vscode/extensions.json +4 -4
  4. package/config/gni/devtools_grd_files.gni +43 -9
  5. package/config/gni/devtools_image_files.gni +5 -1
  6. package/docs/README.md +1 -5
  7. package/docs/checklist/javascript.md +45 -8
  8. package/docs/contributing/design.md +1 -1
  9. package/docs/contributing/issues.md +15 -0
  10. package/docs/contributing/settings-experiments-features.md +1 -1
  11. package/docs/cookbook/README.md +12 -0
  12. package/docs/cookbook/create_new_issues.md +91 -0
  13. package/docs/cookbook/dependencies.md +103 -0
  14. package/docs/cookbook/localization.md +320 -0
  15. package/docs/cookbook/navbar.md +8 -0
  16. package/docs/cookbook/release_management.md +60 -0
  17. package/docs/cookbook/uma_metrics.md +121 -0
  18. package/docs/dependencies.md +1 -100
  19. package/docs/l10n.md +1 -295
  20. package/docs/release_management.md +1 -53
  21. package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +1 -1
  22. package/extensions/cxx_debugging/e2e/tsconfig.json +1 -0
  23. package/extensions/cxx_debugging/src/ExtensionOptions.ts +6 -8
  24. package/extensions/cxx_debugging/tests/CreditsItem_test.ts +4 -4
  25. package/extensions/cxx_debugging/third_party/llvm/README.chromium +1 -1
  26. package/front_end/.eslintrc.js +0 -6
  27. package/front_end/Images/src/button-magic.svg +3 -0
  28. package/front_end/Images/src/center-focus-weak.svg +1 -0
  29. package/front_end/Images/src/history.svg +3 -0
  30. package/front_end/Images/src/home.svg +1 -0
  31. package/front_end/Images/src/performance-panel-delete-annotation.svg +32 -0
  32. package/front_end/Images/src/performance-panel-diagram.svg +19 -14
  33. package/front_end/Images/src/performance-panel-entry-label.svg +9 -16
  34. package/front_end/Images/src/performance-panel-time-range.svg +2 -8
  35. package/front_end/core/common/AppProvider.ts +1 -1
  36. package/front_end/core/common/Color.ts +10 -0
  37. package/front_end/core/common/Object.ts +2 -7
  38. package/front_end/core/common/ResourceType.test.ts +26 -26
  39. package/front_end/core/common/ResourceType.ts +21 -12
  40. package/front_end/core/common/Revealer.ts +5 -0
  41. package/front_end/core/common/SettingRegistration.ts +1 -1
  42. package/front_end/core/common/Settings.ts +6 -2
  43. package/front_end/core/host/AidaClient.ts +65 -1
  44. package/front_end/core/host/InspectorFrontendHost.ts +2 -2
  45. package/front_end/core/host/InspectorFrontendHostAPI.ts +8 -1
  46. package/front_end/core/host/ResourceLoader.ts +1 -1
  47. package/front_end/core/host/UserMetrics.ts +28 -13
  48. package/front_end/core/i18n/locales/af.json +598 -109
  49. package/front_end/core/i18n/locales/am.json +607 -118
  50. package/front_end/core/i18n/locales/ar.json +888 -399
  51. package/front_end/core/i18n/locales/as.json +603 -114
  52. package/front_end/core/i18n/locales/az.json +606 -117
  53. package/front_end/core/i18n/locales/be.json +599 -110
  54. package/front_end/core/i18n/locales/bg.json +598 -109
  55. package/front_end/core/i18n/locales/bn.json +609 -120
  56. package/front_end/core/i18n/locales/bs.json +607 -118
  57. package/front_end/core/i18n/locales/ca.json +601 -112
  58. package/front_end/core/i18n/locales/cs.json +605 -116
  59. package/front_end/core/i18n/locales/cy.json +603 -114
  60. package/front_end/core/i18n/locales/da.json +599 -110
  61. package/front_end/core/i18n/locales/de.json +604 -115
  62. package/front_end/core/i18n/locales/el.json +596 -107
  63. package/front_end/core/i18n/locales/en-GB.json +599 -110
  64. package/front_end/core/i18n/locales/es-419.json +600 -111
  65. package/front_end/core/i18n/locales/es.json +602 -113
  66. package/front_end/core/i18n/locales/et.json +601 -112
  67. package/front_end/core/i18n/locales/eu.json +605 -116
  68. package/front_end/core/i18n/locales/fa.json +609 -120
  69. package/front_end/core/i18n/locales/fi.json +598 -109
  70. package/front_end/core/i18n/locales/fil.json +605 -116
  71. package/front_end/core/i18n/locales/fr-CA.json +602 -113
  72. package/front_end/core/i18n/locales/fr.json +600 -111
  73. package/front_end/core/i18n/locales/gl.json +595 -106
  74. package/front_end/core/i18n/locales/gu.json +605 -116
  75. package/front_end/core/i18n/locales/he.json +603 -114
  76. package/front_end/core/i18n/locales/hi.json +600 -111
  77. package/front_end/core/i18n/locales/hr.json +600 -111
  78. package/front_end/core/i18n/locales/hu.json +600 -111
  79. package/front_end/core/i18n/locales/hy.json +599 -110
  80. package/front_end/core/i18n/locales/id.json +603 -114
  81. package/front_end/core/i18n/locales/is.json +598 -109
  82. package/front_end/core/i18n/locales/it.json +602 -113
  83. package/front_end/core/i18n/locales/ja.json +596 -107
  84. package/front_end/core/i18n/locales/ka.json +597 -108
  85. package/front_end/core/i18n/locales/kk.json +884 -395
  86. package/front_end/core/i18n/locales/km.json +605 -116
  87. package/front_end/core/i18n/locales/kn.json +606 -117
  88. package/front_end/core/i18n/locales/ko.json +591 -102
  89. package/front_end/core/i18n/locales/ky.json +599 -110
  90. package/front_end/core/i18n/locales/lo.json +608 -119
  91. package/front_end/core/i18n/locales/lt.json +597 -108
  92. package/front_end/core/i18n/locales/lv.json +606 -117
  93. package/front_end/core/i18n/locales/mk.json +885 -396
  94. package/front_end/core/i18n/locales/ml.json +601 -112
  95. package/front_end/core/i18n/locales/mn.json +599 -110
  96. package/front_end/core/i18n/locales/mr.json +601 -112
  97. package/front_end/core/i18n/locales/ms.json +602 -113
  98. package/front_end/core/i18n/locales/my.json +604 -115
  99. package/front_end/core/i18n/locales/ne.json +609 -120
  100. package/front_end/core/i18n/locales/nl.json +597 -108
  101. package/front_end/core/i18n/locales/no.json +601 -112
  102. package/front_end/core/i18n/locales/or.json +601 -112
  103. package/front_end/core/i18n/locales/pa.json +600 -111
  104. package/front_end/core/i18n/locales/pl.json +601 -112
  105. package/front_end/core/i18n/locales/pt-PT.json +600 -111
  106. package/front_end/core/i18n/locales/pt.json +596 -107
  107. package/front_end/core/i18n/locales/ro.json +601 -112
  108. package/front_end/core/i18n/locales/ru.json +609 -120
  109. package/front_end/core/i18n/locales/si.json +603 -114
  110. package/front_end/core/i18n/locales/sk.json +599 -110
  111. package/front_end/core/i18n/locales/sl.json +601 -112
  112. package/front_end/core/i18n/locales/sq.json +602 -113
  113. package/front_end/core/i18n/locales/sr-Latn.json +598 -109
  114. package/front_end/core/i18n/locales/sr.json +598 -109
  115. package/front_end/core/i18n/locales/sv.json +600 -111
  116. package/front_end/core/i18n/locales/sw.json +606 -117
  117. package/front_end/core/i18n/locales/ta.json +892 -403
  118. package/front_end/core/i18n/locales/te.json +604 -115
  119. package/front_end/core/i18n/locales/th.json +597 -108
  120. package/front_end/core/i18n/locales/tr.json +601 -112
  121. package/front_end/core/i18n/locales/uk.json +598 -109
  122. package/front_end/core/i18n/locales/ur.json +604 -115
  123. package/front_end/core/i18n/locales/uz.json +599 -110
  124. package/front_end/core/i18n/locales/vi.json +602 -113
  125. package/front_end/core/i18n/locales/zh-HK.json +599 -110
  126. package/front_end/core/i18n/locales/zh-TW.json +595 -106
  127. package/front_end/core/i18n/locales/zh.json +601 -112
  128. package/front_end/core/i18n/locales/zu.json +607 -118
  129. package/front_end/core/i18n/time-utilities.ts +7 -1
  130. package/front_end/core/platform/ArrayUtilities.ts +1 -0
  131. package/front_end/core/platform/DevToolsPath.ts +1 -1
  132. package/front_end/core/platform/Timing.ts +1 -1
  133. package/front_end/core/platform/UIString.ts +1 -1
  134. package/front_end/core/platform/UserVisibleError.ts +1 -1
  135. package/front_end/core/root/Runtime.ts +26 -9
  136. package/front_end/core/sdk/AccessibilityModel.ts +3 -4
  137. package/front_end/{panels/animation → core/sdk}/AnimationModel.test.ts +85 -6
  138. package/front_end/{panels/animation → core/sdk}/AnimationModel.ts +303 -37
  139. package/front_end/core/sdk/CPUProfilerModel.ts +3 -4
  140. package/front_end/core/sdk/CSSContainerQuery.ts +7 -5
  141. package/front_end/core/sdk/CSSLayer.ts +2 -2
  142. package/front_end/core/sdk/CSSMatchedStyles.test.ts +5 -0
  143. package/front_end/core/sdk/CSSMatchedStyles.ts +23 -12
  144. package/front_end/core/sdk/CSSMedia.ts +2 -2
  145. package/front_end/core/sdk/CSSMetadata.ts +27 -0
  146. package/front_end/core/sdk/CSSModel.ts +1 -0
  147. package/front_end/core/sdk/CSSProperty.ts +2 -2
  148. package/front_end/core/sdk/CSSQuery.ts +2 -2
  149. package/front_end/core/sdk/CSSRule.ts +2 -2
  150. package/front_end/core/sdk/CSSScope.ts +2 -2
  151. package/front_end/core/sdk/CSSStyleDeclaration.test.ts +10 -0
  152. package/front_end/core/sdk/CSSStyleDeclaration.ts +4 -4
  153. package/front_end/core/sdk/CSSStyleSheetHeader.ts +4 -4
  154. package/front_end/core/sdk/CSSSupports.ts +2 -2
  155. package/front_end/core/sdk/CookieModel.ts +1 -1
  156. package/front_end/core/sdk/DOMDebuggerModel.ts +1 -1
  157. package/front_end/core/sdk/DOMModel.ts +3 -3
  158. package/front_end/core/sdk/DebuggerModel.test.ts +2 -0
  159. package/front_end/core/sdk/DebuggerModel.ts +9 -3
  160. package/front_end/core/sdk/EmulationModel.ts +32 -0
  161. package/front_end/core/sdk/EnhancedTracesParser.test.ts +5 -9
  162. package/front_end/core/sdk/EnhancedTracesParser.ts +5 -10
  163. package/front_end/core/sdk/EventBreakpointsModel.ts +1 -2
  164. package/front_end/core/sdk/FrameAssociated.ts +1 -1
  165. package/front_end/core/sdk/FrameManager.ts +9 -7
  166. package/front_end/core/sdk/HeapProfilerModel.ts +3 -4
  167. package/front_end/core/sdk/IsolateManager.ts +2 -3
  168. package/front_end/core/sdk/LayerTreeBase.ts +2 -2
  169. package/front_end/core/sdk/NetworkManager.ts +1 -1
  170. package/front_end/core/sdk/OverlayModel.ts +2 -2
  171. package/front_end/core/sdk/OverlayPersistentHighlighter.ts +1 -1
  172. package/front_end/core/sdk/PageLoad.ts +1 -1
  173. package/front_end/core/sdk/PageResourceLoader.ts +1 -1
  174. package/front_end/core/sdk/RehydratingConnection.test.ts +190 -0
  175. package/front_end/core/sdk/RehydratingConnection.ts +310 -0
  176. package/front_end/core/sdk/RehydratingObject.ts +26 -2
  177. package/front_end/core/sdk/RemoteObject.ts +3 -3
  178. package/front_end/core/sdk/Resource.ts +2 -2
  179. package/front_end/core/sdk/ResourceTreeModel.ts +1 -1
  180. package/front_end/core/sdk/RuntimeModel.ts +31 -0
  181. package/front_end/core/sdk/SDKModel.ts +1 -1
  182. package/front_end/core/sdk/Script.ts +6 -6
  183. package/front_end/core/sdk/ServiceWorkerCacheModel.ts +5 -7
  184. package/front_end/core/sdk/SourceMap.ts +1 -1
  185. package/front_end/core/sdk/SourceMapManager.ts +1 -1
  186. package/front_end/core/sdk/SourceMapScopeChainEntry.ts +2 -2
  187. package/front_end/core/sdk/SourceMapScopesInfo.ts +2 -2
  188. package/front_end/core/sdk/Target.ts +3 -2
  189. package/front_end/core/sdk/TargetManager.ts +4 -1
  190. package/front_end/core/sdk/TraceObject.ts +8 -0
  191. package/front_end/core/sdk/WebAuthnModel.ts +20 -0
  192. package/front_end/core/sdk/sdk-meta.ts +7 -0
  193. package/front_end/core/sdk/sdk.ts +2 -0
  194. package/front_end/devtools_compatibility.js +3 -4
  195. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +1 -1
  196. package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +1 -1
  197. package/front_end/entrypoints/formatter_worker/IdentityFormatter.ts +1 -1
  198. package/front_end/entrypoints/formatter_worker/JSONFormatter.ts +1 -1
  199. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +1 -1
  200. package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +1 -1
  201. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +107 -86
  202. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +1 -1
  203. package/front_end/entrypoints/main/MainImpl.ts +21 -1
  204. package/front_end/generated/InspectorBackendCommands.js +15 -12
  205. package/front_end/generated/SupportedCSSProperties.js +35 -15
  206. package/front_end/generated/protocol-mapping.d.ts +14 -3
  207. package/front_end/generated/protocol-proxy-api.d.ts +16 -3
  208. package/front_end/generated/protocol.ts +63 -3
  209. package/front_end/legacy_test_runner/network_test_runner/network_test_runner.js +1 -0
  210. package/front_end/legacy_test_runner/sdk_test_runner/sdk_test_runner.js +4 -2
  211. package/front_end/models/bindings/CSSWorkspaceBinding.ts +2 -2
  212. package/front_end/models/bindings/CompilerScriptMapping.ts +1 -2
  213. package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +1 -1
  214. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +2 -2
  215. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
  216. package/front_end/models/bindings/DefaultScriptMapping.ts +1 -1
  217. package/front_end/models/bindings/IgnoreListManager.test.ts +49 -12
  218. package/front_end/models/bindings/IgnoreListManager.ts +79 -5
  219. package/front_end/models/bindings/ResourceMapping.ts +1 -1
  220. package/front_end/models/bindings/StylesSourceMapping.ts +11 -6
  221. package/front_end/models/breakpoints/BreakpointManager.test.ts +1 -1
  222. package/front_end/models/extensions/ExtensionPanel.ts +1 -1
  223. package/front_end/models/extensions/ExtensionServer.test.ts +1 -1
  224. package/front_end/models/extensions/ExtensionServer.ts +1 -1
  225. package/front_end/models/extensions/ExtensionView.ts +1 -1
  226. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +1 -1
  227. package/front_end/models/extensions/RecorderPluginManager.ts +1 -1
  228. package/front_end/models/har/HARFormat.ts +1 -0
  229. package/front_end/models/har/Importer.test.ts +16 -2
  230. package/front_end/models/har/Importer.ts +3 -3
  231. package/front_end/models/har/Log.test.ts +23 -0
  232. package/front_end/models/har/Log.ts +6 -4
  233. package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +4 -2
  234. package/front_end/models/issues_manager/AttributionReportingIssue.ts +59 -19
  235. package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -2
  236. package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +1 -1
  237. package/front_end/models/issues_manager/CookieIssue.ts +12 -0
  238. package/front_end/models/issues_manager/CorsIssue.ts +1 -1
  239. package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
  240. package/front_end/models/issues_manager/Issue.ts +1 -1
  241. package/front_end/models/issues_manager/IssueResolver.ts +2 -2
  242. package/front_end/models/issues_manager/IssuesManager.ts +1 -1
  243. package/front_end/models/issues_manager/LowTextContrastIssue.ts +1 -1
  244. package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
  245. package/front_end/models/issues_manager/PropertyRuleIssue.ts +1 -1
  246. package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
  247. package/front_end/models/issues_manager/RelatedIssue.ts +1 -1
  248. package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +3 -3
  249. package/front_end/models/issues_manager/SourceFrameIssuesManager.ts +1 -1
  250. package/front_end/models/issues_manager/StylesheetLoadingIssue.ts +1 -1
  251. package/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +5 -0
  252. package/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +5 -0
  253. package/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +5 -0
  254. package/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +5 -0
  255. package/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +5 -0
  256. package/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +5 -0
  257. package/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +4 -0
  258. package/front_end/models/issues_manager/descriptions/placeholderDescriptionForInvisibleIssues.md +3 -0
  259. package/front_end/models/javascript_metadata/NativeFunctions.js +132 -73
  260. package/front_end/models/live-metrics/LiveMetrics.ts +152 -48
  261. package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +24 -61
  262. package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +50 -22
  263. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +43 -5
  264. package/front_end/models/persistence/EditFileSystemView.ts +1 -1
  265. package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +2 -3
  266. package/front_end/models/persistence/IsolatedFileSystemManager.ts +2 -3
  267. package/front_end/models/persistence/WorkspaceSettingsTab.ts +2 -2
  268. package/front_end/models/text_utils/ContentProvider.ts +3 -3
  269. package/front_end/models/text_utils/StaticContentProvider.ts +1 -5
  270. package/front_end/models/text_utils/TextUtils.ts +1 -1
  271. package/front_end/models/text_utils/WasmDisassembly.ts +1 -1
  272. package/front_end/models/timeline_model/TimelineModelFilter.ts +2 -2
  273. package/front_end/models/timeline_model/TimelineProfileTree.test.ts +21 -21
  274. package/front_end/models/timeline_model/TimelineProfileTree.ts +1 -1
  275. package/front_end/models/trace/ModelImpl.test.ts +1 -1
  276. package/front_end/models/trace/ModelImpl.ts +10 -27
  277. package/front_end/models/trace/Processor.test.ts +16 -15
  278. package/front_end/models/trace/Processor.ts +38 -10
  279. package/front_end/models/trace/extras/FilmStrip.ts +2 -2
  280. package/front_end/models/trace/extras/ThirdParties.test.ts +117 -0
  281. package/front_end/models/trace/extras/ThirdParties.ts +207 -0
  282. package/front_end/models/trace/extras/extras.ts +1 -0
  283. package/front_end/models/trace/handlers/FramesHandler.ts +12 -5
  284. package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +40 -0
  285. package/front_end/models/trace/handlers/InitiatorsHandler.ts +9 -0
  286. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +2 -2
  287. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +27 -1
  288. package/front_end/models/trace/handlers/MetaHandler.ts +4 -0
  289. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +2 -2
  290. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +1 -1
  291. package/front_end/models/trace/handlers/RendererHandler.test.ts +5 -5
  292. package/front_end/models/trace/handlers/SamplesHandler.test.ts +2 -2
  293. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +5 -4
  294. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +7 -5
  295. package/front_end/models/trace/handlers/Threads.ts +2 -2
  296. package/front_end/models/trace/handlers/WarningsHandler.ts +1 -1
  297. package/front_end/models/trace/helpers/Network.ts +20 -2
  298. package/front_end/models/trace/helpers/SyntheticEvents.test.ts +1 -1
  299. package/front_end/models/trace/helpers/Timing.test.ts +29 -0
  300. package/front_end/models/trace/helpers/Timing.ts +18 -0
  301. package/front_end/models/trace/helpers/Trace.test.ts +34 -3
  302. package/front_end/models/trace/helpers/Trace.ts +12 -0
  303. package/front_end/models/trace/helpers/TreeHelpers.test.ts +70 -0
  304. package/front_end/models/trace/helpers/TreeHelpers.ts +170 -1
  305. package/front_end/models/trace/insights/Common.ts +1 -1
  306. package/front_end/models/trace/insights/CumulativeLayoutShift.test.ts +46 -2
  307. package/front_end/models/trace/insights/CumulativeLayoutShift.ts +164 -47
  308. package/front_end/models/trace/insights/DocumentLatency.test.ts +22 -11
  309. package/front_end/models/trace/insights/DocumentLatency.ts +9 -6
  310. package/front_end/models/trace/insights/FontDisplay.ts +5 -1
  311. package/front_end/models/trace/insights/InteractionToNextPaint.ts +4 -3
  312. package/front_end/models/trace/insights/LargestContentfulPaint.test.ts +9 -1
  313. package/front_end/models/trace/insights/LargestContentfulPaint.ts +26 -6
  314. package/front_end/models/trace/insights/RenderBlocking.test.ts +10 -16
  315. package/front_end/models/trace/insights/RenderBlocking.ts +6 -4
  316. package/front_end/models/trace/insights/SlowCSSSelector.ts +3 -1
  317. package/front_end/models/trace/insights/ThirdPartyWeb.ts +21 -178
  318. package/front_end/models/trace/insights/Viewport.ts +1 -0
  319. package/front_end/models/trace/insights/types.ts +14 -11
  320. package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +4 -4
  321. package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +9 -5
  322. package/front_end/models/trace/lantern/graph/BaseNode.ts +2 -2
  323. package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +4 -3
  324. package/front_end/models/trace/lantern/simulation/Simulator.ts +1 -1
  325. package/front_end/models/trace/lantern/simulation/TCPConnection.ts +1 -1
  326. package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +5 -1
  327. package/front_end/models/trace/root-causes/LayoutShift.ts +3 -20
  328. package/front_end/models/trace/types/Extensions.ts +3 -7
  329. package/front_end/models/trace/types/File.ts +2 -8
  330. package/front_end/models/trace/types/TraceEvents.ts +78 -6
  331. package/front_end/models/workspace/UISourceCode.test.ts +3 -3
  332. package/front_end/models/workspace/WorkspaceImpl.ts +1 -1
  333. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +1 -1
  334. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +1 -1
  335. package/front_end/panels/animation/AnimationGroupPreviewUI.ts +3 -3
  336. package/front_end/panels/animation/AnimationTimeline.test.ts +15 -15
  337. package/front_end/panels/animation/AnimationTimeline.ts +85 -53
  338. package/front_end/panels/animation/AnimationUI.ts +5 -6
  339. package/front_end/panels/animation/animation-meta.ts +15 -0
  340. package/front_end/panels/animation/animation.ts +0 -4
  341. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +106 -0
  342. package/front_end/panels/application/ApplicationPanelSidebar.ts +127 -20
  343. package/front_end/panels/application/ApplicationPanelTreeElement.ts +1 -1
  344. package/front_end/panels/application/BackForwardCacheTreeElement.ts +1 -1
  345. package/front_end/panels/application/BounceTrackingMitigationsTreeElement.ts +1 -1
  346. package/front_end/panels/application/DOMStorageItemsView.ts +4 -2
  347. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +161 -0
  348. package/front_end/panels/application/ExtensionStorageItemsView.ts +241 -0
  349. package/front_end/panels/application/ExtensionStorageModel.test.ts +27 -0
  350. package/front_end/panels/application/ExtensionStorageModel.ts +66 -14
  351. package/front_end/panels/application/IndexedDBViews.ts +14 -19
  352. package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
  353. package/front_end/panels/application/OpenedWindowDetailsView.ts +2 -3
  354. package/front_end/panels/application/PreloadingTreeElement.ts +1 -1
  355. package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
  356. package/front_end/panels/application/ResourcesPanel.ts +18 -1
  357. package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +1 -1
  358. package/front_end/panels/application/SharedStorageItemsView.test.ts +1 -20
  359. package/front_end/panels/application/SharedStorageListTreeElement.ts +1 -1
  360. package/front_end/panels/application/SharedStorageTreeElement.ts +2 -2
  361. package/front_end/panels/application/StorageBucketsTreeElement.ts +1 -1
  362. package/front_end/panels/application/TrustTokensTreeElement.ts +1 -1
  363. package/front_end/panels/application/application.ts +2 -0
  364. package/front_end/panels/application/components/BackForwardCacheStrings.ts +1 -0
  365. package/front_end/panels/application/components/BackForwardCacheView.ts +76 -72
  366. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +32 -33
  367. package/front_end/panels/application/components/EndpointsGrid.ts +5 -5
  368. package/front_end/panels/application/components/FrameDetailsView.ts +118 -135
  369. package/front_end/panels/application/components/InterestGroupAccessGrid.ts +11 -15
  370. package/front_end/panels/application/components/OriginTrialTreeView.ts +36 -34
  371. package/front_end/panels/application/components/PermissionsPolicySection.ts +32 -35
  372. package/front_end/panels/application/components/ProtocolHandlersView.ts +15 -14
  373. package/front_end/panels/application/components/ReportsGrid.ts +10 -10
  374. package/front_end/panels/application/components/ServiceWorkerRouterView.ts +0 -1
  375. package/front_end/panels/application/components/SharedStorageAccessGrid.ts +11 -16
  376. package/front_end/panels/application/components/SharedStorageMetadataView.ts +16 -14
  377. package/front_end/panels/application/components/StackTrace.ts +20 -22
  378. package/front_end/panels/application/components/StorageMetadataView.ts +18 -18
  379. package/front_end/panels/application/components/TrustTokensView.ts +16 -16
  380. package/front_end/panels/application/preloading/PreloadingView.ts +18 -15
  381. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +2 -2
  382. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +8 -13
  383. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +41 -47
  384. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +15 -13
  385. package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +1 -1
  386. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +11 -12
  387. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +4 -5
  388. package/front_end/panels/application/preloading/components/PreloadingString.ts +7 -0
  389. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +11 -10
  390. package/front_end/panels/application/preloading/components/RuleSetGrid.ts +24 -23
  391. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +50 -57
  392. package/front_end/panels/application/resourcesSidebar.css +0 -3
  393. package/front_end/panels/autofill/AutofillView.ts +19 -17
  394. package/front_end/panels/console/ConsoleFilter.ts +1 -1
  395. package/front_end/panels/console/ConsoleSidebar.ts +1 -1
  396. package/front_end/panels/console/ConsoleView.ts +1 -1
  397. package/front_end/panels/console/ConsoleViewMessage.ts +2 -2
  398. package/front_end/panels/console/consoleView.css +4 -3
  399. package/front_end/panels/coverage/CoverageDecorationManager.ts +1 -1
  400. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +1 -1
  401. package/front_end/panels/css_overview/CSSOverviewController.ts +2 -2
  402. package/front_end/panels/css_overview/CSSOverviewModel.ts +2 -3
  403. package/front_end/panels/css_overview/CSSOverviewPanel.ts +5 -7
  404. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +13 -13
  405. package/front_end/panels/elements/AccessibilityTreeUtils.ts +9 -6
  406. package/front_end/panels/elements/CSSRuleValidator.ts +0 -5
  407. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +3 -5
  408. package/front_end/panels/elements/ComputedStyleWidget.ts +6 -4
  409. package/front_end/panels/elements/ElementStatePaneWidget.ts +5 -0
  410. package/front_end/panels/elements/ElementsPanel.ts +11 -10
  411. package/front_end/panels/elements/ElementsTreeElement.ts +36 -1
  412. package/front_end/panels/elements/ElementsTreeOutline.ts +1 -1
  413. package/front_end/panels/elements/PropertyMatchers.test.ts +57 -0
  414. package/front_end/panels/elements/PropertyMatchers.ts +78 -1
  415. package/front_end/panels/elements/StyleEditorWidget.ts +2 -2
  416. package/front_end/panels/elements/StylePropertiesSection.test.ts +1 -0
  417. package/front_end/panels/elements/StylePropertyHighlighter.test.ts +1 -0
  418. package/front_end/panels/elements/StylePropertyHighlighter.ts +2 -2
  419. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +126 -3
  420. package/front_end/panels/elements/StylePropertyTreeElement.ts +101 -28
  421. package/front_end/panels/elements/StylesSidebarPane.test.ts +2 -0
  422. package/front_end/panels/elements/TopLayerContainer.ts +1 -2
  423. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +8 -7
  424. package/front_end/panels/elements/components/AdornerSettingsPane.ts +3 -4
  425. package/front_end/panels/elements/components/AnchorFunctionLinkSwatch.ts +8 -7
  426. package/front_end/panels/elements/components/CSSHintDetailsView.ts +3 -2
  427. package/front_end/panels/elements/components/CSSPropertyDocsView.ts +3 -2
  428. package/front_end/panels/elements/components/CSSQuery.ts +0 -1
  429. package/front_end/panels/elements/components/CSSVariableValueView.ts +1 -3
  430. package/front_end/panels/elements/components/ComputedStyleProperty.ts +0 -1
  431. package/front_end/panels/elements/components/ComputedStyleTrace.ts +0 -1
  432. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +15 -13
  433. package/front_end/panels/elements/components/ElementsBreadcrumbsUtils.ts +1 -1
  434. package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +6 -4
  435. package/front_end/panels/elements/components/LayoutPane.ts +8 -8
  436. package/front_end/panels/elements/components/QueryContainer.test.ts +2 -3
  437. package/front_end/panels/elements/components/QueryContainer.ts +9 -10
  438. package/front_end/panels/elements/components/StylePropertyEditor.ts +4 -4
  439. package/front_end/panels/elements/components/computedStyleProperty.css +2 -1
  440. package/front_end/panels/elements/components/cssPropertyDocsView.css +3 -2
  441. package/front_end/panels/elements/elementsTreeOutline.css +17 -0
  442. package/front_end/panels/elements/stylePropertiesTreeOutline.css +13 -0
  443. package/front_end/panels/elements/stylesSidebarPane.css +2 -2
  444. package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
  445. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +3 -3
  446. package/front_end/panels/event_listeners/EventListenersView.ts +2 -2
  447. package/front_end/panels/event_listeners/eventListenersView.css +4 -3
  448. package/front_end/panels/explain/components/ConsoleInsight.test.ts +56 -8
  449. package/front_end/panels/explain/components/ConsoleInsight.ts +99 -81
  450. package/front_end/panels/explain/components/consoleInsight.css +0 -9
  451. package/front_end/panels/explain/explain-meta.ts +1 -12
  452. package/front_end/panels/freestyler/AiAgent.test.ts +92 -12
  453. package/front_end/panels/freestyler/AiAgent.ts +345 -54
  454. package/front_end/panels/freestyler/DrJonesFileAgent.test.ts +228 -0
  455. package/front_end/panels/freestyler/DrJonesFileAgent.ts +192 -0
  456. package/front_end/panels/freestyler/DrJonesNetworkAgent.test.ts +136 -73
  457. package/front_end/panels/freestyler/DrJonesNetworkAgent.ts +251 -146
  458. package/front_end/panels/freestyler/DrJonesPerformanceAgent.test.ts +241 -0
  459. package/front_end/panels/freestyler/DrJonesPerformanceAgent.ts +197 -0
  460. package/front_end/panels/freestyler/FreestylerAgent.test.ts +258 -85
  461. package/front_end/panels/freestyler/FreestylerAgent.ts +124 -167
  462. package/front_end/panels/freestyler/FreestylerEvaluateAction.test.ts +61 -37
  463. package/front_end/panels/freestyler/FreestylerEvaluateAction.ts +18 -14
  464. package/front_end/panels/freestyler/FreestylerPanel.test.ts +562 -15
  465. package/front_end/panels/freestyler/FreestylerPanel.ts +469 -105
  466. package/front_end/panels/freestyler/components/FreestylerChatUi.test.ts +53 -4
  467. package/front_end/panels/freestyler/components/FreestylerChatUi.ts +434 -191
  468. package/front_end/panels/freestyler/components/UserActionRow.test.ts +60 -0
  469. package/front_end/panels/freestyler/components/{ProvideFeedback.ts → UserActionRow.ts} +58 -29
  470. package/front_end/panels/freestyler/components/freestylerChatUi.css +148 -93
  471. package/front_end/panels/freestyler/components/userActionRow.css +149 -0
  472. package/front_end/panels/freestyler/freestyler-meta.ts +108 -26
  473. package/front_end/panels/freestyler/freestyler.ts +3 -1
  474. package/front_end/panels/issues/AffectedResourcesView.ts +2 -2
  475. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +19 -4
  476. package/front_end/panels/issues/CorsIssueDetailsView.ts +6 -6
  477. package/front_end/panels/issues/GenericIssueDetailsView.ts +3 -3
  478. package/front_end/panels/issues/IssueAggregator.ts +10 -1
  479. package/front_end/panels/issues/IssueView.ts +2 -2
  480. package/front_end/panels/issues/components/ElementsPanelLink.ts +3 -2
  481. package/front_end/panels/issues/components/HideIssuesMenu.ts +17 -8
  482. package/front_end/panels/lighthouse/LighthouseController.ts +2 -2
  483. package/front_end/panels/lighthouse/LighthousePanel.ts +1 -1
  484. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +2 -6
  485. package/front_end/panels/lighthouse/LighthouseStartView.ts +2 -2
  486. package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -1
  487. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -1
  488. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +2 -2
  489. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +8 -2
  490. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +6 -7
  491. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +11 -0
  492. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +26 -36
  493. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +5 -5
  494. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +12 -16
  495. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +1 -3
  496. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +5 -5
  497. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +0 -1
  498. package/front_end/panels/media/EventDisplayTable.ts +1 -1
  499. package/front_end/panels/media/EventTimelineView.ts +1 -1
  500. package/front_end/panels/media/PlayerDetailView.ts +3 -3
  501. package/front_end/panels/media/PlayerListView.ts +2 -2
  502. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +23 -29
  503. package/front_end/panels/network/BinaryResourceView.ts +3 -2
  504. package/front_end/panels/network/NetworkConfigView.ts +1 -2
  505. package/front_end/panels/network/NetworkDataGridNode.test.ts +29 -0
  506. package/front_end/panels/network/NetworkDataGridNode.ts +60 -158
  507. package/front_end/panels/network/NetworkFrameGrouper.ts +1 -1
  508. package/front_end/panels/network/NetworkItemView.ts +1 -1
  509. package/front_end/panels/network/NetworkLogView.test.ts +29 -0
  510. package/front_end/panels/network/NetworkLogView.ts +3 -3
  511. package/front_end/panels/network/NetworkLogViewColumns.ts +4 -6
  512. package/front_end/panels/network/NetworkPanel.test.ts +3 -22
  513. package/front_end/panels/network/NetworkPanel.ts +26 -7
  514. package/front_end/panels/network/NetworkWaterfallColumn.ts +7 -8
  515. package/front_end/panels/network/RequestResponseView.test.ts +28 -1
  516. package/front_end/panels/network/RequestResponseView.ts +17 -14
  517. package/front_end/panels/network/ResourceWebSocketFrameView.ts +3 -1
  518. package/front_end/panels/network/components/EditableSpan.ts +0 -1
  519. package/front_end/panels/network/components/HeaderSectionRow.test.ts +1 -1
  520. package/front_end/panels/network/components/HeaderSectionRow.ts +31 -31
  521. package/front_end/panels/network/components/RequestHeaderSection.ts +10 -15
  522. package/front_end/panels/network/components/RequestHeadersView.css +7 -0
  523. package/front_end/panels/network/components/RequestHeadersView.ts +25 -26
  524. package/front_end/panels/network/components/RequestTrustTokensView.ts +33 -36
  525. package/front_end/panels/network/components/ResponseHeaderSection.ts +8 -10
  526. package/front_end/panels/network/components/WebBundleInfoView.ts +13 -11
  527. package/front_end/panels/network/networkConfigView.css +13 -5
  528. package/front_end/panels/network/networkLogView.css +35 -16
  529. package/front_end/panels/network/networkPanel.css +2 -1
  530. package/front_end/panels/network/requestHTMLView.css +1 -0
  531. package/front_end/panels/profiler/BottomUpProfileDataGrid.ts +3 -3
  532. package/front_end/panels/profiler/HeapProfileView.ts +1 -1
  533. package/front_end/panels/profiler/HeapProfilerPanel.ts +2 -2
  534. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +14 -13
  535. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +15 -11
  536. package/front_end/panels/profiler/HeapSnapshotProxy.ts +7 -7
  537. package/front_end/panels/profiler/ProfileLauncherView.ts +3 -3
  538. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +4 -2
  539. package/front_end/panels/protocol_monitor/components/JSONEditor.ts +25 -18
  540. package/front_end/panels/protocol_monitor/components/Toolbar.ts +4 -4
  541. package/front_end/panels/recorder/RecorderController.ts +39 -43
  542. package/front_end/panels/recorder/components/ControlButton.ts +1 -1
  543. package/front_end/panels/recorder/components/CreateRecordingView.ts +15 -15
  544. package/front_end/panels/recorder/components/ExtensionView.ts +9 -8
  545. package/front_end/panels/recorder/components/RecordingListView.ts +15 -13
  546. package/front_end/panels/recorder/components/RecordingView.ts +92 -84
  547. package/front_end/panels/recorder/components/ReplaySection.ts +6 -6
  548. package/front_end/panels/recorder/components/SelectButton.ts +21 -20
  549. package/front_end/panels/recorder/components/StartView.ts +15 -20
  550. package/front_end/panels/recorder/components/StepEditor.ts +3 -3
  551. package/front_end/panels/recorder/components/StepView.ts +20 -20
  552. package/front_end/panels/recorder/components/TimelineSection.ts +3 -2
  553. package/front_end/panels/recorder/components/recordingView.css +1 -4
  554. package/front_end/panels/recorder/components/selectButton.css +6 -50
  555. package/front_end/panels/recorder/converters/ExtensionConverter.ts +2 -2
  556. package/front_end/panels/recorder/converters/JSONConverter.ts +1 -1
  557. package/front_end/panels/recorder/converters/LighthouseConverter.ts +1 -1
  558. package/front_end/panels/recorder/converters/PuppeteerConverter.ts +1 -1
  559. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.ts +1 -1
  560. package/front_end/panels/recorder/injected/RecordingClient.ts +7 -10
  561. package/front_end/panels/recorder/injected/SelectorComputer.ts +5 -5
  562. package/front_end/panels/recorder/injected/SelectorPicker.ts +2 -2
  563. package/front_end/panels/recorder/injected/Step.ts +1 -1
  564. package/front_end/panels/recorder/injected/injected.ts +1 -1
  565. package/front_end/panels/recorder/injected/selectors/ARIASelector.ts +1 -1
  566. package/front_end/panels/recorder/injected/selectors/PierceSelector.ts +6 -7
  567. package/front_end/panels/recorder/injected/selectors/TextSelector.ts +3 -5
  568. package/front_end/panels/recorder/injected/util.ts +1 -1
  569. package/front_end/panels/recorder/models/RecorderShortcutHelper.ts +1 -1
  570. package/front_end/panels/recorder/models/RecordingPlayer.ts +1 -1
  571. package/front_end/panels/recorder/models/RecordingSession.ts +4 -4
  572. package/front_end/panels/recorder/models/RecordingSettings.ts +1 -4
  573. package/front_end/panels/recorder/models/RecordingStorage.ts +1 -1
  574. package/front_end/panels/recorder/models/SDKUtils.ts +3 -2
  575. package/front_end/panels/recorder/models/ScreenshotUtils.ts +1 -1
  576. package/front_end/panels/recorder/models/Section.ts +2 -2
  577. package/front_end/panels/recorder/recorderController.css +38 -18
  578. package/front_end/panels/screencast/ScreencastApp.ts +1 -1
  579. package/front_end/panels/screencast/ScreencastView.ts +1 -1
  580. package/front_end/panels/search/SearchResultsPane.ts +1 -2
  581. package/front_end/panels/search/SearchView.ts +1 -3
  582. package/front_end/panels/search/searchView.css +5 -1
  583. package/front_end/panels/security/CookieReportTreeElement.ts +26 -0
  584. package/front_end/panels/security/OriginTreeElement.ts +20 -7
  585. package/front_end/panels/security/SecurityPanel.ts +64 -15
  586. package/front_end/panels/security/{SecurityAndPrivacyPanelSidebar.ts → SecurityPanelSidebar.ts} +25 -14
  587. package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +1 -12
  588. package/front_end/panels/security/sidebar.css +40 -1
  589. package/front_end/panels/sensors/SensorsView.ts +43 -0
  590. package/front_end/panels/sensors/sensors-meta.ts +59 -0
  591. package/front_end/panels/sensors/sensors.css +16 -0
  592. package/front_end/panels/settings/AISettingsTab.test.ts +113 -15
  593. package/front_end/panels/settings/AISettingsTab.ts +194 -62
  594. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +53 -30
  595. package/front_end/panels/settings/KeybindsSettingsTab.ts +34 -17
  596. package/front_end/panels/settings/SettingsScreen.ts +2 -2
  597. package/front_end/panels/settings/aiSettingsTab.css +13 -0
  598. package/front_end/panels/settings/components/SyncSection.ts +18 -15
  599. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +51 -29
  600. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +56 -41
  601. package/front_end/panels/settings/emulation/devicesSettingsTab.css +11 -10
  602. package/front_end/panels/settings/frameworkIgnoreListSettingsTab.css +14 -42
  603. package/front_end/panels/settings/keybindsSettingsTab.css +51 -89
  604. package/front_end/panels/settings/settings-meta.ts +2 -2
  605. package/front_end/panels/settings/settingsScreen.css +30 -6
  606. package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -1
  607. package/front_end/panels/sources/CSSPlugin.ts +0 -2
  608. package/front_end/panels/sources/DebuggerPlugin.ts +1 -1
  609. package/front_end/panels/sources/EditingLocationHistoryManager.ts +2 -2
  610. package/front_end/panels/sources/GoToLineQuickOpen.ts +1 -1
  611. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +1 -1
  612. package/front_end/panels/sources/NavigatorView.ts +31 -23
  613. package/front_end/panels/sources/OutlineQuickOpen.ts +1 -1
  614. package/front_end/panels/sources/SourcesNavigator.test.ts +1 -0
  615. package/front_end/panels/sources/SourcesPanel.ts +26 -0
  616. package/front_end/panels/sources/SourcesView.test.ts +1 -0
  617. package/front_end/panels/sources/SourcesView.ts +2 -2
  618. package/front_end/panels/sources/TabbedEditorContainer.ts +1 -1
  619. package/front_end/panels/sources/UISourceCodeFrame.ts +1 -1
  620. package/front_end/panels/sources/components/BreakpointsView.ts +25 -27
  621. package/front_end/panels/sources/components/HeadersView.ts +17 -16
  622. package/front_end/panels/sources/navigatorTree.css +11 -0
  623. package/front_end/panels/timeline/AnimationsTrackAppender.ts +18 -3
  624. package/front_end/panels/timeline/AnnotationHelpers.ts +4 -4
  625. package/front_end/panels/timeline/AppenderUtils.ts +2 -4
  626. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +48 -19
  627. package/front_end/panels/timeline/CountersGraph.ts +1 -1
  628. package/front_end/panels/timeline/EntriesFilter.test.ts +51 -0
  629. package/front_end/panels/timeline/EntriesFilter.ts +15 -0
  630. package/front_end/panels/timeline/EventsTimelineTreeView.ts +10 -10
  631. package/front_end/panels/timeline/InteractionsTrackAppender.ts +12 -1
  632. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +141 -7
  633. package/front_end/panels/timeline/ModificationsManager.test.ts +160 -0
  634. package/front_end/panels/timeline/ModificationsManager.ts +31 -0
  635. package/front_end/panels/timeline/NetworkTrackAppender.ts +1 -8
  636. package/front_end/panels/timeline/ThreadAppender.ts +5 -6
  637. package/front_end/panels/timeline/TimelineDetailsView.test.ts +89 -44
  638. package/front_end/panels/timeline/TimelineDetailsView.ts +96 -45
  639. package/front_end/panels/timeline/TimelineEventOverview.ts +11 -10
  640. package/front_end/panels/timeline/TimelineFilters.test.ts +4 -4
  641. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +53 -0
  642. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +89 -63
  643. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +57 -0
  644. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +34 -15
  645. package/front_end/panels/timeline/TimelineFlameChartView.test.ts +2 -3
  646. package/front_end/panels/timeline/TimelineFlameChartView.ts +192 -86
  647. package/front_end/panels/timeline/TimelineHistoryManager.ts +7 -1
  648. package/front_end/panels/timeline/TimelineLoader.ts +1 -1
  649. package/front_end/panels/timeline/TimelineMiniMap.ts +0 -8
  650. package/front_end/panels/timeline/TimelinePanel.ts +136 -79
  651. package/front_end/panels/timeline/TimelineSelection.test.ts +91 -36
  652. package/front_end/panels/timeline/TimelineSelection.ts +48 -60
  653. package/front_end/panels/timeline/TimelineSelectorStatsView.ts +15 -16
  654. package/front_end/panels/timeline/TimelineTreeView.test.ts +9 -9
  655. package/front_end/panels/timeline/TimelineTreeView.ts +7 -5
  656. package/front_end/panels/timeline/TimelineUIUtils.test.ts +51 -4
  657. package/front_end/panels/timeline/TimelineUIUtils.ts +153 -68
  658. package/front_end/panels/timeline/TimingsTrackAppender.ts +1 -1
  659. package/front_end/panels/timeline/UIDevtoolsController.ts +5 -5
  660. package/front_end/panels/timeline/UIDevtoolsUtils.ts +59 -68
  661. package/front_end/panels/timeline/components/BreadcrumbsUI.ts +3 -5
  662. package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +8 -7
  663. package/front_end/panels/timeline/components/FieldSettingsDialog.ts +28 -27
  664. package/front_end/panels/timeline/components/InteractionBreakdown.ts +3 -2
  665. package/front_end/panels/timeline/components/LayoutShiftDetails.test.ts +13 -11
  666. package/front_end/panels/timeline/components/LayoutShiftDetails.ts +238 -91
  667. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +415 -128
  668. package/front_end/panels/timeline/components/LiveMetricsView.ts +448 -228
  669. package/front_end/panels/timeline/components/MetricCard.test.ts +8 -8
  670. package/front_end/panels/timeline/components/MetricCard.ts +6 -4
  671. package/front_end/panels/timeline/components/MetricCompareStrings.ts +1 -1
  672. package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +14 -7
  673. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +57 -124
  674. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +70 -78
  675. package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +35 -2
  676. package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +30 -13
  677. package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +74 -0
  678. package/front_end/panels/timeline/components/RelatedInsightChips.ts +92 -0
  679. package/front_end/panels/timeline/components/Sidebar.test.ts +74 -0
  680. package/front_end/panels/timeline/components/Sidebar.ts +34 -14
  681. package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +66 -0
  682. package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +117 -50
  683. package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +11 -1
  684. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +119 -37
  685. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +58 -1
  686. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +90 -34
  687. package/front_end/panels/timeline/components/Utils.test.ts +65 -0
  688. package/front_end/panels/timeline/components/Utils.ts +145 -29
  689. package/front_end/panels/timeline/components/components.ts +2 -4
  690. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +76 -55
  691. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +105 -17
  692. package/front_end/panels/timeline/components/insights/EventRef.ts +91 -0
  693. package/front_end/panels/timeline/components/insights/FontDisplay.ts +24 -13
  694. package/front_end/panels/timeline/components/insights/Helpers.ts +49 -44
  695. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +21 -21
  696. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +94 -49
  697. package/front_end/panels/timeline/components/insights/LCPPhases.ts +35 -10
  698. package/front_end/panels/timeline/components/insights/NodeLink.ts +3 -2
  699. package/front_end/panels/timeline/components/insights/README.md +2 -2
  700. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +35 -29
  701. package/front_end/panels/timeline/components/insights/SidebarInsight.ts +103 -17
  702. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +125 -60
  703. package/front_end/panels/timeline/components/insights/Table.ts +13 -12
  704. package/front_end/panels/timeline/components/insights/ThirdParties.ts +24 -19
  705. package/front_end/panels/timeline/components/insights/Viewport.ts +23 -22
  706. package/front_end/panels/timeline/components/insights/insights.ts +2 -0
  707. package/front_end/panels/timeline/components/insights/sidebarInsight.css +54 -9
  708. package/front_end/panels/timeline/components/insights/table.css +9 -1
  709. package/front_end/panels/timeline/components/layoutShiftDetails.css +28 -20
  710. package/front_end/panels/timeline/components/liveMetricsView.css +102 -31
  711. package/front_end/panels/timeline/components/networkRequestDetails.css +11 -50
  712. package/front_end/panels/timeline/components/networkRequestTooltip.css +34 -11
  713. package/front_end/panels/timeline/components/relatedInsightChips.css +45 -0
  714. package/front_end/panels/timeline/components/sidebarInsightsTab.css +44 -6
  715. package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +18 -4
  716. package/front_end/panels/timeline/extensions/ExtensionUI.ts +11 -8
  717. package/front_end/panels/timeline/fixtures/traces/README.md +4 -0
  718. package/front_end/panels/timeline/fixtures/traces/basic.json.gz +0 -0
  719. package/front_end/panels/timeline/fixtures/traces/many-redirects.json.gz +0 -0
  720. package/front_end/panels/timeline/fixtures/traces/missing-url.json.gz +0 -0
  721. package/front_end/panels/timeline/fixtures/traces/scheduler-post-task.json.gz +0 -0
  722. package/front_end/panels/timeline/fixtures/traces/unsized-images.json.gz +0 -0
  723. package/front_end/panels/timeline/historyToolbarButton.css +33 -19
  724. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +40 -67
  725. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +135 -61
  726. package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +13 -11
  727. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +24 -32
  728. package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +23 -24
  729. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +42 -0
  730. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +25 -19
  731. package/front_end/panels/timeline/overlays/components/entriesLinkOverlay.css +8 -0
  732. package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +14 -12
  733. package/front_end/panels/timeline/overlays/components/timeRangeOverlay.css +16 -13
  734. package/front_end/panels/timeline/overlays/components/timespanBreakdownOverlay.css +59 -20
  735. package/front_end/panels/timeline/timeline-meta.ts +11 -0
  736. package/front_end/panels/timeline/timelineFlameChartView.css +19 -2
  737. package/front_end/panels/timeline/timelineFlamechartPopover.css +19 -0
  738. package/front_end/panels/timeline/timelineHistoryManager.css +4 -0
  739. package/front_end/panels/timeline/timelinePanel.css +2 -10
  740. package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +2 -3
  741. package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +1 -6
  742. package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +1 -1
  743. package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +7 -8
  744. package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +2 -2
  745. package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +3 -3
  746. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +10 -11
  747. package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +2 -3
  748. package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +5 -10
  749. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +6 -6
  750. package/front_end/panels/timeline/utils/AICallTree.test.ts +80 -0
  751. package/front_end/panels/timeline/utils/AICallTree.ts +165 -0
  752. package/front_end/panels/timeline/{components → utils}/EntryName.test.ts +12 -12
  753. package/front_end/panels/timeline/{components → utils}/EntryName.ts +1 -1
  754. package/front_end/panels/timeline/{components → utils}/EntryStyles.ts +28 -1
  755. package/front_end/panels/timeline/utils/Helpers.test.ts +43 -0
  756. package/front_end/panels/timeline/utils/Helpers.ts +93 -0
  757. package/front_end/panels/timeline/utils/IgnoreList.test.ts +86 -0
  758. package/front_end/panels/timeline/utils/IgnoreList.ts +11 -4
  759. package/front_end/panels/timeline/utils/ImageCache.test.ts +106 -0
  760. package/front_end/panels/timeline/utils/ImageCache.ts +55 -0
  761. package/front_end/panels/timeline/utils/NetworkRequest.ts +1 -1
  762. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +64 -19
  763. package/front_end/panels/timeline/utils/SourceMapsResolver.ts +14 -3
  764. package/front_end/panels/timeline/utils/utils.ts +10 -0
  765. package/front_end/panels/utils/utils.ts +57 -5
  766. package/front_end/panels/web_audio/graph_visualizer/EdgeView.ts +1 -1
  767. package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +3 -9
  768. package/front_end/panels/webauthn/WebauthnPane.test.ts +75 -4
  769. package/front_end/panels/webauthn/WebauthnPane.ts +24 -3
  770. package/front_end/services/trace_bounds/TraceBounds.ts +7 -1
  771. package/front_end/testing/ContextMenuHelpers.ts +1 -1
  772. package/front_end/testing/EnvironmentHelpers.ts +42 -5
  773. package/front_end/testing/ExtensionHelpers.ts +1 -1
  774. package/front_end/testing/LanguagePluginHelpers.ts +1 -1
  775. package/front_end/testing/MockConnection.ts +1 -1
  776. package/front_end/testing/MockIssuesManager.ts +1 -1
  777. package/front_end/testing/MockScopeChain.ts +1 -1
  778. package/front_end/testing/MutationHelpers.test.ts +6 -8
  779. package/front_end/testing/NetworkHelpers.ts +38 -0
  780. package/front_end/testing/StorageItemsViewHelpers.ts +24 -0
  781. package/front_end/testing/TraceHelpers.ts +13 -1
  782. package/front_end/third_party/additional_readme_paths.json +1 -0
  783. package/front_end/third_party/codemirror.next/chunk/angular.js +1 -1
  784. package/front_end/third_party/codemirror.next/chunk/angular.js.map +1 -1
  785. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  786. package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
  787. package/front_end/third_party/codemirror.next/chunk/cpp.js.map +1 -1
  788. package/front_end/third_party/codemirror.next/chunk/java.js +1 -1
  789. package/front_end/third_party/codemirror.next/chunk/java.js.map +1 -1
  790. package/front_end/third_party/codemirror.next/chunk/legacy.js.map +1 -1
  791. package/front_end/third_party/codemirror.next/chunk/less.js.map +1 -1
  792. package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
  793. package/front_end/third_party/codemirror.next/chunk/markdown.js.map +1 -1
  794. package/front_end/third_party/codemirror.next/chunk/php.js.map +1 -1
  795. package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
  796. package/front_end/third_party/codemirror.next/chunk/python.js.map +1 -1
  797. package/front_end/third_party/codemirror.next/chunk/sass.js +1 -1
  798. package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
  799. package/front_end/third_party/codemirror.next/chunk/svelte.js +1 -1
  800. package/front_end/third_party/codemirror.next/chunk/svelte.js.map +1 -1
  801. package/front_end/third_party/codemirror.next/chunk/vue.js +1 -1
  802. package/front_end/third_party/codemirror.next/chunk/vue.js.map +1 -1
  803. package/front_end/third_party/codemirror.next/chunk/xml.js +1 -1
  804. package/front_end/third_party/codemirror.next/chunk/xml.js.map +1 -1
  805. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +79 -6
  806. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  807. package/front_end/third_party/codemirror.next/package.json +7 -6
  808. package/front_end/third_party/i18n/localized-string-set.ts +1 -1
  809. package/front_end/third_party/intl-messageformat/README.chromium +2 -1
  810. package/front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js +0 -1
  811. package/front_end/third_party/json5/LICENSE +23 -0
  812. package/front_end/third_party/json5/README.chromium +17 -0
  813. package/front_end/third_party/json5/json5-tsconfig.json +8 -0
  814. package/front_end/third_party/json5/json5.ts +4 -0
  815. package/front_end/third_party/json5/lib/index.d.ts +2 -0
  816. package/front_end/third_party/json5/lib/index.js +1121 -0
  817. package/front_end/third_party/json5/package/lib/index.d.ts +4 -0
  818. package/front_end/third_party/json5/package/lib/index.js +9 -0
  819. package/front_end/third_party/json5/package/lib/parse.d.ts +15 -0
  820. package/front_end/third_party/json5/package/lib/parse.js +1114 -0
  821. package/front_end/third_party/json5/package/lib/register.js +13 -0
  822. package/front_end/third_party/json5/package/lib/require.js +4 -0
  823. package/front_end/third_party/json5/package/lib/stringify.d.ts +89 -0
  824. package/front_end/third_party/json5/package/lib/stringify.js +261 -0
  825. package/front_end/third_party/json5/package/lib/unicode.d.ts +3 -0
  826. package/front_end/third_party/json5/package/lib/unicode.js +4 -0
  827. package/front_end/third_party/json5/package/lib/util.d.ts +5 -0
  828. package/front_end/third_party/json5/package/lib/util.js +35 -0
  829. package/front_end/third_party/json5/package.json +8 -0
  830. package/front_end/third_party/json5/rebuild.sh +5 -0
  831. package/front_end/third_party/puppeteer/README.chromium +2 -2
  832. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +2 -2
  833. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
  834. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +1 -6
  835. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
  836. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts +1 -1
  837. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts.map +1 -1
  838. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +1 -1
  839. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js.map +1 -1
  840. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.d.ts +1 -1
  841. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.js +1 -1
  842. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +13 -13
  843. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
  844. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js +99 -92
  845. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
  846. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts +2 -2
  847. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js +13 -6
  848. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js.map +1 -1
  849. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts +7 -2
  850. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts.map +1 -1
  851. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.js +3 -3
  852. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.js.map +1 -1
  853. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPResponse.d.ts +0 -1
  854. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPResponse.d.ts.map +1 -1
  855. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.d.ts +3 -3
  856. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.js +1 -1
  857. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/JSHandle.js +12 -5
  858. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/JSHandle.js.map +1 -1
  859. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +22 -22
  860. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
  861. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +26 -19
  862. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
  863. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.d.ts +2 -2
  864. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.js +2 -2
  865. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.d.ts +1 -1
  866. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.d.ts.map +1 -1
  867. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.js +0 -1
  868. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.js.map +1 -1
  869. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.d.ts.map +1 -1
  870. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.js +12 -5
  871. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.js.map +1 -1
  872. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js +1 -2
  873. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
  874. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts +0 -1
  875. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts.map +1 -1
  876. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js +4 -0
  877. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
  878. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js +1 -2
  879. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js.map +1 -1
  880. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js +12 -5
  881. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js.map +1 -1
  882. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  883. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js +13 -7
  884. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js.map +1 -1
  885. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +12 -5
  886. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
  887. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
  888. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js +3 -0
  889. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js.map +1 -1
  890. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +21 -10
  891. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
  892. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +12 -5
  893. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
  894. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts.map +1 -1
  895. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.js +12 -5
  896. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.js.map +1 -1
  897. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  898. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  899. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Navigation.d.ts.map +1 -1
  900. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Navigation.js.map +1 -1
  901. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts.map +1 -1
  902. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js.map +1 -1
  903. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
  904. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.js.map +1 -1
  905. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts.map +1 -1
  906. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.js.map +1 -1
  907. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  908. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.js.map +1 -1
  909. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
  910. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.js.map +1 -1
  911. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.d.ts +1 -1
  912. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.d.ts.map +1 -1
  913. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.js +0 -1
  914. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.js.map +1 -1
  915. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.js +2 -3
  916. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.js.map +1 -1
  917. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  918. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +7 -4
  919. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
  920. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.d.ts.map +1 -1
  921. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js +3 -0
  922. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js.map +1 -1
  923. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Binding.js +12 -5
  924. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Binding.js.map +1 -1
  925. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts +0 -1
  926. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts.map +1 -1
  927. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js +1 -2
  928. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js.map +1 -1
  929. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js +12 -5
  930. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js.map +1 -1
  931. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts.map +1 -1
  932. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js +3 -1
  933. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js.map +1 -1
  934. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js +2 -2
  935. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js.map +1 -1
  936. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.d.ts +1 -1
  937. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +1 -1
  938. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  939. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js +2 -3
  940. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js.map +1 -1
  941. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts +3 -3
  942. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  943. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +17 -13
  944. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
  945. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.d.ts.map +1 -1
  946. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.js +5 -1
  947. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.js.map +1 -1
  948. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts +2 -0
  949. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts.map +1 -1
  950. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js +17 -0
  951. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js.map +1 -1
  952. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js +1 -1
  953. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js.map +1 -1
  954. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js +1 -1
  955. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js.map +1 -1
  956. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.d.ts.map +1 -1
  957. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.js.map +1 -1
  958. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts +1 -2
  959. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts.map +1 -1
  960. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  961. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/JSHandle.js +2 -2
  962. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/JSHandle.js.map +1 -1
  963. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
  964. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +2 -1
  965. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
  966. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts +1 -1
  967. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
  968. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +16 -7
  969. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js.map +1 -1
  970. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts +4 -4
  971. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts.map +1 -1
  972. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js +4 -4
  973. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +2 -0
  974. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
  975. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +2 -0
  976. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
  977. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.js +6 -6
  978. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.js.map +1 -1
  979. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +1 -2
  980. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js.map +1 -1
  981. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CSSQueryHandler.d.ts.map +1 -1
  982. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  983. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js +2 -2
  984. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js.map +1 -1
  985. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +3 -0
  986. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  987. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.d.ts.map +1 -1
  988. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +4 -5
  989. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
  990. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js +1 -2
  991. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js.map +1 -1
  992. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HandleIterator.js +13 -7
  993. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HandleIterator.js.map +1 -1
  994. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LazyArg.d.ts +1 -1
  995. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LazyArg.d.ts.map +1 -1
  996. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PSelectorParser.js +1 -2
  997. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PSelectorParser.js.map +1 -1
  998. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PierceQueryHandler.d.ts.map +1 -1
  999. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts.map +1 -1
  1000. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js +13 -7
  1001. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js.map +1 -1
  1002. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts +7 -7
  1003. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts.map +1 -1
  1004. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js +0 -7
  1005. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js.map +1 -1
  1006. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts +2 -3
  1007. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
  1008. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +15 -13
  1009. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
  1010. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts +0 -2
  1011. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts.map +1 -1
  1012. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.d.ts +1 -1
  1013. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.d.ts.map +1 -1
  1014. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.js +1 -1
  1015. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.js.map +1 -1
  1016. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
  1017. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
  1018. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/ARIAQuerySelector.d.ts.map +1 -1
  1019. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/CSSSelector.d.ts.map +1 -1
  1020. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.d.ts.map +1 -1
  1021. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.js +1 -1
  1022. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.js.map +1 -1
  1023. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/TextQuerySelector.d.ts.map +1 -1
  1024. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/XPathQuerySelector.d.ts.map +1 -1
  1025. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +4 -4
  1026. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts.map +1 -1
  1027. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/util.js +3 -3
  1028. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/util.js.map +1 -1
  1029. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1030. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js.map +1 -1
  1031. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  1032. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js +3 -4
  1033. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js.map +1 -1
  1034. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts +0 -1
  1035. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts.map +1 -1
  1036. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.js.map +1 -1
  1037. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts +0 -1
  1038. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
  1039. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.js.map +1 -1
  1040. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.d.ts +1 -1
  1041. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.d.ts.map +1 -1
  1042. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.js +0 -1
  1043. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.js.map +1 -1
  1044. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util/fs.js +2 -3
  1045. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util/fs.js.map +1 -1
  1046. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts +6 -6
  1047. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts.map +1 -1
  1048. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js +15 -4
  1049. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js.map +1 -1
  1050. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
  1051. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
  1052. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
  1053. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.d.ts.map +1 -1
  1054. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.js +1 -0
  1055. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.js.map +1 -1
  1056. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.d.ts +0 -1
  1057. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.d.ts.map +1 -1
  1058. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.js +4 -5
  1059. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.js.map +1 -1
  1060. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.d.ts.map +1 -1
  1061. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.js +2 -2
  1062. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.js.map +1 -1
  1063. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
  1064. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts.map +1 -1
  1065. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.d.ts +1 -1
  1066. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.d.ts.map +1 -1
  1067. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.js +18 -13
  1068. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.js.map +1 -1
  1069. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts.map +1 -1
  1070. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js +4 -5
  1071. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js.map +1 -1
  1072. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.d.ts +1 -0
  1073. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.d.ts.map +1 -1
  1074. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.js +1 -0
  1075. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.js.map +1 -1
  1076. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +374 -577
  1077. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +427 -244
  1078. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +2 -2
  1079. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
  1080. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +1 -6
  1081. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
  1082. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts +1 -1
  1083. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts.map +1 -1
  1084. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +1 -1
  1085. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js.map +1 -1
  1086. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.d.ts +1 -1
  1087. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.js +1 -1
  1088. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +13 -13
  1089. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
  1090. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js +98 -92
  1091. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
  1092. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts +2 -2
  1093. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js +13 -6
  1094. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js.map +1 -1
  1095. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts +7 -2
  1096. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts.map +1 -1
  1097. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.js.map +1 -1
  1098. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPResponse.d.ts +0 -1
  1099. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPResponse.d.ts.map +1 -1
  1100. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.d.ts +3 -3
  1101. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.js +1 -1
  1102. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/JSHandle.js +12 -5
  1103. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/JSHandle.js.map +1 -1
  1104. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +22 -22
  1105. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
  1106. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +24 -17
  1107. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
  1108. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.d.ts +2 -2
  1109. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.js +2 -2
  1110. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.d.ts +1 -1
  1111. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.d.ts.map +1 -1
  1112. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.js +0 -1
  1113. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.js.map +1 -1
  1114. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.d.ts.map +1 -1
  1115. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.js +12 -5
  1116. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.js.map +1 -1
  1117. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts +0 -1
  1118. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts.map +1 -1
  1119. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js +4 -0
  1120. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
  1121. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js +12 -5
  1122. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js.map +1 -1
  1123. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  1124. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js +14 -8
  1125. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js.map +1 -1
  1126. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +12 -5
  1127. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
  1128. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
  1129. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js +3 -0
  1130. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js.map +1 -1
  1131. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +21 -10
  1132. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
  1133. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +12 -5
  1134. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
  1135. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts.map +1 -1
  1136. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.js +12 -5
  1137. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.js.map +1 -1
  1138. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  1139. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  1140. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Navigation.d.ts.map +1 -1
  1141. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Navigation.js.map +1 -1
  1142. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts.map +1 -1
  1143. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js.map +1 -1
  1144. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
  1145. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.js.map +1 -1
  1146. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts.map +1 -1
  1147. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.js.map +1 -1
  1148. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  1149. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.js.map +1 -1
  1150. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
  1151. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.js.map +1 -1
  1152. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.d.ts +1 -1
  1153. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.d.ts.map +1 -1
  1154. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.js +0 -1
  1155. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.js.map +1 -1
  1156. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  1157. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +7 -4
  1158. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
  1159. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.d.ts.map +1 -1
  1160. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js +3 -0
  1161. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js.map +1 -1
  1162. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Binding.js +12 -5
  1163. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Binding.js.map +1 -1
  1164. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts +0 -1
  1165. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts.map +1 -1
  1166. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js +12 -5
  1167. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js.map +1 -1
  1168. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts.map +1 -1
  1169. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js +3 -1
  1170. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js.map +1 -1
  1171. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.d.ts +1 -1
  1172. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +1 -1
  1173. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  1174. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js +3 -4
  1175. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js.map +1 -1
  1176. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts +3 -3
  1177. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  1178. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +17 -13
  1179. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
  1180. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.d.ts.map +1 -1
  1181. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.js +5 -1
  1182. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.js.map +1 -1
  1183. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts +2 -0
  1184. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts.map +1 -1
  1185. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js +17 -0
  1186. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js.map +1 -1
  1187. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js +1 -1
  1188. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js.map +1 -1
  1189. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js +1 -1
  1190. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js.map +1 -1
  1191. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.d.ts.map +1 -1
  1192. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.js.map +1 -1
  1193. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts +1 -2
  1194. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts.map +1 -1
  1195. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  1196. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
  1197. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +2 -1
  1198. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
  1199. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts +1 -1
  1200. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
  1201. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +16 -7
  1202. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js.map +1 -1
  1203. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts +4 -4
  1204. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts.map +1 -1
  1205. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js +4 -4
  1206. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +2 -0
  1207. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
  1208. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +2 -0
  1209. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
  1210. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CSSQueryHandler.d.ts.map +1 -1
  1211. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  1212. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js.map +1 -1
  1213. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +3 -0
  1214. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  1215. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -1
  1216. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +0 -1
  1217. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js.map +1 -1
  1218. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HandleIterator.js +12 -5
  1219. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HandleIterator.js.map +1 -1
  1220. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LazyArg.d.ts +1 -1
  1221. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LazyArg.d.ts.map +1 -1
  1222. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PierceQueryHandler.d.ts.map +1 -1
  1223. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts.map +1 -1
  1224. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +13 -7
  1225. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js.map +1 -1
  1226. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts +7 -7
  1227. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts.map +1 -1
  1228. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js +0 -7
  1229. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js.map +1 -1
  1230. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts +2 -3
  1231. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
  1232. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +4 -2
  1233. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
  1234. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts +0 -2
  1235. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts.map +1 -1
  1236. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.d.ts +1 -1
  1237. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.d.ts.map +1 -1
  1238. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.js +1 -1
  1239. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.js.map +1 -1
  1240. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
  1241. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
  1242. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/ARIAQuerySelector.d.ts.map +1 -1
  1243. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/CSSSelector.d.ts.map +1 -1
  1244. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.d.ts.map +1 -1
  1245. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.js +1 -1
  1246. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.js.map +1 -1
  1247. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/TextQuerySelector.d.ts.map +1 -1
  1248. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/XPathQuerySelector.d.ts.map +1 -1
  1249. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts +3 -3
  1250. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts.map +1 -1
  1251. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1252. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
  1253. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  1254. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js +0 -1
  1255. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map +1 -1
  1256. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +0 -1
  1257. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts.map +1 -1
  1258. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js.map +1 -1
  1259. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts +0 -1
  1260. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
  1261. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.js.map +1 -1
  1262. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.d.ts +1 -1
  1263. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.d.ts.map +1 -1
  1264. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.js +0 -1
  1265. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.js.map +1 -1
  1266. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core-browser.d.ts +1 -1
  1267. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core-browser.d.ts.map +1 -1
  1268. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts +6 -6
  1269. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts.map +1 -1
  1270. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js +3 -4
  1271. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js.map +1 -1
  1272. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
  1273. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
  1274. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
  1275. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.d.ts.map +1 -1
  1276. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.js +1 -0
  1277. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.js.map +1 -1
  1278. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/ErrorLike.d.ts +0 -1
  1279. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/ErrorLike.d.ts.map +1 -1
  1280. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Function.d.ts.map +1 -1
  1281. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Mutex.d.ts +1 -1
  1282. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Mutex.d.ts.map +1 -1
  1283. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.d.ts +1 -1
  1284. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.d.ts.map +1 -1
  1285. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js +12 -6
  1286. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js.map +1 -1
  1287. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts.map +1 -1
  1288. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.d.ts +1 -0
  1289. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.d.ts.map +1 -1
  1290. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js +1 -0
  1291. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js.map +1 -1
  1292. package/front_end/third_party/puppeteer/package/lib/types.d.ts +374 -577
  1293. package/front_end/third_party/puppeteer/package/package.json +6 -6
  1294. package/front_end/third_party/puppeteer/package/src/api/Browser.ts +9 -9
  1295. package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +6 -6
  1296. package/front_end/third_party/puppeteer/package/src/api/CDPSession.ts +2 -2
  1297. package/front_end/third_party/puppeteer/package/src/api/Dialog.ts +1 -1
  1298. package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +130 -130
  1299. package/front_end/third_party/puppeteer/package/src/api/Frame.ts +33 -33
  1300. package/front_end/third_party/puppeteer/package/src/api/HTTPRequest.ts +14 -9
  1301. package/front_end/third_party/puppeteer/package/src/api/Input.ts +11 -11
  1302. package/front_end/third_party/puppeteer/package/src/api/JSHandle.ts +5 -5
  1303. package/front_end/third_party/puppeteer/package/src/api/Page.ts +89 -88
  1304. package/front_end/third_party/puppeteer/package/src/api/Realm.ts +2 -2
  1305. package/front_end/third_party/puppeteer/package/src/api/WebWorker.ts +2 -2
  1306. package/front_end/third_party/puppeteer/package/src/api/api.ts +1 -1
  1307. package/front_end/third_party/puppeteer/package/src/api/locators/locators.ts +79 -79
  1308. package/front_end/third_party/puppeteer/package/src/bidi/BidiOverCdp.ts +7 -7
  1309. package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +9 -5
  1310. package/front_end/third_party/puppeteer/package/src/bidi/BrowserConnector.ts +5 -5
  1311. package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +10 -10
  1312. package/front_end/third_party/puppeteer/package/src/bidi/CDPSession.ts +4 -4
  1313. package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +6 -6
  1314. package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +9 -5
  1315. package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +11 -11
  1316. package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +45 -41
  1317. package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +9 -9
  1318. package/front_end/third_party/puppeteer/package/src/bidi/HTTPResponse.ts +3 -3
  1319. package/front_end/third_party/puppeteer/package/src/bidi/Input.ts +10 -10
  1320. package/front_end/third_party/puppeteer/package/src/bidi/JSHandle.ts +1 -1
  1321. package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +56 -52
  1322. package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +15 -15
  1323. package/front_end/third_party/puppeteer/package/src/bidi/Serializer.ts +1 -1
  1324. package/front_end/third_party/puppeteer/package/src/bidi/Target.ts +2 -2
  1325. package/front_end/third_party/puppeteer/package/src/bidi/WebWorker.ts +2 -2
  1326. package/front_end/third_party/puppeteer/package/src/bidi/core/Browser.ts +5 -5
  1327. package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +18 -18
  1328. package/front_end/third_party/puppeteer/package/src/bidi/core/Connection.ts +1 -1
  1329. package/front_end/third_party/puppeteer/package/src/bidi/core/Navigation.ts +4 -4
  1330. package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +8 -8
  1331. package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +6 -6
  1332. package/front_end/third_party/puppeteer/package/src/bidi/core/Session.ts +5 -5
  1333. package/front_end/third_party/puppeteer/package/src/bidi/core/UserContext.ts +10 -10
  1334. package/front_end/third_party/puppeteer/package/src/bidi/core/UserPrompt.ts +5 -5
  1335. package/front_end/third_party/puppeteer/package/src/bidi/core/core.ts +1 -1
  1336. package/front_end/third_party/puppeteer/package/src/bidi/util.ts +4 -4
  1337. package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +16 -12
  1338. package/front_end/third_party/puppeteer/package/src/cdp/AriaQueryHandler.ts +10 -6
  1339. package/front_end/third_party/puppeteer/package/src/cdp/Binding.ts +6 -6
  1340. package/front_end/third_party/puppeteer/package/src/cdp/Browser.ts +24 -24
  1341. package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +4 -4
  1342. package/front_end/third_party/puppeteer/package/src/cdp/BrowserContext.ts +2 -2
  1343. package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +7 -7
  1344. package/front_end/third_party/puppeteer/package/src/cdp/ChromeTargetManager.ts +19 -17
  1345. package/front_end/third_party/puppeteer/package/src/cdp/Connection.ts +7 -7
  1346. package/front_end/third_party/puppeteer/package/src/cdp/Coverage.ts +11 -11
  1347. package/front_end/third_party/puppeteer/package/src/cdp/DeviceRequestPrompt.ts +17 -17
  1348. package/front_end/third_party/puppeteer/package/src/cdp/Dialog.ts +1 -1
  1349. package/front_end/third_party/puppeteer/package/src/cdp/ElementHandle.ts +13 -9
  1350. package/front_end/third_party/puppeteer/package/src/cdp/EmulationManager.ts +34 -34
  1351. package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +19 -20
  1352. package/front_end/third_party/puppeteer/package/src/cdp/ExtensionTransport.ts +7 -3
  1353. package/front_end/third_party/puppeteer/package/src/cdp/FirefoxTargetManager.ts +7 -7
  1354. package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +38 -17
  1355. package/front_end/third_party/puppeteer/package/src/cdp/FrameManager.ts +20 -20
  1356. package/front_end/third_party/puppeteer/package/src/cdp/FrameManagerEvents.ts +1 -1
  1357. package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +5 -5
  1358. package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +5 -5
  1359. package/front_end/third_party/puppeteer/package/src/cdp/Input.ts +16 -14
  1360. package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +15 -14
  1361. package/front_end/third_party/puppeteer/package/src/cdp/JSHandle.ts +2 -2
  1362. package/front_end/third_party/puppeteer/package/src/cdp/LifecycleWatcher.ts +11 -11
  1363. package/front_end/third_party/puppeteer/package/src/cdp/NetworkEventManager.ts +15 -15
  1364. package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +38 -37
  1365. package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +71 -70
  1366. package/front_end/third_party/puppeteer/package/src/cdp/PredefinedNetworkConditions.ts +4 -4
  1367. package/front_end/third_party/puppeteer/package/src/cdp/Target.ts +4 -4
  1368. package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +1 -1
  1369. package/front_end/third_party/puppeteer/package/src/cdp/Tracing.ts +2 -2
  1370. package/front_end/third_party/puppeteer/package/src/cdp/WebWorker.ts +5 -5
  1371. package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +2 -0
  1372. package/front_end/third_party/puppeteer/package/src/cdp/utils.ts +10 -10
  1373. package/front_end/third_party/puppeteer/package/src/common/BrowserConnector.ts +5 -5
  1374. package/front_end/third_party/puppeteer/package/src/common/CSSQueryHandler.ts +2 -2
  1375. package/front_end/third_party/puppeteer/package/src/common/CallbackRegistry.ts +9 -7
  1376. package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +3 -0
  1377. package/front_end/third_party/puppeteer/package/src/common/ConsoleMessage.ts +1 -1
  1378. package/front_end/third_party/puppeteer/package/src/common/CustomQueryHandler.ts +6 -6
  1379. package/front_end/third_party/puppeteer/package/src/common/Debug.ts +0 -1
  1380. package/front_end/third_party/puppeteer/package/src/common/EventEmitter.ts +8 -8
  1381. package/front_end/third_party/puppeteer/package/src/common/FileChooser.ts +3 -3
  1382. package/front_end/third_party/puppeteer/package/src/common/HandleIterator.ts +3 -3
  1383. package/front_end/third_party/puppeteer/package/src/common/LazyArg.ts +1 -1
  1384. package/front_end/third_party/puppeteer/package/src/common/NetworkManagerEvents.ts +1 -1
  1385. package/front_end/third_party/puppeteer/package/src/common/PQueryHandler.ts +2 -2
  1386. package/front_end/third_party/puppeteer/package/src/common/PSelectorParser.ts +1 -1
  1387. package/front_end/third_party/puppeteer/package/src/common/PierceQueryHandler.ts +2 -2
  1388. package/front_end/third_party/puppeteer/package/src/common/Puppeteer.ts +1 -1
  1389. package/front_end/third_party/puppeteer/package/src/common/QueryHandler.ts +13 -15
  1390. package/front_end/third_party/puppeteer/package/src/common/TaskQueue.ts +1 -1
  1391. package/front_end/third_party/puppeteer/package/src/common/TextQueryHandler.ts +1 -1
  1392. package/front_end/third_party/puppeteer/package/src/common/WaitTask.ts +8 -8
  1393. package/front_end/third_party/puppeteer/package/src/common/XPathQueryHandler.ts +2 -2
  1394. package/front_end/third_party/puppeteer/package/src/common/common.ts +7 -7
  1395. package/front_end/third_party/puppeteer/package/src/common/util.ts +17 -15
  1396. package/front_end/third_party/puppeteer/package/src/generated/injected.ts +1 -1
  1397. package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
  1398. package/front_end/third_party/puppeteer/package/src/injected/ARIAQuerySelector.ts +3 -3
  1399. package/front_end/third_party/puppeteer/package/src/injected/CSSSelector.ts +2 -2
  1400. package/front_end/third_party/puppeteer/package/src/injected/PQuerySelector.ts +8 -8
  1401. package/front_end/third_party/puppeteer/package/src/injected/PierceQuerySelector.ts +2 -2
  1402. package/front_end/third_party/puppeteer/package/src/injected/TextContent.ts +1 -1
  1403. package/front_end/third_party/puppeteer/package/src/injected/TextQuerySelector.ts +1 -1
  1404. package/front_end/third_party/puppeteer/package/src/injected/XPathQuerySelector.ts +2 -2
  1405. package/front_end/third_party/puppeteer/package/src/injected/util.ts +2 -2
  1406. package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +38 -30
  1407. package/front_end/third_party/puppeteer/package/src/node/ChromeLauncher.ts +11 -12
  1408. package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +8 -8
  1409. package/front_end/third_party/puppeteer/package/src/node/NodeWebSocketTransport.ts +1 -1
  1410. package/front_end/third_party/puppeteer/package/src/node/PipeTransport.ts +7 -3
  1411. package/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts +4 -4
  1412. package/front_end/third_party/puppeteer/package/src/node/ScreenRecorder.ts +11 -11
  1413. package/front_end/third_party/puppeteer/package/src/node/node.ts +1 -1
  1414. package/front_end/third_party/puppeteer/package/src/puppeteer-core.ts +4 -4
  1415. package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
  1416. package/front_end/third_party/puppeteer/package/src/util/AsyncIterableUtil.ts +3 -3
  1417. package/front_end/third_party/puppeteer/package/src/util/Deferred.ts +3 -2
  1418. package/front_end/third_party/puppeteer/package/src/util/ErrorLike.ts +1 -1
  1419. package/front_end/third_party/puppeteer/package/src/util/Function.ts +4 -4
  1420. package/front_end/third_party/puppeteer/package/src/util/Mutex.ts +1 -1
  1421. package/front_end/third_party/puppeteer/package/src/util/assert.ts +1 -1
  1422. package/front_end/third_party/puppeteer/package/src/util/decorators.ts +8 -9
  1423. package/front_end/third_party/puppeteer/package/src/util/encoding.ts +1 -1
  1424. package/front_end/third_party/puppeteer/package/src/util/util.ts +1 -0
  1425. package/front_end/third_party/puppeteer/puppeteer.ts +1 -1
  1426. package/front_end/third_party/web-vitals/README.chromium +3 -3
  1427. package/front_end/third_party/web-vitals/package/README.md +36 -23
  1428. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.d.ts +2 -1
  1429. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +11 -13
  1430. package/front_end/third_party/web-vitals/package/dist/modules/lib/bindReporter.d.ts +2 -22
  1431. package/front_end/third_party/web-vitals/package/dist/modules/lib/initMetric.d.ts +3 -2
  1432. package/front_end/third_party/web-vitals/package/dist/modules/lib/interactions.js +1 -1
  1433. package/front_end/third_party/web-vitals/package/dist/modules/onLCP.js +4 -1
  1434. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.iife.js +1 -1
  1435. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.js +1 -1
  1436. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.umd.cjs +1 -1
  1437. package/front_end/third_party/web-vitals/package/dist/web-vitals.iife.js +1 -1
  1438. package/front_end/third_party/web-vitals/package/dist/web-vitals.js +1 -1
  1439. package/front_end/third_party/web-vitals/package/dist/web-vitals.umd.cjs +1 -1
  1440. package/front_end/third_party/web-vitals/package/package.json +1 -1
  1441. package/front_end/third_party/web-vitals/package/src/attribution/onINP.ts +11 -14
  1442. package/front_end/third_party/web-vitals/package/src/lib/interactions.ts +1 -1
  1443. package/front_end/third_party/web-vitals/package/src/onLCP.ts +4 -1
  1444. package/front_end/third_party/web-vitals/rebuild.sh +14 -0
  1445. package/front_end/third_party/web-vitals/web-vitals.ts +2 -0
  1446. package/front_end/ui/components/adorners/Adorner.ts +0 -1
  1447. package/front_end/ui/components/buttons/Button.ts +18 -18
  1448. package/front_end/ui/components/buttons/button.css +1 -4
  1449. package/front_end/ui/components/cards/Card.test.ts +92 -0
  1450. package/front_end/ui/components/cards/Card.ts +76 -0
  1451. package/front_end/ui/components/cards/card.css +50 -0
  1452. package/front_end/ui/components/cards/cards.ts +9 -0
  1453. package/front_end/ui/components/chrome_link/ChromeLink.test.ts +5 -3
  1454. package/front_end/ui/components/chrome_link/ChromeLink.ts +3 -2
  1455. package/front_end/ui/components/data_grid/DataGrid.test.ts +3 -1
  1456. package/front_end/ui/components/data_grid/DataGrid.ts +25 -24
  1457. package/front_end/ui/components/data_grid/DataGridContextMenuUtils.ts +2 -2
  1458. package/front_end/ui/components/data_grid/DataGridController.ts +10 -7
  1459. package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +1 -2
  1460. package/front_end/ui/components/data_grid/DataGridEvents.ts +1 -1
  1461. package/front_end/ui/components/data_grid/DataGridRenderers.ts +7 -4
  1462. package/front_end/ui/components/dialogs/Dialog.ts +4 -3
  1463. package/front_end/ui/components/dialogs/IconDialog.ts +18 -18
  1464. package/front_end/ui/components/dialogs/ShortcutDialog.ts +13 -12
  1465. package/front_end/ui/components/diff_view/DiffView.ts +9 -9
  1466. package/front_end/ui/components/docs/building-ui-documentation/ComponentPerformance.md +1 -4
  1467. package/front_end/ui/components/docs/building-ui-documentation/CreatingComponents.md +14 -44
  1468. package/front_end/ui/components/docs/create_breadcrumbs.ts +3 -1
  1469. package/front_end/ui/components/docs/expandable_list/basic.ts +4 -2
  1470. package/front_end/ui/components/docs/floating_button/basic.html +26 -0
  1471. package/front_end/ui/components/docs/floating_button/basic.ts +20 -0
  1472. package/front_end/ui/components/docs/freestyler/basic.ts +5 -1
  1473. package/front_end/ui/components/docs/freestyler/empty_state.ts +5 -0
  1474. package/front_end/ui/components/docs/icon_dialog/basic.ts +9 -7
  1475. package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +7 -4
  1476. package/front_end/ui/components/docs/performance_panel/basic.ts +4 -1
  1477. package/front_end/ui/components/docs/performance_panel/flamechart.html +4 -0
  1478. package/front_end/ui/components/docs/performance_panel/flamechart.ts +45 -0
  1479. package/front_end/ui/components/docs/recorder_select_button/basic.ts +21 -18
  1480. package/front_end/ui/components/docs/report/basic.ts +21 -25
  1481. package/front_end/ui/components/docs/theme_colors/basic.ts +4 -2
  1482. package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +4 -2
  1483. package/front_end/ui/components/expandable_list/ExpandableList.test.ts +5 -3
  1484. package/front_end/ui/components/expandable_list/ExpandableList.ts +6 -5
  1485. package/front_end/ui/components/floating_button/FloatingButton.ts +50 -0
  1486. package/front_end/ui/components/floating_button/floatingButton.css +63 -0
  1487. package/front_end/ui/components/floating_button/floating_button.ts +7 -0
  1488. package/front_end/ui/components/helpers/helpers.test.ts +18 -14
  1489. package/front_end/ui/components/icon_button/FileSourceIcon.test.ts +32 -0
  1490. package/front_end/ui/components/icon_button/FileSourceIcon.ts +76 -0
  1491. package/front_end/ui/components/icon_button/Icon.ts +2 -5
  1492. package/front_end/ui/components/icon_button/IconButton.ts +15 -11
  1493. package/front_end/ui/components/icon_button/fileSourceIcon.css +43 -0
  1494. package/front_end/ui/components/icon_button/icon_button.ts +2 -0
  1495. package/front_end/ui/components/issue_counter/IssueCounter.ts +6 -4
  1496. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +7 -5
  1497. package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -2
  1498. package/front_end/ui/components/linkifier/LinkifierImpl.ts +6 -2
  1499. package/front_end/ui/components/markdown_view/CodeBlock.test.ts +7 -7
  1500. package/front_end/ui/components/markdown_view/CodeBlock.ts +33 -42
  1501. package/front_end/ui/components/markdown_view/MarkdownImage.ts +12 -10
  1502. package/front_end/ui/components/markdown_view/MarkdownLink.ts +3 -2
  1503. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +51 -3
  1504. package/front_end/ui/components/markdown_view/MarkdownView.ts +43 -23
  1505. package/front_end/ui/components/markdown_view/codeBlock.css +6 -28
  1506. package/front_end/ui/components/markdown_view/markdownLink.css +1 -1
  1507. package/front_end/ui/components/markdown_view/markdownView.css +4 -0
  1508. package/front_end/ui/components/menus/Menu.ts +7 -8
  1509. package/front_end/ui/components/menus/SelectMenu.test.ts +3 -1
  1510. package/front_end/ui/components/menus/SelectMenu.ts +17 -17
  1511. package/front_end/ui/components/menus/selectMenu.css +8 -5
  1512. package/front_end/ui/components/menus/selectMenuButton.css +29 -17
  1513. package/front_end/ui/components/node_text/NodeText.ts +0 -1
  1514. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +5 -4
  1515. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +7 -5
  1516. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +6 -6
  1517. package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +3 -2
  1518. package/front_end/ui/components/report_view/ReportView.test.ts +5 -3
  1519. package/front_end/ui/components/report_view/ReportView.ts +10 -14
  1520. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +8 -6
  1521. package/front_end/ui/components/settings/SettingCheckbox.ts +38 -18
  1522. package/front_end/ui/components/settings/SettingDeprecationWarning.ts +6 -5
  1523. package/front_end/ui/components/settings/settingCheckbox.css +1 -0
  1524. package/front_end/ui/components/spinners/Spinner.ts +3 -2
  1525. package/front_end/ui/components/spinners/spinner.css +1 -0
  1526. package/front_end/ui/components/split_view/SplitView.ts +3 -2
  1527. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +3 -2
  1528. package/front_end/ui/components/suggestion_input/SuggestionInput.ts +3 -2
  1529. package/front_end/ui/components/survey_link/SurveyLink.ts +6 -4
  1530. package/front_end/ui/components/switch/SwitchImpl.ts +3 -2
  1531. package/front_end/ui/components/text_editor/TextEditor.ts +0 -2
  1532. package/front_end/ui/components/text_editor/TextEditorHistory.ts +2 -2
  1533. package/front_end/ui/components/text_prompt/TextPrompt.ts +3 -2
  1534. package/front_end/ui/components/tree_outline/TreeOutline.test.ts +8 -6
  1535. package/front_end/ui/components/tree_outline/TreeOutline.ts +9 -9
  1536. package/front_end/ui/components/two_states_counter/TwoStatesCounter.ts +5 -4
  1537. package/front_end/ui/legacy/Context.ts +1 -1
  1538. package/front_end/ui/legacy/ContextMenu.ts +46 -7
  1539. package/front_end/ui/legacy/Dialog.ts +2 -2
  1540. package/front_end/ui/legacy/DockController.ts +2 -2
  1541. package/front_end/ui/legacy/FilterBar.test.ts +52 -0
  1542. package/front_end/ui/legacy/FilterBar.ts +47 -2
  1543. package/front_end/ui/legacy/FilterSuggestionBuilder.ts +1 -1
  1544. package/front_end/ui/legacy/GlassPane.ts +1 -1
  1545. package/front_end/ui/legacy/Infobar.ts +1 -1
  1546. package/front_end/ui/legacy/InspectorView.ts +5 -5
  1547. package/front_end/ui/legacy/KeyboardShortcut.ts +35 -21
  1548. package/front_end/ui/legacy/Panel.ts +3 -3
  1549. package/front_end/ui/legacy/ShortcutRegistry.ts +11 -8
  1550. package/front_end/ui/legacy/SoftContextMenu.ts +3 -0
  1551. package/front_end/ui/legacy/SplitWidget.test.ts +33 -1
  1552. package/front_end/ui/legacy/SplitWidget.ts +62 -7
  1553. package/front_end/ui/legacy/TabbedPane.ts +24 -0
  1554. package/front_end/ui/legacy/ThrottledWidget.ts +2 -2
  1555. package/front_end/ui/legacy/Toolbar.test.ts +39 -0
  1556. package/front_end/ui/legacy/Toolbar.ts +17 -17
  1557. package/front_end/ui/legacy/Treeoutline.ts +7 -4
  1558. package/front_end/ui/legacy/UIUtils.ts +10 -1
  1559. package/front_end/ui/legacy/View.ts +4 -4
  1560. package/front_end/ui/legacy/ViewManager.ts +5 -3
  1561. package/front_end/ui/legacy/ViewRegistration.ts +2 -2
  1562. package/front_end/ui/legacy/Widget.ts +64 -16
  1563. package/front_end/ui/legacy/XElement.ts +0 -1
  1564. package/front_end/ui/legacy/XLink.test.ts +3 -1
  1565. package/front_end/ui/legacy/XLink.ts +6 -4
  1566. package/front_end/ui/legacy/checkboxTextLabel.css +4 -0
  1567. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +1 -1
  1568. package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +51 -0
  1569. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +92 -6
  1570. package/front_end/ui/legacy/components/data_grid/DataGridWithPreview.ts +21 -10
  1571. package/front_end/ui/legacy/components/data_grid/dataGrid.css +8 -1
  1572. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +1 -1
  1573. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +11 -11
  1574. package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +0 -1
  1575. package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +0 -1
  1576. package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +0 -1
  1577. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +3 -2
  1578. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +3 -2
  1579. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +9 -12
  1580. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +6 -6
  1581. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +2 -2
  1582. package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +2 -2
  1583. package/front_end/ui/legacy/components/perf_ui/CanvasHelper.ts +1 -83
  1584. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +3 -2
  1585. package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +9 -9
  1586. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +209 -68
  1587. package/front_end/ui/legacy/components/perf_ui/PieChart.ts +1 -1
  1588. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +1 -1
  1589. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +3 -3
  1590. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +5 -9
  1591. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +9 -60
  1592. package/front_end/ui/legacy/components/source_frame/SourceFrame.test.ts +18 -0
  1593. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +20 -3
  1594. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.test.ts +69 -0
  1595. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +122 -0
  1596. package/front_end/ui/legacy/components/source_frame/source_frame.ts +2 -0
  1597. package/front_end/ui/legacy/designTokens.css +46 -40
  1598. package/front_end/ui/legacy/filter.css +23 -8
  1599. package/front_end/ui/legacy/inspectorCommon.css +31 -30
  1600. package/front_end/ui/legacy/searchableView.css +4 -3
  1601. package/front_end/ui/legacy/softDropDownButton.css +10 -6
  1602. package/front_end/ui/legacy/tabbedPane.css +1 -1
  1603. package/front_end/ui/legacy/themeColors.css +10 -0
  1604. package/front_end/ui/legacy/toolbar.css +42 -18
  1605. package/front_end/ui/legacy/treeoutline.css +0 -3
  1606. package/front_end/ui/lit-html/static.test.ts +8 -8
  1607. package/front_end/ui/visual_logging/Debugging.ts +1 -1
  1608. package/front_end/ui/visual_logging/KnownContextValues.ts +99 -4
  1609. package/front_end/ui/visual_logging/LoggingDriver.test.ts +53 -6
  1610. package/front_end/ui/visual_logging/LoggingDriver.ts +9 -6
  1611. package/front_end/ui/visual_logging/LoggingEvents.test.ts +5 -1
  1612. package/front_end/ui/visual_logging/LoggingEvents.ts +29 -29
  1613. package/front_end/ui/visual_logging/LoggingState.ts +2 -2
  1614. package/front_end/ui/visual_logging/NonDomState.ts +2 -2
  1615. package/front_end/ui/visual_logging/visual_logging.ts +3 -1
  1616. package/inspector_overlay/css_grid_label_helpers.test.ts +103 -0
  1617. package/inspector_overlay/css_grid_label_helpers.ts +63 -12
  1618. package/inspector_overlay/highlight_common.ts +2 -2
  1619. package/inspector_overlay/highlight_container_query.ts +1 -2
  1620. package/inspector_overlay/highlight_flex_common.test.ts +1 -1
  1621. package/inspector_overlay/highlight_flex_common.ts +2 -3
  1622. package/inspector_overlay/highlight_grid_common.ts +10 -4
  1623. package/inspector_overlay/highlight_isolated_element.ts +1 -1
  1624. package/inspector_overlay/highlight_scroll_snap.ts +1 -2
  1625. package/inspector_overlay/testing/InspectorOverlayHelpers.ts +1 -1
  1626. package/inspector_overlay/tool_highlight.ts +4 -8
  1627. package/package.json +8 -8
  1628. package/scripts/build/esbuild.js +3 -1
  1629. package/scripts/devtools_paths.js +19 -2
  1630. package/scripts/eslint_rules/lib/avoid_assert_equal.js +34 -7
  1631. package/scripts/eslint_rules/lib/check_test_definitions.js +1 -1
  1632. package/scripts/eslint_rules/lib/html_tagged_template.js +55 -0
  1633. package/scripts/eslint_rules/lib/inline_type_imports.js +22 -23
  1634. package/scripts/eslint_rules/tests/avoid_assert_equal_test.js +61 -2
  1635. package/scripts/eslint_rules/tests/check_test_definitions_test.js +10 -0
  1636. package/scripts/eslint_rules/tests/html_tagged_template_test.js +96 -0
  1637. package/scripts/eslint_rules/tests/inline_type_imports_test.js +5 -25
  1638. package/scripts/freestyler/eval/index.js +83 -47
  1639. package/scripts/protocol_typescript/protocol_dts_generator.ts +1 -1
  1640. package/scripts/stylelint_rules/lib/use_theme_colors.js +2 -1
  1641. package/scripts/stylelint_rules/tests/use_theme_colors_test.js +16 -0
  1642. package/tsconfig.json +11 -1
  1643. package/docs/add_uma_metrics.md +0 -41
  1644. package/docs/uma_metrics.md +0 -23
  1645. package/front_end/Images/src/spark.svg +0 -3
  1646. package/front_end/panels/animation/AnimationDOMNode.ts +0 -268
  1647. package/front_end/panels/freestyler/components/ProvideFeedback.test.ts +0 -29
  1648. package/front_end/panels/freestyler/components/provideFeedback.css +0 -60
  1649. package/front_end/panels/timeline/components/insights/lcpDiscovery.css +0 -13
  1650. package/scripts/eslint_rules/lib/ban_literal_devtools_component_tag_names.js +0 -40
  1651. package/scripts/eslint_rules/lib/check_component_naming.js +0 -214
  1652. package/scripts/eslint_rules/lib/lit_html_data_as_type.js +0 -83
  1653. package/scripts/eslint_rules/tests/ban_literal_devtools_component_tag_names_test.js +0 -38
  1654. package/scripts/eslint_rules/tests/check_component_naming_test.js +0 -246
  1655. package/scripts/eslint_rules/tests/lit_html_data_as_type_test.js +0 -81
@@ -215,6 +215,9 @@
215
215
  "core/i18n/time-utilities.ts | fms": {
216
216
  "message": "{PH1} మి.సె."
217
217
  },
218
+ "core/i18n/time-utilities.ts | fmsExpanded": {
219
+ "message": "{PH1} మిల్లీసెకన్లు"
220
+ },
218
221
  "core/i18n/time-utilities.ts | fs": {
219
222
  "message": "{PH1} సె"
220
223
  },
@@ -549,7 +552,7 @@
549
552
  "message": "AVIF ఫార్మాట్‌ను డిజేబుల్ చేయండి"
550
553
  },
551
554
  "core/sdk/sdk-meta.ts | disableCache": {
552
- "message": "కాష్‌ను డిజేబుల్ చేయండి (DevTools తెరిచినప్పుడు)"
555
+ "message": "DevTools తెరిచినప్పుడు కాష్‌ను డిజేబుల్ చేయండి"
553
556
  },
554
557
  "core/sdk/sdk-meta.ts | disableJavascript": {
555
558
  "message": "JavaScriptను డిజేబుల్ చేయండి"
@@ -968,6 +971,9 @@
968
971
  "entrypoints/main/main-meta.ts | auto": {
969
972
  "message": "ఆటో"
970
973
  },
974
+ "entrypoints/main/main-meta.ts | autoTheme": {
975
+ "message": "ఆటోమేటిక్"
976
+ },
971
977
  "entrypoints/main/main-meta.ts | bottom": {
972
978
  "message": "కింద"
973
979
  },
@@ -995,6 +1001,9 @@
995
1001
  "entrypoints/main/main-meta.ts | dockToRight": {
996
1002
  "message": "కుడివైపునకు డాక్ చేయండి"
997
1003
  },
1004
+ "entrypoints/main/main-meta.ts | dontMatchChromeColorSchemeCommand": {
1005
+ "message": "Chrome కలర్ స్కీమ్‌తో మ్యాచ్ కావడం లేదు"
1006
+ },
998
1007
  "entrypoints/main/main-meta.ts | enableCtrlShortcutToSwitchPanels": {
999
1008
  "message": "ప్యానెల్‌లను స్విచ్ చేయడానికి Ctrl + 1-9 షార్ట్‌కట్‌ను ఎనేబుల్ చేయండి"
1000
1009
  },
@@ -1031,6 +1040,9 @@
1031
1040
  "entrypoints/main/main-meta.ts | matchChromeColorScheme": {
1032
1041
  "message": "Chrome కలర్ స్కీమ్‌ను మ్యాచ్ చేయండి"
1033
1042
  },
1043
+ "entrypoints/main/main-meta.ts | matchChromeColorSchemeCommand": {
1044
+ "message": "Chrome కలర్ స్కీమ్‌ను మ్యాచ్ చేయండి"
1045
+ },
1034
1046
  "entrypoints/main/main-meta.ts | matchChromeColorSchemeDocumentation": {
1035
1047
  "message": "మీ అనుకూలంగా మార్చబడిన Chrome థీమ్‌కు (ఎనేబుల్ చేసినప్పుడు) DevTools రంగులను మ్యాచ్ చేయండి"
1036
1048
  },
@@ -1067,6 +1079,9 @@
1067
1079
  "entrypoints/main/main-meta.ts | searchOnEnterCommand": {
1068
1080
  "message": "మీరు టైప్ చేసిన దానిని సెర్చ్ చేయడాన్ని డిజేబుల్ చేయండి (సెర్చ్ చేయడానికి Enterను నొక్కండి)"
1069
1081
  },
1082
+ "entrypoints/main/main-meta.ts | switchToBrowserPreferredTheme": {
1083
+ "message": "బ్రౌజర్‌లో ప్రాధాన్య థీమ్‌ను ఎంచుకోండి"
1084
+ },
1070
1085
  "entrypoints/main/main-meta.ts | switchToDarkTheme": {
1071
1086
  "message": "ముదురు రంగు థీమ్‌కు స్విచ్ చేయండి"
1072
1087
  },
@@ -1349,6 +1364,9 @@
1349
1364
  "models/bindings/DebuggerLanguagePlugins.ts | loadingDebugSymbolsForVia": {
1350
1365
  "message": "[{PH1}] {PH2} కోసం డీబగ్ చిహ్నాలు లోడ్ అవుతున్నాయి ({PH3} ద్వారా)..."
1351
1366
  },
1367
+ "models/bindings/IgnoreListManager.ts | addAllAnonymousScriptsToIgnoreList": {
1368
+ "message": "విస్మరించదగిన వాటి లిస్ట్‌కు అజ్ఞాత స్క్రిప్ట్‌లన్నింటినీ జోడించండి"
1369
+ },
1352
1370
  "models/bindings/IgnoreListManager.ts | addAllContentScriptsToIgnoreList": {
1353
1371
  "message": "విస్మరించదగిన వాటి లిస్ట్‌కు ఎక్స్‌టెన్షన్ స్క్రిప్ట్‌లన్నింటినీ జోడించండి"
1354
1372
  },
@@ -2453,6 +2471,21 @@
2453
2471
  "panels/application/ApplicationPanelSidebar.ts | documentNotAvailable": {
2454
2472
  "message": "డాక్యుమెంట్ అందుబాటులో లేదు"
2455
2473
  },
2474
+ "panels/application/ApplicationPanelSidebar.ts | extensionLocalStorage": {
2475
+ "message": "స్థానికం"
2476
+ },
2477
+ "panels/application/ApplicationPanelSidebar.ts | extensionManagedStorage": {
2478
+ "message": "మేనేజ్ చేయబడింది"
2479
+ },
2480
+ "panels/application/ApplicationPanelSidebar.ts | extensionSessionStorage": {
2481
+ "message": "సెషన్"
2482
+ },
2483
+ "panels/application/ApplicationPanelSidebar.ts | extensionStorage": {
2484
+ "message": "ఎక్స్‌టెన్షన్ స్టోరేజ్"
2485
+ },
2486
+ "panels/application/ApplicationPanelSidebar.ts | extensionSyncStorage": {
2487
+ "message": "సింక్"
2488
+ },
2456
2489
  "panels/application/ApplicationPanelSidebar.ts | frames": {
2457
2490
  "message": "ఫ్రేమ్‌లు"
2458
2491
  },
@@ -2639,6 +2672,24 @@
2639
2672
  "panels/application/DOMStorageItemsView.ts | value": {
2640
2673
  "message": "విలువ"
2641
2674
  },
2675
+ "panels/application/ExtensionStorageItemsView.ts | extensionStorage": {
2676
+ "message": "ఎక్స్‌టెన్షన్ స్టోరేజ్"
2677
+ },
2678
+ "panels/application/ExtensionStorageItemsView.ts | extensionStorageItemDeleted": {
2679
+ "message": "స్టోరేజ్ ఐటెమ్ తొలగించబడింది."
2680
+ },
2681
+ "panels/application/ExtensionStorageItemsView.ts | extensionStorageItems": {
2682
+ "message": "ఎక్స్‌టెన్షన్ స్టోరేజ్ ఐటెమ్‌లు"
2683
+ },
2684
+ "panels/application/ExtensionStorageItemsView.ts | extensionStorageItemsCleared": {
2685
+ "message": "ఎక్స్‌టెన్షన్ స్టోరేజ్ ఐటెమ్‌లు క్లియర్ అయ్యాయి"
2686
+ },
2687
+ "panels/application/ExtensionStorageItemsView.ts | key": {
2688
+ "message": "కీ"
2689
+ },
2690
+ "panels/application/ExtensionStorageItemsView.ts | value": {
2691
+ "message": "విలువ"
2692
+ },
2642
2693
  "panels/application/IndexedDBViews.ts | clearObjectStore": {
2643
2694
  "message": "ఆబ్జెక్ట్ స్టోర్‌ను క్లియర్ చేయండి"
2644
2695
  },
@@ -3998,6 +4049,9 @@
3998
4049
  "panels/application/preloading/PreloadingView.ts | noRuleSets": {
3999
4050
  "message": "ఎలాంటి నియమాలు సెట్ చేయలేదు"
4000
4051
  },
4052
+ "panels/application/preloading/PreloadingView.ts | prettyPrint": {
4053
+ "message": "ప్రెట్టీ ప్రింట్"
4054
+ },
4001
4055
  "panels/application/preloading/PreloadingView.ts | statusFailure": {
4002
4056
  "message": "వైఫల్యం"
4003
4057
  },
@@ -6411,7 +6465,7 @@
6411
6465
  "message": "బదులుగా సెర్చ్‌ను ఉపయోగించండి"
6412
6466
  },
6413
6467
  "panels/explain/components/ConsoleInsight.ts | settingsLink": {
6414
- "message": "సెట్టింగ్‌లలోని కన్సోల్ గణాంకాలు"
6468
+ "message": "సెట్టింగ్‌లలో Console insights"
6415
6469
  },
6416
6470
  "panels/explain/components/ConsoleInsight.ts | signInToUse": {
6417
6471
  "message": "ఈ ఫీచర్‌ను ఉపయోగించడానికి సైన్ ఇన్ చేయండి"
@@ -6425,9 +6479,6 @@
6425
6479
  "panels/explain/components/ConsoleInsight.ts | updateSettings": {
6426
6480
  "message": "సెట్టింగ్‌లను అప్‌డేట్ చేయండి"
6427
6481
  },
6428
- "panels/explain/explain-meta.ts | ageRestricted": {
6429
- "message": "ఈ ఫీచర్ 18 ఏళ్లు లేదా అంతకంటే ఎక్కువ వయస్సు ఉన్న యూజర్‌లకు మాత్రమే అందుబాటులో ఉంటుంది"
6430
- },
6431
6482
  "panels/explain/explain-meta.ts | enableConsoleInsights": {
6432
6483
  "message": "AIతో కన్సోల్ మెసేజ్‌లను అర్థం చేసుకోండి"
6433
6484
  },
@@ -6444,11 +6495,71 @@
6444
6495
  "message": "ఈ ఫీచర్ మీ ప్రాంతంలో అందుబాటులో లేదు"
6445
6496
  },
6446
6497
  "panels/explain/explain-meta.ts | policyRestricted": {
6447
- "message": "మీ సంస్థ ఫీచర్‌ను ఆఫ్ చేసింది. మరింత సమాచారం కోసం మీ అడ్మినిస్ట్రేటర్‌లను సంప్రదించండి"
6498
+ "message": "ఈ సెట్టింగ్‌ను మీ అడ్మినిస్ట్రేటర్ మేనేజ్ చేస్తారు"
6448
6499
  },
6449
6500
  "panels/explain/explain-meta.ts | wrongLocale": {
6450
6501
  "message": "ఈ ఫీచర్‌ను ఉపయోగించడానికి, DevTools సెట్టింగ్‌లలో మీ భాష ప్రాధాన్యతను ఇంగ్లీష్ భాషకు అప్‌డేట్ చేయండి"
6451
6502
  },
6503
+ "panels/freestyler/FreestylerPanel.ts | chatCleared": {
6504
+ "message": "చాట్ క్లియర్ చేయబడింది"
6505
+ },
6506
+ "panels/freestyler/FreestylerPanel.ts | clearChat": {
6507
+ "message": "చాట్‌ను క్లియర్ చేయి"
6508
+ },
6509
+ "panels/freestyler/FreestylerPanel.ts | help": {
6510
+ "message": "సహాయం"
6511
+ },
6512
+ "panels/freestyler/FreestylerPanel.ts | sendFeedback": {
6513
+ "message": "ఫీడ్‌బ్యాక్‌ను పంపండి"
6514
+ },
6515
+ "panels/freestyler/FreestylerPanel.ts | settings": {
6516
+ "message": "సెట్టింగ్‌లు"
6517
+ },
6518
+ "panels/freestyler/components/FreestylerChatUi.ts | followTheSteps": {
6519
+ "message": "ప్రశ్న అడగడానికి పై దశలను ఫాలో చేయండి"
6520
+ },
6521
+ "panels/freestyler/components/FreestylerChatUi.ts | inputDisclaimerForEmptyState": {
6522
+ "message": "ఇది ప్రయోగాత్మక AI ఫీచర్, ఇది ఇచ్చే సమాధానాలన్నీ నూటికి నూరు శాతం సరైనవే అని చెప్పలేము."
6523
+ },
6524
+ "panels/freestyler/components/FreestylerChatUi.ts | learnAbout": {
6525
+ "message": "AI DevTools గురించి తెలుసుకోండి"
6526
+ },
6527
+ "panels/freestyler/components/FreestylerChatUi.ts | notLoggedIn": {
6528
+ "message": "మీరు మీ Google ఖాతాతో Chromeకు సైన్ ఇన్ చేసినట్లయితే మాత్రమే ఈ ఫీచర్ అందుబాటులో ఉంటుంది."
6529
+ },
6530
+ "panels/freestyler/components/FreestylerChatUi.ts | offline": {
6531
+ "message": "మీ ఇంటర్నెట్ కనెక్షన్‌ను చెక్ చేసి, మళ్ళీ ట్రై చేయండి"
6532
+ },
6533
+ "panels/freestyler/components/FreestylerChatUi.ts | settingsLink": {
6534
+ "message": "సెట్టింగ్‌లలో AI సహాయం"
6535
+ },
6536
+ "panels/freestyler/components/FreestylerChatUi.ts | turnOnForStyles": {
6537
+ "message": "CSS స్టయిల్స్‌ను అర్థం చేసుకోవడానికి {PH1}ను ఆన్ చేయండి"
6538
+ },
6539
+ "panels/freestyler/components/FreestylerChatUi.ts | turnOnForStylesAndRequests": {
6540
+ "message": "స్టయిల్స్, నెట్‌వర్క్ రిక్వెస్ట్‌లతో సహాయం పొందడానికి {PH1}ను ఆన్ చేయండి"
6541
+ },
6542
+ "panels/freestyler/freestyler-meta.ts | aiAssistance": {
6543
+ "message": "AI సహాయం"
6544
+ },
6545
+ "panels/freestyler/freestyler-meta.ts | askAi": {
6546
+ "message": "AIని అడగండి"
6547
+ },
6548
+ "panels/freestyler/freestyler-meta.ts | enableAiAssistance": {
6549
+ "message": "AI సహాయాన్ని ఎనేబుల్ చేయండి"
6550
+ },
6551
+ "panels/freestyler/freestyler-meta.ts | geoRestricted": {
6552
+ "message": "ఈ ఫీచర్ మీ ప్రాంతంలో అందుబాటులో లేదు"
6553
+ },
6554
+ "panels/freestyler/freestyler-meta.ts | policyRestricted": {
6555
+ "message": "ఈ సెట్టింగ్‌ను మీ అడ్మినిస్ట్రేటర్ మేనేజ్ చేస్తారు"
6556
+ },
6557
+ "panels/freestyler/freestyler-meta.ts | showAiAssistance": {
6558
+ "message": "AI సహాయాన్ని చూడండి"
6559
+ },
6560
+ "panels/freestyler/freestyler-meta.ts | wrongLocale": {
6561
+ "message": "ఈ ఫీచర్‌ను ఉపయోగించడానికి, DevTools సెట్టింగ్‌లలో మీ భాష ప్రాధాన్యతను ఇంగ్లీషుకు సెట్ చేయండి"
6562
+ },
6452
6563
  "panels/issues/AffectedBlockedByResponseView.ts | blockedResource": {
6453
6564
  "message": "బ్లాక్ చేసిన రిసోర్స్"
6454
6565
  },
@@ -7598,11 +7709,8 @@
7598
7709
  "panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrency": {
7599
7710
  "message": "హార్డ్‌వేర్ ఒకేసారి అమలు చేయగల టాస్క్‌ల సంఖ్య"
7600
7711
  },
7601
- "panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrencyIsEnabled": {
7602
- "message": "హార్డ్‌వేర్ ఒకేసారి అమలు చేయగల టాస్క్‌ల సంఖ్యకు సంబంధించిన ఓవర్‌రైడ్ సెట్టింగ్ ఎనేబుల్ చేయబడింది"
7603
- },
7604
- "panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrencySettingTooltip": {
7605
- "message": "పేజీలో navigator.hardwareConcurrency ద్వారా రిపోర్ట్ చేయబడిన విలువను ఓవర్‌రైడ్ చేయండి"
7712
+ "panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrencySettingLabel": {
7713
+ "message": "navigator.hardwareConcurrency ద్వారా రిపోర్ట్ చేయబడిన విలువను ఓవర్‌రైడ్ చేయండి"
7606
7714
  },
7607
7715
  "panels/mobile_throttling/ThrottlingManager.ts | noThrottling": {
7608
7716
  "message": "త్రోట్లింగ్ చేయడం లేదు"
@@ -7949,15 +8057,6 @@
7949
8057
  "panels/network/NetworkDataGridNode.ts | redirect": {
7950
8058
  "message": "మళ్లింపు"
7951
8059
  },
7952
- "panels/network/NetworkDataGridNode.ts | requestContentHeadersOverridden": {
7953
- "message": "రిక్వెస్ట్ కంటెంట్, దానితో పాటు హెడర్‌లు ఓవర్‌రైడ్ చేయబడ్డాయి"
7954
- },
7955
- "panels/network/NetworkDataGridNode.ts | requestContentOverridden": {
7956
- "message": "రిక్వెస్ట్ కంటెంట్ ఓవర్‌రైడ్ చేయబడింది"
7957
- },
7958
- "panels/network/NetworkDataGridNode.ts | requestHeadersOverridden": {
7959
- "message": "రిక్వెస్ట్ హెడర్‌లు ఓవర్‌రైడ్ చేయబడ్డాయి"
7960
- },
7961
8060
  "panels/network/NetworkDataGridNode.ts | sPreflight": {
7962
8061
  "message": "{PH1} + Preflight"
7963
8062
  },
@@ -7994,9 +8093,6 @@
7994
8093
  "panels/network/NetworkDataGridNode.ts | signedexchange": {
7995
8094
  "message": "సంతక ధృవీకృత ఎక్స్‌ఛేంజ్"
7996
8095
  },
7997
- "panels/network/NetworkDataGridNode.ts | thirdPartyPhaseout": {
7998
- "message": "Chrome ఫ్లాగ్‌లు లేదా బ్రౌజర్ కాన్ఫిగరేషన్ కారణంగా ఈ రిక్వెస్ట్ కోసం కుక్కీలు బ్లాక్ చేయబడ్డాయి. సమస్యల ప్యానెల్‌లో మరింత తెలుసుకోండి."
7999
- },
8000
8096
  "panels/network/NetworkDataGridNode.ts | timeSubtitleTooltipText": {
8001
8097
  "message": "ప్రతిస్పందన సమయం (ప్రతిస్పందన అందుకున్న సమయం - ప్రారంభ సమయం)"
8002
8098
  },
@@ -8415,7 +8511,7 @@
8415
8511
  "message": "కాష్‌ను డిజేబుల్ చేయండి"
8416
8512
  },
8417
8513
  "panels/network/NetworkPanel.ts | disableCacheWhileDevtoolsIsOpen": {
8418
- "message": "కాష్‌ను డిజేబుల్ చేయండి (DevTools తెరిచినప్పుడు)"
8514
+ "message": "DevTools తెరిచినప్పుడు కాష్‌ను డిజేబుల్ చేయండి"
8419
8515
  },
8420
8516
  "panels/network/NetworkPanel.ts | doNotClearLogOnPageReload": {
8421
8517
  "message": "పేజీ రీలోడ్ / నావిగేషన్‌లోని లాగ్‌ను క్లియర్ చేయవద్దు"
@@ -9030,7 +9126,7 @@
9030
9126
  "message": "నెట్‌వర్క్ రిక్వెస్ట్‌ను బ్లాక్ చేసే ఆకృతిని జోడించండి"
9031
9127
  },
9032
9128
  "panels/network/network-meta.ts | allowToGenerateHarWithSensitiveData": {
9033
- "message": "HAR (సున్నితమైన వ్యక్తిగత సమాచారంతో) జెనరేట్ చేయడానికి అనుమతించండి"
9129
+ "message": "(సున్నితమైన వ్యక్తిగత సమాచారంతో) HARను జెనరేట్ చేయడానికి అనుమతించండి"
9034
9130
  },
9035
9131
  "panels/network/network-meta.ts | allowToGenerateHarWithSensitiveDataDocumentation": {
9036
9132
  "message": "ఆటోమేటిక్‌గా జెనరేట్ చేయబడిన HAR లాగ్‌లు శానిటైజ్ చేయబడతాయి, Cookie, Set-Cookie లేదా Authorization HTTP హెడర్‌లు లేవు. ఈ సెట్టింగ్ ఎనేబుల్ చేయబడినప్పుడు, సున్నితమైన వ్యక్తిగత సమాచారంతో HARని ఎగుమతి చేయడానికి/కాపీ చేయడానికి ఆప్షన్‌లు అందించబడతాయి."
@@ -9051,7 +9147,7 @@
9051
9147
  "message": "డిస్క్ కాష్"
9052
9148
  },
9053
9149
  "panels/network/network-meta.ts | dontAllowToGenerateHarWithSensitiveData": {
9054
- "message": "HAR (సున్నితమైన వ్యక్తిగత సమాచారంతో) జెనరేట్ చేయడానికి అనుమతించవద్దు"
9150
+ "message": "సున్నితమైన వ్యక్తిగత సమాచారంతో HARను జెనరేట్ చేయడానికి అనుమతించవద్దు"
9055
9151
  },
9056
9152
  "panels/network/network-meta.ts | dontGroupNetworkLogItemsByFrame": {
9057
9153
  "message": "ఫ్రేమ్ వారీగా నెట్‌వర్క్ లాగ్ ఐటెమ్‌లను గ్రూప్ చేయవద్దు"
@@ -10637,12 +10733,45 @@
10637
10733
  "panels/security/SecurityPanel.ts | yourPageRequestedNonsecure": {
10638
10734
  "message": "మీ పేజీ బ్లాక్ అయిన, సురక్షితం కాని రిసోర్స్‌లను రిక్వెస్ట్ చేసింది."
10639
10735
  },
10736
+ "panels/security/SecurityPanelSidebar.ts | mainOrigin": {
10737
+ "message": "ప్రధాన ఆరిజిన్"
10738
+ },
10739
+ "panels/security/SecurityPanelSidebar.ts | mainOriginNonsecure": {
10740
+ "message": "ప్రధాన ఆరిజిన్ (సురక్షితమైనది కాదు)"
10741
+ },
10742
+ "panels/security/SecurityPanelSidebar.ts | mainOriginSecure": {
10743
+ "message": "ప్రధాన ఆరిజిన్ (సురక్షితమైనది)"
10744
+ },
10745
+ "panels/security/SecurityPanelSidebar.ts | nonsecureOrigins": {
10746
+ "message": "సురక్షితం కాని మూలాలు"
10747
+ },
10748
+ "panels/security/SecurityPanelSidebar.ts | overview": {
10749
+ "message": "ఓవర్‌వ్యూ"
10750
+ },
10751
+ "panels/security/SecurityPanelSidebar.ts | reloadToViewDetails": {
10752
+ "message": "వివరాలను చూడటానికి రీలోడ్ చేయండి"
10753
+ },
10754
+ "panels/security/SecurityPanelSidebar.ts | secureOrigins": {
10755
+ "message": "సురక్షిత ఆరిజిన్‌లు"
10756
+ },
10757
+ "panels/security/SecurityPanelSidebar.ts | security": {
10758
+ "message": "సెక్యూరిటీ"
10759
+ },
10760
+ "panels/security/SecurityPanelSidebar.ts | unknownCanceled": {
10761
+ "message": "తెలియనిది / రద్దు చేయబడింది"
10762
+ },
10640
10763
  "panels/security/security-meta.ts | security": {
10641
10764
  "message": "సెక్యూరిటీ"
10642
10765
  },
10766
+ "panels/security/security-meta.ts | securityAndPrivacy": {
10767
+ "message": "సెక్యూరిటీ & గోప్యత"
10768
+ },
10643
10769
  "panels/security/security-meta.ts | showSecurity": {
10644
10770
  "message": "సెక్యూరిటీని చూపు"
10645
10771
  },
10772
+ "panels/security/security-meta.ts | showSecurityAndPrivacy": {
10773
+ "message": "సెక్యూరిటీని, గోప్యతను చూడండి"
10774
+ },
10646
10775
  "panels/sensors/LocationsSettingsTab.ts | addLocation": {
10647
10776
  "message": "లొకేషన్‌ను జోడించండి..."
10648
10777
  },
@@ -10857,49 +10986,70 @@
10857
10986
  "message": "యూజర్ ఇన్‌యాక్టివ్‌గా ఉన్నారు, స్క్రీన్ అన్‌లాక్ చేయబడింది"
10858
10987
  },
10859
10988
  "panels/settings/AISettingsTab.ts | adminSettings": {
10860
- "message": "మీ Google ఖాతా మేనేజ్‌మెంట్ మరియు/లేదా ప్రాంతాన్ని బట్టి Google డేటా కలెక్షన్‌కు దూరంగా ఉండవచ్చు. వారి సంస్థ సెట్టింగ్‌లను బట్టి, మేనేజ్ చేయబడే యూజర్లకు అందుబాటులో ఉండే ఫీచర్‌లు మారవచ్చు."
10989
+ "message": "మీ Google ఖాతా మేనేజ్‌మెంట్ మరియు/లేదా ప్రాంతాన్ని బట్టి Google డేటా కలెక్షన్‌కు దూరంగా ఉండవచ్చు. మీ సంస్థ సెట్టింగ్‌లను బట్టి, మేనేజ్ చేయబడే యూజర్లకు అందుబాటులో ఉండే ఫీచర్‌లు మారవచ్చు."
10990
+ },
10991
+ "panels/settings/AISettingsTab.ts | ageRestricted": {
10992
+ "message": "ఈ ఫీచర్ 18 ఏళ్లు లేదా అంతకంటే ఎక్కువ వయస్సు ఉన్న యూజర్‌లకు మాత్రమే అందుబాటులో ఉంటుంది"
10993
+ },
10994
+ "panels/settings/AISettingsTab.ts | aiInnovations": {
10995
+ "message": "AI ఇన్నోవేషన్‌లు"
10861
10996
  },
10862
10997
  "panels/settings/AISettingsTab.ts | boostYourProductivity": {
10863
- "message": "Chrome AIతో మీ ప్రొడక్టివిటీని బూస్ట్ చేయండి"
10998
+ "message": "AI సహాయంతో మీ పని సామర్థ్యాన్ని పెంచుకోండి"
10864
10999
  },
10865
11000
  "panels/settings/AISettingsTab.ts | consoleInsightsSendsData": {
10866
11001
  "message": "వివరణలను జెనరేట్ చేయడానికి కన్సోల్ మెసేజ్, అనుబంధిత స్టాక్ ట్రేస్, సంబంధిత సోర్స్ కోడ్, అనుబంధిత నెట్‌వర్క్ హెడర్‌లు Googleకు పంపబడతాయి. ఈ ఫీచర్‌ను మెరుగుపరచడంలో సహాయపడటానికి రివ్యూవర్‌లు ఈ డేటాను రివ్యూ చేయవచ్చు."
10867
11002
  },
11003
+ "panels/settings/AISettingsTab.ts | enableAiAssistance": {
11004
+ "message": "AI సహాయాన్ని ఎనేబుల్ చేయండి"
11005
+ },
10868
11006
  "panels/settings/AISettingsTab.ts | enableConsoleInsights": {
10869
- "message": "కన్సోల్ గణాంకాలను ఎనేబుల్ చేయండి"
11007
+ "message": "Console insights‌ను ఎనేబుల్ చేయండి"
10870
11008
  },
10871
11009
  "panels/settings/AISettingsTab.ts | experimentalFeatures": {
10872
- "message": "ఈ ఫీచర్‌లు ప్రయోగాత్మకమైనవి. వారు జెనరేటివ్ AIని ఉపయోగిస్తారు, Google అభిప్రాయాలకు ప్రాతినిధ్యం వహించని తప్పుగా ఉన్న లేదా అభ్యంతరకరమైన సమాచారాన్ని అందించవచ్చు."
11010
+ "message": "ఈ ఫీచర్‌లు ప్రయోగాత్మకమైనవి. అవి జెనరేటివ్ AIని ఉపయోగిస్తాయి, అవి అందించే సమాచారం తప్పుగా కావచ్చు లేదా అభ్యంతరకరమైనది కావచ్చు, అవి Google అభిప్రాయాలకు ప్రాతినిధ్యం వహించవు."
10873
11011
  },
10874
11012
  "panels/settings/AISettingsTab.ts | explainConsole": {
10875
11013
  "message": "కన్సోల్ హెచ్చరికలు, ఎర్రర్‌ల కోసం వివరణలను పొందండి"
10876
11014
  },
10877
11015
  "panels/settings/AISettingsTab.ts | explainStyling": {
10878
- "message": "స్టయిలింగ్ ప్రవర్తనల కోసం వివరణలను, అదనపు సందర్భాన్ని పొందండి"
11016
+ "message": "AI-అందించిన గణాంకాలతో CSS స్టయిల్స్‌ను అర్థం చేసుకోండి"
10879
11017
  },
10880
- "panels/settings/AISettingsTab.ts | freestylerSendsData": {
10881
- "message": "వెబ్ APIల ద్వారా చెక్ చేయబడిన పేజీ యాక్సెస్ చేయగల ఏదైనా డేటా వివరణలను జెనరేట్ చేయడానికి Googleకి పంపబడవచ్చు. ఈ ఫీచర్‌ను మెరుగుపరచడంలో సహాయపడటానికి రివ్యూవర్‌లు ఈ డేటాను రివ్యూ చేయవచ్చు."
11018
+ "panels/settings/AISettingsTab.ts | explainStylingAndNetworkRequest": {
11019
+ "message": "AI-అందించే గణాంకాలతో CSS స్టయిల్స్‌ను, అలాగే నెట్‌వర్క్ యాక్టివిటీని అర్థం చేసుకోండి"
11020
+ },
11021
+ "panels/settings/AISettingsTab.ts | explainStylingNetworkAndFile": {
11022
+ "message": "AI-అందించే గణాంకాలతో CSS స్టయిల్స్‌ను, నెట్‌వర్క్ యాక్టివిటీ, అలాగే ఫైల్ ఆరిజిన్‌లను అర్థం చేసుకోండి"
10882
11023
  },
10883
- "panels/settings/AISettingsTab.ts | generatedSnippets": {
10884
- "message": "జెనరేట్ చేయబడిన కోడ్ స్నిప్పెట్‌లను జాగ్రత్తగా ఉపయోగించండి"
11024
+ "panels/settings/AISettingsTab.ts | freestylerSendsData": {
11025
+ "message": "వెబ్ APIలు, నెట్‌వర్క్ రిక్వెస్ట్‌లు, ఫైల్స్, పనితీరు ట్రేస్‌ల ద్వారా చెక్ చేయబడిన పేజీ యాక్సెస్ చేయగల డేటా ఏదైనా, వివరణలను జెనరేట్ చేయడానికి Googleకు పంపబడుతుంది. ఈ ఫీచర్‌ను మెరుగుపరచడంలో సహాయపడటానికి రివ్యూవర్‌లు ఈ డేటాను రివ్యూ చేయవచ్చు. వ్యక్తిగత లేదా గోప్యమైన సమాచారం ఉన్న పేజీలలో ఉపయోగించవద్దు."
10885
11026
  },
10886
11027
  "panels/settings/AISettingsTab.ts | helpUnderstandConsole": {
10887
11028
  "message": "కన్సోల్ హెచ్చరికలను, ఎర్రర్‌లను అర్థం చేసుకోవడానికి, పరిష్కరించడంలో మీకు సహాయపడుతుంది"
10888
11029
  },
10889
11030
  "panels/settings/AISettingsTab.ts | helpUnderstandStyling": {
10890
- "message": "స్టయిలింగ్ సమస్యలను అర్థం చేసుకోవడంలో, పరిష్కరించడంలో మీకు సహాయపడుతుంది"
11031
+ "message": "CSS స్టయిల్స్‌ను అర్థం చేసుకోవడంలో సహాయం పొందండి"
11032
+ },
11033
+ "panels/settings/AISettingsTab.ts | helpUnderstandStylingAndNetworkRequest": {
11034
+ "message": "CSS స్టయిల్‌లు, అలాగే నెట్‌వర్క్ రిక్వెస్ట్‌లను అర్థం చేసుకోవడంలో సహాయాన్ని పొందండి"
11035
+ },
11036
+ "panels/settings/AISettingsTab.ts | helpUnderstandStylingNetworkAndFile": {
11037
+ "message": "CSS స్టయిల్‌లు, నెట్‌వర్క్ రిక్వెస్ట్‌లు, అలాగే ఫైళ్లను అర్థం చేసుకోవడంలో సహాయాన్ని పొందండి"
10891
11038
  },
10892
11039
  "panels/settings/AISettingsTab.ts | learnMore": {
10893
11040
  "message": "మరింత తెలుసుకోండి"
10894
11041
  },
10895
- "panels/settings/AISettingsTab.ts | oneOrMoreSettingsHaveChanged": {
10896
- "message": "ఒకటి లేదా అంతకంటే ఎక్కువ సెట్టింగ్‌లు మారాయి, మార్పులు అమలు అవ్వడానికి పేజీని రీలోడ్ చేయాలి."
11042
+ "panels/settings/AISettingsTab.ts | notLoggedIn": {
11043
+ "message": "మీరు మీ Google ఖాతాతో Chromeకి సైన్ ఇన్ చేసినప్పుడు మాత్రమే ఫీచర్ అందుబాటులో ఉంటుంది."
11044
+ },
11045
+ "panels/settings/AISettingsTab.ts | offline": {
11046
+ "message": "యాక్టివ్ ఇంటర్నెట్ కనెక్షన్‌తో మాత్రమే ఈ ఫీచర్ అందుబాటులో ఉంటుంది."
10897
11047
  },
10898
11048
  "panels/settings/AISettingsTab.ts | privacyNotice": {
10899
11049
  "message": "Google గోప్యతా పాలసీ"
10900
11050
  },
10901
11051
  "panels/settings/AISettingsTab.ts | receiveStylingSuggestions": {
10902
- "message": "స్టయిలింగ్ సమస్యలను పరిష్కరించడానికి సూచనలను, కోడ్ శాంపిల్స్‌ను స్వీకరించండి"
11052
+ "message": "సందర్భోచిత వివరణలతో, సూచనలతో మీ డెవలప్‌మెంట్ వర్క్‌ఫ్లోను మెరుగుపరచండి"
10903
11053
  },
10904
11054
  "panels/settings/AISettingsTab.ts | receiveSuggestions": {
10905
11055
  "message": "ఈ సమస్యలను పరిష్కరించడానికి సూచనలను, కోడ్ శాంపిల్స్‌ను స్వీకరించండి"
@@ -10908,7 +11058,7 @@
10908
11058
  "message": "వినియోగ డేటా 18 నెలల వరకు నిల్వ కొనసాగించబడుతుంది అలాగే దానిని ఎవరు అందించారో Google చెప్పలేని విధంగా స్టోర్ చేయబడుతుంది."
10909
11059
  },
10910
11060
  "panels/settings/AISettingsTab.ts | sendsDataToGoogle": {
10911
- "message": "ఈ ఫీచర్‌లను ఉపయోగించడం వల్ల ఫీచర్‌కు సంబంధించిన డేటా Googleకు పంపబడుతుంది. రివ్యూవర్‌ల సహాయంతో Google తన ప్రోడక్ట్‌లను, సర్వీసులను మెరుగుపరచడానికి ఈ డేటాను, ఫీడ్‌బ్యాక్‌ను కలెక్ట్ చేస్తుంది. గోప్యమైన లేదా వ్యక్తిగతమైన సమాచారాన్ని షేర్ చేయడం నివారించండి."
11061
+ "message": "ఈ ఫీచర్‌లు సంబంధిత డేటాను Googleకు పంపుతాయి. రివ్యూవర్‌ల సహాయంతో Google తన ప్రోడక్ట్‌లను, సర్వీసులను మెరుగుపరచడానికి ఈ డేటాను, ఫీడ్‌బ్యాక్‌ను కలెక్ట్ చేస్తుంది. గోప్యమైన లేదా వ్యక్తిగతమైన సమాచారాన్ని షేర్ చేయడం నివారించండి."
10912
11062
  },
10913
11063
  "panels/settings/AISettingsTab.ts | showLess": {
10914
11064
  "message": "తక్కువ చూపించండి"
@@ -10929,10 +11079,10 @@
10929
11079
  "message": "ఆన్‌లో ఉన్నప్పుడు"
10930
11080
  },
10931
11081
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | addFilenamePattern": {
10932
- "message": "ఫైల్ పేరు ఆకృతిని జోడించండి"
11082
+ "message": "స్క్రిప్ట్ URL కోసం రెగ్యులర్ ఎక్స్‌ప్రెషన్ నియమాన్ని జోడించండి"
10933
11083
  },
10934
11084
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | addPattern": {
10935
- "message": "ఆకృతిని జోడించండి..."
11085
+ "message": "రెగ్యులర్ ఎక్స్‌ప్రెషన్ నియమాన్ని జోడించండి..."
10936
11086
  },
10937
11087
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | automaticallyIgnoreListKnownThirdPartyScripts": {
10938
11088
  "message": "సోర్స్ మ్యాప్‌ల నుండి తెలిసిన థర్డ్-పార్టీ స్క్రిప్ట్‌లు"
@@ -10941,20 +11091,23 @@
10941
11091
  "message": "అనుకూలంగా మార్చవలసిన మినహాయింపు నియమాలు:"
10942
11092
  },
10943
11093
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | debuggerWillSkipThroughThe": {
10944
- "message": "డీబగ్గర్ స్క్రిప్ట్‌లను స్కిప్ చేస్తుంది, అలాగే సమస్యలేవేైనా ఎదురైనప్పుడు డీబగ్ చేయడం ఆపదు."
11094
+ "message": "డీబగ్గర్, స్క్రిప్ట్‌లో ప్రవేశించదు లేదా వాటిని మాత్రమే ప్రభావితం చేసే మినహాయింపులను ఛేదించదు, పనితీరు ప్యానెల్‌కు మ్యాచ్ అయ్యే ఫ్లేమ్‌చార్ట్ ఐటెమ్‌లను కుదిస్తుంది."
10945
11095
  },
10946
11096
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | enableIgnoreListing": {
10947
- "message": "లిస్టింగ్ విస్మరణను ఎనేబుల్ చేయండి"
11097
+ "message": "విస్మరించదగిన వాటి లిస్టింగ్‌ను ఎనేబుల్ చేయండి"
10948
11098
  },
10949
11099
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | enableIgnoreListingTooltip": {
10950
11100
  "message": "లిస్టింగ్ విస్మరణ అంతటినీ డిజేబుల్ చేయడానికి ఎంపికను తీసివేయండి"
10951
11101
  },
10952
11102
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | frameworkIgnoreList": {
10953
- "message": "ఫ్రేమ్‌వర్క్ విస్మరించదగిన లిస్ట్"
11103
+ "message": "ఫ్రేమ్‌వర్క్ విస్మరించదగిన వాటి లిస్ట్"
10954
11104
  },
10955
11105
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | generalExclusionRules": {
10956
11106
  "message": "సాధారణ మినహాయింపు నియమాలు:"
10957
11107
  },
11108
+ "panels/settings/FrameworkIgnoreListSettingsTab.ts | ignoreListAnonymousScripts": {
11109
+ "message": "ఎవాల్యుయేషన్ లేదా కన్సోల్‌లోని అజ్ఞాత స్క్రిప్ట్‌లు"
11110
+ },
10958
11111
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | ignoreListContentScripts": {
10959
11112
  "message": "ఎక్స్‌టెన్షన్‌ల ద్వారా ఇంజెక్ట్ చేసిన కంటెంట్ స్క్రిప్ట్‌లు"
10960
11113
  },
@@ -10965,16 +11118,16 @@
10965
11118
  "message": "మరింత తెలుసుకోండి"
10966
11119
  },
10967
11120
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | pattern": {
10968
- "message": "ఆకృతిని జోడించండి"
11121
+ "message": "స్క్రిప్ట్ URL కోసం రెగ్యులర్ ఎక్స్‌ప్రెషన్ నియమాన్ని జోడించండి"
10969
11122
  },
10970
11123
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | patternAlreadyExists": {
10971
- "message": "ఆకృతి ఇప్పటికే ఉంది"
11124
+ "message": "నియమం ఇప్పటికే ఉంది"
10972
11125
  },
10973
11126
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | patternCannotBeEmpty": {
10974
- "message": "ఆకృతి ఖాళీగా ఉండకూడదు"
11127
+ "message": "నియమం ఖాళీగా ఉండకూడదు"
10975
11128
  },
10976
11129
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | patternMustBeAValidRegular": {
10977
- "message": "ఆకృతి తప్పక చెల్లుబాటు అయ్యే రెగ్యులర్ ఎక్స్‌ప్రెషన్ అయి ఉండాలి"
11130
+ "message": "నియమం తప్పక చెల్లుబాటు అయ్యే రెగ్యులర్ ఎక్స్‌ప్రెషన్ అయి ఉండాలి"
10978
11131
  },
10979
11132
  "panels/settings/KeybindsSettingsTab.ts | FullListOfDevtoolsKeyboard": {
10980
11133
  "message": "DevTools కీ‌బోర్డ్ షార్ట్‌కట్‌లు అలాగే సంజ్ఞల పూర్తి లిస్ట్"
@@ -11213,6 +11366,9 @@
11213
11366
  "panels/settings/emulation/emulation-meta.ts | showDevices": {
11214
11367
  "message": "పరికరాలను చూపండి"
11215
11368
  },
11369
+ "panels/settings/settings-meta.ts | aiInnovations": {
11370
+ "message": "AI ఇన్నోవేషన్‌లు"
11371
+ },
11216
11372
  "panels/settings/settings-meta.ts | documentation": {
11217
11373
  "message": "డాక్యుమెంటేషన్"
11218
11374
  },
@@ -11220,7 +11376,7 @@
11220
11376
  "message": "ప్రయోగాలు"
11221
11377
  },
11222
11378
  "panels/settings/settings-meta.ts | ignoreList": {
11223
- "message": "విస్మరించదగిన లిస్ట్"
11379
+ "message": "విస్మరించదగిన వాటి లిస్ట్"
11224
11380
  },
11225
11381
  "panels/settings/settings-meta.ts | preferences": {
11226
11382
  "message": "ప్రాధాన్యతలు"
@@ -11231,11 +11387,14 @@
11231
11387
  "panels/settings/settings-meta.ts | shortcuts": {
11232
11388
  "message": "షార్ట్‌కట్‌లు"
11233
11389
  },
11390
+ "panels/settings/settings-meta.ts | showAiInnovations": {
11391
+ "message": "AI ఇన్నోవేషన్‌లను చూడండి"
11392
+ },
11234
11393
  "panels/settings/settings-meta.ts | showExperiments": {
11235
11394
  "message": "ప్రయోగాలను చూపించు"
11236
11395
  },
11237
11396
  "panels/settings/settings-meta.ts | showIgnoreList": {
11238
- "message": "విస్మరించదగిన లిస్ట్‌ను చూపించు"
11397
+ "message": "విస్మరించదగిన వాటి లిస్ట్‌ను చూడండి"
11239
11398
  },
11240
11399
  "panels/settings/settings-meta.ts | showPreferences": {
11241
11400
  "message": "ప్రాధాన్యతలను చూపించు"
@@ -11328,7 +11487,7 @@
11328
11487
  "message": "ఫ్రేమ్‌ను రీస్టార్ట్ చేయండి"
11329
11488
  },
11330
11489
  "panels/sources/CallStackSidebarPane.ts | showIgnorelistedFrames": {
11331
- "message": "విస్మరించడానికి లిస్ట్ చేయబడిన ఫ్రేమ్‌లను చూపండి"
11490
+ "message": "విస్మరించదగిన వాటిలో లిస్ట్ చేయబడిన ఫ్రేమ్‌లను చూడండి"
11332
11491
  },
11333
11492
  "panels/sources/CallStackSidebarPane.ts | showMore": {
11334
11493
  "message": "మరిన్ని చూపించు"
@@ -12254,6 +12413,33 @@
12254
12413
  "panels/timeline/AnimationsTrackAppender.ts | animations": {
12255
12414
  "message": "యానిమేషన్‌లు"
12256
12415
  },
12416
+ "panels/timeline/AnnotationHelpers.ts | entriesLink": {
12417
+ "message": "కనెక్ట్ అయిన ఎంట్రీలు"
12418
+ },
12419
+ "panels/timeline/AnnotationHelpers.ts | entryLabel": {
12420
+ "message": "ఎంట్రీ లేబుల్"
12421
+ },
12422
+ "panels/timeline/AnnotationHelpers.ts | srAnnotationAdded": {
12423
+ "message": "{PH1} అదనపు గమనిక జోడించబడింది"
12424
+ },
12425
+ "panels/timeline/AnnotationHelpers.ts | srAnnotationRemoved": {
12426
+ "message": "{PH1} అదనపు గమనిక తీసివేయబడింది"
12427
+ },
12428
+ "panels/timeline/AnnotationHelpers.ts | srEnterLabelEditMode": {
12429
+ "message": "అదనపు గమనిక లేబుల్ టెక్స్ట్‌ను ఎడిట్ చేయడం"
12430
+ },
12431
+ "panels/timeline/AnnotationHelpers.ts | srEntriesLinked": {
12432
+ "message": "కనెక్ట్ చేయబడిన ఎంట్రీల అదనపు గమనిక ఇప్పుడు {PH1} నుండి {PH2}కు లింక్ చేయబడింది"
12433
+ },
12434
+ "panels/timeline/AnnotationHelpers.ts | srLabelTextUpdated": {
12435
+ "message": "లేబుల్ {PH1}కు అప్‌డేట్ అయింది"
12436
+ },
12437
+ "panels/timeline/AnnotationHelpers.ts | srTimeRangeBoundsUpdated": {
12438
+ "message": "సమయ పరిధి అప్‌డేట్ చేయబడింది, {PH1}కు ప్రారంభమై {PH2}కు ముగుస్తుంది"
12439
+ },
12440
+ "panels/timeline/AnnotationHelpers.ts | timeRange": {
12441
+ "message": "సమయ పరిధి"
12442
+ },
12257
12443
  "panels/timeline/AppenderUtils.ts | sSelfS": {
12258
12444
  "message": "{PH1} (స్వీయ {PH2})"
12259
12445
  },
@@ -12308,6 +12494,12 @@
12308
12494
  "panels/timeline/IsolateSelector.ts | selectJavascriptVmInstance": {
12309
12495
  "message": "JavaScript VM ఇన్‌స్టెన్స్ ఎంపిక చేయండి"
12310
12496
  },
12497
+ "panels/timeline/LayoutShiftsTrackAppender.ts | layoutShift": {
12498
+ "message": "లేఅవుట్ షిఫ్ట్"
12499
+ },
12500
+ "panels/timeline/LayoutShiftsTrackAppender.ts | layoutShiftCluster": {
12501
+ "message": "లేఅవుట్ షిఫ్ట్ క్లస్టర్"
12502
+ },
12311
12503
  "panels/timeline/LayoutShiftsTrackAppender.ts | layoutShifts": {
12312
12504
  "message": "లేఅవుట్ షిఫ్ట్‌లు"
12313
12505
  },
@@ -12506,9 +12698,6 @@
12506
12698
  "panels/timeline/TimelinePanel.ts | CpuThrottlingIsEnabled": {
12507
12699
  "message": "- CPU త్రోట్లింగ్ ఎనేబుల్ చేయబడింది"
12508
12700
  },
12509
- "panels/timeline/TimelinePanel.ts | HardwareConcurrencyIsEnabled": {
12510
- "message": "- హార్డ్‌వేర్ ఒకేసారి అమలు చేయగల టాస్క్‌ల సంఖ్యకు సంబంధించిన ఓవర్‌రైడ్ సెట్టింగ్ ఎనేబుల్ చేయబడింది"
12511
- },
12512
12701
  "panels/timeline/TimelinePanel.ts | JavascriptSamplingIsDisabled": {
12513
12702
  "message": "- జావాస్క్రిప్ట్ శాంప్లింగ్ డిజేబుల్ చేయబడింది"
12514
12703
  },
@@ -12566,6 +12755,9 @@
12566
12755
  "panels/timeline/TimelinePanel.ts | enableSelectorStats": {
12567
12756
  "message": "CSS ఎంపిక సాధనం గణాంకాలను (నెమ్మదిగా) ఎనేబుల్ చేయండి"
12568
12757
  },
12758
+ "panels/timeline/TimelinePanel.ts | eventSelected": {
12759
+ "message": "{PH1} ఈవెంట్‌ను ఎంచుకున్నారు"
12760
+ },
12569
12761
  "panels/timeline/TimelinePanel.ts | exportEnhancedTraces": {
12570
12762
  "message": "మెరుగుపరిచిన పనితీరు ట్రేస్‌లు"
12571
12763
  },
@@ -12578,12 +12770,18 @@
12578
12770
  "panels/timeline/TimelinePanel.ts | fixMe": {
12579
12771
  "message": "ఏదోఒకటి పరిష్కరించండి"
12580
12772
  },
12773
+ "panels/timeline/TimelinePanel.ts | frameSelected": {
12774
+ "message": "ఫ్రేమ్‌ను ఎంచుకున్నారు"
12775
+ },
12581
12776
  "panels/timeline/TimelinePanel.ts | hideSidebar": {
12582
12777
  "message": "ఏకైక సైడ్‌బార్‌ను దాచండి"
12583
12778
  },
12584
12779
  "panels/timeline/TimelinePanel.ts | initializingProfiler": {
12585
12780
  "message": "ప్రొఫైలర్‌ను ప్రారంభిస్తోంది…"
12586
12781
  },
12782
+ "panels/timeline/TimelinePanel.ts | learnMore": {
12783
+ "message": "మరింత తెలుసుకోండి"
12784
+ },
12587
12785
  "panels/timeline/TimelinePanel.ts | loadProfile": {
12588
12786
  "message": "ప్రొఫైల్‌ను లోడ్ చేయండి…"
12589
12787
  },
@@ -12629,6 +12827,9 @@
12629
12827
  "panels/timeline/TimelinePanel.ts | screenshots": {
12630
12828
  "message": "స్క్రీన్‌షాట్‌లు"
12631
12829
  },
12830
+ "panels/timeline/TimelinePanel.ts | selectionCleared": {
12831
+ "message": "ఎంపిక తీసివేయబడింది"
12832
+ },
12632
12833
  "panels/timeline/TimelinePanel.ts | showDataAddedByExtensions": {
12633
12834
  "message": "పనితీరు ప్యానెల్ ఎక్స్‌టెన్షన్‌ల ద్వారా జోడించిన డేటాను చూపండి"
12634
12835
  },
@@ -12678,7 +12879,7 @@
12678
12879
  "message": "% స్లో-పాత్ నాన్-మ్యాచ్‌లు"
12679
12880
  },
12680
12881
  "panels/timeline/TimelineSelectorStatsView.ts | rejectPercentageExplanation": {
12681
- "message": "Bloom ఫిల్టర్ ద్వారా వెంటనే రూల్ అవుట్ చేయడానికి వీలు లేని నాన్-మ్యాచింగ్ నోడ్‌ల శాతం (మ్యాచ్ ప్రయత్నాలు - మ్యాచ్‌ల సంఖ్య). ఎంత తక్కువ శాతం ఉంటే అంత మంచిది."
12882
+ "message": "అధిక ఎంపిక సాధనం క్లిష్టత కారణంగా Bloom ఫిల్టర్ ద్వారా వెంటనే రూల్ అవుట్ చేయడానికి వీలు లేని నాన్-మ్యాచింగ్ నోడ్‌ల శాతం (మ్యాచ్ ప్రయత్నాలు - మ్యాచ్‌ల సంఖ్య). ఎంత తక్కువ శాతం ఉంటే అంత మంచిది."
12682
12883
  },
12683
12884
  "panels/timeline/TimelineSelectorStatsView.ts | selector": {
12684
12885
  "message": "ఎంపిక సాధనం"
@@ -12797,6 +12998,9 @@
12797
12998
  "panels/timeline/TimelineUIUtils.ts | allottedTime": {
12798
12999
  "message": "కేటాయించిన సమయం"
12799
13000
  },
13001
+ "panels/timeline/TimelineUIUtils.ts | animating": {
13002
+ "message": "యానిమేట్ అవుతోంది"
13003
+ },
12800
13004
  "panels/timeline/TimelineUIUtils.ts | animationFrameRequested": {
12801
13005
  "message": "యానిమేషన్ ఫ్రేమ్‌ను రిక్వెస్ట్ చేయబడింది"
12802
13006
  },
@@ -12821,6 +13025,66 @@
12821
13025
  "panels/timeline/TimelineUIUtils.ts | compile": {
12822
13026
  "message": "కంపైల్ చేయండి"
12823
13027
  },
13028
+ "panels/timeline/TimelineUIUtils.ts | compositingFailed": {
13029
+ "message": "సంకలనం విఫలమైంది"
13030
+ },
13031
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedAcceleratedAnimationsDisabled": {
13032
+ "message": "యాక్సిలరేట్ అయిన యానిమేషన్‌లు డిజేబుల్ చేయబడ్డాయి"
13033
+ },
13034
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedAffectsImportantProperty": {
13035
+ "message": "ఎఫెక్ట్ ప్రాపర్టీని !ముఖ్యంతో ప్రభావితం చేస్తుంది"
13036
+ },
13037
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedAnimationAffectsNonCSSProperties": {
13038
+ "message": "యానిమేషన్ నాన్-CSS ప్రాపర్టీలను ప్రభావితం చేస్తుంది"
13039
+ },
13040
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedAnimationHasNoVisibleChange": {
13041
+ "message": "యానిమేషన్‌లో కనిపించే మార్పు ఏదీ లేదు"
13042
+ },
13043
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedEffectHasNonReplaceCompositeMode": {
13044
+ "message": "ఎఫెక్ట్‌లో \"replace\" కాకుండా కంపోజిట్ మోడ్ ఉంది"
13045
+ },
13046
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedEffectHasUnsupportedTimingParams": {
13047
+ "message": "ఎఫెక్ట్‌లో ఉన్న సమయ పారామీటర్‌లకు సపోర్ట్ లేదు"
13048
+ },
13049
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedEffectSuppressedByDevtools": {
13050
+ "message": "DevTools ద్వారా నిరోధించబడిన ఎఫెక్ట్ "
13051
+ },
13052
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedFilterRelatedPropertyMayMovePixels": {
13053
+ "message": "ఫిల్టర్-సంబంధిత ప్రాపర్టీ పిక్సెల్స్‌ను తరలించవచ్చు"
13054
+ },
13055
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedInvalidAnimationOrEffect": {
13056
+ "message": "చెల్లని యానిమేషన్ లేదా ప్రభావం"
13057
+ },
13058
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedMixedKeyframeValueTypes": {
13059
+ "message": "మిశ్రమ కీఫ్రేమ్ విలువ రకాలు"
13060
+ },
13061
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedSVGTargetHasIndependentTransformProperty": {
13062
+ "message": "SVG టార్గెట్, స్వతంత్ర రూపం మార్పు ప్రాపర్టీని కలిగి ఉంది"
13063
+ },
13064
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedTargetHasCSSOffset": {
13065
+ "message": "టార్గెట్‌లో CSS ఆఫ్‌సెట్"
13066
+ },
13067
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedTargetHasIncompatibleAnimations": {
13068
+ "message": "టార్గెట్‌లోని మరో యానిమేషన్ అనుకూలంగా లేదు"
13069
+ },
13070
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedTargetHasInvalidCompositingState": {
13071
+ "message": "టార్గెట్‌లో చెల్లని కంపోజిటింగ్ స్టేట్ ఉంది"
13072
+ },
13073
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedTimelineSourceHasInvalidCompositingState": {
13074
+ "message": "టైమ్‌లైన్ సోర్స్, చెల్లని కంపోజిటింగ్ స్టేట్‌ను కలిగి ఉంది"
13075
+ },
13076
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedTransformDependsBoxSize": {
13077
+ "message": "రూపం మార్పునకు సంబంధించిన ప్రాపర్టీ, బాక్స్ సైజ్‌పై ఆధారపడి ఉంటుంది"
13078
+ },
13079
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedTransformRelatedPropertyCannotBeAcceleratedOnTarget": {
13080
+ "message": "రూపం మార్పు-సంబంధిత ప్రాపర్టీ టార్గెట్‌లో యాక్సిలరేట్ చేయబడదు"
13081
+ },
13082
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedUnknownReason": {
13083
+ "message": "కారణం తెలియదు"
13084
+ },
13085
+ "panels/timeline/TimelineUIUtils.ts | compositingFailedUnsupportedCSSProperty": {
13086
+ "message": "{propertyCount,plural, =1{సపోర్ట్ లేని CSS ప్రాపర్టీ: {properties}}other{సపోర్ట్ లేని CSS ప్రాపర్టీలు: {properties}}}"
13087
+ },
12824
13088
  "panels/timeline/TimelineUIUtils.ts | consumedCacheSize": {
12825
13089
  "message": "వినియోగించుకున్న కాష్ సైజ్"
12826
13090
  },
@@ -13619,6 +13883,12 @@
13619
13883
  "panels/timeline/components/InteractionBreakdown.ts | processingDuration": {
13620
13884
  "message": "ప్రాసెసింగ్ వ్యవధి"
13621
13885
  },
13886
+ "panels/timeline/components/LayoutShiftDetails.ts | animation": {
13887
+ "message": "యానిమేషన్"
13888
+ },
13889
+ "panels/timeline/components/LayoutShiftDetails.ts | cluster": {
13890
+ "message": "లేఅవుట్ షిఫ్ట్ క్లస్టర్ @ {PH1}"
13891
+ },
13622
13892
  "panels/timeline/components/LayoutShiftDetails.ts | culprit": {
13623
13893
  "message": "సమస్య"
13624
13894
  },
@@ -13631,14 +13901,14 @@
13631
13901
  "panels/timeline/components/LayoutShiftDetails.ts | injectedIframe": {
13632
13902
  "message": "iframe ఇంజెక్ట్ చేయబడింది"
13633
13903
  },
13634
- "panels/timeline/components/LayoutShiftDetails.ts | insight": {
13635
- "message": "గణాంకాలు"
13636
- },
13637
13904
  "panels/timeline/components/LayoutShiftDetails.ts | layoutShift": {
13638
- "message": "లేఅవుట్ షిఫ్ట్"
13905
+ "message": "లేఅవుట్ షిఫ్ట్ @ {PH1}"
13639
13906
  },
13640
- "panels/timeline/components/LayoutShiftDetails.ts | layoutShiftCulprits": {
13641
- "message": "లేఅవుట్ షిఫ్ట్‌కు కారణాలు"
13907
+ "panels/timeline/components/LayoutShiftDetails.ts | nonCompositedAnimation": {
13908
+ "message": "నాన్-కంపోజిటెడ్ యానిమేషన్"
13909
+ },
13910
+ "panels/timeline/components/LayoutShiftDetails.ts | parentCluster": {
13911
+ "message": "పేరెంట్ క్లస్టర్"
13642
13912
  },
13643
13913
  "panels/timeline/components/LayoutShiftDetails.ts | shiftScore": {
13644
13914
  "message": "షిఫ్ట్ స్కోర్"
@@ -13646,21 +13916,21 @@
13646
13916
  "panels/timeline/components/LayoutShiftDetails.ts | startTime": {
13647
13917
  "message": "ప్రారంభ సమయం"
13648
13918
  },
13919
+ "panels/timeline/components/LayoutShiftDetails.ts | total": {
13920
+ "message": "మొత్తం"
13921
+ },
13649
13922
  "panels/timeline/components/LiveMetricsView.ts | allDevices": {
13650
13923
  "message": "అన్ని పరికరాలు"
13651
13924
  },
13652
13925
  "panels/timeline/components/LiveMetricsView.ts | auto": {
13653
13926
  "message": "ఆటోమేటిక్ ({PH1})"
13654
13927
  },
13655
- "panels/timeline/components/LiveMetricsView.ts | clearInteractionsLog": {
13656
- "message": "ఇంటరాక్షన్‌ల లాగ్‌ను చేయండి"
13928
+ "panels/timeline/components/LiveMetricsView.ts | clearCurrentLog": {
13929
+ "message": "ప్రస్తుత లాగ్‌ను క్లియర్ చేయండి"
13657
13930
  },
13658
13931
  "panels/timeline/components/LiveMetricsView.ts | collectionPeriod": {
13659
13932
  "message": "కలెక్షన్ వ్యవధి:"
13660
13933
  },
13661
- "panels/timeline/components/LiveMetricsView.ts | considerRealUser": {
13662
- "message": "రియల్ యూజర్ ఎన్విరాన్‌మెంట్‌ను పరిగణించండి"
13663
- },
13664
13934
  "panels/timeline/components/LiveMetricsView.ts | dateRange": {
13665
13935
  "message": "{PH1} - {PH2}"
13666
13936
  },
@@ -13673,21 +13943,39 @@
13673
13943
  "panels/timeline/components/LiveMetricsView.ts | disableNetworkCache": {
13674
13944
  "message": "నెట్‌వర్క్ కాష్‌ను డిజేబుల్ చేయండి"
13675
13945
  },
13946
+ "panels/timeline/components/LiveMetricsView.ts | elementRenderDelay": {
13947
+ "message": "ఎలిమెంట్ రెండర్ ల్యాగ్"
13948
+ },
13676
13949
  "panels/timeline/components/LiveMetricsView.ts | environmentSettings": {
13677
13950
  "message": "ఎన్విరాన్‌మెంట్ సెట్టింగ్‌లు"
13678
13951
  },
13952
+ "panels/timeline/components/LiveMetricsView.ts | eventLogs": {
13953
+ "message": "ఇంటరాక్షన్, అలాగే లేఅవుట్ షిఫ్ట్ లాగ్స్ విభాగం"
13954
+ },
13679
13955
  "panels/timeline/components/LiveMetricsView.ts | fieldData": {
13680
13956
  "message": "ఫీల్డ్ డేటా"
13681
13957
  },
13682
13958
  "panels/timeline/components/LiveMetricsView.ts | fieldDataLink": {
13683
13959
  "message": "ఫీల్డ్ డేటా"
13684
13960
  },
13961
+ "panels/timeline/components/LiveMetricsView.ts | inpInteraction": {
13962
+ "message": "INP ఇంటరాక్షన్, ఇంటరాక్షన్ ల్యాగ్‌లలో 98వ శతాంశం వద్ద ఉంది."
13963
+ },
13964
+ "panels/timeline/components/LiveMetricsView.ts | inpInteractionLink": {
13965
+ "message": "INP ఇంటరాక్షన్"
13966
+ },
13967
+ "panels/timeline/components/LiveMetricsView.ts | inputDelay": {
13968
+ "message": "ఇన్‌పుట్ ల్యాగ్"
13969
+ },
13685
13970
  "panels/timeline/components/LiveMetricsView.ts | interactionExcluded": {
13686
13971
  "message": "INP అనేది ఇంటరాక్షన్ ఆలస్యాలకు సంబంధించిన 98వ శాతాన్ని ఉపయోగించి లెక్కించబడుతుంది, కాబట్టి కొన్ని ఇంటరాక్షన్ ఆలస్యాలు INP విలువ కంటే పెద్దదిగా ఉండవచ్చు."
13687
13972
  },
13688
13973
  "panels/timeline/components/LiveMetricsView.ts | interactions": {
13689
13974
  "message": "ఇంటరాక్షన్‌లు"
13690
13975
  },
13976
+ "panels/timeline/components/LiveMetricsView.ts | layoutShifts": {
13977
+ "message": "లేఅవుట్ షిఫ్ట్‌లు"
13978
+ },
13691
13979
  "panels/timeline/components/LiveMetricsView.ts | lcpElement": {
13692
13980
  "message": "LCP ఎలిమెంట్"
13693
13981
  },
@@ -13706,12 +13994,6 @@
13706
13994
  "panels/timeline/components/LiveMetricsView.ts | mobile": {
13707
13995
  "message": "మొబైల్"
13708
13996
  },
13709
- "panels/timeline/components/LiveMetricsView.ts | mostUsersDesktop": {
13710
- "message": "{PH1} మంది యూజర్‌లు డెస్క్‌టాప్‌లో వాడుతున్నారు."
13711
- },
13712
- "panels/timeline/components/LiveMetricsView.ts | mostUsersMobile": {
13713
- "message": "{PH1} మంది యూజర్‌లు మొబైల్‌లో ఉన్నారు."
13714
- },
13715
13997
  "panels/timeline/components/LiveMetricsView.ts | needsDataOption": {
13716
13998
  "message": "{PH1} - డేటా లేదు"
13717
13999
  },
@@ -13721,24 +14003,42 @@
13721
14003
  "panels/timeline/components/LiveMetricsView.ts | nextSteps": {
13722
14004
  "message": "తర్వాతి దశలు"
13723
14005
  },
14006
+ "panels/timeline/components/LiveMetricsView.ts | numShifts": {
14007
+ "message": "{shiftCount,plural, =1{{shiftCount} షిఫ్ట్}other{{shiftCount} షిఫ్ట్‌లు}}"
14008
+ },
13724
14009
  "panels/timeline/components/LiveMetricsView.ts | originOption": {
13725
14010
  "message": "ఆరిజిన్"
13726
14011
  },
13727
14012
  "panels/timeline/components/LiveMetricsView.ts | originOptionWithKey": {
13728
14013
  "message": "ఆరిజిన్: {PH1}"
13729
14014
  },
13730
- "panels/timeline/components/LiveMetricsView.ts | percentage": {
13731
- "message": "{PH1}%"
14015
+ "panels/timeline/components/LiveMetricsView.ts | presentationDelay": {
14016
+ "message": "ప్రెజెంటేషన్‌లో ల్యాగ్"
14017
+ },
14018
+ "panels/timeline/components/LiveMetricsView.ts | processingDuration": {
14019
+ "message": "ప్రాసెసింగ్ వ్యవధి"
14020
+ },
14021
+ "panels/timeline/components/LiveMetricsView.ts | resourceLoadDelay": {
14022
+ "message": "రిసోర్స్ లోడ్ ల్యాగ్"
14023
+ },
14024
+ "panels/timeline/components/LiveMetricsView.ts | resourceLoadDuration": {
14025
+ "message": "రిసోర్స్ లోడ్ వ్యవధి"
13732
14026
  },
13733
14027
  "panels/timeline/components/LiveMetricsView.ts | seeHowYourLocalMetricsCompare": {
13734
14028
  "message": "{PH1}లో రియల్ యూజర్ డేటాతో మీ లోకల్ కొలమానాలు ఎలా సరిపోతాయో చూడండి."
13735
14029
  },
14030
+ "panels/timeline/components/LiveMetricsView.ts | showClsCluster": {
14031
+ "message": "పనికి రాని లేఅవుట్ షిఫ్ట్ క్లస్టర్‌కు వెళ్లండి."
14032
+ },
13736
14033
  "panels/timeline/components/LiveMetricsView.ts | showFieldDataForDevice": {
13737
14034
  "message": "పరికర రకం కోసం ఫీల్డ్ డేటాను చూపించండి:{PH1}"
13738
14035
  },
13739
14036
  "panels/timeline/components/LiveMetricsView.ts | showFieldDataForPage": {
13740
14037
  "message": "{PH1} కోసం ఫీల్డ్ డేటాను చూపండి"
13741
14038
  },
14039
+ "panels/timeline/components/LiveMetricsView.ts | showInpInteraction": {
14040
+ "message": "INP ఇంటరాక్షన్‌కు వెళ్లండి."
14041
+ },
13742
14042
  "panels/timeline/components/LiveMetricsView.ts | simulateDifferentDevices": {
13743
14043
  "message": "వివిధ పరికరాలను సిమ్యులేట్ చేయండి"
13744
14044
  },
@@ -13751,6 +14051,9 @@
13751
14051
  "panels/timeline/components/LiveMetricsView.ts | theLocalMetricsAre": {
13752
14052
  "message": "మీ నెట్‌వర్క్ కనెక్షన్‌ను, పరికరాన్ని ఉపయోగించి ప్రస్తుత పేజీ నుండి {PH1} క్యాప్చర్ చేయబడ్డాయి."
13753
14053
  },
14054
+ "panels/timeline/components/LiveMetricsView.ts | timeToFirstByte": {
14055
+ "message": "తొలి బైట్ రెస్పాన్స్ సమయం"
14056
+ },
13754
14057
  "panels/timeline/components/LiveMetricsView.ts | tryDisablingThrottling": {
13755
14058
  "message": "రియల్ యూజర్‌లలో 75వ శాతం మంది త్రోట్లింగ్ లేని కనెక్షన్‌కు సమానమైన నెట్‌వర్క్ ల్యాగ్‌లను ఎక్స్‌పీరియన్స్ అయ్యారు."
13756
14059
  },
@@ -13766,12 +14069,18 @@
13766
14069
  "panels/timeline/components/LiveMetricsView.ts | useDeviceToolbar": {
13767
14070
  "message": "పరికర టూల్‌బార్‌ను {PH1}‌కు ఉపయోగించండి."
13768
14071
  },
14072
+ "panels/timeline/components/LiveMetricsView.ts | worstCluster": {
14073
+ "message": "పనికి రాని క్లస్టర్"
14074
+ },
13769
14075
  "panels/timeline/components/MetricCard.ts | betweenRange": {
13770
14076
  "message": "({PH1}-{PH2})"
13771
14077
  },
13772
14078
  "panels/timeline/components/MetricCard.ts | considerTesting": {
13773
14079
  "message": "మీ లోకల్ టెస్ట్ కండీషన్‌లను పరిగణనలోకి తీసుకోండి"
13774
14080
  },
14081
+ "panels/timeline/components/MetricCard.ts | duration": {
14082
+ "message": "స్థానిక వ్యవధి (మి.సె)"
14083
+ },
13775
14084
  "panels/timeline/components/MetricCard.ts | field75thPercentile": {
13776
14085
  "message": "ఫీల్డ్ 75వ శాతం"
13777
14086
  },
@@ -13796,6 +14105,9 @@
13796
14105
  "panels/timeline/components/MetricCard.ts | percentage": {
13797
14106
  "message": "{PH1}%"
13798
14107
  },
14108
+ "panels/timeline/components/MetricCard.ts | phase": {
14109
+ "message": "ఫేజ్"
14110
+ },
13799
14111
  "panels/timeline/components/MetricCard.ts | poor": {
13800
14112
  "message": "బాగా లేదు"
13801
14113
  },
@@ -13901,24 +14213,15 @@
13901
14213
  "panels/timeline/components/NetworkRequestDetails.ts | FromServiceWorker": {
13902
14214
  "message": " (service worker నుండి)"
13903
14215
  },
13904
- "panels/timeline/components/NetworkRequestDetails.ts | contentDownloading": {
13905
- "message": "కంటెంట్ డౌన్‌లోడ్ చేయబడుతోంది"
13906
- },
13907
14216
  "panels/timeline/components/NetworkRequestDetails.ts | decodedBody": {
13908
14217
  "message": "డీకోడ్ చేయబడిన బాడీ"
13909
14218
  },
13910
- "panels/timeline/components/NetworkRequestDetails.ts | duration": {
13911
- "message": "వ్యవధి"
13912
- },
13913
14219
  "panels/timeline/components/NetworkRequestDetails.ts | encodedData": {
13914
14220
  "message": "ఎన్‌కోడ్ చేయబడిన డేటా"
13915
14221
  },
13916
14222
  "panels/timeline/components/NetworkRequestDetails.ts | fromCache": {
13917
14223
  "message": "కాష్ నుండి"
13918
14224
  },
13919
- "panels/timeline/components/NetworkRequestDetails.ts | initialPriority": {
13920
- "message": "ప్రారంభ ప్రాధాన్యత"
13921
- },
13922
14225
  "panels/timeline/components/NetworkRequestDetails.ts | initiatedBy": {
13923
14226
  "message": "దీని ద్వారా ప్రారంభించబడినది"
13924
14227
  },
@@ -13937,18 +14240,9 @@
13937
14240
  "panels/timeline/components/NetworkRequestDetails.ts | priority": {
13938
14241
  "message": "ప్రాధాన్యత"
13939
14242
  },
13940
- "panels/timeline/components/NetworkRequestDetails.ts | queuingAndConnecting": {
13941
- "message": "క్యూలో ఉండడం, కనెక్ట్ అవ్వడం"
13942
- },
13943
14243
  "panels/timeline/components/NetworkRequestDetails.ts | requestMethod": {
13944
14244
  "message": "రిక్వెస్ట్ పద్ధతి"
13945
14245
  },
13946
- "panels/timeline/components/NetworkRequestDetails.ts | requestSentAndWaiting": {
13947
- "message": "రిక్వెస్ట్ పంపి, వేచిఉండడం"
13948
- },
13949
- "panels/timeline/components/NetworkRequestDetails.ts | waitingOnMainThread": {
13950
- "message": "మెయిన్ థ్రెడ్ కోసం వేచి ఉంది"
13951
- },
13952
14246
  "panels/timeline/components/NetworkRequestDetails.ts | yes": {
13953
14247
  "message": "అవును"
13954
14248
  },
@@ -13988,23 +14282,95 @@
13988
14282
  "panels/timeline/components/NetworkThrottlingSelector.ts | presets": {
13989
14283
  "message": "ప్రీసెట్‌లు"
13990
14284
  },
13991
- "panels/timeline/components/SidebarAnnotationsTab.ts | diagram": {
13992
- "message": "డయాగ్రామ్"
14285
+ "panels/timeline/components/RelatedInsightChips.ts | insightKeyword": {
14286
+ "message": "గణాంకాలు"
13993
14287
  },
13994
- "panels/timeline/components/SidebarAnnotationsTab.ts | diagramDescription": {
13995
- "message": "డయాగ్రామ్‌ను క్రియేట్ చేయడానికి ఎంట్రీపై డబుల్ క్లిక్ చేయండి."
14288
+ "panels/timeline/components/SidebarAnnotationsTab.ts | annotationGetStarted": {
14289
+ "message": "మీ కోసం, ఇతరుల కోసం ఒక ట్రేస్‌కు అదనపు గమనికను జోడించండి"
13996
14290
  },
13997
- "panels/timeline/components/SidebarAnnotationsTab.ts | entryLabel": {
13998
- "message": "ఎంట్రీ లేబుల్"
14291
+ "panels/timeline/components/SidebarAnnotationsTab.ts | deleteAnnotationTutorialDescription": {
14292
+ "message": "తొలగింపు ఫంక్షన్‌ను యాక్సెస్ చేయడం కోసం ఎంపిక చేసిన అదనపు గమనికల ట్యాబ్‌తో కూడిన సైడ్‌బార్‌లోని లిస్ట్‌పై మౌస్ కర్సర్‌ను ఉంచండి."
13999
14293
  },
14000
- "panels/timeline/components/SidebarAnnotationsTab.ts | entryLabelDescription": {
14001
- "message": "ఎంట్రీ లేబుల్‌ను క్రియేట్ చేయడానికి ఎంట్రీపై డబుల్ క్లిక్ చేయండి. పూర్తి చేయడానికి Esc లేదా Enter నొక్కండి."
14294
+ "panels/timeline/components/SidebarAnnotationsTab.ts | deleteAnnotationTutorialTitle": {
14295
+ "message": "అదనపు గమనిక‌ను తొలగించండి"
14002
14296
  },
14003
- "panels/timeline/components/SidebarAnnotationsTab.ts | timeRange": {
14004
- "message": "సమయ పరిధి"
14297
+ "panels/timeline/components/SidebarAnnotationsTab.ts | deleteButton": {
14298
+ "message": "అదనపు గమనికను తొలగించండి: {PH1}"
14299
+ },
14300
+ "panels/timeline/components/SidebarAnnotationsTab.ts | entryLabelDescriptionLabel": {
14301
+ "message": "A \"{PH1}\" ఈవెంట్ \"{PH2}\"తో అదనపు గమనిక జోడించబడింది"
14302
+ },
14303
+ "panels/timeline/components/SidebarAnnotationsTab.ts | entryLabelTutorialDescription": {
14304
+ "message": "ఐటెమ్ లేబుల్‌ను క్రియేట్ చేయడానికి ఐటెమ్‌పై డబుల్ క్లిక్ చేసి టైప్ చేయండి."
14305
+ },
14306
+ "panels/timeline/components/SidebarAnnotationsTab.ts | entryLabelTutorialTitle": {
14307
+ "message": "ఐటెమ్‌ను లేబుల్ చేయండి"
14308
+ },
14309
+ "panels/timeline/components/SidebarAnnotationsTab.ts | entryLinkDescriptionLabel": {
14310
+ "message": "\"{PH1}\" ఈవెంట్‌కు \"{PH2}\" ఈవెంట్‌కు మధ్య లింక్"
14311
+ },
14312
+ "panels/timeline/components/SidebarAnnotationsTab.ts | entryLinkTutorialDescription": {
14313
+ "message": "ఒక ఐటెమ్‌పై డబుల్-క్లిక్ చేసి, పక్కనే ఉన్న కుడివైపు బాణంపై క్లిక్ చేసి, ఆపై గమ్యస్థాన ఐటెమ్‌ను ఎంచుకోండి."
14005
14314
  },
14006
- "panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeDescription": {
14007
- "message": "సమయ పరిధిని క్రియేట్ చేయడానికి, లేబుల్‌ను జోడించడానికి కాన్వాస్‌కు సంబందించిన దానిని షిఫ్ట్ చేయండి, లాగండి. పూర్తి చేయడానికి Esc లేదా Enter నొక్కండి."
14315
+ "panels/timeline/components/SidebarAnnotationsTab.ts | entryLinkTutorialTitle": {
14316
+ "message": "రెండు ఐటెమ్‌లను కనెక్ట్ చేయండి"
14317
+ },
14318
+ "panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeDescriptionLabel": {
14319
+ "message": "సమయ పరిధి {PH1} నుండి ప్రారంభమై {PH2}కు ముగుస్తుంది"
14320
+ },
14321
+ "panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeTutorialDescription": {
14322
+ "message": "ఫ్లేమ్‌చార్ట్‌లో షిఫ్ట్-డ్రాగ్ చేసి, టైమ్ రేంజ్ అదనపు గమనికను క్రియేట్ చేయడానికి టైప్ చేయండి."
14323
+ },
14324
+ "panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeTutorialTitle": {
14325
+ "message": "సమయ పరిధిని నిర్వచించండి"
14326
+ },
14327
+ "panels/timeline/components/SidebarInsightsTab.ts | feedbackButton": {
14328
+ "message": "ఫీడ్‌బ్యాక్"
14329
+ },
14330
+ "panels/timeline/components/SidebarInsightsTab.ts | feedbackTooltip": {
14331
+ "message": "గణాంకాలు ఒక ప్రయోగాత్మక ఫీచర్. మీ ఫీడ్‌బ్యాక్ మెరుగుపరచడంలో మాకు సహాయపడుతుంది."
14332
+ },
14333
+ "panels/timeline/components/SidebarSingleInsightSet.ts | metricScore": {
14334
+ "message": "{PH1}: {PH2} {PH3} స్కోర్"
14335
+ },
14336
+ "panels/timeline/components/Utils.ts | fms": {
14337
+ "message": "{PH1}[మి.సె.]()"
14338
+ },
14339
+ "panels/timeline/components/Utils.ts | fs": {
14340
+ "message": "{PH1} [సె.]()"
14341
+ },
14342
+ "panels/timeline/components/insights/CLSCulprits.ts | animation": {
14343
+ "message": "యానిమేషన్"
14344
+ },
14345
+ "panels/timeline/components/insights/CLSCulprits.ts | description": {
14346
+ "message": "ఎలిమెంట్‌లు ఏవైనా యూజర్ ఇంటరాక్షన్‌కు దూరంగా ఉన్నప్పుడు లేఅవుట్ షిఫ్ట్‌లు సంభవిస్తాయి. [లేఅవుట్ షిఫ్ట్‌ల కారణాలను పరిశోధించండి](https://web.dev/articles/optimize-cls), ఉదాహరణకు ఎలిమెంట్స్ జోడించబడటం, తీసివేయబడటం లేదా పేజీ లోడ్ అవుతున్న కొద్దీ వాటి ఫాంట్‌లు మారడం వంటివి."
14347
+ },
14348
+ "panels/timeline/components/insights/CLSCulprits.ts | fontRequest": {
14349
+ "message": "ఫాంట్ రిక్వెస్ట్"
14350
+ },
14351
+ "panels/timeline/components/insights/CLSCulprits.ts | injectedIframe": {
14352
+ "message": "iframe ఇంజెక్ట్ చేయబడింది"
14353
+ },
14354
+ "panels/timeline/components/insights/CLSCulprits.ts | layoutShiftCluster": {
14355
+ "message": "లేఅవుట్ షిఫ్ట్ క్లస్టర్ @ {PH1}"
14356
+ },
14357
+ "panels/timeline/components/insights/CLSCulprits.ts | title": {
14358
+ "message": "లేఅవుట్ షిఫ్ట్‌కు కారణాలు"
14359
+ },
14360
+ "panels/timeline/components/insights/CLSCulprits.ts | topCulprits": {
14361
+ "message": "టాప్ లేఅవుట్ షిఫ్ట్ కారణాలను చూపండి"
14362
+ },
14363
+ "panels/timeline/components/insights/CLSCulprits.ts | worstCluster": {
14364
+ "message": "పనికి రాని క్లస్టర్"
14365
+ },
14366
+ "panels/timeline/components/insights/CLSCulprits.ts | worstLayoutShiftCluster": {
14367
+ "message": "పనికి రాని లేఅవుట్ షిఫ్ట్ క్లస్టర్"
14368
+ },
14369
+ "panels/timeline/components/insights/DocumentLatency.ts | description": {
14370
+ "message": "మీ మొదటి నెట్‌వర్క్ రిక్వెస్ట్ చాలా ముఖ్యమైనది. మళ్లింపు‌లను నివారించడం, సర్వర్ ప్రతిస్పందన వేగంగా ఉండేలా చూసుకోవడం, అలాగే టెక్స్ట్ కంప్రెషన్‌ను ఎనేబుల్ చేయడం ద్వారా దాని ప్రతిస్పందన సమయాన్ని తగ్గించండి."
14371
+ },
14372
+ "panels/timeline/components/insights/DocumentLatency.ts | failedAriaLabel": {
14373
+ "message": "గణాంకాల చెక్ విఫలమైంది: {PH1}"
14008
14374
  },
14009
14375
  "panels/timeline/components/insights/DocumentLatency.ts | failedRedirects": {
14010
14376
  "message": "డాక్యుమెంట్ మల్లింపు లింక్‌లను కలిగి ఉంది"
@@ -14024,8 +14390,35 @@
14024
14390
  "panels/timeline/components/insights/DocumentLatency.ts | passingTextCompression": {
14025
14391
  "message": "టెక్స్ట్ కంప్రెషన్‌ను వర్తింపజేస్తుంది"
14026
14392
  },
14393
+ "panels/timeline/components/insights/DocumentLatency.ts | redirectsLabel": {
14394
+ "message": "మళ్లింపులు"
14395
+ },
14396
+ "panels/timeline/components/insights/DocumentLatency.ts | serverResponseTimeLabel": {
14397
+ "message": "సర్వర్ ప్రతిస్పందన సమయం"
14398
+ },
14399
+ "panels/timeline/components/insights/DocumentLatency.ts | successAriaLabel": {
14400
+ "message": "గణాంకాల చెక్ పాస్ అయ్యింది: {PH1}"
14401
+ },
14402
+ "panels/timeline/components/insights/DocumentLatency.ts | title": {
14403
+ "message": "డాక్యుమెంట్ రిక్వెస్ట్ ల్యాగ్"
14404
+ },
14405
+ "panels/timeline/components/insights/DocumentLatency.ts | uncompressedDownload": {
14406
+ "message": "అన్‌కంప్రెస్డ్ డౌన్‌లోడ్"
14407
+ },
14408
+ "panels/timeline/components/insights/FontDisplay.ts | description": {
14409
+ "message": "టెక్స్ట్ స్థిరంగా కనిపించేలా చూడడానికి swap లేదా optional‌కు చెందిన [ఫాంట్-డిస్‌ప్లే](https://developer.chrome.com/blog/font-display)ను ఉపయోగించి చూడండి. [ఫాంట్ మెట్రిక్ ఓవర్‌రైడ్‌ల](https://developer.chrome.com/blog/font-fallbacks)తో లేఅవుట్ షిఫ్ట్‌లను తగ్గించడానికి swapను మరింత ఆప్టిమైజ్ చేయవచ్చు."
14410
+ },
14411
+ "panels/timeline/components/insights/FontDisplay.ts | fontColumn": {
14412
+ "message": "ఫాంట్"
14413
+ },
14414
+ "panels/timeline/components/insights/FontDisplay.ts | title": {
14415
+ "message": "ఫాంట్ డిస్‌ప్లే"
14416
+ },
14417
+ "panels/timeline/components/insights/FontDisplay.ts | wastedTimeColumn": {
14418
+ "message": "వృధా అయిన సమయం"
14419
+ },
14027
14420
  "panels/timeline/components/insights/InteractionToNextPaint.ts | description": {
14028
- "message": "ఇంటరాక్షన్ టు నెక్స్ట్ పెయింట్ కొలమాణాన్ని మెరుగుపరచడం ద్వారా యూజర్ ప్రతిస్పందనను మెరుగుపరచండి. [INPని ఆప్టిమైజ్ చేయడం](https://web.dev/articles/optimize-inp) ఎలాగో తెలుసుకోండి."
14421
+ "message": "సుదీర్ఘమైన దశతో పరిశోధన ప్రారంభించండి. [ఆలస్యాలను తగ్గించుకోవచ్చు](https://web.dev/articles/optimize-inp#optimize_interactions). ప్రాసెసింగ్ వ్యవధిని తగ్గించడానికి, [మెయిన్ థ్రెడ్ ఖర్చులను ఆప్టిమైజ్ చేయండి](https://web.dev/articles/optimize-long-tasks), ఎక్కువగా JS."
14029
14422
  },
14030
14423
  "panels/timeline/components/insights/InteractionToNextPaint.ts | duration": {
14031
14424
  "message": "వ్యవధి"
@@ -14033,11 +14426,8 @@
14033
14426
  "panels/timeline/components/insights/InteractionToNextPaint.ts | inputDelay": {
14034
14427
  "message": "ఇన్‌పుట్ ఆలస్యం"
14035
14428
  },
14036
- "panels/timeline/components/insights/InteractionToNextPaint.ts | longestInteraction": {
14037
- "message": "సుదీర్ఘమైన ఇంటరాక్షన్"
14038
- },
14039
14429
  "panels/timeline/components/insights/InteractionToNextPaint.ts | phase": {
14040
- "message": "దశ"
14430
+ "message": "ఫేజ్"
14041
14431
  },
14042
14432
  "panels/timeline/components/insights/InteractionToNextPaint.ts | presentationDelay": {
14043
14433
  "message": "ప్రెజెంటేషన్‌లో ఆలస్యం"
@@ -14048,6 +14438,12 @@
14048
14438
  "panels/timeline/components/insights/InteractionToNextPaint.ts | title": {
14049
14439
  "message": "దశల వారీగా INP"
14050
14440
  },
14441
+ "panels/timeline/components/insights/LCPDiscovery.ts | description": {
14442
+ "message": "HTML నుంచి LCP ఇమేజ్‌ను తక్షణమే [కనిపించగలిగేలా](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) చేయడం, అలాగే [ప్రాధాన్యతను బట్టి లోడింగ్‌ పద్దతిని నివారించడం ](https://web.dev/articles/lcp-lazy-loading) ద్వారా LCPని ఆప్టిమైజ్ చేయండి"
14443
+ },
14444
+ "panels/timeline/components/insights/LCPDiscovery.ts | failedAriaLabel": {
14445
+ "message": "గణాంకాల చెక్ విఫలమైంది: {PH1}"
14446
+ },
14051
14447
  "panels/timeline/components/insights/LCPDiscovery.ts | fetchPriorityApplied": {
14052
14448
  "message": "fetchpriority=high applied"
14053
14449
  },
@@ -14060,11 +14456,26 @@
14060
14456
  "panels/timeline/components/insights/LCPDiscovery.ts | requestDiscoverable": {
14061
14457
  "message": "ఇనిషియల్ డాక్యుమెంట్‌లో రిక్వెస్ట్ కనిపించగలదు"
14062
14458
  },
14459
+ "panels/timeline/components/insights/LCPDiscovery.ts | successAriaLabel": {
14460
+ "message": "గణాంకాల చెక్ పాస్ అయ్యింది: {PH1}"
14461
+ },
14462
+ "panels/timeline/components/insights/LCPDiscovery.ts | title": {
14463
+ "message": "LCP రిక్వెస్ట్ డిస్కవరీ"
14464
+ },
14465
+ "panels/timeline/components/insights/LCPPhases.ts | description": {
14466
+ "message": "ప్రతి [దశలో నిర్దిష్ట మెరుగుదల వ్యూహాలు ఉన్నాయి](https://web.dev/articles/optimize-lcp#lcp-breakdown). ముఖ్యంగా, LCP సమయాన్ని ఎక్కువ భాగం రిసోర్స్‌లను లోడ్ చేయడంలో వెచ్చించాలి, ఆలస్యంలో కాదు."
14467
+ },
14063
14468
  "panels/timeline/components/insights/LCPPhases.ts | elementRenderDelay": {
14064
- "message": "ఎలిమెంట్ రెండర్ ఆలస్యం"
14469
+ "message": "ఎలిమెంట్ రెండర్ ల్యాగ్"
14470
+ },
14471
+ "panels/timeline/components/insights/LCPPhases.ts | percentLCP": {
14472
+ "message": "LCPలో %"
14473
+ },
14474
+ "panels/timeline/components/insights/LCPPhases.ts | phase": {
14475
+ "message": "ఫేజ్"
14065
14476
  },
14066
14477
  "panels/timeline/components/insights/LCPPhases.ts | resourceLoadDelay": {
14067
- "message": "రిసోర్స్ లోడ్ ఆలస్యం"
14478
+ "message": "రిసోర్స్ లోడ్ ల్యాగ్"
14068
14479
  },
14069
14480
  "panels/timeline/components/insights/LCPPhases.ts | resourceLoadDuration": {
14070
14481
  "message": "రిసోర్స్ లోడ్ వ్యవధి"
@@ -14072,12 +14483,51 @@
14072
14483
  "panels/timeline/components/insights/LCPPhases.ts | timeToFirstByte": {
14073
14484
  "message": "తొలి బైట్ రెస్పాన్స్ సమయం"
14074
14485
  },
14486
+ "panels/timeline/components/insights/LCPPhases.ts | title": {
14487
+ "message": "ఫేజ్ ఆధారంగా LCP"
14488
+ },
14075
14489
  "panels/timeline/components/insights/RenderBlocking.ts | description": {
14076
14490
  "message": "రిక్వెస్ట్‌లు పేజీకి సంబంధించిన ప్రారంభ రెండర్‌ను బ్లాక్ చేస్తున్నాయి, దీని వలన LCP ఆలస్యం కావచ్చు. [వాయిదా వేయడం లేదా ఇన్‌లైన్ చేయడం](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/) ఈ నెట్‌వర్క్ రిక్వెస్ట్‌లను క్లిష్టమైన మార్గం నుండి తరలించగలదు."
14077
14491
  },
14492
+ "panels/timeline/components/insights/RenderBlocking.ts | duration": {
14493
+ "message": "వ్యవధి"
14494
+ },
14495
+ "panels/timeline/components/insights/RenderBlocking.ts | renderBlockingRequest": {
14496
+ "message": "రిక్వెస్ట్"
14497
+ },
14498
+ "panels/timeline/components/insights/RenderBlocking.ts | title": {
14499
+ "message": "బ్లాకింగ్ రిక్వెస్ట్‌లను రెండర్ చేయండి"
14500
+ },
14078
14501
  "panels/timeline/components/insights/SidebarInsight.ts | estimatedSavings": {
14079
14502
  "message": "అంచనా వేయబడిన సేవింగ్స్: {PH1}"
14080
14503
  },
14504
+ "panels/timeline/components/insights/SidebarInsight.ts | estimatedSavingsTimingAndBytes": {
14505
+ "message": "Est సేవింగ్‌లు: {PH1} && {PH2}"
14506
+ },
14507
+ "panels/timeline/components/insights/SidebarInsight.ts | viewDetails": {
14508
+ "message": "{PH1} కోసం వివరాలను చూడండి"
14509
+ },
14510
+ "panels/timeline/components/insights/SlowCSSSelector.ts | description": {
14511
+ "message": "స్టయిల్‌ను తిరిగి లెక్కించడానికి అయ్యే ఖర్చు ఎక్కువగా ఉంటే, ఎంపిక సాధనం ఆప్టిమైజేషన్ దాన్ని తగ్గిస్తుంది. అధిక గడిచిన సమయం, అలాగే స్లో-పాత్‌ % రెండింటితో [ఎంపిక సాధనాలను ఆప్టిమైజ్ చేయండి](https://developer.chrome.com/docs/devtools/performance/selector-stats). సులభమైన ఎంపిక సాధనాలు, అతి తక్కువ ఎంపిక సాధనాలు, చిన్న DOM, అలాగే షాలో సైజ్ DOM ఇవన్నీ మ్యాచింగ్ ఖర్చులను తగ్గిస్తాయి."
14512
+ },
14513
+ "panels/timeline/components/insights/SlowCSSSelector.ts | elapsed": {
14514
+ "message": "గడిచిన సమయం"
14515
+ },
14516
+ "panels/timeline/components/insights/SlowCSSSelector.ts | matchAttempts": {
14517
+ "message": "మ్యాచ్ ప్రయత్నాలు"
14518
+ },
14519
+ "panels/timeline/components/insights/SlowCSSSelector.ts | matchCount": {
14520
+ "message": "మ్యాచ్ సంఖ్య"
14521
+ },
14522
+ "panels/timeline/components/insights/SlowCSSSelector.ts | title": {
14523
+ "message": "CSS ఎంపిక సాధనం ఖర్చులు"
14524
+ },
14525
+ "panels/timeline/components/insights/SlowCSSSelector.ts | topSelectors": {
14526
+ "message": "టాప్ ఎంపిక సాధనాలు"
14527
+ },
14528
+ "panels/timeline/components/insights/SlowCSSSelector.ts | total": {
14529
+ "message": "మొత్తం"
14530
+ },
14081
14531
  "panels/timeline/components/insights/ThirdParties.ts | columnBlockingTime": {
14082
14532
  "message": "బ్లాక్ చేయబడిన సమయం"
14083
14533
  },
@@ -14088,13 +14538,28 @@
14088
14538
  "message": "బదిలీ సైజ్"
14089
14539
  },
14090
14540
  "panels/timeline/components/insights/ThirdParties.ts | description": {
14091
- "message": "థర్డ్-పార్టీ కోడ్ గణనీయమైన స్థాయిలో లోడ్ పనితీరుపై ప్రభావం చూపవచ్చు. అవసరం లేని థర్డ్-పార్టీ ప్రొవైడర్‌ల సంఖ్యను పరిమితం చేసి, మీ పేజీ ప్రాథమికంగా లోడ్ కావడం పూర్తయిన తర్వాత థర్డ్-పార్టీ కోడ్‌ను లోడ్ చేయడానికి ట్రై చేయండి. [థర్డ్-పార్టీ ప్రభావాన్ని వీలైనంతగా ఎలా తగ్గించాలో తెలుసుకోండి](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/)."
14541
+ "message": "థర్డ్-పార్టీ కోడ్ గణనీయమైన స్థాయిలో లోడ్ పనితీరుపై ప్రభావం చూపవచ్చు. మీ పేజీకి సంబంధించిన కంటెంట్‌కు ప్రాధాన్యత ఇవ్వడానికి[థర్డ్-పార్టీ కోడ్‌ను తగ్గించండి, అలాగే లోడ్ చేయడం మినహాయించండి](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/)."
14092
14542
  },
14093
14543
  "panels/timeline/components/insights/ThirdParties.ts | title": {
14094
- "message": "థర్డ్-పార్టీ వినియోగాన్ని తగ్గించండి"
14544
+ "message": "థర్డ్-పార్టీలు"
14095
14545
  },
14096
14546
  "panels/timeline/components/insights/Viewport.ts | description": {
14097
- "message": "వీక్షణ పోర్ట్ మెటా ఎలిమెంట్ మొబైల్ స్క్రీన్ సైజుల కోసం మీ యాప్‌ను ఆప్టిమైజ్ చేయడమే కాకుండా, [యూజర్ ఇన్‌పుట్‌లో 300 మిల్లీసెకన్ల ఆలస్యాన్ని కూడా నిరోధిస్తుంది](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/)."
14547
+ "message": "పేజీకి సంబంధించిన వీక్షణ పోర్ట్ మొబైల్ కోసం ఆప్టిమైజ్ అవ్వలేదు, కాబట్టి ట్యాప్ ఇంటరాక్షన్‌లు [ 300 మి.సె వరకు ఆలస్యం](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/) కావచ్చు."
14548
+ },
14549
+ "panels/timeline/components/insights/Viewport.ts | title": {
14550
+ "message": "మొబైల్ కోసం వీక్షణ పోర్ట్ ఆప్టిమైజ్ అవ్వలేదు"
14551
+ },
14552
+ "panels/timeline/overlays/components/EntriesLinkOverlay.ts | diagram": {
14553
+ "message": "ఎంట్రీల మధ్య లింక్‌లు"
14554
+ },
14555
+ "panels/timeline/overlays/components/EntryLabelOverlay.ts | entryLabel": {
14556
+ "message": "ఎంట్రీ లేబుల్"
14557
+ },
14558
+ "panels/timeline/overlays/components/EntryLabelOverlay.ts | inputTextPrompt": {
14559
+ "message": "అదనపు గమనిక లేబుల్‌ను ఎంటర్ చేయండి"
14560
+ },
14561
+ "panels/timeline/overlays/components/TimeRangeOverlay.ts | timeRange": {
14562
+ "message": "సమయ పరిధి"
14098
14563
  },
14099
14564
  "panels/timeline/timeline-meta.ts | hideChromeFrameInLayersView": {
14100
14565
  "message": "లేయర్‌ల వీక్షణలో chrome ఫ్రేమ్‌ను దాచండి"
@@ -14135,6 +14600,18 @@
14135
14600
  "panels/timeline/timeline-meta.ts | stop": {
14136
14601
  "message": "ఆపివేయండి"
14137
14602
  },
14603
+ "panels/utils/utils.ts | requestContentHeadersOverridden": {
14604
+ "message": "రిక్వెస్ట్ కంటెంట్, దానితో పాటు హెడర్‌లు ఓవర్‌రైడ్ చేయబడ్డాయి"
14605
+ },
14606
+ "panels/utils/utils.ts | requestContentOverridden": {
14607
+ "message": "రిక్వెస్ట్ కంటెంట్ ఓవర్‌రైడ్ చేయబడింది"
14608
+ },
14609
+ "panels/utils/utils.ts | requestHeadersOverridden": {
14610
+ "message": "రిక్వెస్ట్ హెడర్‌లు ఓవర్‌రైడ్ చేయబడ్డాయి"
14611
+ },
14612
+ "panels/utils/utils.ts | thirdPartyPhaseout": {
14613
+ "message": "Chrome ఫ్లాగ్‌లు లేదా బ్రౌజర్ కాన్ఫిగరేషన్ కారణంగా ఈ రిక్వెస్ట్ కోసం కుక్కీలు బ్లాక్ చేయబడ్డాయి. సమస్యల ప్యానెల్‌లో మరింత తెలుసుకోండి."
14614
+ },
14138
14615
  "panels/web_audio/AudioContextContentBuilder.ts | callbackBufferSize": {
14139
14616
  "message": "కాల్‌బ్యాక్ బఫర్ సైజ్"
14140
14617
  },
@@ -14345,6 +14822,9 @@
14345
14822
  "ui/components/issue_counter/IssueLinkIcon.ts | issueUnavailable": {
14346
14823
  "message": "ప్రస్తుతం సమస్య అందుబాటులో లేదు"
14347
14824
  },
14825
+ "ui/components/markdown_view/CodeBlock.ts | code": {
14826
+ "message": "కోడ్"
14827
+ },
14348
14828
  "ui/components/markdown_view/CodeBlock.ts | copied": {
14349
14829
  "message": "క్లిప్‌బోర్డ్‌కు కాపీ చేయబడింది"
14350
14830
  },
@@ -15116,9 +15596,15 @@
15116
15596
  "ui/legacy/components/perf_ui/FilmStripView.ts | screenshotForSSelectToView": {
15117
15597
  "message": "{PH1} కోసం స్క్రీన్‌షాట్ - మునుపటి రిక్వెస్ట్‌లను చూడటానికి ఎంచుకోండి."
15118
15598
  },
15599
+ "ui/legacy/components/perf_ui/FlameChart.ts | deleteAnnotations": {
15600
+ "message": "అదనపు గమనిక‌లను తొలగించండి"
15601
+ },
15119
15602
  "ui/legacy/components/perf_ui/FlameChart.ts | enterTrackConfigurationMode": {
15120
15603
  "message": "ట్రాక్‌లను కాన్ఫిగర్ చేయండి…"
15121
15604
  },
15605
+ "ui/legacy/components/perf_ui/FlameChart.ts | eventSelectedFromGroup": {
15606
+ "message": "{PH2} లోపల {PH1} ఈవెంట్‌ను ఎంచుకున్నారు. ఈ ఈవెంట్‌ను ఫోకస్ చేయడానికి \"ఎంటర్\" నొక్కండి."
15607
+ },
15122
15608
  "ui/legacy/components/perf_ui/FlameChart.ts | exitTrackConfigurationMode": {
15123
15609
  "message": "ట్రాక్‌ల కాన్ఫిగరేషన్‌ను పూర్తి చేయండి"
15124
15610
  },
@@ -15374,6 +15860,9 @@
15374
15860
  "ui/legacy/components/utils/JSPresentationUtils.ts | showLess": {
15375
15861
  "message": "తక్కువ చూడండి"
15376
15862
  },
15863
+ "ui/legacy/components/utils/JSPresentationUtils.ts | showMoreFrames": {
15864
+ "message": "విస్మరించదగిన వాటిలో లిస్ట్ చేయబడిన ఫ్రేమ్‌లను చూడండి"
15865
+ },
15377
15866
  "ui/legacy/components/utils/JSPresentationUtils.ts | unknownSource": {
15378
15867
  "message": "తెలియదు"
15379
15868
  },