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
@@ -8,5 +8,5 @@ exports.source = void 0;
8
8
  *
9
9
  * @internal
10
10
  */
11
- exports.source = "\"use strict\";var g=Object.defineProperty;var X=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var Y=Object.prototype.hasOwnProperty;var l=(t,e)=>{for(var r in e)g(t,r,{get:e[r],enumerable:!0})},J=(t,e,r,o)=>{if(e&&typeof e==\"object\"||typeof e==\"function\")for(let n of B(e))!Y.call(t,n)&&n!==r&&g(t,n,{get:()=>e[n],enumerable:!(o=X(e,n))||o.enumerable});return t};var z=t=>J(g({},\"__esModule\",{value:!0}),t);var pe={};l(pe,{default:()=>he});module.exports=z(pe);var N=class extends Error{constructor(e,r){super(e,r),this.name=this.constructor.name}get[Symbol.toStringTag](){return this.constructor.name}},p=class extends N{};var c=class t{static create(e){return new t(e)}static async race(e){let r=new Set;try{let o=e.map(n=>n instanceof t?(n.#n&&r.add(n),n.valueOrThrow()):n);return await Promise.race(o)}finally{for(let o of r)o.reject(new Error(\"Timeout cleared\"))}}#e=!1;#r=!1;#o;#t;#a=new Promise(e=>{this.#t=e});#n;#i;constructor(e){e&&e.timeout>0&&(this.#i=new p(e.message),this.#n=setTimeout(()=>{this.reject(this.#i)},e.timeout))}#l(e){clearTimeout(this.#n),this.#o=e,this.#t()}resolve(e){this.#r||this.#e||(this.#e=!0,this.#l(e))}reject(e){this.#r||this.#e||(this.#r=!0,this.#l(e))}resolved(){return this.#e}finished(){return this.#e||this.#r}value(){return this.#o}#s;valueOrThrow(){return this.#s||(this.#s=(async()=>{if(await this.#a,this.#r)throw this.#o;return this.#o})()),this.#s}};var L=new Map,F=t=>{let e=L.get(t);return e||(e=new Function(`return ${t}`)(),L.set(t,e),e)};var x={};l(x,{ariaQuerySelector:()=>G,ariaQuerySelectorAll:()=>b});var G=(t,e)=>globalThis.__ariaQuerySelector(t,e),b=async function*(t,e){yield*await globalThis.__ariaQuerySelectorAll(t,e)};var E={};l(E,{cssQuerySelector:()=>K,cssQuerySelectorAll:()=>Z});var K=(t,e)=>t.querySelector(e),Z=function(t,e){return t.querySelectorAll(e)};var A={};l(A,{customQuerySelectors:()=>P});var v=class{#e=new Map;register(e,r){if(!r.queryOne&&r.queryAll){let o=r.queryAll;r.queryOne=(n,i)=>{for(let s of o(n,i))return s;return null}}else if(r.queryOne&&!r.queryAll){let o=r.queryOne;r.queryAll=(n,i)=>{let s=o(n,i);return s?[s]:[]}}else if(!r.queryOne||!r.queryAll)throw new Error(\"At least one query method must be defined.\");this.#e.set(e,{querySelector:r.queryOne,querySelectorAll:r.queryAll})}unregister(e){this.#e.delete(e)}get(e){return this.#e.get(e)}clear(){this.#e.clear()}},P=new v;var R={};l(R,{pierceQuerySelector:()=>ee,pierceQuerySelectorAll:()=>te});var ee=(t,e)=>{let r=null,o=n=>{let i=document.createTreeWalker(n,NodeFilter.SHOW_ELEMENT);do{let s=i.currentNode;s.shadowRoot&&o(s.shadowRoot),!(s instanceof ShadowRoot)&&s!==n&&!r&&s.matches(e)&&(r=s)}while(!r&&i.nextNode())};return t instanceof Document&&(t=t.documentElement),o(t),r},te=(t,e)=>{let r=[],o=n=>{let i=document.createTreeWalker(n,NodeFilter.SHOW_ELEMENT);do{let s=i.currentNode;s.shadowRoot&&o(s.shadowRoot),!(s instanceof ShadowRoot)&&s!==n&&s.matches(e)&&r.push(s)}while(i.nextNode())};return t instanceof Document&&(t=t.documentElement),o(t),r};var u=(t,e)=>{if(!t)throw new Error(e)};var y=class{#e;#r;#o;#t;constructor(e,r){this.#e=e,this.#r=r}async start(){let e=this.#t=c.create(),r=await this.#e();if(r){e.resolve(r);return}this.#o=new MutationObserver(async()=>{let o=await this.#e();o&&(e.resolve(o),await this.stop())}),this.#o.observe(this.#r,{childList:!0,subtree:!0,attributes:!0})}async stop(){u(this.#t,\"Polling never started.\"),this.#t.finished()||this.#t.reject(new Error(\"Polling stopped\")),this.#o&&(this.#o.disconnect(),this.#o=void 0)}result(){return u(this.#t,\"Polling never started.\"),this.#t.valueOrThrow()}},w=class{#e;#r;constructor(e){this.#e=e}async start(){let e=this.#r=c.create(),r=await this.#e();if(r){e.resolve(r);return}let o=async()=>{if(e.finished())return;let n=await this.#e();if(!n){window.requestAnimationFrame(o);return}e.resolve(n),await this.stop()};window.requestAnimationFrame(o)}async stop(){u(this.#r,\"Polling never started.\"),this.#r.finished()||this.#r.reject(new Error(\"Polling stopped\"))}result(){return u(this.#r,\"Polling never started.\"),this.#r.valueOrThrow()}},T=class{#e;#r;#o;#t;constructor(e,r){this.#e=e,this.#r=r}async start(){let e=this.#t=c.create(),r=await this.#e();if(r){e.resolve(r);return}this.#o=setInterval(async()=>{let o=await this.#e();o&&(e.resolve(o),await this.stop())},this.#r)}async stop(){u(this.#t,\"Polling never started.\"),this.#t.finished()||this.#t.reject(new Error(\"Polling stopped\")),this.#o&&(clearInterval(this.#o),this.#o=void 0)}result(){return u(this.#t,\"Polling never started.\"),this.#t.valueOrThrow()}};var _={};l(_,{PCombinator:()=>H,pQuerySelector:()=>fe,pQuerySelectorAll:()=>$});var a=class{static async*map(e,r){for await(let o of e)yield await r(o)}static async*flatMap(e,r){for await(let o of e)yield*r(o)}static async collect(e){let r=[];for await(let o of e)r.push(o);return r}static async first(e){for await(let r of e)return r}};var C={};l(C,{textQuerySelectorAll:()=>m});var re=new Set([\"checkbox\",\"image\",\"radio\"]),oe=t=>t instanceof HTMLSelectElement||t instanceof HTMLTextAreaElement||t instanceof HTMLInputElement&&!re.has(t.type),ne=new Set([\"SCRIPT\",\"STYLE\"]),f=t=>!ne.has(t.nodeName)&&!document.head?.contains(t),I=new WeakMap,j=t=>{for(;t;)I.delete(t),t instanceof ShadowRoot?t=t.host:t=t.parentNode},W=new WeakSet,se=new MutationObserver(t=>{for(let e of t)j(e.target)}),d=t=>{let e=I.get(t);if(e||(e={full:\"\",immediate:[]},!f(t)))return e;let r=\"\";if(oe(t))e.full=t.value,e.immediate.push(t.value),t.addEventListener(\"input\",o=>{j(o.target)},{once:!0,capture:!0});else{for(let o=t.firstChild;o;o=o.nextSibling){if(o.nodeType===Node.TEXT_NODE){e.full+=o.nodeValue??\"\",r+=o.nodeValue??\"\";continue}r&&e.immediate.push(r),r=\"\",o.nodeType===Node.ELEMENT_NODE&&(e.full+=d(o).full)}r&&e.immediate.push(r),t instanceof Element&&t.shadowRoot&&(e.full+=d(t.shadowRoot).full),W.has(t)||(se.observe(t,{childList:!0,characterData:!0,subtree:!0}),W.add(t))}return I.set(t,e),e};var m=function*(t,e){let r=!1;for(let o of t.childNodes)if(o instanceof Element&&f(o)){let n;o.shadowRoot?n=m(o.shadowRoot,e):n=m(o,e);for(let i of n)yield i,r=!0}r||t instanceof Element&&f(t)&&d(t).full.includes(e)&&(yield t)};var k={};l(k,{checkVisibility:()=>le,pierce:()=>S,pierceAll:()=>O});var ie=[\"hidden\",\"collapse\"],le=(t,e)=>{if(!t)return e===!1;if(e===void 0)return t;let r=t.nodeType===Node.TEXT_NODE?t.parentElement:t,o=window.getComputedStyle(r),n=o&&!ie.includes(o.visibility)&&!ae(r);return e===n?t:!1};function ae(t){let e=t.getBoundingClientRect();return e.width===0||e.height===0}var ce=t=>\"shadowRoot\"in t&&t.shadowRoot instanceof ShadowRoot;function*S(t){ce(t)?yield t.shadowRoot:yield t}function*O(t){t=S(t).next().value,yield t;let e=[document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT)];for(let r of e){let o;for(;o=r.nextNode();)o.shadowRoot&&(yield o.shadowRoot,e.push(document.createTreeWalker(o.shadowRoot,NodeFilter.SHOW_ELEMENT)))}}var Q={};l(Q,{xpathQuerySelectorAll:()=>q});var q=function*(t,e,r=-1){let n=(t.ownerDocument||document).evaluate(e,t,null,XPathResult.ORDERED_NODE_ITERATOR_TYPE),i=[],s;for(;(s=n.iterateNext())&&(i.push(s),!(r&&i.length===r)););for(let h=0;h<i.length;h++)s=i[h],yield s,delete i[h]};var ue=/[-\\w\\P{ASCII}*]/,H=(r=>(r.Descendent=\">>>\",r.Child=\">>>>\",r))(H||{}),V=t=>\"querySelectorAll\"in t,M=class{#e;#r=[];#o=void 0;elements;constructor(e,r){this.elements=[e],this.#e=r,this.#t()}async run(){if(typeof this.#o==\"string\")switch(this.#o.trimStart()){case\":scope\":this.#t();break}for(;this.#o!==void 0;this.#t()){let e=this.#o;typeof e==\"string\"?e[0]&&ue.test(e[0])?this.elements=a.flatMap(this.elements,async function*(r){V(r)&&(yield*r.querySelectorAll(e))}):this.elements=a.flatMap(this.elements,async function*(r){if(!r.parentElement){if(!V(r))return;yield*r.querySelectorAll(e);return}let o=0;for(let n of r.parentElement.children)if(++o,n===r)break;yield*r.parentElement.querySelectorAll(`:scope>:nth-child(${o})${e}`)}):this.elements=a.flatMap(this.elements,async function*(r){switch(e.name){case\"text\":yield*m(r,e.value);break;case\"xpath\":yield*q(r,e.value);break;case\"aria\":yield*b(r,e.value);break;default:let o=P.get(e.name);if(!o)throw new Error(`Unknown selector type: ${e.name}`);yield*o.querySelectorAll(r,e.value)}})}}#t(){if(this.#r.length!==0){this.#o=this.#r.shift();return}if(this.#e.length===0){this.#o=void 0;return}let e=this.#e.shift();switch(e){case\">>>>\":{this.elements=a.flatMap(this.elements,S),this.#t();break}case\">>>\":{this.elements=a.flatMap(this.elements,O),this.#t();break}default:this.#r=e,this.#t();break}}},D=class{#e=new WeakMap;calculate(e,r=[]){if(e===null)return r;e instanceof ShadowRoot&&(e=e.host);let o=this.#e.get(e);if(o)return[...o,...r];let n=0;for(let s=e.previousSibling;s;s=s.previousSibling)++n;let i=this.calculate(e.parentNode,[n]);return this.#e.set(e,i),[...i,...r]}},U=(t,e)=>{if(t.length+e.length===0)return 0;let[r=-1,...o]=t,[n=-1,...i]=e;return r===n?U(o,i):r<n?-1:1},de=async function*(t){let e=new Set;for await(let o of t)e.add(o);let r=new D;yield*[...e.values()].map(o=>[o,r.calculate(o)]).sort(([,o],[,n])=>U(o,n)).map(([o])=>o)},$=function(t,e){let r=JSON.parse(e);if(r.some(o=>{let n=0;return o.some(i=>(typeof i==\"string\"?++n:n=0,n>1))}))throw new Error(\"Multiple deep combinators found in sequence.\");return de(a.flatMap(r,o=>{let n=new M(t,o);return n.run(),n.elements}))},fe=async function(t,e){for await(let r of $(t,e))return r;return null};var me=Object.freeze({...x,...A,...R,..._,...C,...k,...Q,...E,Deferred:c,createFunction:F,createTextContent:d,IntervalPoller:T,isSuitableNodeForTextMatching:f,MutationPoller:y,RAFPoller:w}),he=me;\n";
11
+ exports.source = "\"use strict\";var g=Object.defineProperty;var X=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var Y=Object.prototype.hasOwnProperty;var l=(t,e)=>{for(var r in e)g(t,r,{get:e[r],enumerable:!0})},J=(t,e,r,o)=>{if(e&&typeof e==\"object\"||typeof e==\"function\")for(let n of B(e))!Y.call(t,n)&&n!==r&&g(t,n,{get:()=>e[n],enumerable:!(o=X(e,n))||o.enumerable});return t};var z=t=>J(g({},\"__esModule\",{value:!0}),t);var pe={};l(pe,{default:()=>he});module.exports=z(pe);var N=class extends Error{constructor(e,r){super(e,r),this.name=this.constructor.name}get[Symbol.toStringTag](){return this.constructor.name}},p=class extends N{};var c=class t{static create(e){return new t(e)}static async race(e){let r=new Set;try{let o=e.map(n=>n instanceof t?(n.#n&&r.add(n),n.valueOrThrow()):n);return await Promise.race(o)}finally{for(let o of r)o.reject(new Error(\"Timeout cleared\"))}}#e=!1;#r=!1;#o;#t;#a=new Promise(e=>{this.#t=e});#n;#i;constructor(e){e&&e.timeout>0&&(this.#i=new p(e.message),this.#n=setTimeout(()=>{this.reject(this.#i)},e.timeout))}#l(e){clearTimeout(this.#n),this.#o=e,this.#t()}resolve(e){this.#r||this.#e||(this.#e=!0,this.#l(e))}reject(e){this.#r||this.#e||(this.#r=!0,this.#l(e))}resolved(){return this.#e}finished(){return this.#e||this.#r}value(){return this.#o}#s;valueOrThrow(){return this.#s||(this.#s=(async()=>{if(await this.#a,this.#r)throw this.#o;return this.#o})()),this.#s}};var L=new Map,F=t=>{let e=L.get(t);return e||(e=new Function(`return ${t}`)(),L.set(t,e),e)};var x={};l(x,{ariaQuerySelector:()=>G,ariaQuerySelectorAll:()=>b});var G=(t,e)=>globalThis.__ariaQuerySelector(t,e),b=async function*(t,e){yield*await globalThis.__ariaQuerySelectorAll(t,e)};var E={};l(E,{cssQuerySelector:()=>K,cssQuerySelectorAll:()=>Z});var K=(t,e)=>t.querySelector(e),Z=function(t,e){return t.querySelectorAll(e)};var A={};l(A,{customQuerySelectors:()=>P});var v=class{#e=new Map;register(e,r){if(!r.queryOne&&r.queryAll){let o=r.queryAll;r.queryOne=(n,i)=>{for(let s of o(n,i))return s;return null}}else if(r.queryOne&&!r.queryAll){let o=r.queryOne;r.queryAll=(n,i)=>{let s=o(n,i);return s?[s]:[]}}else if(!r.queryOne||!r.queryAll)throw new Error(\"At least one query method must be defined.\");this.#e.set(e,{querySelector:r.queryOne,querySelectorAll:r.queryAll})}unregister(e){this.#e.delete(e)}get(e){return this.#e.get(e)}clear(){this.#e.clear()}},P=new v;var R={};l(R,{pierceQuerySelector:()=>ee,pierceQuerySelectorAll:()=>te});var ee=(t,e)=>{let r=null,o=n=>{let i=document.createTreeWalker(n,NodeFilter.SHOW_ELEMENT);do{let s=i.currentNode;s.shadowRoot&&o(s.shadowRoot),!(s instanceof ShadowRoot)&&s!==n&&!r&&s.matches(e)&&(r=s)}while(!r&&i.nextNode())};return t instanceof Document&&(t=t.documentElement),o(t),r},te=(t,e)=>{let r=[],o=n=>{let i=document.createTreeWalker(n,NodeFilter.SHOW_ELEMENT);do{let s=i.currentNode;s.shadowRoot&&o(s.shadowRoot),!(s instanceof ShadowRoot)&&s!==n&&s.matches(e)&&r.push(s)}while(i.nextNode())};return t instanceof Document&&(t=t.documentElement),o(t),r};var u=(t,e)=>{if(!t)throw new Error(e)};var y=class{#e;#r;#o;#t;constructor(e,r){this.#e=e,this.#r=r}async start(){let e=this.#t=c.create(),r=await this.#e();if(r){e.resolve(r);return}this.#o=new MutationObserver(async()=>{let o=await this.#e();o&&(e.resolve(o),await this.stop())}),this.#o.observe(this.#r,{childList:!0,subtree:!0,attributes:!0})}async stop(){u(this.#t,\"Polling never started.\"),this.#t.finished()||this.#t.reject(new Error(\"Polling stopped\")),this.#o&&(this.#o.disconnect(),this.#o=void 0)}result(){return u(this.#t,\"Polling never started.\"),this.#t.valueOrThrow()}},w=class{#e;#r;constructor(e){this.#e=e}async start(){let e=this.#r=c.create(),r=await this.#e();if(r){e.resolve(r);return}let o=async()=>{if(e.finished())return;let n=await this.#e();if(!n){window.requestAnimationFrame(o);return}e.resolve(n),await this.stop()};window.requestAnimationFrame(o)}async stop(){u(this.#r,\"Polling never started.\"),this.#r.finished()||this.#r.reject(new Error(\"Polling stopped\"))}result(){return u(this.#r,\"Polling never started.\"),this.#r.valueOrThrow()}},T=class{#e;#r;#o;#t;constructor(e,r){this.#e=e,this.#r=r}async start(){let e=this.#t=c.create(),r=await this.#e();if(r){e.resolve(r);return}this.#o=setInterval(async()=>{let o=await this.#e();o&&(e.resolve(o),await this.stop())},this.#r)}async stop(){u(this.#t,\"Polling never started.\"),this.#t.finished()||this.#t.reject(new Error(\"Polling stopped\")),this.#o&&(clearInterval(this.#o),this.#o=void 0)}result(){return u(this.#t,\"Polling never started.\"),this.#t.valueOrThrow()}};var _={};l(_,{PCombinator:()=>H,pQuerySelector:()=>fe,pQuerySelectorAll:()=>$});var a=class{static async*map(e,r){for await(let o of e)yield await r(o)}static async*flatMap(e,r){for await(let o of e)yield*r(o)}static async collect(e){let r=[];for await(let o of e)r.push(o);return r}static async first(e){for await(let r of e)return r}};var C={};l(C,{textQuerySelectorAll:()=>m});var re=new Set([\"checkbox\",\"image\",\"radio\"]),oe=t=>t instanceof HTMLSelectElement||t instanceof HTMLTextAreaElement||t instanceof HTMLInputElement&&!re.has(t.type),ne=new Set([\"SCRIPT\",\"STYLE\"]),f=t=>!ne.has(t.nodeName)&&!document.head?.contains(t),I=new WeakMap,j=t=>{for(;t;)I.delete(t),t instanceof ShadowRoot?t=t.host:t=t.parentNode},W=new WeakSet,se=new MutationObserver(t=>{for(let e of t)j(e.target)}),d=t=>{let e=I.get(t);if(e||(e={full:\"\",immediate:[]},!f(t)))return e;let r=\"\";if(oe(t))e.full=t.value,e.immediate.push(t.value),t.addEventListener(\"input\",o=>{j(o.target)},{once:!0,capture:!0});else{for(let o=t.firstChild;o;o=o.nextSibling){if(o.nodeType===Node.TEXT_NODE){e.full+=o.nodeValue??\"\",r+=o.nodeValue??\"\";continue}r&&e.immediate.push(r),r=\"\",o.nodeType===Node.ELEMENT_NODE&&(e.full+=d(o).full)}r&&e.immediate.push(r),t instanceof Element&&t.shadowRoot&&(e.full+=d(t.shadowRoot).full),W.has(t)||(se.observe(t,{childList:!0,characterData:!0,subtree:!0}),W.add(t))}return I.set(t,e),e};var m=function*(t,e){let r=!1;for(let o of t.childNodes)if(o instanceof Element&&f(o)){let n;o.shadowRoot?n=m(o.shadowRoot,e):n=m(o,e);for(let i of n)yield i,r=!0}r||t instanceof Element&&f(t)&&d(t).full.includes(e)&&(yield t)};var k={};l(k,{checkVisibility:()=>le,pierce:()=>S,pierceAll:()=>O});var ie=[\"hidden\",\"collapse\"],le=(t,e)=>{if(!t)return e===!1;if(e===void 0)return t;let r=t.nodeType===Node.TEXT_NODE?t.parentElement:t,o=window.getComputedStyle(r),n=o&&!ie.includes(o.visibility)&&!ae(r);return e===n?t:!1};function ae(t){let e=t.getBoundingClientRect();return e.width===0||e.height===0}var ce=t=>\"shadowRoot\"in t&&t.shadowRoot instanceof ShadowRoot;function*S(t){ce(t)?yield t.shadowRoot:yield t}function*O(t){t=S(t).next().value,yield t;let e=[document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT)];for(let r of e){let o;for(;o=r.nextNode();)o.shadowRoot&&(yield o.shadowRoot,e.push(document.createTreeWalker(o.shadowRoot,NodeFilter.SHOW_ELEMENT)))}}var Q={};l(Q,{xpathQuerySelectorAll:()=>q});var q=function*(t,e,r=-1){let n=(t.ownerDocument||document).evaluate(e,t,null,XPathResult.ORDERED_NODE_ITERATOR_TYPE),i=[],s;for(;(s=n.iterateNext())&&(i.push(s),!(r&&i.length===r)););for(let h=0;h<i.length;h++)s=i[h],yield s,delete i[h]};var ue=/[-\\w\\P{ASCII}*]/u,H=(r=>(r.Descendent=\">>>\",r.Child=\">>>>\",r))(H||{}),V=t=>\"querySelectorAll\"in t,M=class{#e;#r=[];#o=void 0;elements;constructor(e,r){this.elements=[e],this.#e=r,this.#t()}async run(){if(typeof this.#o==\"string\")switch(this.#o.trimStart()){case\":scope\":this.#t();break}for(;this.#o!==void 0;this.#t()){let e=this.#o;typeof e==\"string\"?e[0]&&ue.test(e[0])?this.elements=a.flatMap(this.elements,async function*(r){V(r)&&(yield*r.querySelectorAll(e))}):this.elements=a.flatMap(this.elements,async function*(r){if(!r.parentElement){if(!V(r))return;yield*r.querySelectorAll(e);return}let o=0;for(let n of r.parentElement.children)if(++o,n===r)break;yield*r.parentElement.querySelectorAll(`:scope>:nth-child(${o})${e}`)}):this.elements=a.flatMap(this.elements,async function*(r){switch(e.name){case\"text\":yield*m(r,e.value);break;case\"xpath\":yield*q(r,e.value);break;case\"aria\":yield*b(r,e.value);break;default:let o=P.get(e.name);if(!o)throw new Error(`Unknown selector type: ${e.name}`);yield*o.querySelectorAll(r,e.value)}})}}#t(){if(this.#r.length!==0){this.#o=this.#r.shift();return}if(this.#e.length===0){this.#o=void 0;return}let e=this.#e.shift();switch(e){case\">>>>\":{this.elements=a.flatMap(this.elements,S),this.#t();break}case\">>>\":{this.elements=a.flatMap(this.elements,O),this.#t();break}default:this.#r=e,this.#t();break}}},D=class{#e=new WeakMap;calculate(e,r=[]){if(e===null)return r;e instanceof ShadowRoot&&(e=e.host);let o=this.#e.get(e);if(o)return[...o,...r];let n=0;for(let s=e.previousSibling;s;s=s.previousSibling)++n;let i=this.calculate(e.parentNode,[n]);return this.#e.set(e,i),[...i,...r]}},U=(t,e)=>{if(t.length+e.length===0)return 0;let[r=-1,...o]=t,[n=-1,...i]=e;return r===n?U(o,i):r<n?-1:1},de=async function*(t){let e=new Set;for await(let o of t)e.add(o);let r=new D;yield*[...e.values()].map(o=>[o,r.calculate(o)]).sort(([,o],[,n])=>U(o,n)).map(([o])=>o)},$=function(t,e){let r=JSON.parse(e);if(r.some(o=>{let n=0;return o.some(i=>(typeof i==\"string\"?++n:n=0,n>1))}))throw new Error(\"Multiple deep combinators found in sequence.\");return de(a.flatMap(r,o=>{let n=new M(t,o);return n.run(),n.elements}))},fe=async function(t,e){for await(let r of $(t,e))return r;return null};var me=Object.freeze({...x,...A,...R,..._,...C,...k,...Q,...E,Deferred:c,createFunction:F,createTextContent:d,IntervalPoller:T,isSuitableNodeForTextMatching:f,MutationPoller:y,RAFPoller:w}),he=me;\n";
12
12
  //# sourceMappingURL=injected.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"injected.js","sourceRoot":"","sources":["../../../../src/generated/injected.ts"],"names":[],"mappings":";;;AAAA;;;;;;GAMG;AACU,QAAA,MAAM,GAAG,y/SAAy/S,CAAC"}
1
+ {"version":3,"file":"injected.js","sourceRoot":"","sources":["../../../../src/generated/injected.ts"],"names":[],"mappings":";;;AAAA;;;;;;GAMG;AACU,QAAA,MAAM,GAAG,0/SAA0/S,CAAC"}
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * @internal
3
3
  */
4
- export declare const packageVersion = "23.5.0";
4
+ export declare const packageVersion = "23.6.1";
5
5
  //# sourceMappingURL=version.d.ts.map
@@ -4,5 +4,5 @@ exports.packageVersion = void 0;
4
4
  /**
5
5
  * @internal
6
6
  */
7
- exports.packageVersion = '23.5.0';
7
+ exports.packageVersion = '23.6.1';
8
8
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ARIAQuerySelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/ARIAQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd;;WAEG;QACH,mBAAmB,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC;QACxE;;WAEG;QACH,sBAAsB,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC;KACvE;CACF;AAED,eAAO,MAAM,iBAAiB,SACtB,IAAI,YACA,MAAM,KACf,QAAQ,IAAI,GAAG,IAAI,CAGrB,CAAC;AACF,eAAO,MAAM,oBAAoB,SACzB,IAAI,YACA,MAAM,KACf,cAAc,IAAI,CAMpB,CAAC"}
1
+ {"version":3,"file":"ARIAQuerySelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/ARIAQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd;;WAEG;QACH,mBAAmB,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC;QACxE;;WAEG;QACH,sBAAsB,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC;KACvE;CACF;AAED,eAAO,MAAM,iBAAiB,SACtB,IAAI,YACA,MAAM,KACf,OAAO,CAAC,IAAI,GAAG,IAAI,CAGrB,CAAC;AACF,eAAO,MAAM,oBAAoB,SACzB,IAAI,YACA,MAAM,KACf,aAAa,CAAC,IAAI,CAMpB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"CSSSelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/CSSSelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,eAAO,MAAM,gBAAgB,SACrB,IAAI,YACA,MAAM,KACf,OAAO,GAAG,IAGZ,CAAC;AACF,eAAO,MAAM,mBAAmB,SACxB,IAAI,YACA,MAAM,KACf,SAAS,OAAO,CAGlB,CAAC"}
1
+ {"version":3,"file":"CSSSelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/CSSSelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,eAAO,MAAM,gBAAgB,SACrB,IAAI,YACA,MAAM,KACf,OAAO,GAAG,IAGZ,CAAC;AACF,eAAO,MAAM,mBAAmB,SACxB,IAAI,YACA,MAAM,KACf,QAAQ,CAAC,OAAO,CAGlB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"PQuerySelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/PQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,oBAAoB,CAAC;AAW1D;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AACjC;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AACD;;GAEG;AACH,0BAAkB,WAAW;IAC3B,UAAU,QAAQ;IAClB,KAAK,SAAS;CACf;AACD;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,KAAK,CAAC,WAAW,GAAG,eAAe,CAAC,CAAC;AACrE;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,iBAAiB,GAAG,WAAW,CAAC,CAAC;AACtE;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG,gBAAgB,EAAE,CAAC;AAoMtD;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,SACtB,IAAI,YACA,MAAM,KACf,kBAAkB,IAAI,CA4BxB,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,SACnB,IAAI,YACA,MAAM,KACf,QAAQ,IAAI,GAAG,IAAI,CAKrB,CAAC"}
1
+ {"version":3,"file":"PQuerySelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/PQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,oBAAoB,CAAC;AAW1D;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AACjC;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AACD;;GAEG;AACH,0BAAkB,WAAW;IAC3B,UAAU,QAAQ;IAClB,KAAK,SAAS;CACf;AACD;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,KAAK,CAAC,WAAW,GAAG,eAAe,CAAC,CAAC;AACrE;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,iBAAiB,GAAG,WAAW,CAAC,CAAC;AACtE;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG,gBAAgB,EAAE,CAAC;AAoMtD;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,SACtB,IAAI,YACA,MAAM,KACf,iBAAiB,CAAC,IAAI,CA4BxB,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,SACnB,IAAI,YACA,MAAM,KACf,OAAO,CAAC,IAAI,GAAG,IAAI,CAKrB,CAAC"}
@@ -12,7 +12,7 @@ const CustomQuerySelector_js_1 = require("./CustomQuerySelector.js");
12
12
  const TextQuerySelector_js_1 = require("./TextQuerySelector.js");
13
13
  const util_js_1 = require("./util.js");
14
14
  const XPathQuerySelector_js_1 = require("./XPathQuerySelector.js");
15
- const IDENT_TOKEN_START = /[-\w\P{ASCII}*]/;
15
+ const IDENT_TOKEN_START = /[-\w\P{ASCII}*]/u;
16
16
  const isQueryableNode = (node) => {
17
17
  return 'querySelectorAll' in node;
18
18
  };
@@ -1 +1 @@
1
- {"version":3,"file":"PQuerySelector.js","sourceRoot":"","sources":["../../../../src/injected/PQuerySelector.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"PQuerySelector.js","sourceRoot":"","sources":["../../../../src/injected/PQuerySelector.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"TextQuerySelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/TextQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,SACzB,IAAI,YACA,MAAM,KACf,UAAU,OAAO,CA0BnB,CAAC"}
1
+ {"version":3,"file":"TextQuerySelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/TextQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,SACzB,IAAI,YACA,MAAM,KACf,SAAS,CAAC,OAAO,CA0BnB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"XPathQuerySelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/XPathQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB,SAC1B,IAAI,YACA,MAAM,0BAEf,SAAS,IAAI,CAyBf,CAAC"}
1
+ {"version":3,"file":"XPathQuerySelector.d.ts","sourceRoot":"","sources":["../../../../src/injected/XPathQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB,SAC1B,IAAI,YACA,MAAM,0BAEf,QAAQ,CAAC,IAAI,CAyBf,CAAC"}
@@ -12,7 +12,7 @@ import * as PQuerySelector from './PQuerySelector.js';
12
12
  */
13
13
  declare const PuppeteerUtil: Readonly<{
14
14
  Deferred: typeof Deferred;
15
- createFunction: (functionValue: string) => (...args: unknown[]) => unknown;
15
+ createFunction: (functionValue: string) => ((...args: unknown[]) => unknown);
16
16
  createTextContent: (root: Node) => import("./TextContent.js").TextContent;
17
17
  IntervalPoller: typeof IntervalPoller;
18
18
  isSuitableNodeForTextMatching: (node: Node) => boolean;
@@ -23,15 +23,15 @@ declare const PuppeteerUtil: Readonly<{
23
23
  xpathQuerySelectorAll: (root: Node, selector: string, maxResults?: number) => Iterable<Node>;
24
24
  pierce(root: Node): IterableIterator<Node | ShadowRoot>;
25
25
  pierceAll(root: Node): IterableIterator<Node | ShadowRoot>;
26
- checkVisibility: (node: Node | null, visible?: boolean | undefined) => boolean | Node;
27
- textQuerySelectorAll: (root: Node, selector: string) => Generator<Element, any, unknown>;
26
+ checkVisibility: (node: Node | null, visible?: boolean) => Node | boolean;
27
+ textQuerySelectorAll: (root: Node, selector: string) => Generator<Element>;
28
28
  PCombinator: typeof PQuerySelector.PCombinator;
29
29
  pQuerySelectorAll: (root: Node, selector: string) => import("../index.js").AwaitableIterable<Node>;
30
30
  pQuerySelector: (root: Node, selector: string) => Promise<Node | null>;
31
31
  pierceQuerySelector: (root: Node, selector: string) => Element | null;
32
32
  pierceQuerySelectorAll: (element: Node, selector: string) => Element[];
33
33
  customQuerySelectors: {
34
- "__#55844@#selectors": Map<string, CustomQuerySelectors.CustomQuerySelector>;
34
+ "__#55769@#selectors": Map<string, CustomQuerySelectors.CustomQuerySelector>;
35
35
  register(name: string, handler: import("../index.js").CustomQueryHandler): void;
36
36
  unregister(name: string): void;
37
37
  get(name: string): CustomQuerySelectors.CustomQuerySelector | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"injected.d.ts","sourceRoot":"","sources":["../../../../src/injected/injected.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAC,QAAQ,EAAC,MAAM,qBAAqB,CAAC;AAK7C,OAAO,KAAK,oBAAoB,MAAM,0BAA0B,CAAC;AAEjE,OAAO,EAAC,cAAc,EAAE,cAAc,EAAE,SAAS,EAAC,MAAM,aAAa,CAAC;AACtE,OAAO,KAAK,cAAc,MAAM,qBAAqB,CAAC;AAStD;;GAEG;AACH,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBjB,CAAC;AAEH;;GAEG;AACH,KAAK,aAAa,GAAG,OAAO,aAAa,CAAC;AAE1C;;GAEG;AACH,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"injected.d.ts","sourceRoot":"","sources":["../../../../src/injected/injected.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAC,QAAQ,EAAC,MAAM,qBAAqB,CAAC;AAK7C,OAAO,KAAK,oBAAoB,MAAM,0BAA0B,CAAC;AAEjE,OAAO,EAAC,cAAc,EAAE,cAAc,EAAE,SAAS,EAAC,MAAM,aAAa,CAAC;AACtE,OAAO,KAAK,cAAc,MAAM,qBAAqB,CAAC;AAStD;;GAEG;AACH,QAAA,MAAM,aAAa;;iDAhBqB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCzC,CAAC;AAEH;;GAEG;AACH,KAAK,aAAa,GAAG,OAAO,aAAa,CAAC;AAE1C;;GAEG;AACH,eAAe,aAAa,CAAC"}
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.pierceAll = exports.pierce = exports.checkVisibility = void 0;
3
+ exports.checkVisibility = void 0;
4
+ exports.pierce = pierce;
5
+ exports.pierceAll = pierceAll;
4
6
  /**
5
7
  * @license
6
8
  * Copyright 2024 Google Inc.
@@ -43,7 +45,6 @@ function* pierce(root) {
43
45
  yield root;
44
46
  }
45
47
  }
46
- exports.pierce = pierce;
47
48
  /**
48
49
  * @internal
49
50
  */
@@ -62,5 +63,4 @@ function* pierceAll(root) {
62
63
  }
63
64
  }
64
65
  }
65
- exports.pierceAll = pierceAll;
66
66
  //# sourceMappingURL=util.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"util.js","sourceRoot":"","sources":["../../../../src/injected/util.ts"],"names":[],"mappings":";;;AAAA;;;;GAIG;AACH,MAAM,wBAAwB,GAAG,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;AAExD;;GAEG;AACI,MAAM,eAAe,GAAG,CAC7B,IAAiB,EACjB,OAAiB,EACD,EAAE;IAClB,IAAI,CAAC,IAAI,EAAE,CAAC;QACV,OAAO,OAAO,KAAK,KAAK,CAAC;IAC3B,CAAC;IACD,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC;IACd,CAAC;IACD,MAAM,OAAO,GAAG,CACd,IAAI,CAAC,QAAQ,KAAK,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAClD,CAAC;IAEb,MAAM,KAAK,GAAG,MAAM,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC/C,MAAM,SAAS,GACb,KAAK;QACL,CAAC,wBAAwB,CAAC,QAAQ,CAAC,KAAK,CAAC,UAAU,CAAC;QACpD,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAC/B,OAAO,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;AAC9C,CAAC,CAAC;AApBW,QAAA,eAAe,mBAoB1B;AAEF,SAAS,kBAAkB,CAAC,OAAgB;IAC1C,MAAM,IAAI,GAAG,OAAO,CAAC,qBAAqB,EAAE,CAAC;IAC7C,OAAO,IAAI,CAAC,KAAK,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC;AAC/C,CAAC;AAED,MAAM,aAAa,GAAG,CAAC,IAAU,EAA2C,EAAE;IAC5E,OAAO,YAAY,IAAI,IAAI,IAAI,IAAI,CAAC,UAAU,YAAY,UAAU,CAAC;AACvE,CAAC,CAAC;AAEF;;GAEG;AACH,QAAe,CAAC,CAAC,MAAM,CAAC,IAAU;IAChC,IAAI,aAAa,CAAC,IAAI,CAAC,EAAE,CAAC;QACxB,MAAM,IAAI,CAAC,UAAU,CAAC;IACxB,CAAC;SAAM,CAAC;QACN,MAAM,IAAI,CAAC;IACb,CAAC;AACH,CAAC;AAND,wBAMC;AAED;;GAEG;AACH,QAAe,CAAC,CAAC,SAAS,CAAC,IAAU;IACnC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC;IACjC,MAAM,IAAI,CAAC;IACX,MAAM,OAAO,GAAG,CAAC,QAAQ,CAAC,gBAAgB,CAAC,IAAI,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC3E,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE,CAAC;QAC7B,IAAI,IAAoB,CAAC;QACzB,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,EAAoB,CAAC,EAAE,CAAC;YACpD,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC;gBACrB,SAAS;YACX,CAAC;YACD,MAAM,IAAI,CAAC,UAAU,CAAC;YACtB,OAAO,CAAC,IAAI,CACV,QAAQ,CAAC,gBAAgB,CAAC,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,YAAY,CAAC,CACpE,CAAC;QACJ,CAAC;IACH,CAAC;AACH,CAAC;AAhBD,8BAgBC"}
1
+ {"version":3,"file":"util.js","sourceRoot":"","sources":["../../../../src/injected/util.ts"],"names":[],"mappings":";;;AA4CA,wBAMC;AAKD,8BAgBC;AAvED;;;;GAIG;AACH,MAAM,wBAAwB,GAAG,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;AAExD;;GAEG;AACI,MAAM,eAAe,GAAG,CAC7B,IAAiB,EACjB,OAAiB,EACD,EAAE;IAClB,IAAI,CAAC,IAAI,EAAE,CAAC;QACV,OAAO,OAAO,KAAK,KAAK,CAAC;IAC3B,CAAC;IACD,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC;IACd,CAAC;IACD,MAAM,OAAO,GAAG,CACd,IAAI,CAAC,QAAQ,KAAK,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAClD,CAAC;IAEb,MAAM,KAAK,GAAG,MAAM,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC/C,MAAM,SAAS,GACb,KAAK;QACL,CAAC,wBAAwB,CAAC,QAAQ,CAAC,KAAK,CAAC,UAAU,CAAC;QACpD,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAC/B,OAAO,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;AAC9C,CAAC,CAAC;AApBW,QAAA,eAAe,mBAoB1B;AAEF,SAAS,kBAAkB,CAAC,OAAgB;IAC1C,MAAM,IAAI,GAAG,OAAO,CAAC,qBAAqB,EAAE,CAAC;IAC7C,OAAO,IAAI,CAAC,KAAK,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC;AAC/C,CAAC;AAED,MAAM,aAAa,GAAG,CAAC,IAAU,EAA2C,EAAE;IAC5E,OAAO,YAAY,IAAI,IAAI,IAAI,IAAI,CAAC,UAAU,YAAY,UAAU,CAAC;AACvE,CAAC,CAAC;AAEF;;GAEG;AACH,QAAe,CAAC,CAAC,MAAM,CAAC,IAAU;IAChC,IAAI,aAAa,CAAC,IAAI,CAAC,EAAE,CAAC;QACxB,MAAM,IAAI,CAAC,UAAU,CAAC;IACxB,CAAC;SAAM,CAAC;QACN,MAAM,IAAI,CAAC;IACb,CAAC;AACH,CAAC;AAED;;GAEG;AACH,QAAe,CAAC,CAAC,SAAS,CAAC,IAAU;IACnC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC;IACjC,MAAM,IAAI,CAAC;IACX,MAAM,OAAO,GAAG,CAAC,QAAQ,CAAC,gBAAgB,CAAC,IAAI,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC3E,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE,CAAC;QAC7B,IAAI,IAAoB,CAAC;QACzB,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,EAAoB,CAAC,EAAE,CAAC;YACpD,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC;gBACrB,SAAS;YACX,CAAC;YACD,MAAM,IAAI,CAAC,UAAU,CAAC;YACtB,OAAO,CAAC,IAAI,CACV,QAAQ,CAAC,gBAAgB,CAAC,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,YAAY,CAAC,CACpE,CAAC;QACJ,CAAC;IACH,CAAC;AACH,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"BrowserLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/BrowserLauncher.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"BrowserLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/BrowserLauncher.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"BrowserLauncher.js","sourceRoot":"","sources":["../../../../src/node/BrowserLauncher.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"BrowserLauncher.js","sourceRoot":"","sources":["../../../../src/node/BrowserLauncher.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"ChromeLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/ChromeLauncher.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,mBAAmB,CAAC;AAI/C,OAAO,EAAC,eAAe,EAAE,KAAK,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AAC9E,OAAO,KAAK,EACV,4BAA4B,EAC5B,oBAAoB,EACpB,0BAA0B,EAC3B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAGtD;;GAEG;AACH,qBAAa,cAAe,SAAQ,eAAe;gBACrC,SAAS,EAAE,aAAa;IAI3B,MAAM,CAAC,OAAO,GAAE,0BAA+B,GAAG,OAAO,CAAC,OAAO,CAAC;IAwB3E;;OAEG;IACY,sBAAsB,CACnC,OAAO,GAAE,0BAA+B,GACvC,OAAO,CAAC,kBAAkB,CAAC;IA0E9B;;OAEG;IACY,gBAAgB,CAC7B,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC,GACtB,OAAO,CAAC,IAAI,CAAC;IAWP,WAAW,CAAC,OAAO,GAAE,4BAAiC,GAAG,MAAM,EAAE;IAgHjE,cAAc,CACrB,OAAO,CAAC,EAAE,oBAAoB,EAC9B,QAAQ,CAAC,EAAE,OAAO,GAAG,OAAO,GAC3B,MAAM;CAUV;AAiBD;;;;;;;;;;;GAWG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,MAAM,EAAO,GAAG,MAAM,EAAE,CAW1E;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAW3E"}
1
+ {"version":3,"file":"ChromeLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/ChromeLauncher.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,mBAAmB,CAAC;AAI/C,OAAO,EAAC,eAAe,EAAE,KAAK,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AAC9E,OAAO,KAAK,EACV,4BAA4B,EAC5B,oBAAoB,EACpB,0BAA0B,EAC3B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAGtD;;GAEG;AACH,qBAAa,cAAe,SAAQ,eAAe;gBACrC,SAAS,EAAE,aAAa;IAI3B,MAAM,CAAC,OAAO,GAAE,0BAA+B,GAAG,OAAO,CAAC,OAAO,CAAC;IAwB3E;;OAEG;IACY,sBAAsB,CACnC,OAAO,GAAE,0BAA+B,GACvC,OAAO,CAAC,kBAAkB,CAAC;IA0E9B;;OAEG;IACY,gBAAgB,CAC7B,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC,GACtB,OAAO,CAAC,IAAI,CAAC;IAWP,WAAW,CAAC,OAAO,GAAE,4BAAiC,GAAG,MAAM,EAAE;IA+GjE,cAAc,CACrB,OAAO,CAAC,EAAE,oBAAoB,EAC9B,QAAQ,CAAC,EAAE,OAAO,GAAG,OAAO,GAC3B,MAAM;CAUV;AAiBD;;;;;;;;;;;GAWG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,MAAM,EAAO,GAAG,MAAM,EAAE,CAW1E;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAW3E"}
@@ -8,7 +8,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  return (mod && mod.__esModule) ? mod : { "default": mod };
9
9
  };
10
10
  Object.defineProperty(exports, "__esModule", { value: true });
11
- exports.removeMatchingFlags = exports.getFeatures = exports.ChromeLauncher = void 0;
11
+ exports.ChromeLauncher = void 0;
12
+ exports.getFeatures = getFeatures;
13
+ exports.removeMatchingFlags = removeMatchingFlags;
12
14
  const promises_1 = require("fs/promises");
13
15
  const os_1 = __importDefault(require("os"));
14
16
  const path_1 = __importDefault(require("path"));
@@ -155,7 +157,6 @@ class ChromeLauncher extends BrowserLauncher_js_1.BrowserLauncher {
155
157
  '--disable-breakpad',
156
158
  '--disable-client-side-phishing-detection',
157
159
  '--disable-component-extensions-with-background-pages',
158
- '--disable-component-update',
159
160
  '--disable-default-apps',
160
161
  '--disable-dev-shm-usage',
161
162
  '--disable-extensions',
@@ -247,7 +248,6 @@ function getFeatures(flag, options = []) {
247
248
  return s;
248
249
  });
249
250
  }
250
- exports.getFeatures = getFeatures;
251
251
  /**
252
252
  * Removes all elements in-place from the given string array
253
253
  * that match the given command-line flag.
@@ -267,5 +267,4 @@ function removeMatchingFlags(array, flag) {
267
267
  }
268
268
  return array;
269
269
  }
270
- exports.removeMatchingFlags = removeMatchingFlags;
271
270
  //# sourceMappingURL=ChromeLauncher.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ChromeLauncher.js","sourceRoot":"","sources":["../../../../src/node/ChromeLauncher.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ChromeLauncher.js","sourceRoot":"","sources":["../../../../src/node/ChromeLauncher.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;AAkTH,kCAWC;AAQD,kDAWC;AA9UD,0CAAoC;AACpC,4CAAoB;AACpB,gDAAwB;AAExB,kDAI6B;AAG7B,+CAA6C;AAC7C,iDAAyC;AAEzC,6DAA8E;AAO9E,wCAAgC;AAEhC;;GAEG;AACH,MAAa,cAAe,SAAQ,oCAAe;IACjD,YAAY,SAAwB;QAClC,KAAK,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;IAC7B,CAAC;IAEQ,MAAM,CAAC,UAAsC,EAAE;QACtD,IACE,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,QAAQ,KAAK,MAAM;YAChD,OAAO,CAAC,QAAQ,KAAK,QAAQ;YAC7B,OAAO,CAAC,IAAI,KAAK,KAAK,EACtB,CAAC;YACD,MAAM,IAAI,GAAG,YAAE,CAAC,IAAI,EAAE,CAAC;YACvB,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC;gBACrC,OAAO,CAAC,IAAI,CACV;oBACE,yBAAyB;oBACzB,8CAA8C;oBAC9C,kFAAkF;oBAClF,oFAAoF;oBACpF,iFAAiF;oBACjF,oCAAoC;iBACrC,CAAC,IAAI,CAAC,MAAM,CAAC,CACf,CAAC;YACJ,CAAC;QACH,CAAC;QAED,OAAO,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAC/B,CAAC;IAED;;OAEG;IACM,KAAK,CAAC,sBAAsB,CACnC,UAAsC,EAAE;QAExC,MAAM,EACJ,iBAAiB,GAAG,KAAK,EACzB,IAAI,GAAG,EAAE,EACT,IAAI,GAAG,KAAK,EACZ,aAAa,EACb,OAAO,EACP,cAAc,GACf,GAAG,OAAO,CAAC;QAEZ,MAAM,eAAe,GAAG,EAAE,CAAC;QAC3B,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACvB,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC;QACrD,CAAC;aAAM,IAAI,KAAK,CAAC,OAAO,CAAC,iBAAiB,CAAC,EAAE,CAAC;YAC5C,eAAe,CAAC,IAAI,CAClB,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;gBACxC,OAAO,CAAC,iBAAiB,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC1C,CAAC,CAAC,CACH,CAAC;QACJ,CAAC;aAAM,CAAC;YACN,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;QAChC,CAAC;QAED,IACE,CAAC,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE;YAC/B,OAAO,QAAQ,CAAC,UAAU,CAAC,qBAAqB,CAAC,CAAC;QACpD,CAAC,CAAC,EACF,CAAC;YACD,IAAI,IAAI,EAAE,CAAC;gBACT,IAAA,kBAAM,EACJ,CAAC,aAAa,EACd,2EAA2E,CAC5E,CAAC;gBACF,eAAe,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC;YAClD,CAAC;iBAAM,CAAC;gBACN,eAAe,CAAC,IAAI,CAAC,2BAA2B,aAAa,IAAI,CAAC,EAAE,CAAC,CAAC;YACxE,CAAC;QACH,CAAC;QAED,IAAI,iBAAiB,GAAG,KAAK,CAAC;QAE9B,sEAAsE;QACtE,gEAAgE;QAChE,IAAI,gBAAgB,GAAG,eAAe,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE;YACrD,OAAO,GAAG,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC;QAC3C,CAAC,CAAC,CAAC;QACH,IAAI,gBAAgB,GAAG,CAAC,EAAE,CAAC;YACzB,iBAAiB,GAAG,IAAI,CAAC;YACzB,eAAe,CAAC,IAAI,CAClB,mBAAmB,MAAM,IAAA,kBAAO,EAAC,IAAI,CAAC,cAAc,EAAE,CAAC,EAAE,CAC1D,CAAC;YACF,gBAAgB,GAAG,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;QAChD,CAAC;QAED,MAAM,WAAW,GAAG,eAAe,CAAC,gBAAgB,CAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACxE,IAAA,kBAAM,EAAC,OAAO,WAAW,KAAK,QAAQ,EAAE,gCAAgC,CAAC,CAAC;QAE1E,IAAI,gBAAgB,GAAG,cAAc,CAAC;QACtC,IAAI,CAAC,gBAAgB,EAAE,CAAC;YACtB,IAAA,kBAAM,EACJ,OAAO,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,gBAAgB,EAC3C,+EAA+E,CAChF,CAAC;YACF,gBAAgB,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,CAAC,QAAQ,IAAI,IAAI,CAAC,CAAC;QAC5E,CAAC;QAED,OAAO;YACL,cAAc,EAAE,gBAAgB;YAChC,IAAI,EAAE,eAAe;YACrB,iBAAiB;YACjB,WAAW;SACZ,CAAC;IACJ,CAAC;IAED;;OAEG;IACM,KAAK,CAAC,gBAAgB,CAC7B,IAAY,EACZ,IAAuB;QAEvB,IAAI,IAAI,CAAC,MAAM,EAAE,CAAC;YAChB,IAAI,CAAC;gBACH,MAAM,IAAA,UAAE,EAAC,IAAI,CAAC,CAAC;YACjB,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,IAAA,oBAAU,EAAC,KAAK,CAAC,CAAC;gBAClB,MAAM,KAAK,CAAC;YACd,CAAC;QACH,CAAC;IACH,CAAC;IAEQ,WAAW,CAAC,UAAwC,EAAE;QAC7D,+FAA+F;QAE/F,MAAM,oBAAoB,GAAG,WAAW,CACtC,oBAAoB,EACpB,OAAO,CAAC,IAAI,CACb,CAAC;QACF,IAAI,OAAO,CAAC,IAAI,IAAI,oBAAoB,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACpD,mBAAmB,CAAC,OAAO,CAAC,IAAI,EAAE,oBAAoB,CAAC,CAAC;QAC1D,CAAC;QAED,MAAM,oCAAoC,GACxC,OAAO,CAAC,GAAG,CAAC,6CAA6C,CAAC,KAAK,MAAM,CAAC;QAExE,mEAAmE;QACnE,MAAM,gBAAgB,GAAG;YACvB,WAAW;YACX,uDAAuD;YACvD,eAAe;YACf,aAAa;YACb,mBAAmB;YAEnB,GAAG,CAAC,oCAAoC;gBACtC,CAAC,CAAC,EAAE;gBACJ,CAAC,CAAC;oBACE,4BAA4B;oBAC5B,sCAAsC;oBACtC,sDAAsD;oBACtD,yBAAyB;iBAC1B,CAAC;YACN,GAAG,oBAAoB;SACxB,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;YACjB,OAAO,OAAO,KAAK,EAAE,CAAC;QACxB,CAAC,CAAC,CAAC;QAEH,MAAM,mBAAmB,GAAG,WAAW,CAAC,mBAAmB,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;QAC3E,IAAI,OAAO,CAAC,IAAI,IAAI,mBAAmB,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACnD,mBAAmB,CAAC,OAAO,CAAC,IAAI,EAAE,mBAAmB,CAAC,CAAC;QACzD,CAAC;QAED,kEAAkE;QAClE,MAAM,eAAe,GAAG;YACtB,UAAU;YACV,0CAA0C;YAC1C,GAAG,mBAAmB;SACvB,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;YACjB,OAAO,OAAO,KAAK,EAAE,CAAC;QACxB,CAAC,CAAC,CAAC;QAEH,MAAM,eAAe,GAAG;YACtB,0BAA0B;YAC1B,iCAAiC;YACjC,uCAAuC;YACvC,0CAA0C;YAC1C,oBAAoB;YACpB,0CAA0C;YAC1C,sDAAsD;YACtD,wBAAwB;YACxB,yBAAyB;YACzB,sBAAsB;YACtB,wBAAwB;YACxB,oBAAoB;YACpB,mCAAmC;YACnC,0BAA0B;YAC1B,4BAA4B;YAC5B,kCAAkC;YAClC,uCAAuC;YACvC,gBAAgB;YAChB,qBAAqB;YACrB,qBAAqB;YACrB,iCAAiC;YACjC,4BAA4B;YAC5B,0BAA0B;YAC1B,gBAAgB;YAChB,wBAAwB;YACxB,qBAAqB;YACrB,sBAAsB,gBAAgB,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE;YAClD,qBAAqB,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE;SACjD,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;YACb,OAAO,GAAG,KAAK,EAAE,CAAC;QACpB,CAAC,CAAC,CAAC;QACH,MAAM,EACJ,QAAQ,GAAG,KAAK,EAChB,QAAQ,GAAG,CAAC,QAAQ,EACpB,IAAI,GAAG,EAAE,EACT,WAAW,GACZ,GAAG,OAAO,CAAC;QACZ,IAAI,WAAW,EAAE,CAAC;YAChB,eAAe,CAAC,IAAI,CAAC,mBAAmB,cAAI,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;QACvE,CAAC;QACD,IAAI,QAAQ,EAAE,CAAC;YACb,eAAe,CAAC,IAAI,CAAC,+BAA+B,CAAC,CAAC;QACxD,CAAC;QACD,IAAI,QAAQ,EAAE,CAAC;YACb,eAAe,CAAC,IAAI,CAClB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,gBAAgB,EACtD,mBAAmB,EACnB,cAAc,CACf,CAAC;QACJ,CAAC;QACD,IACE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE;YACf,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;QAC7B,CAAC,CAAC,EACF,CAAC;YACD,eAAe,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QACtC,CAAC;QACD,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;QAC9B,OAAO,eAAe,CAAC;IACzB,CAAC;IAEQ,cAAc,CACrB,OAA8B,EAC9B,QAA4B;QAE5B,IAAI,OAAO,EAAE,CAAC;YACZ,OAAO,IAAA,sCAA2B,EAAC;gBACjC,OAAO,EAAE,kBAAiB,CAAC,MAAM;gBACjC,OAAO,EAAE,wCAAwC,CAAC,OAAO,CAAC;aAC3D,CAAC,CAAC;QACL,CAAC;aAAM,CAAC;YACN,OAAO,IAAI,CAAC,qBAAqB,CAAC,QAAQ,CAAC,CAAC;QAC9C,CAAC;IACH,CAAC;CACF;AAzPD,wCAyPC;AAED,SAAS,wCAAwC,CAC/C,OAA6B;IAE7B,QAAQ,OAAO,EAAE,CAAC;QAChB,KAAK,QAAQ;YACX,OAAO,+BAA4B,CAAC,MAAM,CAAC;QAC7C,KAAK,YAAY;YACf,OAAO,+BAA4B,CAAC,GAAG,CAAC;QAC1C,KAAK,aAAa;YAChB,OAAO,+BAA4B,CAAC,IAAI,CAAC;QAC3C,KAAK,eAAe;YAClB,OAAO,+BAA4B,CAAC,MAAM,CAAC;IAC/C,CAAC;AACH,CAAC;AAED;;;;;;;;;;;GAWG;AACH,SAAgB,WAAW,CAAC,IAAY,EAAE,UAAoB,EAAE;IAC9D,OAAO,OAAO;SACX,MAAM,CAAC,CAAC,CAAC,EAAE;QACV,OAAO,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,CAAC;IAC9D,CAAC,CAAC;SACD,GAAG,CAAC,CAAC,CAAC,EAAE;QACP,OAAO,CAAC,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,GAAG,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC;IACxD,CAAC,CAAC;SACD,MAAM,CAAC,CAAC,CAAC,EAAE;QACV,OAAO,CAAC,CAAC;IACX,CAAC,CAAa,CAAC;AACnB,CAAC;AAED;;;;;GAKG;AACH,SAAgB,mBAAmB,CAAC,KAAe,EAAE,IAAY;IAC/D,MAAM,KAAK,GAAG,IAAI,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,CAAC;IACxC,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,OAAO,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC;QACxB,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAE,CAAC,EAAE,CAAC;YAC1B,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACrB,CAAC;aAAM,CAAC;YACN,CAAC,EAAE,CAAC;QACN,CAAC;IACH,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC"}
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  /**
3
2
  * @license
4
3
  * Copyright 2018 Google Inc.
@@ -1 +1 @@
1
- {"version":3,"file":"PipeTransport.d.ts","sourceRoot":"","sources":["../../../../src/node/PipeTransport.ts"],"names":[],"mappings":";AAAA;;;;GAIG;AACH,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AAM1E;;GAEG;AACH,qBAAa,aAAc,YAAW,mBAAmB;;IAOvD,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;gBAGlC,SAAS,EAAE,MAAM,CAAC,cAAc,EAChC,QAAQ,EAAE,MAAM,CAAC,cAAc;IAyBjC,IAAI,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAgC3B,KAAK,IAAI,IAAI;CAId"}
1
+ {"version":3,"file":"PipeTransport.d.ts","sourceRoot":"","sources":["../../../../src/node/PipeTransport.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AAM1E;;GAEG;AACH,qBAAa,aAAc,YAAW,mBAAmB;;IAOvD,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;gBAGlC,SAAS,EAAE,MAAM,CAAC,cAAc,EAChC,QAAQ,EAAE,MAAM,CAAC,cAAc;IA6BjC,IAAI,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAgC3B,KAAK,IAAI,IAAI;CAId"}
@@ -1 +1 @@
1
- {"version":3,"file":"PipeTransport.js","sourceRoot":"","sources":["../../../../src/node/PipeTransport.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"PipeTransport.js","sourceRoot":"","sources":["../../../../src/node/PipeTransport.ts"],"names":[],"mappings":"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"}
@@ -3,7 +3,6 @@
3
3
  * Copyright 2023 Google Inc.
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
- /// <reference types="node" />
7
6
  import { PassThrough } from 'stream';
8
7
  import type { BoundingBox } from '../api/ElementHandle.js';
9
8
  import type { Page } from '../api/Page.js';
@@ -1 +1 @@
1
- {"version":3,"file":"ScreenRecorder.d.ts","sourceRoot":"","sources":["../../../../src/node/ScreenRecorder.ts"],"names":[],"mappings":"AAAA;;;;GAIG;;AAIH,OAAO,EAAC,WAAW,EAAC,MAAM,QAAQ,CAAC;AAiBnC,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACzD,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,gBAAgB,CAAC;AAGzC,OAAO,EAAC,kBAAkB,EAAC,MAAM,uBAAuB,CAAC;AAOzD;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,MAAM,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,qBAAa,cAAe,SAAQ,WAAW;;IAQ7C;;OAEG;gBAED,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,EACd,EAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAC,GAAE,qBAA0B;IAoJhE;;;;OAIG;IAEG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IA6B3B;;OAEG;IACG,CAAC,kBAAkB,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC;CAG5C"}
1
+ {"version":3,"file":"ScreenRecorder.d.ts","sourceRoot":"","sources":["../../../../src/node/ScreenRecorder.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,EAAC,WAAW,EAAC,MAAM,QAAQ,CAAC;AAiBnC,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACzD,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,gBAAgB,CAAC;AAGzC,OAAO,EAAC,kBAAkB,EAAC,MAAM,uBAAuB,CAAC;AAOzD;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,MAAM,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,qBAAa,cAAe,SAAQ,WAAW;;IAQ7C;;OAEG;gBAED,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,EACd,EAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAC,GAAE,qBAA0B;IAoJhE;;;;OAIG;IAEG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IA6B3B;;OAEG;IACY,CAAC,kBAAkB,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC;CAGrD"}
@@ -1 +1 @@
1
- {"version":3,"file":"ScreenRecorder.js","sourceRoot":"","sources":["../../../../src/node/ScreenRecorder.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ScreenRecorder.js","sourceRoot":"","sources":["../../../../src/node/ScreenRecorder.ts"],"names":[],"mappings":"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"}
@@ -5,7 +5,7 @@
5
5
  */
6
6
  export * from './ChromeLauncher.js';
7
7
  export * from './FirefoxLauncher.js';
8
- export * from './LaunchOptions.js';
8
+ export type * from './LaunchOptions.js';
9
9
  export * from './PipeTransport.js';
10
10
  export * from './BrowserLauncher.js';
11
11
  export * from './PuppeteerNode.js';
@@ -1 +1 @@
1
- {"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../../../src/node/node.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC"}
1
+ {"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../../../src/node/node.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,mBAAmB,oBAAoB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC"}
@@ -21,7 +21,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
21
21
  Object.defineProperty(exports, "__esModule", { value: true });
22
22
  __exportStar(require("./ChromeLauncher.js"), exports);
23
23
  __exportStar(require("./FirefoxLauncher.js"), exports);
24
- __exportStar(require("./LaunchOptions.js"), exports);
25
24
  __exportStar(require("./PipeTransport.js"), exports);
26
25
  __exportStar(require("./BrowserLauncher.js"), exports);
27
26
  __exportStar(require("./PuppeteerNode.js"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"node.js","sourceRoot":"","sources":["../../../../src/node/node.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAEH,sDAAoC;AACpC,uDAAqC;AACrC,qDAAmC;AACnC,qDAAmC;AACnC,uDAAqC;AACrC,qDAAmC;AACnC,sDAAoC"}
1
+ {"version":3,"file":"node.js","sourceRoot":"","sources":["../../../../src/node/node.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAEH,sDAAoC;AACpC,uDAAqC;AAErC,qDAAmC;AACnC,uDAAqC;AACrC,qDAAmC;AACnC,sDAAoC"}
@@ -8,7 +8,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  return (mod && mod.__esModule) ? mod : { "default": mod };
9
9
  };
10
10
  Object.defineProperty(exports, "__esModule", { value: true });
11
- exports.rmSync = exports.rm = void 0;
11
+ exports.rm = rm;
12
+ exports.rmSync = rmSync;
12
13
  const fs_1 = __importDefault(require("fs"));
13
14
  const rmOptions = {
14
15
  force: true,
@@ -21,12 +22,10 @@ const rmOptions = {
21
22
  async function rm(path) {
22
23
  await fs_1.default.promises.rm(path, rmOptions);
23
24
  }
24
- exports.rm = rm;
25
25
  /**
26
26
  * @internal
27
27
  */
28
28
  function rmSync(path) {
29
29
  fs_1.default.rmSync(path, rmOptions);
30
30
  }
31
- exports.rmSync = rmSync;
32
31
  //# sourceMappingURL=fs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"fs.js","sourceRoot":"","sources":["../../../../../src/node/util/fs.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;AAEH,4CAAoB;AAEpB,MAAM,SAAS,GAAG;IAChB,KAAK,EAAE,IAAI;IACX,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,CAAC;CACd,CAAC;AAEF;;GAEG;AACI,KAAK,UAAU,EAAE,CAAC,IAAY;IACnC,MAAM,YAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;AACxC,CAAC;AAFD,gBAEC;AAED;;GAEG;AACH,SAAgB,MAAM,CAAC,IAAY;IACjC,YAAE,CAAC,MAAM,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;AAC7B,CAAC;AAFD,wBAEC"}
1
+ {"version":3,"file":"fs.js","sourceRoot":"","sources":["../../../../../src/node/util/fs.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;AAaH,gBAEC;AAKD,wBAEC;AApBD,4CAAoB;AAEpB,MAAM,SAAS,GAAG;IAChB,KAAK,EAAE,IAAI;IACX,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,CAAC;CACd,CAAC;AAEF;;GAEG;AACI,KAAK,UAAU,EAAE,CAAC,IAAY;IACnC,MAAM,YAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;AACxC,CAAC;AAED;;GAEG;AACH,SAAgB,MAAM,CAAC,IAAY;IACjC,YAAE,CAAC,MAAM,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;AAC7B,CAAC"}
@@ -4,27 +4,27 @@
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  export * from './index.js';
7
- import { PuppeteerNode } from './node/PuppeteerNode.js';
7
+ import * as Puppeteer from './index.js';
8
8
  /**
9
9
  * @public
10
10
  */
11
- declare const puppeteer: PuppeteerNode;
11
+ declare const puppeteer: Puppeteer.PuppeteerNode;
12
12
  export declare const
13
13
  /**
14
14
  * @public
15
15
  */
16
- connect: (options: import("./index.js").ConnectOptions) => Promise<import("./index.js").Browser>,
16
+ connect: (options: Puppeteer.ConnectOptions) => Promise<Puppeteer.Browser>,
17
17
  /**
18
18
  * @public
19
19
  */
20
- defaultArgs: (options?: import("./index.js").BrowserLaunchArgumentOptions) => string[],
20
+ defaultArgs: (options?: Puppeteer.BrowserLaunchArgumentOptions) => string[],
21
21
  /**
22
22
  * @public
23
23
  */
24
- executablePath: (channel?: import("./index.js").ChromeReleaseChannel | undefined) => string,
24
+ executablePath: (channel?: Puppeteer.ChromeReleaseChannel) => string,
25
25
  /**
26
26
  * @public
27
27
  */
28
- launch: (options?: import("./index.js").PuppeteerLaunchOptions) => Promise<import("./index.js").Browser>;
28
+ launch: (options?: Puppeteer.PuppeteerLaunchOptions) => Promise<Puppeteer.Browser>;
29
29
  export default puppeteer;
30
30
  //# sourceMappingURL=puppeteer-core.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"puppeteer-core.d.ts","sourceRoot":"","sources":["../../../src/puppeteer-core.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,YAAY,CAAC;AAM3B,OAAO,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;AAStD;;GAEG;AACH,QAAA,MAAM,SAAS,eAEb,CAAC;AAEH,eAAO;AACL;;GAEG;AACH,OAAO;AACP;;GAEG;AACH,WAAW;AACX;;GAEG;AACH,cAAc;AACd;;GAEG;AACH,MAAM,kGACK,CAAC;AAEd,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"puppeteer-core.d.ts","sourceRoot":"","sources":["../../../src/puppeteer-core.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,YAAY,CAAC;AAO3B,OAAO,KAAK,SAAS,MAAM,YAAY,CAAC;AAQxC;;GAEG;AACH,QAAA,MAAM,SAAS,yBAEb,CAAC;AAEH,eAAO;AACL;;GAEG;AACH,OAAO;AACP;;GAEG;AACH,WAAW;AACX;;GAEG;AACH,cAAc;AACd;;GAEG;AACH,MAAM,4EACK,CAAC;AAEd,eAAe,SAAS,CAAC"}
@@ -15,9 +15,21 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
15
15
  if (k2 === undefined) k2 = k;
16
16
  o[k2] = m[k];
17
17
  }));
18
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
19
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
20
+ }) : function(o, v) {
21
+ o["default"] = v;
22
+ });
18
23
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
19
24
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
20
25
  };
26
+ var __importStar = (this && this.__importStar) || function (mod) {
27
+ if (mod && mod.__esModule) return mod;
28
+ var result = {};
29
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
30
+ __setModuleDefault(result, mod);
31
+ return result;
32
+ };
21
33
  var __importDefault = (this && this.__importDefault) || function (mod) {
22
34
  return (mod && mod.__esModule) ? mod : { "default": mod };
23
35
  };
@@ -27,18 +39,17 @@ __exportStar(require("./index.js"), exports);
27
39
  const fs_1 = __importDefault(require("fs"));
28
40
  const path_1 = __importDefault(require("path"));
29
41
  const environment_js_1 = require("./environment.js");
30
- const PuppeteerNode_js_1 = require("./node/PuppeteerNode.js");
31
- const ScreenRecorder_js_1 = require("./node/ScreenRecorder.js");
42
+ const Puppeteer = __importStar(require("./index.js"));
32
43
  // Set up Node-specific environment dependencies.
33
44
  environment_js_1.environment.value = {
34
45
  fs: fs_1.default,
35
46
  path: path_1.default,
36
- ScreenRecorder: ScreenRecorder_js_1.ScreenRecorder,
47
+ ScreenRecorder: Puppeteer.ScreenRecorder,
37
48
  };
38
49
  /**
39
50
  * @public
40
51
  */
41
- const puppeteer = new PuppeteerNode_js_1.PuppeteerNode({
52
+ const puppeteer = new Puppeteer.PuppeteerNode({
42
53
  isPuppeteerCore: true,
43
54
  });
44
55
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"puppeteer-core.js","sourceRoot":"","sources":["../../../src/puppeteer-core.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;;;;;AAEH,6CAA2B;AAE3B,4CAAoB;AACpB,gDAAwB;AAExB,qDAA6C;AAC7C,8DAAsD;AACtD,gEAAwD;AAExD,iDAAiD;AACjD,4BAAW,CAAC,KAAK,GAAG;IAClB,EAAE,EAAF,YAAE;IACF,IAAI,EAAJ,cAAI;IACJ,cAAc,EAAd,kCAAc;CACf,CAAC;AACF;;GAEG;AACH,MAAM,SAAS,GAAG,IAAI,gCAAa,CAAC;IAClC,eAAe,EAAE,IAAI;CACtB,CAAC,CAAC;AAGD;;GAEG;AACH,eAAO,GAaL,SAAS;AAZX;;GAEG;AACH,mBAAW,GAST,SAAS;AARX;;GAEG;AACH,sBAAc,GAKZ,SAAS;AAJX;;GAEG;AACH,cAAM,GACJ,SAAS,QAAC;AAEd,kBAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"puppeteer-core.js","sourceRoot":"","sources":["../../../src/puppeteer-core.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,6CAA2B;AAE3B,4CAAoB;AACpB,gDAAwB;AAExB,qDAA6C;AAE7C,sDAAwC;AAExC,iDAAiD;AACjD,4BAAW,CAAC,KAAK,GAAG;IAClB,EAAE,EAAF,YAAE;IACF,IAAI,EAAJ,cAAI;IACJ,cAAc,EAAE,SAAS,CAAC,cAAc;CACzC,CAAC;AACF;;GAEG;AACH,MAAM,SAAS,GAAG,IAAI,SAAS,CAAC,aAAa,CAAC;IAC5C,eAAe,EAAE,IAAI;CACtB,CAAC,CAAC;AAGD;;GAEG;AACH,eAAO,GAaL,SAAS;AAZX;;GAEG;AACH,mBAAW,GAST,SAAS;AARX;;GAEG;AACH,sBAAc,GAKZ,SAAS;AAJX;;GAEG;AACH,cAAM,GACJ,SAAS,QAAC;AAEd,kBAAe,SAAS,CAAC"}
@@ -7,8 +7,8 @@
7
7
  * @internal
8
8
  */
9
9
  export declare const PUPPETEER_REVISIONS: Readonly<{
10
- chrome: "129.0.6668.89";
11
- 'chrome-headless-shell': "129.0.6668.89";
12
- firefox: "stable_131.0";
10
+ chrome: "130.0.6723.69";
11
+ 'chrome-headless-shell': "130.0.6723.69";
12
+ firefox: "stable_131.0.3";
13
13
  }>;
14
14
  //# sourceMappingURL=revisions.d.ts.map