chrome-devtools-frontend 1.0.1367881 → 1.0.1380117

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 (1391) hide show
  1. package/.vscode/extensions.json +4 -4
  2. package/config/gni/devtools_grd_files.gni +45 -15
  3. package/config/gni/devtools_image_files.gni +5 -0
  4. package/docs/README.md +1 -5
  5. package/docs/checklist/javascript.md +45 -8
  6. package/docs/contributing/design.md +1 -1
  7. package/docs/contributing/settings-experiments-features.md +1 -1
  8. package/docs/cookbook/README.md +12 -0
  9. package/docs/cookbook/create_new_issues.md +91 -0
  10. package/docs/cookbook/dependencies.md +103 -0
  11. package/docs/cookbook/localization.md +320 -0
  12. package/docs/cookbook/navbar.md +8 -0
  13. package/docs/cookbook/release_management.md +60 -0
  14. package/docs/cookbook/uma_metrics.md +121 -0
  15. package/docs/dependencies.md +1 -100
  16. package/docs/l10n.md +1 -295
  17. package/docs/release_management.md +1 -53
  18. package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +1 -1
  19. package/extensions/cxx_debugging/e2e/tsconfig.json +1 -0
  20. package/extensions/cxx_debugging/src/ExtensionOptions.ts +6 -7
  21. package/extensions/cxx_debugging/tests/CreditsItem_test.ts +4 -4
  22. package/front_end/.eslintrc.js +0 -1
  23. package/front_end/Images/src/animation.svg +3 -0
  24. package/front_end/Images/src/brush-2.svg +3 -0
  25. package/front_end/Images/src/center-focus-weak.svg +1 -0
  26. package/front_end/Images/src/history.svg +3 -0
  27. package/front_end/Images/src/home.svg +1 -0
  28. package/front_end/core/common/Color.ts +10 -0
  29. package/front_end/core/common/ResourceType.test.ts +26 -26
  30. package/front_end/core/common/ResourceType.ts +21 -12
  31. package/front_end/core/common/Revealer.ts +5 -0
  32. package/front_end/core/common/SettingRegistration.ts +1 -1
  33. package/front_end/core/common/Settings.ts +5 -1
  34. package/front_end/core/host/AidaClient.ts +59 -0
  35. package/front_end/core/host/InspectorFrontendHost.ts +5 -1
  36. package/front_end/core/host/InspectorFrontendHostAPI.ts +8 -1
  37. package/front_end/core/host/UserMetrics.ts +16 -13
  38. package/front_end/core/i18n/ByteUtilities.test.ts +34 -0
  39. package/front_end/core/i18n/ByteUtilities.ts +65 -0
  40. package/front_end/core/i18n/NumberFormatter.ts +75 -0
  41. package/front_end/core/i18n/i18n.ts +4 -0
  42. package/front_end/core/i18n/locales/af.json +598 -109
  43. package/front_end/core/i18n/locales/am.json +607 -118
  44. package/front_end/core/i18n/locales/ar.json +888 -399
  45. package/front_end/core/i18n/locales/as.json +603 -114
  46. package/front_end/core/i18n/locales/az.json +606 -117
  47. package/front_end/core/i18n/locales/be.json +599 -110
  48. package/front_end/core/i18n/locales/bg.json +598 -109
  49. package/front_end/core/i18n/locales/bn.json +609 -120
  50. package/front_end/core/i18n/locales/bs.json +607 -118
  51. package/front_end/core/i18n/locales/ca.json +601 -112
  52. package/front_end/core/i18n/locales/cs.json +605 -116
  53. package/front_end/core/i18n/locales/cy.json +603 -114
  54. package/front_end/core/i18n/locales/da.json +599 -110
  55. package/front_end/core/i18n/locales/de.json +604 -115
  56. package/front_end/core/i18n/locales/el.json +596 -107
  57. package/front_end/core/i18n/locales/en-GB.json +599 -110
  58. package/front_end/core/i18n/locales/es-419.json +600 -111
  59. package/front_end/core/i18n/locales/es.json +602 -113
  60. package/front_end/core/i18n/locales/et.json +601 -112
  61. package/front_end/core/i18n/locales/eu.json +605 -116
  62. package/front_end/core/i18n/locales/fa.json +609 -120
  63. package/front_end/core/i18n/locales/fi.json +598 -109
  64. package/front_end/core/i18n/locales/fil.json +605 -116
  65. package/front_end/core/i18n/locales/fr-CA.json +602 -113
  66. package/front_end/core/i18n/locales/fr.json +600 -111
  67. package/front_end/core/i18n/locales/gl.json +595 -106
  68. package/front_end/core/i18n/locales/gu.json +605 -116
  69. package/front_end/core/i18n/locales/he.json +603 -114
  70. package/front_end/core/i18n/locales/hi.json +600 -111
  71. package/front_end/core/i18n/locales/hr.json +600 -111
  72. package/front_end/core/i18n/locales/hu.json +600 -111
  73. package/front_end/core/i18n/locales/hy.json +599 -110
  74. package/front_end/core/i18n/locales/id.json +603 -114
  75. package/front_end/core/i18n/locales/is.json +598 -109
  76. package/front_end/core/i18n/locales/it.json +602 -113
  77. package/front_end/core/i18n/locales/ja.json +596 -107
  78. package/front_end/core/i18n/locales/ka.json +597 -108
  79. package/front_end/core/i18n/locales/kk.json +884 -395
  80. package/front_end/core/i18n/locales/km.json +605 -116
  81. package/front_end/core/i18n/locales/kn.json +606 -117
  82. package/front_end/core/i18n/locales/ko.json +591 -102
  83. package/front_end/core/i18n/locales/ky.json +599 -110
  84. package/front_end/core/i18n/locales/lo.json +608 -119
  85. package/front_end/core/i18n/locales/lt.json +597 -108
  86. package/front_end/core/i18n/locales/lv.json +606 -117
  87. package/front_end/core/i18n/locales/mk.json +885 -396
  88. package/front_end/core/i18n/locales/ml.json +601 -112
  89. package/front_end/core/i18n/locales/mn.json +599 -110
  90. package/front_end/core/i18n/locales/mr.json +601 -112
  91. package/front_end/core/i18n/locales/ms.json +602 -113
  92. package/front_end/core/i18n/locales/my.json +604 -115
  93. package/front_end/core/i18n/locales/ne.json +609 -120
  94. package/front_end/core/i18n/locales/nl.json +597 -108
  95. package/front_end/core/i18n/locales/no.json +601 -112
  96. package/front_end/core/i18n/locales/or.json +601 -112
  97. package/front_end/core/i18n/locales/pa.json +600 -111
  98. package/front_end/core/i18n/locales/pl.json +601 -112
  99. package/front_end/core/i18n/locales/pt-PT.json +600 -111
  100. package/front_end/core/i18n/locales/pt.json +596 -107
  101. package/front_end/core/i18n/locales/ro.json +601 -112
  102. package/front_end/core/i18n/locales/ru.json +609 -120
  103. package/front_end/core/i18n/locales/si.json +603 -114
  104. package/front_end/core/i18n/locales/sk.json +599 -110
  105. package/front_end/core/i18n/locales/sl.json +601 -112
  106. package/front_end/core/i18n/locales/sq.json +602 -113
  107. package/front_end/core/i18n/locales/sr-Latn.json +598 -109
  108. package/front_end/core/i18n/locales/sr.json +598 -109
  109. package/front_end/core/i18n/locales/sv.json +600 -111
  110. package/front_end/core/i18n/locales/sw.json +606 -117
  111. package/front_end/core/i18n/locales/ta.json +892 -403
  112. package/front_end/core/i18n/locales/te.json +604 -115
  113. package/front_end/core/i18n/locales/th.json +597 -108
  114. package/front_end/core/i18n/locales/tr.json +601 -112
  115. package/front_end/core/i18n/locales/uk.json +598 -109
  116. package/front_end/core/i18n/locales/ur.json +604 -115
  117. package/front_end/core/i18n/locales/uz.json +599 -110
  118. package/front_end/core/i18n/locales/vi.json +602 -113
  119. package/front_end/core/i18n/locales/zh-HK.json +599 -110
  120. package/front_end/core/i18n/locales/zh-TW.json +595 -106
  121. package/front_end/core/i18n/locales/zh.json +601 -112
  122. package/front_end/core/i18n/locales/zu.json +607 -118
  123. package/front_end/core/i18n/time-utilities.test.ts +20 -2
  124. package/front_end/core/i18n/time-utilities.ts +125 -86
  125. package/front_end/core/platform/NumberUtilities.test.ts +3 -26
  126. package/front_end/core/platform/NumberUtilities.ts +0 -20
  127. package/front_end/core/root/Runtime.ts +18 -7
  128. package/front_end/{panels/animation → core/sdk}/AnimationModel.test.ts +85 -6
  129. package/front_end/{panels/animation → core/sdk}/AnimationModel.ts +302 -36
  130. package/front_end/core/sdk/CPUThrottlingManager.ts +4 -0
  131. package/front_end/core/sdk/CSSContainerQuery.test.ts +10 -16
  132. package/front_end/core/sdk/CSSContainerQuery.ts +7 -17
  133. package/front_end/core/sdk/CSSMatchedStyles.test.ts +8 -0
  134. package/front_end/core/sdk/CSSMatchedStyles.ts +16 -13
  135. package/front_end/core/sdk/CSSMetadata.ts +6 -0
  136. package/front_end/core/sdk/CSSModel.ts +18 -0
  137. package/front_end/core/sdk/CSSPropertyParser.test.ts +16 -1
  138. package/front_end/core/sdk/CSSPropertyParser.ts +2 -2
  139. package/front_end/core/sdk/CSSStyleDeclaration.test.ts +10 -0
  140. package/front_end/core/sdk/CSSStyleDeclaration.ts +1 -1
  141. package/front_end/core/sdk/DOMModel.ts +3 -3
  142. package/front_end/core/sdk/DebuggerModel.test.ts +2 -0
  143. package/front_end/core/sdk/EmulationModel.ts +32 -0
  144. package/front_end/core/sdk/EnhancedTracesParser.test.ts +4 -4
  145. package/front_end/core/sdk/EnhancedTracesParser.ts +4 -5
  146. package/front_end/core/sdk/RehydratingConnection.test.ts +190 -0
  147. package/front_end/core/sdk/RehydratingConnection.ts +310 -0
  148. package/front_end/core/sdk/RehydratingObject.ts +26 -2
  149. package/front_end/core/sdk/RuntimeModel.ts +31 -0
  150. package/front_end/core/sdk/Script.ts +1 -1
  151. package/front_end/core/sdk/TraceObject.ts +8 -0
  152. package/front_end/core/sdk/sdk-meta.ts +8 -0
  153. package/front_end/core/sdk/sdk.ts +2 -0
  154. package/front_end/devtools_compatibility.js +0 -1
  155. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +96 -75
  156. package/front_end/entrypoints/main/MainImpl.ts +10 -0
  157. package/front_end/generated/ARIAProperties.js +4 -0
  158. package/front_end/generated/InspectorBackendCommands.js +17 -14
  159. package/front_end/generated/SupportedCSSProperties.js +32 -5
  160. package/front_end/generated/protocol-mapping.d.ts +19 -4
  161. package/front_end/generated/protocol-proxy-api.d.ts +18 -4
  162. package/front_end/generated/protocol.ts +57 -4
  163. package/front_end/legacy_test_runner/network_test_runner/network_test_runner.js +1 -0
  164. package/front_end/models/extensions/ExtensionAPI.ts +9 -1
  165. package/front_end/models/har/HARFormat.ts +1 -0
  166. package/front_end/models/har/Importer.test.ts +16 -2
  167. package/front_end/models/har/Importer.ts +2 -2
  168. package/front_end/models/har/Log.test.ts +23 -0
  169. package/front_end/models/har/Log.ts +6 -4
  170. package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +6 -2
  171. package/front_end/models/issues_manager/AttributionReportingIssue.ts +58 -18
  172. package/front_end/models/issues_manager/CookieIssue.ts +12 -0
  173. package/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +5 -0
  174. package/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +5 -0
  175. package/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +5 -0
  176. package/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +5 -0
  177. package/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +5 -0
  178. package/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +5 -0
  179. package/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +4 -0
  180. package/front_end/models/issues_manager/descriptions/placeholderDescriptionForInvisibleIssues.md +3 -0
  181. package/front_end/models/javascript_metadata/NativeFunctions.js +77 -39
  182. package/front_end/models/live-metrics/LiveMetrics.ts +116 -19
  183. package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +24 -61
  184. package/front_end/models/live-metrics/web-vitals-injected/{rollup.config.js → rollup.config.mjs} +1 -1
  185. package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +49 -21
  186. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +43 -5
  187. package/front_end/models/persistence/EditFileSystemView.ts +19 -9
  188. package/front_end/models/persistence/WorkspaceSettingsTab.ts +50 -54
  189. package/front_end/models/persistence/editFileSystemView.css +35 -15
  190. package/front_end/models/persistence/workspaceSettingsTab.css +21 -87
  191. package/front_end/models/timeline_model/timeline_model.ts +0 -6
  192. package/front_end/models/trace/Processor.test.ts +18 -17
  193. package/front_end/models/trace/Processor.ts +15 -15
  194. package/front_end/models/trace/README.md +0 -1
  195. package/front_end/models/trace/extras/ThirdParties.test.ts +117 -0
  196. package/front_end/models/trace/{insights/ThirdPartyWeb.ts → extras/ThirdParties.ts} +41 -73
  197. package/front_end/models/{timeline_model → trace/extras}/TimelineJSProfile.ts +19 -29
  198. package/front_end/models/{timeline_model/TimelineModelFilter.test.ts → trace/extras/TraceFilter.test.ts} +15 -17
  199. package/front_end/models/trace/extras/TraceFilter.ts +62 -0
  200. package/front_end/models/{timeline_model/TimelineProfileTree.test.ts → trace/extras/TraceTree.test.ts} +44 -43
  201. package/front_end/models/{timeline_model/TimelineProfileTree.ts → trace/extras/TraceTree.ts} +65 -59
  202. package/front_end/models/trace/extras/extras.ts +4 -0
  203. package/front_end/models/trace/handlers/AnimationHandler.ts +0 -8
  204. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +1 -11
  205. package/front_end/models/trace/handlers/FramesHandler.test.ts +1 -6
  206. package/front_end/models/trace/handlers/FramesHandler.ts +13 -19
  207. package/front_end/models/trace/handlers/GPUHandler.test.ts +0 -2
  208. package/front_end/models/trace/handlers/GPUHandler.ts +1 -25
  209. package/front_end/models/trace/handlers/ImagePaintingHandler.ts +3 -0
  210. package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +40 -1
  211. package/front_end/models/trace/handlers/InitiatorsHandler.ts +9 -20
  212. package/front_end/models/trace/handlers/InvalidationsHandler.test.ts +0 -1
  213. package/front_end/models/trace/handlers/InvalidationsHandler.ts +0 -18
  214. package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +2 -2
  215. package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +63 -3
  216. package/front_end/models/trace/handlers/LargestTextPaintHandler.ts +3 -0
  217. package/front_end/models/trace/handlers/LayerTreeHandler.test.ts +0 -2
  218. package/front_end/models/trace/handlers/LayerTreeHandler.ts +1 -18
  219. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +0 -3
  220. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +18 -20
  221. package/front_end/models/trace/handlers/MemoryHandler.test.ts +0 -1
  222. package/front_end/models/trace/handlers/MemoryHandler.ts +3 -0
  223. package/front_end/models/trace/handlers/MetaHandler.test.ts +1 -32
  224. package/front_end/models/trace/handlers/MetaHandler.ts +2 -30
  225. package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +0 -26
  226. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +6 -25
  227. package/front_end/models/trace/handlers/PageFramesHandler.ts +3 -0
  228. package/front_end/models/trace/handlers/RendererHandler.test.ts +4 -8
  229. package/front_end/models/trace/handlers/RendererHandler.ts +1 -24
  230. package/front_end/models/trace/handlers/SamplesHandler.test.ts +0 -5
  231. package/front_end/models/trace/handlers/SamplesHandler.ts +0 -26
  232. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +0 -1
  233. package/front_end/models/trace/handlers/SelectorStatsHandler.ts +3 -0
  234. package/front_end/models/trace/handlers/ServerTimingsHandler.ts +1 -16
  235. package/front_end/models/trace/handlers/Threads.test.ts +1 -2
  236. package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +4 -27
  237. package/front_end/models/trace/handlers/UserInteractionsHandler.ts +16 -25
  238. package/front_end/models/trace/handlers/UserTimingsHandler.ts +0 -17
  239. package/front_end/models/trace/handlers/WorkersHandler.test.ts +0 -1
  240. package/front_end/models/trace/handlers/WorkersHandler.ts +0 -23
  241. package/front_end/models/trace/handlers/types.ts +1 -8
  242. package/front_end/models/trace/helpers/Timing.test.ts +29 -0
  243. package/front_end/models/trace/helpers/Timing.ts +18 -0
  244. package/front_end/models/trace/helpers/TreeHelpers.test.ts +52 -34
  245. package/front_end/models/trace/helpers/TreeHelpers.ts +135 -45
  246. package/front_end/models/trace/insights/{CumulativeLayoutShift.test.ts → CLSCulprits.test.ts} +42 -20
  247. package/front_end/models/trace/insights/{CumulativeLayoutShift.ts → CLSCulprits.ts} +86 -25
  248. package/front_end/models/trace/insights/Common.ts +5 -55
  249. package/front_end/models/trace/insights/DocumentLatency.test.ts +2 -2
  250. package/front_end/models/trace/insights/DocumentLatency.ts +26 -6
  251. package/front_end/models/trace/insights/FontDisplay.ts +24 -5
  252. package/front_end/models/trace/insights/InteractionToNextPaint.test.ts +1 -1
  253. package/front_end/models/trace/insights/InteractionToNextPaint.ts +26 -6
  254. package/front_end/models/trace/insights/LCPDiscovery.test.ts +58 -0
  255. package/front_end/models/trace/insights/LCPDiscovery.ts +101 -0
  256. package/front_end/models/trace/insights/{LargestContentfulPaint.test.ts → LCPPhases.test.ts} +6 -28
  257. package/front_end/models/trace/insights/{LargestContentfulPaint.ts → LCPPhases.ts} +37 -38
  258. package/front_end/models/trace/insights/{InsightRunners.ts → Models.ts} +4 -3
  259. package/front_end/models/trace/insights/RenderBlocking.test.ts +1 -1
  260. package/front_end/models/trace/insights/RenderBlocking.ts +33 -28
  261. package/front_end/models/trace/insights/SlowCSSSelector.ts +26 -5
  262. package/front_end/models/trace/insights/{ThirdPartyWeb.test.ts → ThirdParties.test.ts} +3 -3
  263. package/front_end/models/trace/insights/ThirdParties.ts +88 -0
  264. package/front_end/models/trace/insights/Viewport.test.ts +1 -1
  265. package/front_end/models/trace/insights/Viewport.ts +27 -9
  266. package/front_end/models/trace/insights/insights.ts +1 -1
  267. package/front_end/models/trace/insights/types.ts +11 -9
  268. package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +4 -4
  269. package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +9 -5
  270. package/front_end/models/trace/lantern/simulation/Simulator.ts +1 -1
  271. package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +4 -0
  272. package/front_end/models/trace/types/TraceEvents.ts +119 -24
  273. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +1 -1
  274. package/front_end/panels/animation/AnimationGroupPreviewUI.ts +3 -3
  275. package/front_end/panels/animation/AnimationTimeline.test.ts +15 -15
  276. package/front_end/panels/animation/AnimationTimeline.ts +85 -53
  277. package/front_end/panels/animation/AnimationUI.ts +5 -6
  278. package/front_end/panels/animation/animation-meta.ts +15 -0
  279. package/front_end/panels/animation/animation.ts +0 -4
  280. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +16 -0
  281. package/front_end/panels/application/ApplicationPanelSidebar.ts +13 -9
  282. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +72 -0
  283. package/front_end/panels/application/ExtensionStorageItemsView.ts +23 -1
  284. package/front_end/panels/application/ExtensionStorageModel.test.ts +15 -0
  285. package/front_end/panels/application/ExtensionStorageModel.ts +10 -1
  286. package/front_end/panels/application/OpenedWindowDetailsView.ts +2 -3
  287. package/front_end/panels/application/SharedStorageItemsView.test.ts +4 -23
  288. package/front_end/panels/application/SharedStorageItemsView.ts +5 -3
  289. package/front_end/panels/application/StorageView.ts +3 -3
  290. package/front_end/panels/application/components/BackForwardCacheStrings.ts +1 -0
  291. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +3 -7
  292. package/front_end/panels/application/components/EndpointsGrid.ts +1 -2
  293. package/front_end/panels/application/components/FrameDetailsView.ts +8 -8
  294. package/front_end/panels/application/components/InterestGroupAccessGrid.ts +4 -8
  295. package/front_end/panels/application/components/PermissionsPolicySection.ts +3 -4
  296. package/front_end/panels/application/components/ReportsGrid.ts +2 -4
  297. package/front_end/panels/application/components/SharedStorageAccessGrid.ts +4 -9
  298. package/front_end/panels/application/components/StackTrace.ts +6 -9
  299. package/front_end/panels/application/components/StorageMetadataView.ts +2 -4
  300. package/front_end/panels/application/components/TrustTokensView.ts +1 -2
  301. package/front_end/panels/application/preloading/PreloadingView.ts +5 -5
  302. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +2 -2
  303. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +3 -9
  304. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +2 -5
  305. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +2 -2
  306. package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +1 -1
  307. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +3 -6
  308. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +1 -3
  309. package/front_end/panels/application/preloading/components/PreloadingString.ts +5 -0
  310. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +2 -3
  311. package/front_end/panels/application/preloading/components/RuleSetGrid.ts +7 -10
  312. package/front_end/panels/autofill/AutofillView.ts +2 -5
  313. package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +34 -31
  314. package/front_end/panels/console/ConsoleView.ts +1 -1
  315. package/front_end/panels/coverage/CoverageView.ts +3 -3
  316. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +3 -5
  317. package/front_end/panels/elements/AccessibilityTreeUtils.ts +4 -6
  318. package/front_end/panels/elements/CSSRuleValidator.ts +0 -5
  319. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +0 -2
  320. package/front_end/panels/elements/ComputedStyleModel.ts +9 -2
  321. package/front_end/panels/elements/ComputedStyleWidget.test.ts +72 -0
  322. package/front_end/panels/elements/ComputedStyleWidget.ts +12 -0
  323. package/front_end/panels/elements/ElementStatePaneWidget.test.ts +84 -30
  324. package/front_end/panels/elements/ElementStatePaneWidget.ts +47 -24
  325. package/front_end/panels/elements/ElementsPanel.ts +4 -4
  326. package/front_end/panels/elements/ElementsTreeElement.ts +25 -12
  327. package/front_end/panels/elements/MetricsSidebarPane.ts +12 -7
  328. package/front_end/panels/elements/PropertyMatchers.ts +3 -0
  329. package/front_end/panels/elements/StylePropertiesSection.ts +15 -6
  330. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +92 -0
  331. package/front_end/panels/elements/StylePropertyTreeElement.ts +36 -4
  332. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +3 -5
  333. package/front_end/panels/elements/components/LayoutPane.ts +2 -3
  334. package/front_end/panels/elements/components/QueryContainer.ts +3 -5
  335. package/front_end/panels/elements/stylePropertiesTreeOutline.css +13 -0
  336. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +0 -2
  337. package/front_end/panels/event_listeners/EventListenersView.ts +2 -2
  338. package/front_end/panels/event_listeners/eventListenersView.css +4 -3
  339. package/front_end/panels/explain/components/ConsoleInsight.test.ts +56 -8
  340. package/front_end/panels/explain/components/ConsoleInsight.ts +61 -54
  341. package/front_end/panels/explain/explain-meta.ts +1 -12
  342. package/front_end/panels/freestyler/AiAgent.test.ts +149 -12
  343. package/front_end/panels/freestyler/AiAgent.ts +394 -54
  344. package/front_end/panels/freestyler/DrJonesFileAgent.test.ts +160 -57
  345. package/front_end/panels/freestyler/DrJonesFileAgent.ts +117 -88
  346. package/front_end/panels/freestyler/DrJonesNetworkAgent.test.ts +143 -72
  347. package/front_end/panels/freestyler/DrJonesNetworkAgent.ts +242 -119
  348. package/front_end/panels/freestyler/DrJonesPerformanceAgent.test.ts +104 -58
  349. package/front_end/panels/freestyler/DrJonesPerformanceAgent.ts +158 -114
  350. package/front_end/panels/freestyler/FreestylerAgent.test.ts +109 -100
  351. package/front_end/panels/freestyler/FreestylerAgent.ts +114 -188
  352. package/front_end/panels/freestyler/FreestylerEvaluateAction.test.ts +40 -36
  353. package/front_end/panels/freestyler/FreestylerEvaluateAction.ts +15 -14
  354. package/front_end/panels/freestyler/FreestylerPanel.test.ts +1048 -15
  355. package/front_end/panels/freestyler/FreestylerPanel.ts +576 -189
  356. package/front_end/panels/freestyler/components/FreestylerChatUi.test.ts +131 -9
  357. package/front_end/panels/freestyler/components/FreestylerChatUi.ts +415 -269
  358. package/front_end/panels/freestyler/components/UserActionRow.test.ts +60 -0
  359. package/front_end/panels/freestyler/components/UserActionRow.ts +382 -0
  360. package/front_end/panels/freestyler/components/freestylerChatUi.css +137 -99
  361. package/front_end/panels/freestyler/components/{provideFeedback.css → userActionRow.css} +62 -0
  362. package/front_end/panels/freestyler/freestyler-meta.ts +44 -25
  363. package/front_end/panels/freestyler/freestyler.ts +1 -1
  364. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +14 -0
  365. package/front_end/panels/issues/IssueAggregator.ts +10 -1
  366. package/front_end/panels/issues/components/ElementsPanelLink.ts +0 -1
  367. package/front_end/panels/issues/components/HideIssuesMenu.ts +2 -3
  368. package/front_end/panels/layer_viewer/LayerDetailsView.ts +1 -2
  369. package/front_end/panels/layer_viewer/PaintProfilerView.ts +5 -5
  370. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +46 -0
  371. package/front_end/panels/lighthouse/LighthouseStartView.ts +1 -1
  372. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +2 -2
  373. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +1 -2
  374. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +7 -12
  375. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +3 -4
  376. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +1 -2
  377. package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +26 -17
  378. package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +25 -19
  379. package/front_end/panels/network/BinaryResourceView.ts +9 -9
  380. package/front_end/panels/network/EventSourceMessagesView.ts +1 -1
  381. package/front_end/panels/network/NetworkDataGridNode.test.ts +29 -0
  382. package/front_end/panels/network/NetworkDataGridNode.ts +59 -8
  383. package/front_end/panels/network/NetworkLogView.test.ts +29 -0
  384. package/front_end/panels/network/NetworkLogView.ts +9 -10
  385. package/front_end/panels/network/NetworkPanel.test.ts +3 -22
  386. package/front_end/panels/network/NetworkPanel.ts +26 -7
  387. package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
  388. package/front_end/panels/network/RequestResponseView.test.ts +2 -2
  389. package/front_end/panels/network/RequestResponseView.ts +6 -10
  390. package/front_end/panels/network/RequestTimingView.test.ts +35 -1
  391. package/front_end/panels/network/RequestTimingView.ts +96 -0
  392. package/front_end/panels/network/ResourceWebSocketFrameView.ts +5 -3
  393. package/front_end/panels/network/components/HeaderSectionRow.ts +11 -12
  394. package/front_end/panels/network/components/RequestHeaderSection.ts +4 -9
  395. package/front_end/panels/network/components/RequestHeadersView.css +7 -0
  396. package/front_end/panels/network/components/RequestTrustTokensView.ts +1 -1
  397. package/front_end/panels/network/network.ts +0 -2
  398. package/front_end/panels/network/networkConfigView.css +8 -7
  399. package/front_end/panels/network/networkLogView.css +32 -2
  400. package/front_end/panels/network/networkPanel.css +2 -1
  401. package/front_end/panels/network/networkTimingTable.css +2 -1
  402. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +1 -1
  403. package/front_end/panels/profiler/HeapProfileView.ts +3 -3
  404. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +11 -10
  405. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +12 -8
  406. package/front_end/panels/profiler/HeapSnapshotProxy.ts +6 -6
  407. package/front_end/panels/profiler/HeapSnapshotView.ts +2 -2
  408. package/front_end/panels/profiler/HeapTimelineOverview.ts +12 -12
  409. package/front_end/panels/profiler/IsolateSelector.ts +3 -4
  410. package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +1 -1
  411. package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +7 -6
  412. package/front_end/panels/profiler/ProfileView.ts +1 -1
  413. package/front_end/panels/protocol_monitor/components/JSONEditor.ts +5 -5
  414. package/front_end/panels/recorder/components/RecordingView.ts +2 -2
  415. package/front_end/panels/recorder/components/StartView.ts +4 -5
  416. package/front_end/panels/recorder/components/recordingView.css +1 -4
  417. package/front_end/panels/recorder/components/selectButton.css +6 -50
  418. package/front_end/panels/recorder/injected/{rollup.config.js → rollup.config.mjs} +1 -1
  419. package/front_end/panels/recorder/models/RecorderShortcutHelper.ts +1 -1
  420. package/front_end/panels/recorder/models/RecordingSession.ts +4 -4
  421. package/front_end/panels/recorder/recorderController.css +38 -22
  422. package/front_end/panels/screencast/ScreencastApp.ts +1 -1
  423. package/front_end/panels/screencast/ScreencastView.ts +1 -1
  424. package/front_end/panels/search/SearchView.ts +0 -2
  425. package/front_end/panels/search/searchView.css +5 -1
  426. package/front_end/panels/security/CookieReportTreeElement.ts +18 -0
  427. package/front_end/panels/security/CookieReportView.ts +120 -0
  428. package/front_end/panels/security/OriginTreeElement.ts +20 -7
  429. package/front_end/panels/security/SecurityPanel.ts +71 -16
  430. package/front_end/panels/security/{SecurityAndPrivacyPanelSidebar.ts → SecurityPanelSidebar.ts} +24 -13
  431. package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +1 -12
  432. package/front_end/panels/security/cookieReportView.css +46 -0
  433. package/front_end/panels/security/sidebar.css +39 -1
  434. package/front_end/panels/sensors/LocationsSettingsTab.ts +26 -11
  435. package/front_end/panels/sensors/SensorsView.ts +27 -0
  436. package/front_end/panels/sensors/locationsSettingsTab.css +18 -18
  437. package/front_end/panels/sensors/sensors-meta.ts +59 -0
  438. package/front_end/panels/settings/AISettingsTab.test.ts +79 -11
  439. package/front_end/panels/settings/AISettingsTab.ts +107 -29
  440. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +44 -30
  441. package/front_end/panels/settings/KeybindsSettingsTab.ts +35 -18
  442. package/front_end/panels/settings/SettingsScreen.ts +62 -57
  443. package/front_end/panels/settings/aiSettingsTab.css +16 -14
  444. package/front_end/panels/settings/components/SyncSection.ts +2 -5
  445. package/front_end/panels/settings/components/syncSection.css +0 -10
  446. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +51 -29
  447. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +24 -12
  448. package/front_end/panels/settings/emulation/devicesSettingsTab.css +11 -10
  449. package/front_end/panels/settings/frameworkIgnoreListSettingsTab.css +16 -42
  450. package/front_end/panels/settings/keybindsSettingsTab.css +50 -91
  451. package/front_end/panels/settings/settingsScreen.css +39 -113
  452. package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -1
  453. package/front_end/panels/sources/CSSPlugin.ts +0 -2
  454. package/front_end/panels/sources/DebuggerPlugin.ts +9 -4
  455. package/front_end/panels/sources/NavigatorView.ts +42 -36
  456. package/front_end/panels/sources/SourcesPanel.ts +25 -6
  457. package/front_end/panels/sources/SourcesView.test.ts +1 -0
  458. package/front_end/panels/sources/SourcesView.ts +2 -2
  459. package/front_end/panels/sources/components/BreakpointsView.ts +0 -1
  460. package/front_end/panels/sources/components/HeadersView.ts +0 -1
  461. package/front_end/panels/sources/navigatorTree.css +11 -0
  462. package/front_end/panels/timeline/ActiveFilters.ts +3 -4
  463. package/front_end/panels/timeline/AnimationsTrackAppender.ts +1 -2
  464. package/front_end/panels/timeline/AnnotationHelpers.ts +3 -3
  465. package/front_end/panels/timeline/AppenderUtils.ts +1 -3
  466. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +21 -9
  467. package/front_end/panels/timeline/CountersGraph.ts +2 -4
  468. package/front_end/panels/timeline/EntriesFilter.test.ts +19 -36
  469. package/front_end/panels/timeline/EntriesFilter.ts +6 -4
  470. package/front_end/panels/timeline/EventsTimelineTreeView.ts +16 -17
  471. package/front_end/panels/timeline/InteractionsTrackAppender.ts +2 -1
  472. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +6 -6
  473. package/front_end/panels/timeline/NetworkTrackAppender.ts +1 -8
  474. package/front_end/panels/timeline/README.md +2 -1
  475. package/front_end/panels/timeline/ThreadAppender.ts +5 -6
  476. package/front_end/panels/timeline/TimelineController.ts +14 -4
  477. package/front_end/panels/timeline/TimelineDetailsView.test.ts +85 -42
  478. package/front_end/panels/timeline/TimelineDetailsView.ts +71 -42
  479. package/front_end/panels/timeline/TimelineEventOverview.ts +13 -14
  480. package/front_end/panels/timeline/TimelineFilters.test.ts +4 -4
  481. package/front_end/panels/timeline/TimelineFilters.ts +3 -4
  482. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +1 -1
  483. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +59 -70
  484. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +16 -16
  485. package/front_end/panels/timeline/TimelineFlameChartView.test.ts +2 -3
  486. package/front_end/panels/timeline/TimelineFlameChartView.ts +123 -69
  487. package/front_end/panels/timeline/TimelineHistoryManager.ts +4 -0
  488. package/front_end/panels/timeline/TimelineLoader.test.ts +1 -2
  489. package/front_end/panels/timeline/TimelineLoader.ts +3 -4
  490. package/front_end/panels/timeline/TimelineMiniMap.ts +10 -8
  491. package/front_end/panels/timeline/TimelinePanel.ts +109 -52
  492. package/front_end/panels/timeline/TimelineSelection.test.ts +91 -36
  493. package/front_end/panels/timeline/TimelineSelection.ts +48 -60
  494. package/front_end/panels/timeline/TimelineSelectorStatsView.ts +3 -8
  495. package/front_end/panels/timeline/TimelineTreeView.test.ts +12 -13
  496. package/front_end/panels/timeline/TimelineTreeView.ts +42 -45
  497. package/front_end/panels/timeline/TimelineUIUtils.test.ts +53 -6
  498. package/front_end/panels/timeline/TimelineUIUtils.ts +48 -40
  499. package/front_end/panels/timeline/UIDevtoolsController.ts +5 -5
  500. package/front_end/panels/timeline/UIDevtoolsUtils.ts +59 -68
  501. package/front_end/panels/timeline/components/BreadcrumbsUI.ts +2 -3
  502. package/front_end/panels/timeline/components/LayoutShiftDetails.ts +31 -15
  503. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +227 -65
  504. package/front_end/panels/timeline/components/LiveMetricsView.ts +144 -122
  505. package/front_end/panels/timeline/components/MetricCard.test.ts +1 -1
  506. package/front_end/panels/timeline/components/MetricCard.ts +46 -0
  507. package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +14 -7
  508. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +50 -121
  509. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +64 -74
  510. package/front_end/panels/timeline/components/Sidebar.ts +2 -1
  511. package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +11 -13
  512. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +51 -2
  513. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +3 -2
  514. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +41 -36
  515. package/front_end/panels/timeline/components/Utils.ts +28 -29
  516. package/front_end/panels/timeline/components/components.ts +0 -4
  517. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +29 -36
  518. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +32 -39
  519. package/front_end/panels/timeline/components/insights/EventRef.ts +0 -1
  520. package/front_end/panels/timeline/components/insights/FontDisplay.ts +17 -23
  521. package/front_end/panels/timeline/components/insights/Helpers.ts +16 -20
  522. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +17 -31
  523. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +25 -37
  524. package/front_end/panels/timeline/components/insights/LCPPhases.ts +25 -46
  525. package/front_end/panels/timeline/components/insights/NodeLink.ts +0 -1
  526. package/front_end/panels/timeline/components/insights/README.md +2 -2
  527. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +24 -35
  528. package/front_end/panels/timeline/components/insights/SidebarInsight.ts +15 -7
  529. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +125 -60
  530. package/front_end/panels/timeline/components/insights/Table.ts +6 -6
  531. package/front_end/panels/timeline/components/insights/ThirdParties.ts +24 -34
  532. package/front_end/panels/timeline/components/insights/Viewport.ts +17 -30
  533. package/front_end/panels/timeline/components/layoutShiftDetails.css +7 -1
  534. package/front_end/panels/timeline/components/liveMetricsView.css +58 -25
  535. package/front_end/panels/timeline/components/metricCard.css +11 -0
  536. package/front_end/panels/timeline/components/networkRequestDetails.css +9 -49
  537. package/front_end/panels/timeline/components/networkRequestTooltip.css +34 -11
  538. package/front_end/panels/timeline/components/relatedInsightChips.css +1 -1
  539. package/front_end/panels/timeline/components/sidebarInsightsTab.css +20 -0
  540. package/front_end/panels/timeline/extensions/ExtensionUI.ts +7 -7
  541. package/front_end/panels/timeline/fixtures/traces/README.md +4 -0
  542. package/front_end/panels/timeline/fixtures/traces/scheduler-post-task.json.gz +0 -0
  543. package/front_end/panels/timeline/fixtures/traces/unsized-images.json.gz +0 -0
  544. package/front_end/panels/timeline/historyToolbarButton.css +33 -19
  545. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +5 -21
  546. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +61 -34
  547. package/front_end/panels/timeline/overlays/components/entriesLinkOverlay.css +8 -0
  548. package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +16 -0
  549. package/front_end/panels/timeline/timeline-meta.ts +11 -0
  550. package/front_end/panels/timeline/timelineFlameChartView.css +17 -1
  551. package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +2 -3
  552. package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +1 -6
  553. package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +1 -1
  554. package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +7 -8
  555. package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +2 -2
  556. package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +3 -3
  557. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +3 -4
  558. package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +2 -3
  559. package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +5 -10
  560. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +5 -5
  561. package/front_end/panels/timeline/utils/AICallTree.test.ts +185 -0
  562. package/front_end/panels/timeline/utils/AICallTree.ts +166 -0
  563. package/front_end/panels/timeline/{components → utils}/EntryName.test.ts +12 -12
  564. package/front_end/panels/timeline/{components → utils}/EntryName.ts +1 -1
  565. package/front_end/panels/timeline/{components → utils}/EntryStyles.ts +28 -1
  566. package/front_end/panels/timeline/utils/Helpers.test.ts +8 -3
  567. package/front_end/panels/timeline/utils/Helpers.ts +3 -4
  568. package/front_end/panels/timeline/utils/IgnoreList.test.ts +86 -0
  569. package/front_end/panels/timeline/utils/IgnoreList.ts +11 -4
  570. package/front_end/panels/timeline/utils/NetworkRequest.ts +1 -1
  571. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +51 -18
  572. package/front_end/panels/timeline/utils/SourceMapsResolver.ts +3 -1
  573. package/front_end/panels/timeline/utils/utils.ts +6 -0
  574. package/front_end/panels/utils/utils.ts +56 -4
  575. package/front_end/services/trace_bounds/TraceBounds.ts +7 -1
  576. package/front_end/testing/ContextMenuHelpers.ts +1 -1
  577. package/front_end/testing/EnvironmentHelpers.ts +18 -9
  578. package/front_end/testing/InsightHelpers.ts +4 -4
  579. package/front_end/testing/NetworkHelpers.ts +38 -0
  580. package/front_end/testing/StorageItemsViewHelpers.ts +24 -0
  581. package/front_end/testing/TraceHelpers.ts +11 -1
  582. package/front_end/third_party/additional_readme_paths.json +1 -0
  583. package/front_end/third_party/codemirror.next/chunk/angular.js +1 -1
  584. package/front_end/third_party/codemirror.next/chunk/angular.js.map +1 -1
  585. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  586. package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
  587. package/front_end/third_party/codemirror.next/chunk/cpp.js.map +1 -1
  588. package/front_end/third_party/codemirror.next/chunk/legacy.js.map +1 -1
  589. package/front_end/third_party/codemirror.next/chunk/less.js.map +1 -1
  590. package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
  591. package/front_end/third_party/codemirror.next/chunk/markdown.js.map +1 -1
  592. package/front_end/third_party/codemirror.next/chunk/php.js.map +1 -1
  593. package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
  594. package/front_end/third_party/codemirror.next/chunk/python.js.map +1 -1
  595. package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
  596. package/front_end/third_party/codemirror.next/chunk/svelte.js +1 -1
  597. package/front_end/third_party/codemirror.next/chunk/svelte.js.map +1 -1
  598. package/front_end/third_party/codemirror.next/chunk/vue.js +1 -1
  599. package/front_end/third_party/codemirror.next/chunk/vue.js.map +1 -1
  600. package/front_end/third_party/codemirror.next/chunk/xml.js +1 -1
  601. package/front_end/third_party/codemirror.next/chunk/xml.js.map +1 -1
  602. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +68 -3
  603. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  604. package/front_end/third_party/codemirror.next/package.json +2 -1
  605. package/front_end/third_party/intl-messageformat/README.chromium +2 -1
  606. package/front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js +0 -1
  607. package/front_end/third_party/json5/LICENSE +23 -0
  608. package/front_end/third_party/json5/README.chromium +17 -0
  609. package/front_end/third_party/json5/json5-tsconfig.json +8 -0
  610. package/front_end/third_party/json5/json5.ts +4 -0
  611. package/front_end/third_party/json5/lib/index.d.ts +2 -0
  612. package/front_end/third_party/json5/lib/index.js +1121 -0
  613. package/front_end/third_party/json5/package/lib/index.d.ts +4 -0
  614. package/front_end/third_party/json5/package/lib/index.js +9 -0
  615. package/front_end/third_party/json5/package/lib/parse.d.ts +15 -0
  616. package/front_end/third_party/json5/package/lib/parse.js +1114 -0
  617. package/front_end/third_party/json5/package/lib/register.js +13 -0
  618. package/front_end/third_party/json5/package/lib/require.js +4 -0
  619. package/front_end/third_party/json5/package/lib/stringify.d.ts +89 -0
  620. package/front_end/third_party/json5/package/lib/stringify.js +261 -0
  621. package/front_end/third_party/json5/package/lib/unicode.d.ts +3 -0
  622. package/front_end/third_party/json5/package/lib/unicode.js +4 -0
  623. package/front_end/third_party/json5/package/lib/util.d.ts +5 -0
  624. package/front_end/third_party/json5/package/lib/util.js +35 -0
  625. package/front_end/third_party/json5/package.json +8 -0
  626. package/front_end/third_party/json5/rebuild.sh +5 -0
  627. package/front_end/third_party/puppeteer/README.chromium +2 -2
  628. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +4 -5
  629. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
  630. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +1 -6
  631. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
  632. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts +1 -1
  633. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +1 -1
  634. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.d.ts +1 -1
  635. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.js +1 -1
  636. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +18 -7
  637. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
  638. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js +34 -13
  639. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
  640. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts +2 -2
  641. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js +13 -6
  642. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js.map +1 -1
  643. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts +7 -2
  644. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts.map +1 -1
  645. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.js +3 -3
  646. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.js.map +1 -1
  647. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPResponse.d.ts +0 -1
  648. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPResponse.d.ts.map +1 -1
  649. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.d.ts +37 -8
  650. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.d.ts.map +1 -1
  651. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.js +52 -3
  652. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.js.map +1 -1
  653. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/JSHandle.js +12 -5
  654. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/JSHandle.js.map +1 -1
  655. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +22 -22
  656. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
  657. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +26 -19
  658. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
  659. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.d.ts +2 -2
  660. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.js +2 -2
  661. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.d.ts +1 -1
  662. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.d.ts.map +1 -1
  663. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.js +0 -1
  664. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.js.map +1 -1
  665. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.d.ts.map +1 -1
  666. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.js +12 -5
  667. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.js.map +1 -1
  668. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js +1 -2
  669. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
  670. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts +0 -1
  671. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts.map +1 -1
  672. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js +4 -0
  673. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
  674. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js +1 -2
  675. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js.map +1 -1
  676. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js +12 -5
  677. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js.map +1 -1
  678. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  679. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js +22 -13
  680. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js.map +1 -1
  681. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +12 -5
  682. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
  683. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
  684. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js +4 -1
  685. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js.map +1 -1
  686. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.d.ts +14 -4
  687. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.d.ts.map +1 -1
  688. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.js +57 -23
  689. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.js.map +1 -1
  690. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +21 -10
  691. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
  692. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +12 -5
  693. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
  694. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.js +12 -5
  695. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.js.map +1 -1
  696. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.d.ts +1 -1
  697. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.d.ts.map +1 -1
  698. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.js +0 -1
  699. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.js.map +1 -1
  700. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.js +2 -3
  701. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.js.map +1 -1
  702. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.d.ts.map +1 -1
  703. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js +3 -0
  704. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js.map +1 -1
  705. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Binding.js +12 -5
  706. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Binding.js.map +1 -1
  707. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts +0 -1
  708. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts.map +1 -1
  709. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js +1 -2
  710. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js.map +1 -1
  711. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js +12 -5
  712. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js.map +1 -1
  713. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts.map +1 -1
  714. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js +3 -1
  715. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js.map +1 -1
  716. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js +2 -2
  717. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js.map +1 -1
  718. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.d.ts +1 -1
  719. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +1 -1
  720. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts +1 -1
  721. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  722. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js +13 -10
  723. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js.map +1 -1
  724. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts +3 -3
  725. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  726. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +17 -13
  727. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
  728. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.d.ts.map +1 -1
  729. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.js +5 -1
  730. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.js.map +1 -1
  731. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js +1 -1
  732. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js.map +1 -1
  733. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js +1 -1
  734. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js.map +1 -1
  735. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.d.ts +15 -4
  736. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.d.ts.map +1 -1
  737. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.js +55 -26
  738. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.js.map +1 -1
  739. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts +1 -2
  740. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts.map +1 -1
  741. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  742. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/JSHandle.js +2 -2
  743. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/JSHandle.js.map +1 -1
  744. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
  745. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +2 -1
  746. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
  747. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts +1 -1
  748. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
  749. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +16 -7
  750. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js.map +1 -1
  751. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts +4 -4
  752. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts.map +1 -1
  753. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js +4 -4
  754. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +2 -0
  755. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
  756. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +2 -0
  757. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
  758. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.js +6 -6
  759. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.js.map +1 -1
  760. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +1 -2
  761. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js.map +1 -1
  762. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CSSQueryHandler.d.ts.map +1 -1
  763. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts +0 -8
  764. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  765. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js +3 -12
  766. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js.map +1 -1
  767. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +3 -0
  768. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  769. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConsoleMessage.d.ts +2 -1
  770. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConsoleMessage.d.ts.map +1 -1
  771. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConsoleMessage.js +5 -2
  772. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConsoleMessage.js.map +1 -1
  773. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.d.ts.map +1 -1
  774. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +4 -5
  775. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
  776. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.d.ts +7 -0
  777. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.d.ts.map +1 -1
  778. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.js +9 -1
  779. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.js.map +1 -1
  780. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js +1 -2
  781. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js.map +1 -1
  782. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HandleIterator.js +13 -7
  783. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HandleIterator.js.map +1 -1
  784. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LazyArg.d.ts +1 -1
  785. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LazyArg.d.ts.map +1 -1
  786. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PSelectorParser.js +1 -2
  787. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PSelectorParser.js.map +1 -1
  788. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PierceQueryHandler.d.ts.map +1 -1
  789. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js +12 -5
  790. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js.map +1 -1
  791. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.d.ts.map +1 -1
  792. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js +5 -3
  793. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js.map +1 -1
  794. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts +7 -7
  795. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts.map +1 -1
  796. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js +0 -7
  797. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js.map +1 -1
  798. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts +2 -3
  799. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
  800. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +14 -12
  801. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
  802. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts +1 -3
  803. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts.map +1 -1
  804. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.js +0 -3
  805. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.js.map +1 -1
  806. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.d.ts +1 -1
  807. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.js +1 -1
  808. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
  809. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
  810. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/ARIAQuerySelector.d.ts.map +1 -1
  811. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/CSSSelector.d.ts.map +1 -1
  812. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.d.ts.map +1 -1
  813. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/TextQuerySelector.d.ts.map +1 -1
  814. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/XPathQuerySelector.d.ts.map +1 -1
  815. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +4 -4
  816. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts.map +1 -1
  817. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/util.js +3 -3
  818. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/util.js.map +1 -1
  819. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  820. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js.map +1 -1
  821. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  822. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js +3 -4
  823. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js.map +1 -1
  824. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts +0 -1
  825. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts.map +1 -1
  826. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.js.map +1 -1
  827. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts +0 -1
  828. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
  829. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.d.ts +1 -1
  830. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.d.ts.map +1 -1
  831. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.js +0 -1
  832. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.js.map +1 -1
  833. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util/fs.js +2 -3
  834. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util/fs.js.map +1 -1
  835. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts +6 -6
  836. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts.map +1 -1
  837. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js +15 -4
  838. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js.map +1 -1
  839. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
  840. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
  841. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
  842. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.d.ts.map +1 -1
  843. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.js +1 -0
  844. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.js.map +1 -1
  845. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.d.ts +0 -1
  846. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.d.ts.map +1 -1
  847. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.js +4 -5
  848. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.js.map +1 -1
  849. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.d.ts.map +1 -1
  850. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.js +2 -2
  851. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.js.map +1 -1
  852. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
  853. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts.map +1 -1
  854. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.d.ts +1 -1
  855. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.d.ts.map +1 -1
  856. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.js +18 -13
  857. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.js.map +1 -1
  858. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts.map +1 -1
  859. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js +4 -5
  860. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js.map +1 -1
  861. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/incremental-id-generator.d.ts +14 -0
  862. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/incremental-id-generator.d.ts.map +1 -0
  863. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/incremental-id-generator.js +18 -0
  864. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/incremental-id-generator.js.map +1 -0
  865. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.d.ts +1 -0
  866. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.d.ts.map +1 -1
  867. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.js +1 -0
  868. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.js.map +1 -1
  869. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +424 -587
  870. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +527 -243
  871. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +4 -5
  872. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
  873. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +1 -6
  874. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
  875. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts +1 -1
  876. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +1 -1
  877. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.d.ts +1 -1
  878. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.js +1 -1
  879. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +18 -7
  880. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
  881. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js +32 -11
  882. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
  883. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts +2 -2
  884. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js +13 -6
  885. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js.map +1 -1
  886. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts +7 -2
  887. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts.map +1 -1
  888. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.js.map +1 -1
  889. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPResponse.d.ts +0 -1
  890. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPResponse.d.ts.map +1 -1
  891. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.d.ts +37 -8
  892. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.d.ts.map +1 -1
  893. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.js +52 -3
  894. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.js.map +1 -1
  895. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/JSHandle.js +12 -5
  896. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/JSHandle.js.map +1 -1
  897. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +22 -22
  898. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
  899. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +24 -17
  900. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
  901. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.d.ts +2 -2
  902. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.js +2 -2
  903. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.d.ts +1 -1
  904. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.d.ts.map +1 -1
  905. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.js +0 -1
  906. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.js.map +1 -1
  907. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.d.ts.map +1 -1
  908. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.js +12 -5
  909. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.js.map +1 -1
  910. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts +0 -1
  911. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts.map +1 -1
  912. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js +4 -0
  913. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
  914. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js +12 -5
  915. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js.map +1 -1
  916. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  917. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js +22 -13
  918. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js.map +1 -1
  919. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +12 -5
  920. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
  921. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
  922. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js +4 -1
  923. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js.map +1 -1
  924. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.d.ts +14 -4
  925. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.d.ts.map +1 -1
  926. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.js +57 -23
  927. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.js.map +1 -1
  928. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +21 -10
  929. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
  930. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +12 -5
  931. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
  932. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.js +12 -5
  933. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.js.map +1 -1
  934. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.d.ts +1 -1
  935. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.d.ts.map +1 -1
  936. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.js +0 -1
  937. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.js.map +1 -1
  938. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.d.ts.map +1 -1
  939. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js +3 -0
  940. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js.map +1 -1
  941. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Binding.js +12 -5
  942. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Binding.js.map +1 -1
  943. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts +0 -1
  944. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts.map +1 -1
  945. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js +12 -5
  946. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js.map +1 -1
  947. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts.map +1 -1
  948. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js +3 -1
  949. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js.map +1 -1
  950. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.d.ts +1 -1
  951. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +1 -1
  952. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts +1 -1
  953. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  954. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js +13 -10
  955. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js.map +1 -1
  956. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts +3 -3
  957. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  958. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +17 -13
  959. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
  960. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.d.ts.map +1 -1
  961. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.js +5 -1
  962. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.js.map +1 -1
  963. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js +1 -1
  964. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js.map +1 -1
  965. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js +1 -1
  966. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js.map +1 -1
  967. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.d.ts +15 -4
  968. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.d.ts.map +1 -1
  969. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.js +55 -26
  970. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.js.map +1 -1
  971. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts +1 -2
  972. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts.map +1 -1
  973. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  974. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
  975. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +2 -1
  976. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
  977. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts +1 -1
  978. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
  979. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +16 -7
  980. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js.map +1 -1
  981. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts +4 -4
  982. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts.map +1 -1
  983. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js +4 -4
  984. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +2 -0
  985. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
  986. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +2 -0
  987. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
  988. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CSSQueryHandler.d.ts.map +1 -1
  989. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts +0 -8
  990. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  991. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js +1 -9
  992. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js.map +1 -1
  993. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +3 -0
  994. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  995. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts +2 -1
  996. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts.map +1 -1
  997. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.js +5 -2
  998. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.js.map +1 -1
  999. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -1
  1000. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +0 -1
  1001. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js.map +1 -1
  1002. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts +7 -0
  1003. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts.map +1 -1
  1004. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js +7 -0
  1005. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js.map +1 -1
  1006. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HandleIterator.js +12 -5
  1007. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HandleIterator.js.map +1 -1
  1008. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LazyArg.d.ts +1 -1
  1009. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LazyArg.d.ts.map +1 -1
  1010. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PierceQueryHandler.d.ts.map +1 -1
  1011. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +12 -5
  1012. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js.map +1 -1
  1013. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.d.ts.map +1 -1
  1014. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js +5 -3
  1015. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js.map +1 -1
  1016. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts +7 -7
  1017. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts.map +1 -1
  1018. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js +0 -7
  1019. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js.map +1 -1
  1020. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts +2 -3
  1021. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
  1022. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +3 -1
  1023. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
  1024. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts +1 -3
  1025. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts.map +1 -1
  1026. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.js +0 -3
  1027. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.js.map +1 -1
  1028. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.d.ts +1 -1
  1029. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.js +1 -1
  1030. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
  1031. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
  1032. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/ARIAQuerySelector.d.ts.map +1 -1
  1033. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/CSSSelector.d.ts.map +1 -1
  1034. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.d.ts.map +1 -1
  1035. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/TextQuerySelector.d.ts.map +1 -1
  1036. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/XPathQuerySelector.d.ts.map +1 -1
  1037. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts +3 -3
  1038. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts.map +1 -1
  1039. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1040. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
  1041. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  1042. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js +0 -1
  1043. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map +1 -1
  1044. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +0 -1
  1045. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts.map +1 -1
  1046. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js.map +1 -1
  1047. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts +0 -1
  1048. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
  1049. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.d.ts +1 -1
  1050. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.d.ts.map +1 -1
  1051. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.js +0 -1
  1052. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.js.map +1 -1
  1053. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core-browser.d.ts +1 -1
  1054. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core-browser.d.ts.map +1 -1
  1055. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts +6 -6
  1056. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts.map +1 -1
  1057. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js +3 -4
  1058. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js.map +1 -1
  1059. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
  1060. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
  1061. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
  1062. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.d.ts.map +1 -1
  1063. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.js +1 -0
  1064. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.js.map +1 -1
  1065. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/ErrorLike.d.ts +0 -1
  1066. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/ErrorLike.d.ts.map +1 -1
  1067. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Function.d.ts.map +1 -1
  1068. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Mutex.d.ts +1 -1
  1069. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Mutex.d.ts.map +1 -1
  1070. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.d.ts +1 -1
  1071. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.d.ts.map +1 -1
  1072. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js +12 -6
  1073. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js.map +1 -1
  1074. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts.map +1 -1
  1075. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/incremental-id-generator.d.ts +14 -0
  1076. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/incremental-id-generator.d.ts.map +1 -0
  1077. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/incremental-id-generator.js +15 -0
  1078. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/incremental-id-generator.js.map +1 -0
  1079. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.d.ts +1 -0
  1080. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.d.ts.map +1 -1
  1081. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js +1 -0
  1082. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js.map +1 -1
  1083. package/front_end/third_party/puppeteer/package/lib/types.d.ts +424 -587
  1084. package/front_end/third_party/puppeteer/package/package.json +8 -8
  1085. package/front_end/third_party/puppeteer/package/src/api/Browser.ts +10 -11
  1086. package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +5 -5
  1087. package/front_end/third_party/puppeteer/package/src/api/CDPSession.ts +2 -2
  1088. package/front_end/third_party/puppeteer/package/src/api/Dialog.ts +1 -1
  1089. package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +65 -47
  1090. package/front_end/third_party/puppeteer/package/src/api/Frame.ts +33 -33
  1091. package/front_end/third_party/puppeteer/package/src/api/HTTPRequest.ts +14 -9
  1092. package/front_end/third_party/puppeteer/package/src/api/Input.ts +68 -19
  1093. package/front_end/third_party/puppeteer/package/src/api/JSHandle.ts +5 -5
  1094. package/front_end/third_party/puppeteer/package/src/api/Page.ts +88 -87
  1095. package/front_end/third_party/puppeteer/package/src/api/Realm.ts +2 -2
  1096. package/front_end/third_party/puppeteer/package/src/api/WebWorker.ts +2 -2
  1097. package/front_end/third_party/puppeteer/package/src/api/api.ts +1 -1
  1098. package/front_end/third_party/puppeteer/package/src/api/locators/locators.ts +79 -79
  1099. package/front_end/third_party/puppeteer/package/src/bidi/BidiOverCdp.ts +7 -7
  1100. package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +9 -5
  1101. package/front_end/third_party/puppeteer/package/src/bidi/BrowserConnector.ts +5 -5
  1102. package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +10 -10
  1103. package/front_end/third_party/puppeteer/package/src/bidi/CDPSession.ts +4 -4
  1104. package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +6 -6
  1105. package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +12 -10
  1106. package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +11 -11
  1107. package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +46 -41
  1108. package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +9 -9
  1109. package/front_end/third_party/puppeteer/package/src/bidi/HTTPResponse.ts +3 -3
  1110. package/front_end/third_party/puppeteer/package/src/bidi/Input.ts +80 -39
  1111. package/front_end/third_party/puppeteer/package/src/bidi/JSHandle.ts +1 -1
  1112. package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +56 -52
  1113. package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +15 -15
  1114. package/front_end/third_party/puppeteer/package/src/bidi/Serializer.ts +1 -1
  1115. package/front_end/third_party/puppeteer/package/src/bidi/Target.ts +2 -2
  1116. package/front_end/third_party/puppeteer/package/src/bidi/WebWorker.ts +2 -2
  1117. package/front_end/third_party/puppeteer/package/src/bidi/core/Browser.ts +4 -4
  1118. package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +17 -17
  1119. package/front_end/third_party/puppeteer/package/src/bidi/core/Connection.ts +1 -1
  1120. package/front_end/third_party/puppeteer/package/src/bidi/core/Navigation.ts +3 -3
  1121. package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +6 -6
  1122. package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +5 -5
  1123. package/front_end/third_party/puppeteer/package/src/bidi/core/Session.ts +4 -4
  1124. package/front_end/third_party/puppeteer/package/src/bidi/core/UserContext.ts +9 -9
  1125. package/front_end/third_party/puppeteer/package/src/bidi/core/UserPrompt.ts +4 -4
  1126. package/front_end/third_party/puppeteer/package/src/bidi/core/core.ts +1 -1
  1127. package/front_end/third_party/puppeteer/package/src/bidi/util.ts +4 -4
  1128. package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +7 -7
  1129. package/front_end/third_party/puppeteer/package/src/cdp/AriaQueryHandler.ts +10 -6
  1130. package/front_end/third_party/puppeteer/package/src/cdp/Binding.ts +6 -6
  1131. package/front_end/third_party/puppeteer/package/src/cdp/Browser.ts +24 -24
  1132. package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +4 -4
  1133. package/front_end/third_party/puppeteer/package/src/cdp/BrowserContext.ts +2 -2
  1134. package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +7 -7
  1135. package/front_end/third_party/puppeteer/package/src/cdp/ChromeTargetManager.ts +19 -17
  1136. package/front_end/third_party/puppeteer/package/src/cdp/Connection.ts +7 -7
  1137. package/front_end/third_party/puppeteer/package/src/cdp/Coverage.ts +11 -11
  1138. package/front_end/third_party/puppeteer/package/src/cdp/DeviceRequestPrompt.ts +17 -17
  1139. package/front_end/third_party/puppeteer/package/src/cdp/Dialog.ts +1 -1
  1140. package/front_end/third_party/puppeteer/package/src/cdp/ElementHandle.ts +20 -15
  1141. package/front_end/third_party/puppeteer/package/src/cdp/EmulationManager.ts +34 -34
  1142. package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +18 -19
  1143. package/front_end/third_party/puppeteer/package/src/cdp/ExtensionTransport.ts +7 -3
  1144. package/front_end/third_party/puppeteer/package/src/cdp/FirefoxTargetManager.ts +7 -7
  1145. package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +16 -16
  1146. package/front_end/third_party/puppeteer/package/src/cdp/FrameManager.ts +20 -20
  1147. package/front_end/third_party/puppeteer/package/src/cdp/FrameManagerEvents.ts +1 -1
  1148. package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +5 -5
  1149. package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +5 -5
  1150. package/front_end/third_party/puppeteer/package/src/cdp/Input.ts +87 -40
  1151. package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +14 -13
  1152. package/front_end/third_party/puppeteer/package/src/cdp/JSHandle.ts +2 -2
  1153. package/front_end/third_party/puppeteer/package/src/cdp/LifecycleWatcher.ts +11 -11
  1154. package/front_end/third_party/puppeteer/package/src/cdp/NetworkEventManager.ts +15 -15
  1155. package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +38 -37
  1156. package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +71 -70
  1157. package/front_end/third_party/puppeteer/package/src/cdp/PredefinedNetworkConditions.ts +4 -4
  1158. package/front_end/third_party/puppeteer/package/src/cdp/Target.ts +4 -4
  1159. package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +1 -1
  1160. package/front_end/third_party/puppeteer/package/src/cdp/Tracing.ts +2 -2
  1161. package/front_end/third_party/puppeteer/package/src/cdp/WebWorker.ts +5 -5
  1162. package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +2 -0
  1163. package/front_end/third_party/puppeteer/package/src/cdp/utils.ts +10 -10
  1164. package/front_end/third_party/puppeteer/package/src/common/BrowserConnector.ts +5 -5
  1165. package/front_end/third_party/puppeteer/package/src/common/CSSQueryHandler.ts +2 -2
  1166. package/front_end/third_party/puppeteer/package/src/common/CallbackRegistry.ts +10 -22
  1167. package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +3 -0
  1168. package/front_end/third_party/puppeteer/package/src/common/ConsoleMessage.ts +9 -2
  1169. package/front_end/third_party/puppeteer/package/src/common/CustomQueryHandler.ts +6 -6
  1170. package/front_end/third_party/puppeteer/package/src/common/Debug.ts +0 -1
  1171. package/front_end/third_party/puppeteer/package/src/common/Errors.ts +7 -0
  1172. package/front_end/third_party/puppeteer/package/src/common/EventEmitter.ts +8 -8
  1173. package/front_end/third_party/puppeteer/package/src/common/FileChooser.ts +3 -3
  1174. package/front_end/third_party/puppeteer/package/src/common/HandleIterator.ts +3 -3
  1175. package/front_end/third_party/puppeteer/package/src/common/LazyArg.ts +1 -1
  1176. package/front_end/third_party/puppeteer/package/src/common/NetworkManagerEvents.ts +1 -1
  1177. package/front_end/third_party/puppeteer/package/src/common/PQueryHandler.ts +2 -2
  1178. package/front_end/third_party/puppeteer/package/src/common/PSelectorParser.ts +1 -1
  1179. package/front_end/third_party/puppeteer/package/src/common/PierceQueryHandler.ts +2 -2
  1180. package/front_end/third_party/puppeteer/package/src/common/Puppeteer.ts +1 -1
  1181. package/front_end/third_party/puppeteer/package/src/common/QueryHandler.ts +12 -12
  1182. package/front_end/third_party/puppeteer/package/src/common/TaskQueue.ts +1 -1
  1183. package/front_end/third_party/puppeteer/package/src/common/TextQueryHandler.ts +1 -1
  1184. package/front_end/third_party/puppeteer/package/src/common/WaitTask.ts +16 -16
  1185. package/front_end/third_party/puppeteer/package/src/common/XPathQueryHandler.ts +2 -2
  1186. package/front_end/third_party/puppeteer/package/src/common/common.ts +7 -7
  1187. package/front_end/third_party/puppeteer/package/src/common/util.ts +15 -14
  1188. package/front_end/third_party/puppeteer/package/src/environment.ts +1 -4
  1189. package/front_end/third_party/puppeteer/package/src/generated/injected.ts +1 -1
  1190. package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
  1191. package/front_end/third_party/puppeteer/package/src/injected/ARIAQuerySelector.ts +3 -3
  1192. package/front_end/third_party/puppeteer/package/src/injected/CSSSelector.ts +2 -2
  1193. package/front_end/third_party/puppeteer/package/src/injected/PQuerySelector.ts +7 -7
  1194. package/front_end/third_party/puppeteer/package/src/injected/PierceQuerySelector.ts +2 -2
  1195. package/front_end/third_party/puppeteer/package/src/injected/TextContent.ts +1 -1
  1196. package/front_end/third_party/puppeteer/package/src/injected/TextQuerySelector.ts +1 -1
  1197. package/front_end/third_party/puppeteer/package/src/injected/XPathQuerySelector.ts +2 -2
  1198. package/front_end/third_party/puppeteer/package/src/injected/util.ts +2 -2
  1199. package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +38 -30
  1200. package/front_end/third_party/puppeteer/package/src/node/ChromeLauncher.ts +11 -12
  1201. package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +8 -8
  1202. package/front_end/third_party/puppeteer/package/src/node/NodeWebSocketTransport.ts +1 -1
  1203. package/front_end/third_party/puppeteer/package/src/node/PipeTransport.ts +7 -3
  1204. package/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts +4 -4
  1205. package/front_end/third_party/puppeteer/package/src/node/ScreenRecorder.ts +10 -10
  1206. package/front_end/third_party/puppeteer/package/src/node/node.ts +1 -1
  1207. package/front_end/third_party/puppeteer/package/src/puppeteer-core.ts +4 -4
  1208. package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
  1209. package/front_end/third_party/puppeteer/package/src/util/AsyncIterableUtil.ts +3 -3
  1210. package/front_end/third_party/puppeteer/package/src/util/Deferred.ts +3 -2
  1211. package/front_end/third_party/puppeteer/package/src/util/ErrorLike.ts +1 -1
  1212. package/front_end/third_party/puppeteer/package/src/util/Function.ts +4 -4
  1213. package/front_end/third_party/puppeteer/package/src/util/Mutex.ts +1 -1
  1214. package/front_end/third_party/puppeteer/package/src/util/assert.ts +1 -1
  1215. package/front_end/third_party/puppeteer/package/src/util/decorators.ts +8 -9
  1216. package/front_end/third_party/puppeteer/package/src/util/encoding.ts +1 -1
  1217. package/front_end/third_party/puppeteer/package/src/util/incremental-id-generator.ts +20 -0
  1218. package/front_end/third_party/puppeteer/package/src/util/util.ts +1 -0
  1219. package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +1 -0
  1220. package/front_end/third_party/web-vitals/README.chromium +3 -3
  1221. package/front_end/third_party/web-vitals/package/README.md +36 -23
  1222. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.d.ts +2 -1
  1223. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +11 -13
  1224. package/front_end/third_party/web-vitals/package/dist/modules/lib/bindReporter.d.ts +2 -22
  1225. package/front_end/third_party/web-vitals/package/dist/modules/lib/initMetric.d.ts +3 -2
  1226. package/front_end/third_party/web-vitals/package/dist/modules/lib/interactions.js +1 -1
  1227. package/front_end/third_party/web-vitals/package/dist/modules/onLCP.js +4 -1
  1228. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.iife.js +1 -1
  1229. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.js +1 -1
  1230. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.umd.cjs +1 -1
  1231. package/front_end/third_party/web-vitals/package/dist/web-vitals.iife.js +1 -1
  1232. package/front_end/third_party/web-vitals/package/dist/web-vitals.js +1 -1
  1233. package/front_end/third_party/web-vitals/package/dist/web-vitals.umd.cjs +1 -1
  1234. package/front_end/third_party/web-vitals/package/package.json +1 -1
  1235. package/front_end/third_party/web-vitals/package/src/attribution/onINP.ts +11 -14
  1236. package/front_end/third_party/web-vitals/package/src/lib/interactions.ts +1 -1
  1237. package/front_end/third_party/web-vitals/package/src/onLCP.ts +4 -1
  1238. package/front_end/third_party/web-vitals/rebuild.sh +14 -0
  1239. package/front_end/third_party/web-vitals/web-vitals.ts +2 -0
  1240. package/front_end/ui/components/adorners/Adorner.ts +0 -1
  1241. package/front_end/ui/components/buttons/Button.test.ts +14 -0
  1242. package/front_end/ui/components/buttons/Button.ts +27 -5
  1243. package/front_end/ui/components/buttons/button.css +1 -0
  1244. package/front_end/ui/components/cards/Card.test.ts +31 -5
  1245. package/front_end/ui/components/cards/Card.ts +22 -3
  1246. package/front_end/ui/components/cards/card.css +29 -8
  1247. package/front_end/ui/components/chrome_link/ChromeLink.ts +0 -1
  1248. package/front_end/ui/components/data_grid/DataGrid.ts +0 -1
  1249. package/front_end/ui/components/data_grid/DataGridController.ts +2 -3
  1250. package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +1 -2
  1251. package/front_end/ui/components/dialogs/Dialog.ts +2 -5
  1252. package/front_end/ui/components/dialogs/IconDialog.ts +9 -11
  1253. package/front_end/ui/components/dialogs/ShortcutDialog.ts +18 -17
  1254. package/front_end/ui/components/dialogs/dialog.css +2 -6
  1255. package/front_end/ui/components/dialogs/shortcutDialog.css +33 -41
  1256. package/front_end/ui/components/diff_view/DiffView.ts +0 -1
  1257. package/front_end/ui/components/docs/building-ui-documentation/ComponentPerformance.md +1 -4
  1258. package/front_end/ui/components/docs/building-ui-documentation/CreatingComponents.md +14 -44
  1259. package/front_end/ui/components/docs/freestyler/basic.ts +6 -9
  1260. package/front_end/ui/components/docs/freestyler/empty_state.ts +6 -8
  1261. package/front_end/ui/components/docs/icon_dialog/basic.ts +4 -4
  1262. package/front_end/ui/components/docs/performance_panel/basic.ts +4 -1
  1263. package/front_end/ui/components/docs/performance_panel/track_example.html +1 -1
  1264. package/front_end/ui/components/docs/report/basic.ts +3 -3
  1265. package/front_end/ui/components/expandable_list/ExpandableList.ts +0 -1
  1266. package/front_end/ui/components/floating_button/FloatingButton.ts +0 -1
  1267. package/front_end/ui/components/icon_button/FileSourceIcon.test.ts +32 -0
  1268. package/front_end/ui/components/icon_button/FileSourceIcon.ts +76 -0
  1269. package/front_end/ui/components/icon_button/Icon.ts +0 -3
  1270. package/front_end/ui/components/icon_button/IconButton.ts +0 -1
  1271. package/front_end/ui/components/icon_button/fileSourceIcon.css +43 -0
  1272. package/front_end/ui/components/icon_button/icon_button.ts +2 -0
  1273. package/front_end/ui/components/issue_counter/IssueCounter.ts +1 -3
  1274. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +0 -1
  1275. package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
  1276. package/front_end/ui/components/linkifier/LinkifierImpl.ts +4 -2
  1277. package/front_end/ui/components/markdown_view/CodeBlock.ts +0 -1
  1278. package/front_end/ui/components/markdown_view/MarkdownImage.ts +0 -1
  1279. package/front_end/ui/components/markdown_view/MarkdownLink.ts +0 -1
  1280. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +39 -17
  1281. package/front_end/ui/components/markdown_view/MarkdownView.ts +85 -19
  1282. package/front_end/ui/components/markdown_view/markdownView.css +15 -0
  1283. package/front_end/ui/components/menus/Menu.ts +0 -3
  1284. package/front_end/ui/components/menus/SelectMenu.ts +0 -2
  1285. package/front_end/ui/components/menus/selectMenu.css +8 -5
  1286. package/front_end/ui/components/menus/selectMenuButton.css +29 -17
  1287. package/front_end/ui/components/node_text/NodeText.ts +0 -1
  1288. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +0 -1
  1289. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +1 -3
  1290. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +1 -3
  1291. package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +0 -1
  1292. package/front_end/ui/components/report_view/ReportView.ts +1 -7
  1293. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +0 -1
  1294. package/front_end/ui/components/settings/SettingCheckbox.ts +30 -11
  1295. package/front_end/ui/components/settings/SettingDeprecationWarning.ts +2 -4
  1296. package/front_end/ui/components/settings/settingCheckbox.css +1 -0
  1297. package/front_end/ui/components/spinners/Spinner.ts +0 -1
  1298. package/front_end/ui/components/spinners/spinner.css +1 -0
  1299. package/front_end/ui/components/split_view/SplitView.ts +0 -1
  1300. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +0 -1
  1301. package/front_end/ui/components/survey_link/SurveyLink.ts +1 -3
  1302. package/front_end/ui/components/switch/SwitchImpl.ts +0 -1
  1303. package/front_end/ui/components/text_editor/TextEditor.ts +0 -2
  1304. package/front_end/ui/components/text_prompt/TextPrompt.ts +0 -1
  1305. package/front_end/ui/components/tree_outline/TreeOutline.ts +0 -1
  1306. package/front_end/ui/components/two_states_counter/TwoStatesCounter.ts +0 -1
  1307. package/front_end/ui/legacy/ContextMenu.ts +48 -9
  1308. package/front_end/ui/legacy/FilterBar.test.ts +52 -0
  1309. package/front_end/ui/legacy/FilterBar.ts +46 -1
  1310. package/front_end/ui/legacy/InplaceEditor.ts +18 -14
  1311. package/front_end/ui/legacy/KeyboardShortcut.ts +35 -21
  1312. package/front_end/ui/legacy/Panel.ts +2 -2
  1313. package/front_end/ui/legacy/ShortcutRegistry.ts +10 -7
  1314. package/front_end/ui/legacy/SoftContextMenu.ts +3 -0
  1315. package/front_end/ui/legacy/TabbedPane.ts +0 -14
  1316. package/front_end/ui/legacy/ThrottledWidget.ts +2 -2
  1317. package/front_end/ui/legacy/Toolbar.ts +1 -0
  1318. package/front_end/ui/legacy/Treeoutline.ts +7 -4
  1319. package/front_end/ui/legacy/UIUtils.ts +2 -0
  1320. package/front_end/ui/legacy/View.ts +2 -2
  1321. package/front_end/ui/legacy/ViewManager.ts +2 -1
  1322. package/front_end/ui/legacy/Widget.ts +4 -4
  1323. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +7 -2
  1324. package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +51 -0
  1325. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +100 -10
  1326. package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +20 -11
  1327. package/front_end/ui/legacy/components/data_grid/dataGrid.css +8 -1
  1328. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +4 -7
  1329. package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +0 -1
  1330. package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +0 -1
  1331. package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +0 -1
  1332. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +0 -1
  1333. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +0 -1
  1334. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.test.ts +19 -0
  1335. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +1 -4
  1336. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +1 -2
  1337. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +3 -3
  1338. package/front_end/ui/legacy/components/perf_ui/CanvasHelper.ts +1 -83
  1339. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +3 -2
  1340. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +166 -78
  1341. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +129 -100
  1342. package/front_end/ui/legacy/components/perf_ui/PieChart.ts +0 -1
  1343. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +4 -2
  1344. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.test.ts +9 -4
  1345. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +6 -6
  1346. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +25 -7
  1347. package/front_end/ui/legacy/components/perf_ui/flameChart.css +0 -2
  1348. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +54 -9
  1349. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +31 -105
  1350. package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -1
  1351. package/front_end/ui/legacy/components/source_frame/SourceFrame.test.ts +18 -0
  1352. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +20 -3
  1353. package/front_end/{panels/network/RequestBinaryResponseView.test.ts → ui/legacy/components/source_frame/StreamingContentHexView.test.ts} +12 -12
  1354. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +122 -0
  1355. package/front_end/ui/legacy/components/source_frame/source_frame.ts +2 -0
  1356. package/front_end/ui/legacy/components/utils/ImagePreview.ts +1 -1
  1357. package/front_end/ui/legacy/designTokens.css +46 -40
  1358. package/front_end/ui/legacy/filter.css +23 -8
  1359. package/front_end/ui/legacy/inspectorCommon.css +31 -29
  1360. package/front_end/ui/legacy/searchableView.css +4 -3
  1361. package/front_end/ui/legacy/softDropDownButton.css +10 -6
  1362. package/front_end/ui/legacy/tabbedPane.css +1 -1
  1363. package/front_end/ui/legacy/textPrompt.css +1 -1
  1364. package/front_end/ui/legacy/toolbar.css +38 -19
  1365. package/front_end/ui/visual_logging/KnownContextValues.ts +241 -1
  1366. package/front_end/ui/visual_logging/LoggingConfig.ts +6 -2
  1367. package/front_end/ui/visual_logging/LoggingDriver.test.ts +53 -6
  1368. package/front_end/ui/visual_logging/LoggingDriver.ts +8 -5
  1369. package/front_end/ui/visual_logging/LoggingEvents.test.ts +5 -1
  1370. package/front_end/ui/visual_logging/LoggingEvents.ts +1 -1
  1371. package/front_end/ui/visual_logging/LoggingState.ts +1 -1
  1372. package/package.json +10 -10
  1373. package/scripts/build/esbuild.js +3 -1
  1374. package/scripts/build/ninja/bundle.gni +3 -3
  1375. package/scripts/build/{rollup.config.js → rollup.config.mjs} +4 -4
  1376. package/scripts/devtools_paths.js +11 -1
  1377. package/scripts/devtools_paths.py +8 -4
  1378. package/scripts/eslint_rules/lib/check_test_definitions.js +1 -1
  1379. package/scripts/eslint_rules/tests/check_test_definitions_test.js +18 -3
  1380. package/scripts/tools/update_goldens_v2.py +1 -1
  1381. package/tsconfig.json +11 -1
  1382. package/docs/add_uma_metrics.md +0 -41
  1383. package/docs/uma_metrics.md +0 -23
  1384. package/front_end/models/timeline_model/TimelineModelFilter.ts +0 -61
  1385. package/front_end/panels/animation/AnimationDOMNode.ts +0 -268
  1386. package/front_end/panels/freestyler/components/ProvideFeedback.test.ts +0 -29
  1387. package/front_end/panels/freestyler/components/ProvideFeedback.ts +0 -247
  1388. package/front_end/panels/network/RequestBinaryResponseView.ts +0 -67
  1389. package/scripts/eslint_rules/lib/lit_html_data_as_type.js +0 -83
  1390. package/scripts/eslint_rules/tests/lit_html_data_as_type_test.js +0 -81
  1391. /package/front_end/Images/{rollup.config.js → rollup.config.mjs} +0 -0
@@ -1 +1 @@
1
- var t,e,n,r=function(){var t=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(t&&t.responseStart>0&&t.responseStart<performance.now())return t},i=function(t){if("loading"===document.readyState)return"loading";var e=r();if(e){if(t<e.domInteractive)return"loading";if(0===e.domContentLoadedEventStart||t<e.domContentLoadedEventStart)return"dom-interactive";if(0===e.domComplete||t<e.domComplete)return"dom-content-loaded"}return"complete"},a=function(t){var e=t.nodeName;return 1===t.nodeType?e.toLowerCase():e.toUpperCase().replace(/^#/,"")},o=function(t,e){var n="";try{for(;t&&9!==t.nodeType;){var r=t,i=r.id?"#"+r.id:a(r)+(r.classList&&r.classList.value&&r.classList.value.trim()&&r.classList.value.trim().length?"."+r.classList.value.trim().replace(/\s+/g,"."):"");if(n.length+i.length>(e||100)-1)return n||i;if(n=n?i+">"+n:i,r.id)break;t=r.parentNode}}catch(t){}return n},c=-1,u=function(){return c},s=function(t){addEventListener("pageshow",(function(e){e.persisted&&(c=e.timeStamp,t(e))}),!0)},f=function(){var t=r();return t&&t.activationStart||0},d=function(t,e){var n=r(),i="navigate";u()>=0?i="back-forward-cache":n&&(document.prerendering||f()>0?i="prerender":document.wasDiscarded?i="restore":n.type&&(i=n.type.replace(/_/g,"-")));return{name:t,value:void 0===e?-1:e,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:i}},l=function(t,e,n){try{if(PerformanceObserver.supportedEntryTypes.includes(t)){var r=new PerformanceObserver((function(t){Promise.resolve().then((function(){e(t.getEntries())}))}));return r.observe(Object.assign({type:t,buffered:!0},n||{})),r}}catch(t){}},m=function(t,e,n,r){var i,a;return function(o){e.value>=0&&(o||r)&&((a=e.value-(i||0))||void 0===i)&&(i=e.value,e.delta=a,e.rating=function(t,e){return t>e[1]?"poor":t>e[0]?"needs-improvement":"good"}(e.value,n),t(e))}},p=function(t){requestAnimationFrame((function(){return requestAnimationFrame((function(){return t()}))}))},v=function(t){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&t()}))},g=function(t){var e=!1;return function(){e||(t(),e=!0)}},h=-1,T=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},y=function(t){"hidden"===document.visibilityState&&h>-1&&(h="visibilitychange"===t.type?t.timeStamp:0,S())},E=function(){addEventListener("visibilitychange",y,!0),addEventListener("prerenderingchange",y,!0)},S=function(){removeEventListener("visibilitychange",y,!0),removeEventListener("prerenderingchange",y,!0)},b=function(){return h<0&&(h=T(),E(),s((function(){setTimeout((function(){h=T(),E()}),0)}))),{get firstHiddenTime(){return h}}},L=function(t){document.prerendering?addEventListener("prerenderingchange",(function(){return t()}),!0):t()},C=[1800,3e3],M=function(t,e){e=e||{},L((function(){var n,r=b(),i=d("FCP"),a=l("paint",(function(t){t.forEach((function(t){"first-contentful-paint"===t.name&&(a.disconnect(),t.startTime<r.firstHiddenTime&&(i.value=Math.max(t.startTime-f(),0),i.entries.push(t),n(!0)))}))}));a&&(n=m(t,i,C,e.reportAllChanges),s((function(r){i=d("FCP"),n=m(t,i,C,e.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,n(!0)}))})))}))},D=[.1,.25],w=function(t,e){!function(t,e){e=e||{},M(g((function(){var n,r=d("CLS",0),i=0,a=[],o=function(t){t.forEach((function(t){if(!t.hadRecentInput){var e=a[0],n=a[a.length-1];i&&t.startTime-n.startTime<1e3&&t.startTime-e.startTime<5e3?(i+=t.value,a.push(t)):(i=t.value,a=[t])}})),i>r.value&&(r.value=i,r.entries=a,n())},c=l("layout-shift",o);c&&(n=m(t,r,D,e.reportAllChanges),v((function(){o(c.takeRecords()),n(!0)})),s((function(){i=0,r=d("CLS",0),n=m(t,r,D,e.reportAllChanges),p((function(){return n()}))})),setTimeout(n,0))})))}((function(e){var n=function(t){var e,n={};if(t.entries.length){var r=t.entries.reduce((function(t,e){return t&&t.value>e.value?t:e}));if(r&&r.sources&&r.sources.length){var a=(e=r.sources).find((function(t){return t.node&&1===t.node.nodeType}))||e[0];a&&(n={largestShiftTarget:o(a.node),largestShiftTime:r.startTime,largestShiftValue:r.value,largestShiftSource:a,largestShiftEntry:r,loadState:i(r.startTime)})}}return Object.assign(t,{attribution:n})}(e);t(n)}),e)},x=function(t,e){M((function(e){var n=function(t){var e={timeToFirstByte:0,firstByteToFCP:t.value,loadState:i(u())};if(t.entries.length){var n=r(),a=t.entries[t.entries.length-1];if(n){var o=n.activationStart||0,c=Math.max(0,n.responseStart-o);e={timeToFirstByte:c,firstByteToFCP:t.value-c,loadState:i(t.entries[0].startTime),navigationEntry:n,fcpEntry:a}}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)},I=0,k=1/0,A=0,F=function(t){t.forEach((function(t){t.interactionId&&(k=Math.min(k,t.interactionId),A=Math.max(A,t.interactionId),I=A?(A-k)/7+1:0)}))},P=function(){"interactionCount"in performance||t||(t=l("event",F,{type:"event",buffered:!0,durationThreshold:0}))},B=[],O=new Map,R=0,j=function(){return(t?I:performance.interactionCount||0)-R},q=[],H=function(t){if(q.forEach((function(e){return e(t)})),t.interactionId||"first-input"===t.entryType){var e=B[B.length-1],n=O.get(t.interactionId);if(n||B.length<10||t.duration>e.latency){if(n)t.duration>n.latency?(n.entries=[t],n.latency=t.duration):t.duration===n.latency&&t.startTime===n.entries[0].startTime&&n.entries.push(t);else{var r={id:t.interactionId,latency:t.duration,entries:[t]};O.set(r.id,r),B.push(r)}B.sort((function(t,e){return e.latency-t.latency})),B.length>10&&B.splice(10).forEach((function(t){return O.delete(t.id)}))}}},N=function(t){var e=self.requestIdleCallback||self.setTimeout,n=-1;return t=g(t),"hidden"===document.visibilityState?t():(n=e(t),v(t)),n},W=[200,500],z=function(t,e){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(e=e||{},L((function(){var n;P();var r,i=d("INP"),a=function(t){N((function(){t.forEach(H);var e,n=(e=Math.min(B.length-1,Math.floor(j()/50)),B[e]);n&&n.latency!==i.value&&(i.value=n.latency,i.entries=n.entries,r())}))},o=l("event",a,{durationThreshold:null!==(n=e.durationThreshold)&&void 0!==n?n:40});r=m(t,i,W,e.reportAllChanges),o&&(o.observe({type:"first-input",buffered:!0}),v((function(){a(o.takeRecords()),r(!0)})),s((function(){R=0,B.length=0,O.clear(),i=d("INP"),r=m(t,i,W,e.reportAllChanges)})))})))},U=[],V=[],_=new WeakMap,G=new Map,J=-1,K=function(t){U=U.concat(t),Q()},Q=function(){J<0&&(J=N(X))},X=function(){G.size>10&&G.forEach((function(t,e){O.has(e)||G.delete(e)}));var t=B.map((function(t){return _.get(t.entries[0])})),e=V.length-50;V=V.filter((function(n,r){return r>=e||t.includes(n)}));for(var r=new Set,i=0;i<V.length;i++){var a=V[i];et(a.startTime,a.processingEnd).forEach((function(t){r.add(t)}))}for(var o=0;o<50;o++){var c=U[U.length-1-o];if(!c||c.startTime<n)break;r.add(c)}U=Array.from(r),J=-1};q.push((function(t){t.interactionId&&t.target&&!G.has(t.interactionId)&&G.set(t.interactionId,t.target)}),(function(t){var e,r=t.startTime+t.duration;n=Math.max(n,t.processingEnd);for(var i=V.length-1;i>=0;i--){var a=V[i];if(Math.abs(r-a.renderTime)<=8){(e=a).startTime=Math.min(t.startTime,e.startTime),e.processingStart=Math.min(t.processingStart,e.processingStart),e.processingEnd=Math.max(t.processingEnd,e.processingEnd),e.entries.push(t);break}}e||(e={startTime:t.startTime,processingStart:t.processingStart,processingEnd:t.processingEnd,renderTime:r,entries:[t]},V.push(e)),(t.interactionId||"first-input"===t.entryType)&&_.set(t,e),Q()}));var Y,Z,$,tt,et=function(t,e){for(var n,r=[],i=0;n=U[i];i++)if(!(n.startTime+n.duration<t)){if(n.startTime>e)break;r.push(n)}return r},nt=function(t,n){e||(e=l("long-animation-frame",K)),z((function(e){var n=function(t){var e=t.entries[0],n=_.get(e),r=e.processingStart,a=n.processingEnd,c=n.entries.sort((function(t,e){return t.processingStart-e.processingStart})),u=et(e.startTime,a),s=t.entries.find((function(t){return t.target})),f=s&&s.target||G.get(e.interactionId),d=[e.startTime+e.duration,a].concat(u.map((function(t){return t.startTime+t.duration}))),l=Math.max.apply(Math,d),m={interactionTarget:o(f),interactionTargetElement:f,interactionType:e.name.startsWith("key")?"keyboard":"pointer",interactionTime:e.startTime,nextPaintTime:l,processedEventEntries:c,longAnimationFrameEntries:u,inputDelay:r-e.startTime,processingDuration:a-r,presentationDelay:Math.max(l-a,0),loadState:i(e.startTime)};return Object.assign(t,{attribution:m})}(e);t(n)}),n)},rt=[2500,4e3],it={},at=function(t,e){!function(t,e){e=e||{},L((function(){var n,r=b(),i=d("LCP"),a=function(t){e.reportAllChanges||(t=t.slice(-1)),t.forEach((function(t){t.startTime<r.firstHiddenTime&&(i.value=Math.max(t.startTime-f(),0),i.entries=[t],n())}))},o=l("largest-contentful-paint",a);if(o){n=m(t,i,rt,e.reportAllChanges);var c=g((function(){it[i.id]||(a(o.takeRecords()),o.disconnect(),it[i.id]=!0,n(!0))}));["keydown","click"].forEach((function(t){addEventListener(t,(function(){return N(c)}),!0)})),v(c),s((function(r){i=d("LCP"),n=m(t,i,rt,e.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,it[i.id]=!0,n(!0)}))}))}}))}((function(e){var n=function(t){var e={timeToFirstByte:0,resourceLoadDelay:0,resourceLoadDuration:0,elementRenderDelay:t.value};if(t.entries.length){var n=r();if(n){var i=n.activationStart||0,a=t.entries[t.entries.length-1],c=a.url&&performance.getEntriesByType("resource").filter((function(t){return t.name===a.url}))[0],u=Math.max(0,n.responseStart-i),s=Math.max(u,c?(c.requestStart||c.startTime)-i:0),f=Math.max(s,c?c.responseEnd-i:0),d=Math.max(f,a.startTime-i);e={element:o(a.element),timeToFirstByte:u,resourceLoadDelay:s-u,resourceLoadDuration:f-s,elementRenderDelay:d-f,navigationEntry:n,lcpEntry:a},a.url&&(e.url=a.url),c&&(e.lcpResourceEntry=c)}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)},ot=[800,1800],ct=function t(e){document.prerendering?L((function(){return t(e)})):"complete"!==document.readyState?addEventListener("load",(function(){return t(e)}),!0):setTimeout(e,0)},ut=function(t,e){e=e||{};var n=d("TTFB"),i=m(t,n,ot,e.reportAllChanges);ct((function(){var a=r();a&&(n.value=Math.max(a.responseStart-f(),0),n.entries=[a],i(!0),s((function(){n=d("TTFB",0),(i=m(t,n,ot,e.reportAllChanges))(!0)})))}))},st=function(t,e){ut((function(e){var n=function(t){var e={waitingDuration:0,cacheDuration:0,dnsDuration:0,connectionDuration:0,requestDuration:0};if(t.entries.length){var n=t.entries[0],r=n.activationStart||0,i=Math.max((n.workerStart||n.fetchStart)-r,0),a=Math.max(n.domainLookupStart-r,0),o=Math.max(n.connectStart-r,0),c=Math.max(n.connectEnd-r,0);e={waitingDuration:i,cacheDuration:a-i,dnsDuration:o-a,connectionDuration:c-o,requestDuration:t.value-c,navigationEntry:n}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)},ft={passive:!0,capture:!0},dt=new Date,lt=function(t,e){Y||(Y=e,Z=t,$=new Date,vt(removeEventListener),mt())},mt=function(){if(Z>=0&&Z<$-dt){var t={entryType:"first-input",name:Y.type,target:Y.target,cancelable:Y.cancelable,startTime:Y.timeStamp,processingStart:Y.timeStamp+Z};tt.forEach((function(e){e(t)})),tt=[]}},pt=function(t){if(t.cancelable){var e=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;"pointerdown"==t.type?function(t,e){var n=function(){lt(t,e),i()},r=function(){i()},i=function(){removeEventListener("pointerup",n,ft),removeEventListener("pointercancel",r,ft)};addEventListener("pointerup",n,ft),addEventListener("pointercancel",r,ft)}(e,t):lt(e,t)}},vt=function(t){["mousedown","keydown","touchstart","pointerdown"].forEach((function(e){return t(e,pt,ft)}))},gt=[100,300],ht=function(t,e){e=e||{},L((function(){var n,r=b(),i=d("FID"),a=function(t){t.startTime<r.firstHiddenTime&&(i.value=t.processingStart-t.startTime,i.entries.push(t),n(!0))},o=function(t){t.forEach(a)},c=l("first-input",o);n=m(t,i,gt,e.reportAllChanges),c&&(v(g((function(){o(c.takeRecords()),c.disconnect()}))),s((function(){var r;i=d("FID"),n=m(t,i,gt,e.reportAllChanges),tt=[],Z=-1,Y=null,vt(addEventListener),r=a,tt.push(r),mt()})))}))},Tt=function(t,e){ht((function(e){var n=function(t){var e=t.entries[0],n={eventTarget:o(e.target),eventType:e.name,eventTime:e.startTime,eventEntry:e,loadState:i(e.startTime)};return Object.assign(t,{attribution:n})}(e);t(n)}),e)};export{D as CLSThresholds,C as FCPThresholds,gt as FIDThresholds,W as INPThresholds,rt as LCPThresholds,ot as TTFBThresholds,w as onCLS,x as onFCP,Tt as onFID,nt as onINP,at as onLCP,st as onTTFB};
1
+ var t,e,n=function(){var t=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(t&&t.responseStart>0&&t.responseStart<performance.now())return t},r=function(t){if("loading"===document.readyState)return"loading";var e=n();if(e){if(t<e.domInteractive)return"loading";if(0===e.domContentLoadedEventStart||t<e.domContentLoadedEventStart)return"dom-interactive";if(0===e.domComplete||t<e.domComplete)return"dom-content-loaded"}return"complete"},i=function(t){var e=t.nodeName;return 1===t.nodeType?e.toLowerCase():e.toUpperCase().replace(/^#/,"")},a=function(t,e){var n="";try{for(;t&&9!==t.nodeType;){var r=t,a=r.id?"#"+r.id:i(r)+(r.classList&&r.classList.value&&r.classList.value.trim()&&r.classList.value.trim().length?"."+r.classList.value.trim().replace(/\s+/g,"."):"");if(n.length+a.length>(e||100)-1)return n||a;if(n=n?a+">"+n:a,r.id)break;t=r.parentNode}}catch(t){}return n},o=-1,c=function(){return o},u=function(t){addEventListener("pageshow",(function(e){e.persisted&&(o=e.timeStamp,t(e))}),!0)},s=function(){var t=n();return t&&t.activationStart||0},f=function(t,e){var r=n(),i="navigate";c()>=0?i="back-forward-cache":r&&(document.prerendering||s()>0?i="prerender":document.wasDiscarded?i="restore":r.type&&(i=r.type.replace(/_/g,"-")));return{name:t,value:void 0===e?-1:e,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:i}},d=function(t,e,n){try{if(PerformanceObserver.supportedEntryTypes.includes(t)){var r=new PerformanceObserver((function(t){Promise.resolve().then((function(){e(t.getEntries())}))}));return r.observe(Object.assign({type:t,buffered:!0},n||{})),r}}catch(t){}},l=function(t,e,n,r){var i,a;return function(o){e.value>=0&&(o||r)&&((a=e.value-(i||0))||void 0===i)&&(i=e.value,e.delta=a,e.rating=function(t,e){return t>e[1]?"poor":t>e[0]?"needs-improvement":"good"}(e.value,n),t(e))}},m=function(t){requestAnimationFrame((function(){return requestAnimationFrame((function(){return t()}))}))},p=function(t){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&t()}))},v=function(t){var e=!1;return function(){e||(t(),e=!0)}},g=-1,h=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},T=function(t){"hidden"===document.visibilityState&&g>-1&&(g="visibilitychange"===t.type?t.timeStamp:0,E())},y=function(){addEventListener("visibilitychange",T,!0),addEventListener("prerenderingchange",T,!0)},E=function(){removeEventListener("visibilitychange",T,!0),removeEventListener("prerenderingchange",T,!0)},S=function(){return g<0&&(g=h(),y(),u((function(){setTimeout((function(){g=h(),y()}),0)}))),{get firstHiddenTime(){return g}}},b=function(t){document.prerendering?addEventListener("prerenderingchange",(function(){return t()}),!0):t()},L=[1800,3e3],C=function(t,e){e=e||{},b((function(){var n,r=S(),i=f("FCP"),a=d("paint",(function(t){t.forEach((function(t){"first-contentful-paint"===t.name&&(a.disconnect(),t.startTime<r.firstHiddenTime&&(i.value=Math.max(t.startTime-s(),0),i.entries.push(t),n(!0)))}))}));a&&(n=l(t,i,L,e.reportAllChanges),u((function(r){i=f("FCP"),n=l(t,i,L,e.reportAllChanges),m((function(){i.value=performance.now()-r.timeStamp,n(!0)}))})))}))},M=[.1,.25],D=function(t,e){!function(t,e){e=e||{},C(v((function(){var n,r=f("CLS",0),i=0,a=[],o=function(t){t.forEach((function(t){if(!t.hadRecentInput){var e=a[0],n=a[a.length-1];i&&t.startTime-n.startTime<1e3&&t.startTime-e.startTime<5e3?(i+=t.value,a.push(t)):(i=t.value,a=[t])}})),i>r.value&&(r.value=i,r.entries=a,n())},c=d("layout-shift",o);c&&(n=l(t,r,M,e.reportAllChanges),p((function(){o(c.takeRecords()),n(!0)})),u((function(){i=0,r=f("CLS",0),n=l(t,r,M,e.reportAllChanges),m((function(){return n()}))})),setTimeout(n,0))})))}((function(e){var n=function(t){var e,n={};if(t.entries.length){var i=t.entries.reduce((function(t,e){return t&&t.value>e.value?t:e}));if(i&&i.sources&&i.sources.length){var o=(e=i.sources).find((function(t){return t.node&&1===t.node.nodeType}))||e[0];o&&(n={largestShiftTarget:a(o.node),largestShiftTime:i.startTime,largestShiftValue:i.value,largestShiftSource:o,largestShiftEntry:i,loadState:r(i.startTime)})}}return Object.assign(t,{attribution:n})}(e);t(n)}),e)},w=function(t,e){C((function(e){var i=function(t){var e={timeToFirstByte:0,firstByteToFCP:t.value,loadState:r(c())};if(t.entries.length){var i=n(),a=t.entries[t.entries.length-1];if(i){var o=i.activationStart||0,u=Math.max(0,i.responseStart-o);e={timeToFirstByte:u,firstByteToFCP:t.value-u,loadState:r(t.entries[0].startTime),navigationEntry:i,fcpEntry:a}}}return Object.assign(t,{attribution:e})}(e);t(i)}),e)},x=0,I=1/0,k=0,A=function(t){t.forEach((function(t){t.interactionId&&(I=Math.min(I,t.interactionId),k=Math.max(k,t.interactionId),x=k?(k-I)/7+1:0)}))},F=function(){return t?x:performance.interactionCount||0},P=function(){"interactionCount"in performance||t||(t=d("event",A,{type:"event",buffered:!0,durationThreshold:0}))},B=[],O=new Map,R=0,j=function(){var t=Math.min(B.length-1,Math.floor((F()-R)/50));return B[t]},q=[],H=function(t){if(q.forEach((function(e){return e(t)})),t.interactionId||"first-input"===t.entryType){var e=B[B.length-1],n=O.get(t.interactionId);if(n||B.length<10||t.duration>e.latency){if(n)t.duration>n.latency?(n.entries=[t],n.latency=t.duration):t.duration===n.latency&&t.startTime===n.entries[0].startTime&&n.entries.push(t);else{var r={id:t.interactionId,latency:t.duration,entries:[t]};O.set(r.id,r),B.push(r)}B.sort((function(t,e){return e.latency-t.latency})),B.length>10&&B.splice(10).forEach((function(t){return O.delete(t.id)}))}}},N=function(t){var e=self.requestIdleCallback||self.setTimeout,n=-1;return t=v(t),"hidden"===document.visibilityState?t():(n=e(t),p(t)),n},W=[200,500],z=function(t,e){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(e=e||{},b((function(){var n;P();var r,i=f("INP"),a=function(t){N((function(){t.forEach(H);var e=j();e&&e.latency!==i.value&&(i.value=e.latency,i.entries=e.entries,r())}))},o=d("event",a,{durationThreshold:null!==(n=e.durationThreshold)&&void 0!==n?n:40});r=l(t,i,W,e.reportAllChanges),o&&(o.observe({type:"first-input",buffered:!0}),p((function(){a(o.takeRecords()),r(!0)})),u((function(){R=F(),B.length=0,O.clear(),i=f("INP"),r=l(t,i,W,e.reportAllChanges)})))})))},U=[],V=[],_=0,G=new WeakMap,J=new Map,K=-1,Q=function(t){U=U.concat(t),X()},X=function(){K<0&&(K=N(Y))},Y=function(){J.size>10&&J.forEach((function(t,e){O.has(e)||J.delete(e)}));var t=B.map((function(t){return G.get(t.entries[0])})),e=V.length-50;V=V.filter((function(n,r){return r>=e||t.includes(n)}));for(var n=new Set,r=0;r<V.length;r++){var i=V[r];nt(i.startTime,i.processingEnd).forEach((function(t){n.add(t)}))}var a=U.length-1-50;U=U.filter((function(t,e){return t.startTime>_&&e>a||n.has(t)})),K=-1};q.push((function(t){t.interactionId&&t.target&&!J.has(t.interactionId)&&J.set(t.interactionId,t.target)}),(function(t){var e,n=t.startTime+t.duration;_=Math.max(_,t.processingEnd);for(var r=V.length-1;r>=0;r--){var i=V[r];if(Math.abs(n-i.renderTime)<=8){(e=i).startTime=Math.min(t.startTime,e.startTime),e.processingStart=Math.min(t.processingStart,e.processingStart),e.processingEnd=Math.max(t.processingEnd,e.processingEnd),e.entries.push(t);break}}e||(e={startTime:t.startTime,processingStart:t.processingStart,processingEnd:t.processingEnd,renderTime:n,entries:[t]},V.push(e)),(t.interactionId||"first-input"===t.entryType)&&G.set(t,e),X()}));var Z,$,tt,et,nt=function(t,e){for(var n,r=[],i=0;n=U[i];i++)if(!(n.startTime+n.duration<t)){if(n.startTime>e)break;r.push(n)}return r},rt=function(t,n){e||(e=d("long-animation-frame",Q)),z((function(e){var n=function(t){var e=t.entries[0],n=G.get(e),i=e.processingStart,o=n.processingEnd,c=n.entries.sort((function(t,e){return t.processingStart-e.processingStart})),u=nt(e.startTime,o),s=t.entries.find((function(t){return t.target})),f=s&&s.target||J.get(e.interactionId),d=[e.startTime+e.duration,o].concat(u.map((function(t){return t.startTime+t.duration}))),l=Math.max.apply(Math,d),m={interactionTarget:a(f),interactionTargetElement:f,interactionType:e.name.startsWith("key")?"keyboard":"pointer",interactionTime:e.startTime,nextPaintTime:l,processedEventEntries:c,longAnimationFrameEntries:u,inputDelay:i-e.startTime,processingDuration:o-i,presentationDelay:Math.max(l-o,0),loadState:r(e.startTime)};return Object.assign(t,{attribution:m})}(e);t(n)}),n)},it=[2500,4e3],at={},ot=function(t,e){!function(t,e){e=e||{},b((function(){var n,r=S(),i=f("LCP"),a=function(t){e.reportAllChanges||(t=t.slice(-1)),t.forEach((function(t){t.startTime<r.firstHiddenTime&&(i.value=Math.max(t.startTime-s(),0),i.entries=[t],n())}))},o=d("largest-contentful-paint",a);if(o){n=l(t,i,it,e.reportAllChanges);var c=v((function(){at[i.id]||(a(o.takeRecords()),o.disconnect(),at[i.id]=!0,n(!0))}));["keydown","click"].forEach((function(t){addEventListener(t,(function(){return N(c)}),{once:!0,capture:!0})})),p(c),u((function(r){i=f("LCP"),n=l(t,i,it,e.reportAllChanges),m((function(){i.value=performance.now()-r.timeStamp,at[i.id]=!0,n(!0)}))}))}}))}((function(e){var r=function(t){var e={timeToFirstByte:0,resourceLoadDelay:0,resourceLoadDuration:0,elementRenderDelay:t.value};if(t.entries.length){var r=n();if(r){var i=r.activationStart||0,o=t.entries[t.entries.length-1],c=o.url&&performance.getEntriesByType("resource").filter((function(t){return t.name===o.url}))[0],u=Math.max(0,r.responseStart-i),s=Math.max(u,c?(c.requestStart||c.startTime)-i:0),f=Math.max(s,c?c.responseEnd-i:0),d=Math.max(f,o.startTime-i);e={element:a(o.element),timeToFirstByte:u,resourceLoadDelay:s-u,resourceLoadDuration:f-s,elementRenderDelay:d-f,navigationEntry:r,lcpEntry:o},o.url&&(e.url=o.url),c&&(e.lcpResourceEntry=c)}}return Object.assign(t,{attribution:e})}(e);t(r)}),e)},ct=[800,1800],ut=function t(e){document.prerendering?b((function(){return t(e)})):"complete"!==document.readyState?addEventListener("load",(function(){return t(e)}),!0):setTimeout(e,0)},st=function(t,e){e=e||{};var r=f("TTFB"),i=l(t,r,ct,e.reportAllChanges);ut((function(){var a=n();a&&(r.value=Math.max(a.responseStart-s(),0),r.entries=[a],i(!0),u((function(){r=f("TTFB",0),(i=l(t,r,ct,e.reportAllChanges))(!0)})))}))},ft=function(t,e){st((function(e){var n=function(t){var e={waitingDuration:0,cacheDuration:0,dnsDuration:0,connectionDuration:0,requestDuration:0};if(t.entries.length){var n=t.entries[0],r=n.activationStart||0,i=Math.max((n.workerStart||n.fetchStart)-r,0),a=Math.max(n.domainLookupStart-r,0),o=Math.max(n.connectStart-r,0),c=Math.max(n.connectEnd-r,0);e={waitingDuration:i,cacheDuration:a-i,dnsDuration:o-a,connectionDuration:c-o,requestDuration:t.value-c,navigationEntry:n}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)},dt={passive:!0,capture:!0},lt=new Date,mt=function(t,e){Z||(Z=e,$=t,tt=new Date,gt(removeEventListener),pt())},pt=function(){if($>=0&&$<tt-lt){var t={entryType:"first-input",name:Z.type,target:Z.target,cancelable:Z.cancelable,startTime:Z.timeStamp,processingStart:Z.timeStamp+$};et.forEach((function(e){e(t)})),et=[]}},vt=function(t){if(t.cancelable){var e=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;"pointerdown"==t.type?function(t,e){var n=function(){mt(t,e),i()},r=function(){i()},i=function(){removeEventListener("pointerup",n,dt),removeEventListener("pointercancel",r,dt)};addEventListener("pointerup",n,dt),addEventListener("pointercancel",r,dt)}(e,t):mt(e,t)}},gt=function(t){["mousedown","keydown","touchstart","pointerdown"].forEach((function(e){return t(e,vt,dt)}))},ht=[100,300],Tt=function(t,e){e=e||{},b((function(){var n,r=S(),i=f("FID"),a=function(t){t.startTime<r.firstHiddenTime&&(i.value=t.processingStart-t.startTime,i.entries.push(t),n(!0))},o=function(t){t.forEach(a)},c=d("first-input",o);n=l(t,i,ht,e.reportAllChanges),c&&(p(v((function(){o(c.takeRecords()),c.disconnect()}))),u((function(){var r;i=f("FID"),n=l(t,i,ht,e.reportAllChanges),et=[],$=-1,Z=null,gt(addEventListener),r=a,et.push(r),pt()})))}))},yt=function(t,e){Tt((function(e){var n=function(t){var e=t.entries[0],n={eventTarget:a(e.target),eventType:e.name,eventTime:e.startTime,eventEntry:e,loadState:r(e.startTime)};return Object.assign(t,{attribution:n})}(e);t(n)}),e)};export{M as CLSThresholds,L as FCPThresholds,ht as FIDThresholds,W as INPThresholds,it as LCPThresholds,ct as TTFBThresholds,D as onCLS,w as onFCP,yt as onFID,rt as onINP,ot as onLCP,ft as onTTFB};
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).webVitals={})}(this,(function(t){"use strict";var e,n,r,i=function(){var t=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(t&&t.responseStart>0&&t.responseStart<performance.now())return t},a=function(t){if("loading"===document.readyState)return"loading";var e=i();if(e){if(t<e.domInteractive)return"loading";if(0===e.domContentLoadedEventStart||t<e.domContentLoadedEventStart)return"dom-interactive";if(0===e.domComplete||t<e.domComplete)return"dom-content-loaded"}return"complete"},o=function(t){var e=t.nodeName;return 1===t.nodeType?e.toLowerCase():e.toUpperCase().replace(/^#/,"")},c=function(t,e){var n="";try{for(;t&&9!==t.nodeType;){var r=t,i=r.id?"#"+r.id:o(r)+(r.classList&&r.classList.value&&r.classList.value.trim()&&r.classList.value.trim().length?"."+r.classList.value.trim().replace(/\s+/g,"."):"");if(n.length+i.length>(e||100)-1)return n||i;if(n=n?i+">"+n:i,r.id)break;t=r.parentNode}}catch(t){}return n},s=-1,u=function(){return s},f=function(t){addEventListener("pageshow",(function(e){e.persisted&&(s=e.timeStamp,t(e))}),!0)},d=function(){var t=i();return t&&t.activationStart||0},l=function(t,e){var n=i(),r="navigate";u()>=0?r="back-forward-cache":n&&(document.prerendering||d()>0?r="prerender":document.wasDiscarded?r="restore":n.type&&(r=n.type.replace(/_/g,"-")));return{name:t,value:void 0===e?-1:e,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},m=function(t,e,n){try{if(PerformanceObserver.supportedEntryTypes.includes(t)){var r=new PerformanceObserver((function(t){Promise.resolve().then((function(){e(t.getEntries())}))}));return r.observe(Object.assign({type:t,buffered:!0},n||{})),r}}catch(t){}},p=function(t,e,n,r){var i,a;return function(o){e.value>=0&&(o||r)&&((a=e.value-(i||0))||void 0===i)&&(i=e.value,e.delta=a,e.rating=function(t,e){return t>e[1]?"poor":t>e[0]?"needs-improvement":"good"}(e.value,n),t(e))}},v=function(t){requestAnimationFrame((function(){return requestAnimationFrame((function(){return t()}))}))},h=function(t){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&t()}))},g=function(t){var e=!1;return function(){e||(t(),e=!0)}},T=-1,y=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},E=function(t){"hidden"===document.visibilityState&&T>-1&&(T="visibilitychange"===t.type?t.timeStamp:0,b())},S=function(){addEventListener("visibilitychange",E,!0),addEventListener("prerenderingchange",E,!0)},b=function(){removeEventListener("visibilitychange",E,!0),removeEventListener("prerenderingchange",E,!0)},C=function(){return T<0&&(T=y(),S(),f((function(){setTimeout((function(){T=y(),S()}),0)}))),{get firstHiddenTime(){return T}}},L=function(t){document.prerendering?addEventListener("prerenderingchange",(function(){return t()}),!0):t()},M=[1800,3e3],D=function(t,e){e=e||{},L((function(){var n,r=C(),i=l("FCP"),a=m("paint",(function(t){t.forEach((function(t){"first-contentful-paint"===t.name&&(a.disconnect(),t.startTime<r.firstHiddenTime&&(i.value=Math.max(t.startTime-d(),0),i.entries.push(t),n(!0)))}))}));a&&(n=p(t,i,M,e.reportAllChanges),f((function(r){i=l("FCP"),n=p(t,i,M,e.reportAllChanges),v((function(){i.value=performance.now()-r.timeStamp,n(!0)}))})))}))},w=[.1,.25],I=0,x=1/0,F=0,P=function(t){t.forEach((function(t){t.interactionId&&(x=Math.min(x,t.interactionId),F=Math.max(F,t.interactionId),I=F?(F-x)/7+1:0)}))},k=function(){"interactionCount"in performance||e||(e=m("event",P,{type:"event",buffered:!0,durationThreshold:0}))},A=[],B=new Map,O=0,j=function(){return(e?I:performance.interactionCount||0)-O},R=[],q=function(t){if(R.forEach((function(e){return e(t)})),t.interactionId||"first-input"===t.entryType){var e=A[A.length-1],n=B.get(t.interactionId);if(n||A.length<10||t.duration>e.latency){if(n)t.duration>n.latency?(n.entries=[t],n.latency=t.duration):t.duration===n.latency&&t.startTime===n.entries[0].startTime&&n.entries.push(t);else{var r={id:t.interactionId,latency:t.duration,entries:[t]};B.set(r.id,r),A.push(r)}A.sort((function(t,e){return e.latency-t.latency})),A.length>10&&A.splice(10).forEach((function(t){return B.delete(t.id)}))}}},N=function(t){var e=self.requestIdleCallback||self.setTimeout,n=-1;return t=g(t),"hidden"===document.visibilityState?t():(n=e(t),h(t)),n},H=[200,500],V=function(t,e){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(e=e||{},L((function(){var n;k();var r,i=l("INP"),a=function(t){N((function(){t.forEach(q);var e,n=(e=Math.min(A.length-1,Math.floor(j()/50)),A[e]);n&&n.latency!==i.value&&(i.value=n.latency,i.entries=n.entries,r())}))},o=m("event",a,{durationThreshold:null!==(n=e.durationThreshold)&&void 0!==n?n:40});r=p(t,i,H,e.reportAllChanges),o&&(o.observe({type:"first-input",buffered:!0}),h((function(){a(o.takeRecords()),r(!0)})),f((function(){O=0,A.length=0,B.clear(),i=l("INP"),r=p(t,i,H,e.reportAllChanges)})))})))},W=[],z=[],U=new WeakMap,_=new Map,G=-1,J=function(t){W=W.concat(t),K()},K=function(){G<0&&(G=N(Q))},Q=function(){_.size>10&&_.forEach((function(t,e){B.has(e)||_.delete(e)}));var t=A.map((function(t){return U.get(t.entries[0])})),e=z.length-50;z=z.filter((function(n,r){return r>=e||t.includes(n)}));for(var n=new Set,i=0;i<z.length;i++){var a=z[i];tt(a.startTime,a.processingEnd).forEach((function(t){n.add(t)}))}for(var o=0;o<50;o++){var c=W[W.length-1-o];if(!c||c.startTime<r)break;n.add(c)}W=Array.from(n),G=-1};R.push((function(t){t.interactionId&&t.target&&!_.has(t.interactionId)&&_.set(t.interactionId,t.target)}),(function(t){var e,n=t.startTime+t.duration;r=Math.max(r,t.processingEnd);for(var i=z.length-1;i>=0;i--){var a=z[i];if(Math.abs(n-a.renderTime)<=8){(e=a).startTime=Math.min(t.startTime,e.startTime),e.processingStart=Math.min(t.processingStart,e.processingStart),e.processingEnd=Math.max(t.processingEnd,e.processingEnd),e.entries.push(t);break}}e||(e={startTime:t.startTime,processingStart:t.processingStart,processingEnd:t.processingEnd,renderTime:n,entries:[t]},z.push(e)),(t.interactionId||"first-input"===t.entryType)&&U.set(t,e),K()}));var X,Y,Z,$,tt=function(t,e){for(var n,r=[],i=0;n=W[i];i++)if(!(n.startTime+n.duration<t)){if(n.startTime>e)break;r.push(n)}return r},et=[2500,4e3],nt={},rt=[800,1800],it=function t(e){document.prerendering?L((function(){return t(e)})):"complete"!==document.readyState?addEventListener("load",(function(){return t(e)}),!0):setTimeout(e,0)},at=function(t,e){e=e||{};var n=l("TTFB"),r=p(t,n,rt,e.reportAllChanges);it((function(){var a=i();a&&(n.value=Math.max(a.responseStart-d(),0),n.entries=[a],r(!0),f((function(){n=l("TTFB",0),(r=p(t,n,rt,e.reportAllChanges))(!0)})))}))},ot={passive:!0,capture:!0},ct=new Date,st=function(t,e){X||(X=e,Y=t,Z=new Date,dt(removeEventListener),ut())},ut=function(){if(Y>=0&&Y<Z-ct){var t={entryType:"first-input",name:X.type,target:X.target,cancelable:X.cancelable,startTime:X.timeStamp,processingStart:X.timeStamp+Y};$.forEach((function(e){e(t)})),$=[]}},ft=function(t){if(t.cancelable){var e=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;"pointerdown"==t.type?function(t,e){var n=function(){st(t,e),i()},r=function(){i()},i=function(){removeEventListener("pointerup",n,ot),removeEventListener("pointercancel",r,ot)};addEventListener("pointerup",n,ot),addEventListener("pointercancel",r,ot)}(e,t):st(e,t)}},dt=function(t){["mousedown","keydown","touchstart","pointerdown"].forEach((function(e){return t(e,ft,ot)}))},lt=[100,300],mt=function(t,e){e=e||{},L((function(){var n,r=C(),i=l("FID"),a=function(t){t.startTime<r.firstHiddenTime&&(i.value=t.processingStart-t.startTime,i.entries.push(t),n(!0))},o=function(t){t.forEach(a)},c=m("first-input",o);n=p(t,i,lt,e.reportAllChanges),c&&(h(g((function(){o(c.takeRecords()),c.disconnect()}))),f((function(){var r;i=l("FID"),n=p(t,i,lt,e.reportAllChanges),$=[],Y=-1,X=null,dt(addEventListener),r=a,$.push(r),ut()})))}))};t.CLSThresholds=w,t.FCPThresholds=M,t.FIDThresholds=lt,t.INPThresholds=H,t.LCPThresholds=et,t.TTFBThresholds=rt,t.onCLS=function(t,e){!function(t,e){e=e||{},D(g((function(){var n,r=l("CLS",0),i=0,a=[],o=function(t){t.forEach((function(t){if(!t.hadRecentInput){var e=a[0],n=a[a.length-1];i&&t.startTime-n.startTime<1e3&&t.startTime-e.startTime<5e3?(i+=t.value,a.push(t)):(i=t.value,a=[t])}})),i>r.value&&(r.value=i,r.entries=a,n())},c=m("layout-shift",o);c&&(n=p(t,r,w,e.reportAllChanges),h((function(){o(c.takeRecords()),n(!0)})),f((function(){i=0,r=l("CLS",0),n=p(t,r,w,e.reportAllChanges),v((function(){return n()}))})),setTimeout(n,0))})))}((function(e){var n=function(t){var e,n={};if(t.entries.length){var r=t.entries.reduce((function(t,e){return t&&t.value>e.value?t:e}));if(r&&r.sources&&r.sources.length){var i=(e=r.sources).find((function(t){return t.node&&1===t.node.nodeType}))||e[0];i&&(n={largestShiftTarget:c(i.node),largestShiftTime:r.startTime,largestShiftValue:r.value,largestShiftSource:i,largestShiftEntry:r,loadState:a(r.startTime)})}}return Object.assign(t,{attribution:n})}(e);t(n)}),e)},t.onFCP=function(t,e){D((function(e){var n=function(t){var e={timeToFirstByte:0,firstByteToFCP:t.value,loadState:a(u())};if(t.entries.length){var n=i(),r=t.entries[t.entries.length-1];if(n){var o=n.activationStart||0,c=Math.max(0,n.responseStart-o);e={timeToFirstByte:c,firstByteToFCP:t.value-c,loadState:a(t.entries[0].startTime),navigationEntry:n,fcpEntry:r}}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)},t.onFID=function(t,e){mt((function(e){var n=function(t){var e=t.entries[0],n={eventTarget:c(e.target),eventType:e.name,eventTime:e.startTime,eventEntry:e,loadState:a(e.startTime)};return Object.assign(t,{attribution:n})}(e);t(n)}),e)},t.onINP=function(t,e){n||(n=m("long-animation-frame",J)),V((function(e){var n=function(t){var e=t.entries[0],n=U.get(e),r=e.processingStart,i=n.processingEnd,o=n.entries.sort((function(t,e){return t.processingStart-e.processingStart})),s=tt(e.startTime,i),u=t.entries.find((function(t){return t.target})),f=u&&u.target||_.get(e.interactionId),d=[e.startTime+e.duration,i].concat(s.map((function(t){return t.startTime+t.duration}))),l=Math.max.apply(Math,d),m={interactionTarget:c(f),interactionTargetElement:f,interactionType:e.name.startsWith("key")?"keyboard":"pointer",interactionTime:e.startTime,nextPaintTime:l,processedEventEntries:o,longAnimationFrameEntries:s,inputDelay:r-e.startTime,processingDuration:i-r,presentationDelay:Math.max(l-i,0),loadState:a(e.startTime)};return Object.assign(t,{attribution:m})}(e);t(n)}),e)},t.onLCP=function(t,e){!function(t,e){e=e||{},L((function(){var n,r=C(),i=l("LCP"),a=function(t){e.reportAllChanges||(t=t.slice(-1)),t.forEach((function(t){t.startTime<r.firstHiddenTime&&(i.value=Math.max(t.startTime-d(),0),i.entries=[t],n())}))},o=m("largest-contentful-paint",a);if(o){n=p(t,i,et,e.reportAllChanges);var c=g((function(){nt[i.id]||(a(o.takeRecords()),o.disconnect(),nt[i.id]=!0,n(!0))}));["keydown","click"].forEach((function(t){addEventListener(t,(function(){return N(c)}),!0)})),h(c),f((function(r){i=l("LCP"),n=p(t,i,et,e.reportAllChanges),v((function(){i.value=performance.now()-r.timeStamp,nt[i.id]=!0,n(!0)}))}))}}))}((function(e){var n=function(t){var e={timeToFirstByte:0,resourceLoadDelay:0,resourceLoadDuration:0,elementRenderDelay:t.value};if(t.entries.length){var n=i();if(n){var r=n.activationStart||0,a=t.entries[t.entries.length-1],o=a.url&&performance.getEntriesByType("resource").filter((function(t){return t.name===a.url}))[0],s=Math.max(0,n.responseStart-r),u=Math.max(s,o?(o.requestStart||o.startTime)-r:0),f=Math.max(u,o?o.responseEnd-r:0),d=Math.max(f,a.startTime-r);e={element:c(a.element),timeToFirstByte:s,resourceLoadDelay:u-s,resourceLoadDuration:f-u,elementRenderDelay:d-f,navigationEntry:n,lcpEntry:a},a.url&&(e.url=a.url),o&&(e.lcpResourceEntry=o)}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)},t.onTTFB=function(t,e){at((function(e){var n=function(t){var e={waitingDuration:0,cacheDuration:0,dnsDuration:0,connectionDuration:0,requestDuration:0};if(t.entries.length){var n=t.entries[0],r=n.activationStart||0,i=Math.max((n.workerStart||n.fetchStart)-r,0),a=Math.max(n.domainLookupStart-r,0),o=Math.max(n.connectStart-r,0),c=Math.max(n.connectEnd-r,0);e={waitingDuration:i,cacheDuration:a-i,dnsDuration:o-a,connectionDuration:c-o,requestDuration:t.value-c,navigationEntry:n}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)}}));
1
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).webVitals={})}(this,(function(t){"use strict";var e,n,r=function(){var t=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(t&&t.responseStart>0&&t.responseStart<performance.now())return t},i=function(t){if("loading"===document.readyState)return"loading";var e=r();if(e){if(t<e.domInteractive)return"loading";if(0===e.domContentLoadedEventStart||t<e.domContentLoadedEventStart)return"dom-interactive";if(0===e.domComplete||t<e.domComplete)return"dom-content-loaded"}return"complete"},a=function(t){var e=t.nodeName;return 1===t.nodeType?e.toLowerCase():e.toUpperCase().replace(/^#/,"")},o=function(t,e){var n="";try{for(;t&&9!==t.nodeType;){var r=t,i=r.id?"#"+r.id:a(r)+(r.classList&&r.classList.value&&r.classList.value.trim()&&r.classList.value.trim().length?"."+r.classList.value.trim().replace(/\s+/g,"."):"");if(n.length+i.length>(e||100)-1)return n||i;if(n=n?i+">"+n:i,r.id)break;t=r.parentNode}}catch(t){}return n},c=-1,s=function(){return c},u=function(t){addEventListener("pageshow",(function(e){e.persisted&&(c=e.timeStamp,t(e))}),!0)},f=function(){var t=r();return t&&t.activationStart||0},d=function(t,e){var n=r(),i="navigate";s()>=0?i="back-forward-cache":n&&(document.prerendering||f()>0?i="prerender":document.wasDiscarded?i="restore":n.type&&(i=n.type.replace(/_/g,"-")));return{name:t,value:void 0===e?-1:e,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:i}},l=function(t,e,n){try{if(PerformanceObserver.supportedEntryTypes.includes(t)){var r=new PerformanceObserver((function(t){Promise.resolve().then((function(){e(t.getEntries())}))}));return r.observe(Object.assign({type:t,buffered:!0},n||{})),r}}catch(t){}},m=function(t,e,n,r){var i,a;return function(o){e.value>=0&&(o||r)&&((a=e.value-(i||0))||void 0===i)&&(i=e.value,e.delta=a,e.rating=function(t,e){return t>e[1]?"poor":t>e[0]?"needs-improvement":"good"}(e.value,n),t(e))}},p=function(t){requestAnimationFrame((function(){return requestAnimationFrame((function(){return t()}))}))},v=function(t){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&t()}))},h=function(t){var e=!1;return function(){e||(t(),e=!0)}},g=-1,T=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},y=function(t){"hidden"===document.visibilityState&&g>-1&&(g="visibilitychange"===t.type?t.timeStamp:0,S())},E=function(){addEventListener("visibilitychange",y,!0),addEventListener("prerenderingchange",y,!0)},S=function(){removeEventListener("visibilitychange",y,!0),removeEventListener("prerenderingchange",y,!0)},b=function(){return g<0&&(g=T(),E(),u((function(){setTimeout((function(){g=T(),E()}),0)}))),{get firstHiddenTime(){return g}}},C=function(t){document.prerendering?addEventListener("prerenderingchange",(function(){return t()}),!0):t()},L=[1800,3e3],M=function(t,e){e=e||{},C((function(){var n,r=b(),i=d("FCP"),a=l("paint",(function(t){t.forEach((function(t){"first-contentful-paint"===t.name&&(a.disconnect(),t.startTime<r.firstHiddenTime&&(i.value=Math.max(t.startTime-f(),0),i.entries.push(t),n(!0)))}))}));a&&(n=m(t,i,L,e.reportAllChanges),u((function(r){i=d("FCP"),n=m(t,i,L,e.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,n(!0)}))})))}))},D=[.1,.25],w=0,I=1/0,x=0,F=function(t){t.forEach((function(t){t.interactionId&&(I=Math.min(I,t.interactionId),x=Math.max(x,t.interactionId),w=x?(x-I)/7+1:0)}))},P=function(){return e?w:performance.interactionCount||0},k=function(){"interactionCount"in performance||e||(e=l("event",F,{type:"event",buffered:!0,durationThreshold:0}))},A=[],B=new Map,O=0,j=function(){var t=Math.min(A.length-1,Math.floor((P()-O)/50));return A[t]},R=[],q=function(t){if(R.forEach((function(e){return e(t)})),t.interactionId||"first-input"===t.entryType){var e=A[A.length-1],n=B.get(t.interactionId);if(n||A.length<10||t.duration>e.latency){if(n)t.duration>n.latency?(n.entries=[t],n.latency=t.duration):t.duration===n.latency&&t.startTime===n.entries[0].startTime&&n.entries.push(t);else{var r={id:t.interactionId,latency:t.duration,entries:[t]};B.set(r.id,r),A.push(r)}A.sort((function(t,e){return e.latency-t.latency})),A.length>10&&A.splice(10).forEach((function(t){return B.delete(t.id)}))}}},N=function(t){var e=self.requestIdleCallback||self.setTimeout,n=-1;return t=h(t),"hidden"===document.visibilityState?t():(n=e(t),v(t)),n},H=[200,500],V=function(t,e){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(e=e||{},C((function(){var n;k();var r,i=d("INP"),a=function(t){N((function(){t.forEach(q);var e=j();e&&e.latency!==i.value&&(i.value=e.latency,i.entries=e.entries,r())}))},o=l("event",a,{durationThreshold:null!==(n=e.durationThreshold)&&void 0!==n?n:40});r=m(t,i,H,e.reportAllChanges),o&&(o.observe({type:"first-input",buffered:!0}),v((function(){a(o.takeRecords()),r(!0)})),u((function(){O=P(),A.length=0,B.clear(),i=d("INP"),r=m(t,i,H,e.reportAllChanges)})))})))},W=[],z=[],U=0,_=new WeakMap,G=new Map,J=-1,K=function(t){W=W.concat(t),Q()},Q=function(){J<0&&(J=N(X))},X=function(){G.size>10&&G.forEach((function(t,e){B.has(e)||G.delete(e)}));var t=A.map((function(t){return _.get(t.entries[0])})),e=z.length-50;z=z.filter((function(n,r){return r>=e||t.includes(n)}));for(var n=new Set,r=0;r<z.length;r++){var i=z[r];et(i.startTime,i.processingEnd).forEach((function(t){n.add(t)}))}var a=W.length-1-50;W=W.filter((function(t,e){return t.startTime>U&&e>a||n.has(t)})),J=-1};R.push((function(t){t.interactionId&&t.target&&!G.has(t.interactionId)&&G.set(t.interactionId,t.target)}),(function(t){var e,n=t.startTime+t.duration;U=Math.max(U,t.processingEnd);for(var r=z.length-1;r>=0;r--){var i=z[r];if(Math.abs(n-i.renderTime)<=8){(e=i).startTime=Math.min(t.startTime,e.startTime),e.processingStart=Math.min(t.processingStart,e.processingStart),e.processingEnd=Math.max(t.processingEnd,e.processingEnd),e.entries.push(t);break}}e||(e={startTime:t.startTime,processingStart:t.processingStart,processingEnd:t.processingEnd,renderTime:n,entries:[t]},z.push(e)),(t.interactionId||"first-input"===t.entryType)&&_.set(t,e),Q()}));var Y,Z,$,tt,et=function(t,e){for(var n,r=[],i=0;n=W[i];i++)if(!(n.startTime+n.duration<t)){if(n.startTime>e)break;r.push(n)}return r},nt=[2500,4e3],rt={},it=[800,1800],at=function t(e){document.prerendering?C((function(){return t(e)})):"complete"!==document.readyState?addEventListener("load",(function(){return t(e)}),!0):setTimeout(e,0)},ot=function(t,e){e=e||{};var n=d("TTFB"),i=m(t,n,it,e.reportAllChanges);at((function(){var a=r();a&&(n.value=Math.max(a.responseStart-f(),0),n.entries=[a],i(!0),u((function(){n=d("TTFB",0),(i=m(t,n,it,e.reportAllChanges))(!0)})))}))},ct={passive:!0,capture:!0},st=new Date,ut=function(t,e){Y||(Y=e,Z=t,$=new Date,lt(removeEventListener),ft())},ft=function(){if(Z>=0&&Z<$-st){var t={entryType:"first-input",name:Y.type,target:Y.target,cancelable:Y.cancelable,startTime:Y.timeStamp,processingStart:Y.timeStamp+Z};tt.forEach((function(e){e(t)})),tt=[]}},dt=function(t){if(t.cancelable){var e=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;"pointerdown"==t.type?function(t,e){var n=function(){ut(t,e),i()},r=function(){i()},i=function(){removeEventListener("pointerup",n,ct),removeEventListener("pointercancel",r,ct)};addEventListener("pointerup",n,ct),addEventListener("pointercancel",r,ct)}(e,t):ut(e,t)}},lt=function(t){["mousedown","keydown","touchstart","pointerdown"].forEach((function(e){return t(e,dt,ct)}))},mt=[100,300],pt=function(t,e){e=e||{},C((function(){var n,r=b(),i=d("FID"),a=function(t){t.startTime<r.firstHiddenTime&&(i.value=t.processingStart-t.startTime,i.entries.push(t),n(!0))},o=function(t){t.forEach(a)},c=l("first-input",o);n=m(t,i,mt,e.reportAllChanges),c&&(v(h((function(){o(c.takeRecords()),c.disconnect()}))),u((function(){var r;i=d("FID"),n=m(t,i,mt,e.reportAllChanges),tt=[],Z=-1,Y=null,lt(addEventListener),r=a,tt.push(r),ft()})))}))};t.CLSThresholds=D,t.FCPThresholds=L,t.FIDThresholds=mt,t.INPThresholds=H,t.LCPThresholds=nt,t.TTFBThresholds=it,t.onCLS=function(t,e){!function(t,e){e=e||{},M(h((function(){var n,r=d("CLS",0),i=0,a=[],o=function(t){t.forEach((function(t){if(!t.hadRecentInput){var e=a[0],n=a[a.length-1];i&&t.startTime-n.startTime<1e3&&t.startTime-e.startTime<5e3?(i+=t.value,a.push(t)):(i=t.value,a=[t])}})),i>r.value&&(r.value=i,r.entries=a,n())},c=l("layout-shift",o);c&&(n=m(t,r,D,e.reportAllChanges),v((function(){o(c.takeRecords()),n(!0)})),u((function(){i=0,r=d("CLS",0),n=m(t,r,D,e.reportAllChanges),p((function(){return n()}))})),setTimeout(n,0))})))}((function(e){var n=function(t){var e,n={};if(t.entries.length){var r=t.entries.reduce((function(t,e){return t&&t.value>e.value?t:e}));if(r&&r.sources&&r.sources.length){var a=(e=r.sources).find((function(t){return t.node&&1===t.node.nodeType}))||e[0];a&&(n={largestShiftTarget:o(a.node),largestShiftTime:r.startTime,largestShiftValue:r.value,largestShiftSource:a,largestShiftEntry:r,loadState:i(r.startTime)})}}return Object.assign(t,{attribution:n})}(e);t(n)}),e)},t.onFCP=function(t,e){M((function(e){var n=function(t){var e={timeToFirstByte:0,firstByteToFCP:t.value,loadState:i(s())};if(t.entries.length){var n=r(),a=t.entries[t.entries.length-1];if(n){var o=n.activationStart||0,c=Math.max(0,n.responseStart-o);e={timeToFirstByte:c,firstByteToFCP:t.value-c,loadState:i(t.entries[0].startTime),navigationEntry:n,fcpEntry:a}}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)},t.onFID=function(t,e){pt((function(e){var n=function(t){var e=t.entries[0],n={eventTarget:o(e.target),eventType:e.name,eventTime:e.startTime,eventEntry:e,loadState:i(e.startTime)};return Object.assign(t,{attribution:n})}(e);t(n)}),e)},t.onINP=function(t,e){n||(n=l("long-animation-frame",K)),V((function(e){var n=function(t){var e=t.entries[0],n=_.get(e),r=e.processingStart,a=n.processingEnd,c=n.entries.sort((function(t,e){return t.processingStart-e.processingStart})),s=et(e.startTime,a),u=t.entries.find((function(t){return t.target})),f=u&&u.target||G.get(e.interactionId),d=[e.startTime+e.duration,a].concat(s.map((function(t){return t.startTime+t.duration}))),l=Math.max.apply(Math,d),m={interactionTarget:o(f),interactionTargetElement:f,interactionType:e.name.startsWith("key")?"keyboard":"pointer",interactionTime:e.startTime,nextPaintTime:l,processedEventEntries:c,longAnimationFrameEntries:s,inputDelay:r-e.startTime,processingDuration:a-r,presentationDelay:Math.max(l-a,0),loadState:i(e.startTime)};return Object.assign(t,{attribution:m})}(e);t(n)}),e)},t.onLCP=function(t,e){!function(t,e){e=e||{},C((function(){var n,r=b(),i=d("LCP"),a=function(t){e.reportAllChanges||(t=t.slice(-1)),t.forEach((function(t){t.startTime<r.firstHiddenTime&&(i.value=Math.max(t.startTime-f(),0),i.entries=[t],n())}))},o=l("largest-contentful-paint",a);if(o){n=m(t,i,nt,e.reportAllChanges);var c=h((function(){rt[i.id]||(a(o.takeRecords()),o.disconnect(),rt[i.id]=!0,n(!0))}));["keydown","click"].forEach((function(t){addEventListener(t,(function(){return N(c)}),{once:!0,capture:!0})})),v(c),u((function(r){i=d("LCP"),n=m(t,i,nt,e.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,rt[i.id]=!0,n(!0)}))}))}}))}((function(e){var n=function(t){var e={timeToFirstByte:0,resourceLoadDelay:0,resourceLoadDuration:0,elementRenderDelay:t.value};if(t.entries.length){var n=r();if(n){var i=n.activationStart||0,a=t.entries[t.entries.length-1],c=a.url&&performance.getEntriesByType("resource").filter((function(t){return t.name===a.url}))[0],s=Math.max(0,n.responseStart-i),u=Math.max(s,c?(c.requestStart||c.startTime)-i:0),f=Math.max(u,c?c.responseEnd-i:0),d=Math.max(f,a.startTime-i);e={element:o(a.element),timeToFirstByte:s,resourceLoadDelay:u-s,resourceLoadDuration:f-u,elementRenderDelay:d-f,navigationEntry:n,lcpEntry:a},a.url&&(e.url=a.url),c&&(e.lcpResourceEntry=c)}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)},t.onTTFB=function(t,e){ot((function(e){var n=function(t){var e={waitingDuration:0,cacheDuration:0,dnsDuration:0,connectionDuration:0,requestDuration:0};if(t.entries.length){var n=t.entries[0],r=n.activationStart||0,i=Math.max((n.workerStart||n.fetchStart)-r,0),a=Math.max(n.domainLookupStart-r,0),o=Math.max(n.connectStart-r,0),c=Math.max(n.connectEnd-r,0);e={waitingDuration:i,cacheDuration:a-i,dnsDuration:o-a,connectionDuration:c-o,requestDuration:t.value-c,navigationEntry:n}}return Object.assign(t,{attribution:e})}(e);t(n)}),e)}}));
@@ -1 +1 @@
1
- var webVitals=function(e){"use strict";var n,t,r,i,o,a=-1,c=function(e){addEventListener("pageshow",(function(n){n.persisted&&(a=n.timeStamp,e(n))}),!0)},u=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},s=function(){var e=u();return e&&e.activationStart||0},f=function(e,n){var t=u(),r="navigate";a>=0?r="back-forward-cache":t&&(document.prerendering||s()>0?r="prerender":document.wasDiscarded?r="restore":t.type&&(r=t.type.replace(/_/g,"-")));return{name:e,value:void 0===n?-1:n,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},d=function(e,n,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var r=new PerformanceObserver((function(e){Promise.resolve().then((function(){n(e.getEntries())}))}));return r.observe(Object.assign({type:e,buffered:!0},t||{})),r}}catch(e){}},l=function(e,n,t,r){var i,o;return function(a){n.value>=0&&(a||r)&&((o=n.value-(i||0))||void 0===i)&&(i=n.value,n.delta=o,n.rating=function(e,n){return e>n[1]?"poor":e>n[0]?"needs-improvement":"good"}(n.value,t),e(n))}},p=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},v=function(e){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e()}))},m=function(e){var n=!1;return function(){n||(e(),n=!0)}},h=-1,g=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},T=function(e){"hidden"===document.visibilityState&&h>-1&&(h="visibilitychange"===e.type?e.timeStamp:0,E())},y=function(){addEventListener("visibilitychange",T,!0),addEventListener("prerenderingchange",T,!0)},E=function(){removeEventListener("visibilitychange",T,!0),removeEventListener("prerenderingchange",T,!0)},C=function(){return h<0&&(h=g(),y(),c((function(){setTimeout((function(){h=g(),y()}),0)}))),{get firstHiddenTime(){return h}}},L=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},S=[1800,3e3],b=function(e,n){n=n||{},L((function(){var t,r=C(),i=f("FCP"),o=d("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(o.disconnect(),e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-s(),0),i.entries.push(e),t(!0)))}))}));o&&(t=l(e,i,S,n.reportAllChanges),c((function(r){i=f("FCP"),t=l(e,i,S,n.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,t(!0)}))})))}))},w=[.1,.25],I=0,P=1/0,A=0,F=function(e){e.forEach((function(e){e.interactionId&&(P=Math.min(P,e.interactionId),A=Math.max(A,e.interactionId),I=A?(A-P)/7+1:0)}))},M=function(){"interactionCount"in performance||n||(n=d("event",F,{type:"event",buffered:!0,durationThreshold:0}))},k=[],D=new Map,B=0,R=function(){return(n?I:performance.interactionCount||0)-B},x=[],H=function(e){if(x.forEach((function(n){return n(e)})),e.interactionId||"first-input"===e.entryType){var n=k[k.length-1],t=D.get(e.interactionId);if(t||k.length<10||e.duration>n.latency){if(t)e.duration>t.latency?(t.entries=[e],t.latency=e.duration):e.duration===t.latency&&e.startTime===t.entries[0].startTime&&t.entries.push(e);else{var r={id:e.interactionId,latency:e.duration,entries:[e]};D.set(r.id,r),k.push(r)}k.sort((function(e,n){return n.latency-e.latency})),k.length>10&&k.splice(10).forEach((function(e){return D.delete(e.id)}))}}},N=function(e){var n=self.requestIdleCallback||self.setTimeout,t=-1;return e=m(e),"hidden"===document.visibilityState?e():(t=n(e),v(e)),t},q=[200,500],O=[2500,4e3],j={},V=[800,1800],_=function e(n){document.prerendering?L((function(){return e(n)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(n)}),!0):setTimeout(n,0)},z={passive:!0,capture:!0},G=new Date,J=function(e,n){t||(t=n,r=e,i=new Date,U(removeEventListener),K())},K=function(){if(r>=0&&r<i-G){var e={entryType:"first-input",name:t.type,target:t.target,cancelable:t.cancelable,startTime:t.timeStamp,processingStart:t.timeStamp+r};o.forEach((function(n){n(e)})),o=[]}},Q=function(e){if(e.cancelable){var n=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,n){var t=function(){J(e,n),i()},r=function(){i()},i=function(){removeEventListener("pointerup",t,z),removeEventListener("pointercancel",r,z)};addEventListener("pointerup",t,z),addEventListener("pointercancel",r,z)}(n,e):J(n,e)}},U=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(n){return e(n,Q,z)}))},W=[100,300];return e.CLSThresholds=w,e.FCPThresholds=S,e.FIDThresholds=W,e.INPThresholds=q,e.LCPThresholds=O,e.TTFBThresholds=V,e.onCLS=function(e,n){n=n||{},b(m((function(){var t,r=f("CLS",0),i=0,o=[],a=function(e){e.forEach((function(e){if(!e.hadRecentInput){var n=o[0],t=o[o.length-1];i&&e.startTime-t.startTime<1e3&&e.startTime-n.startTime<5e3?(i+=e.value,o.push(e)):(i=e.value,o=[e])}})),i>r.value&&(r.value=i,r.entries=o,t())},u=d("layout-shift",a);u&&(t=l(e,r,w,n.reportAllChanges),v((function(){a(u.takeRecords()),t(!0)})),c((function(){i=0,r=f("CLS",0),t=l(e,r,w,n.reportAllChanges),p((function(){return t()}))})),setTimeout(t,0))})))},e.onFCP=b,e.onFID=function(e,n){n=n||{},L((function(){var i,a=C(),u=f("FID"),s=function(e){e.startTime<a.firstHiddenTime&&(u.value=e.processingStart-e.startTime,u.entries.push(e),i(!0))},p=function(e){e.forEach(s)},h=d("first-input",p);i=l(e,u,W,n.reportAllChanges),h&&(v(m((function(){p(h.takeRecords()),h.disconnect()}))),c((function(){var a;u=f("FID"),i=l(e,u,W,n.reportAllChanges),o=[],r=-1,t=null,U(addEventListener),a=s,o.push(a),K()})))}))},e.onINP=function(e,n){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(n=n||{},L((function(){var t;M();var r,i=f("INP"),o=function(e){N((function(){e.forEach(H);var n,t=(n=Math.min(k.length-1,Math.floor(R()/50)),k[n]);t&&t.latency!==i.value&&(i.value=t.latency,i.entries=t.entries,r())}))},a=d("event",o,{durationThreshold:null!==(t=n.durationThreshold)&&void 0!==t?t:40});r=l(e,i,q,n.reportAllChanges),a&&(a.observe({type:"first-input",buffered:!0}),v((function(){o(a.takeRecords()),r(!0)})),c((function(){B=0,k.length=0,D.clear(),i=f("INP"),r=l(e,i,q,n.reportAllChanges)})))})))},e.onLCP=function(e,n){n=n||{},L((function(){var t,r=C(),i=f("LCP"),o=function(e){n.reportAllChanges||(e=e.slice(-1)),e.forEach((function(e){e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-s(),0),i.entries=[e],t())}))},a=d("largest-contentful-paint",o);if(a){t=l(e,i,O,n.reportAllChanges);var u=m((function(){j[i.id]||(o(a.takeRecords()),a.disconnect(),j[i.id]=!0,t(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return N(u)}),!0)})),v(u),c((function(r){i=f("LCP"),t=l(e,i,O,n.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,j[i.id]=!0,t(!0)}))}))}}))},e.onTTFB=function(e,n){n=n||{};var t=f("TTFB"),r=l(e,t,V,n.reportAllChanges);_((function(){var i=u();i&&(t.value=Math.max(i.responseStart-s(),0),t.entries=[i],r(!0),c((function(){t=f("TTFB",0),(r=l(e,t,V,n.reportAllChanges))(!0)})))}))},e}({});
1
+ var webVitals=function(e){"use strict";var n,t,r,i,o,a=-1,c=function(e){addEventListener("pageshow",(function(n){n.persisted&&(a=n.timeStamp,e(n))}),!0)},u=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},s=function(){var e=u();return e&&e.activationStart||0},f=function(e,n){var t=u(),r="navigate";a>=0?r="back-forward-cache":t&&(document.prerendering||s()>0?r="prerender":document.wasDiscarded?r="restore":t.type&&(r=t.type.replace(/_/g,"-")));return{name:e,value:void 0===n?-1:n,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},d=function(e,n,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var r=new PerformanceObserver((function(e){Promise.resolve().then((function(){n(e.getEntries())}))}));return r.observe(Object.assign({type:e,buffered:!0},t||{})),r}}catch(e){}},l=function(e,n,t,r){var i,o;return function(a){n.value>=0&&(a||r)&&((o=n.value-(i||0))||void 0===i)&&(i=n.value,n.delta=o,n.rating=function(e,n){return e>n[1]?"poor":e>n[0]?"needs-improvement":"good"}(n.value,t),e(n))}},p=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},v=function(e){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e()}))},m=function(e){var n=!1;return function(){n||(e(),n=!0)}},h=-1,g=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},T=function(e){"hidden"===document.visibilityState&&h>-1&&(h="visibilitychange"===e.type?e.timeStamp:0,E())},y=function(){addEventListener("visibilitychange",T,!0),addEventListener("prerenderingchange",T,!0)},E=function(){removeEventListener("visibilitychange",T,!0),removeEventListener("prerenderingchange",T,!0)},C=function(){return h<0&&(h=g(),y(),c((function(){setTimeout((function(){h=g(),y()}),0)}))),{get firstHiddenTime(){return h}}},L=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},S=[1800,3e3],b=function(e,n){n=n||{},L((function(){var t,r=C(),i=f("FCP"),o=d("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(o.disconnect(),e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-s(),0),i.entries.push(e),t(!0)))}))}));o&&(t=l(e,i,S,n.reportAllChanges),c((function(r){i=f("FCP"),t=l(e,i,S,n.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,t(!0)}))})))}))},w=[.1,.25],I=0,P=1/0,A=0,F=function(e){e.forEach((function(e){e.interactionId&&(P=Math.min(P,e.interactionId),A=Math.max(A,e.interactionId),I=A?(A-P)/7+1:0)}))},M=function(){return n?I:performance.interactionCount||0},k=function(){"interactionCount"in performance||n||(n=d("event",F,{type:"event",buffered:!0,durationThreshold:0}))},D=[],B=new Map,R=0,x=function(){var e=Math.min(D.length-1,Math.floor((M()-R)/50));return D[e]},H=[],N=function(e){if(H.forEach((function(n){return n(e)})),e.interactionId||"first-input"===e.entryType){var n=D[D.length-1],t=B.get(e.interactionId);if(t||D.length<10||e.duration>n.latency){if(t)e.duration>t.latency?(t.entries=[e],t.latency=e.duration):e.duration===t.latency&&e.startTime===t.entries[0].startTime&&t.entries.push(e);else{var r={id:e.interactionId,latency:e.duration,entries:[e]};B.set(r.id,r),D.push(r)}D.sort((function(e,n){return n.latency-e.latency})),D.length>10&&D.splice(10).forEach((function(e){return B.delete(e.id)}))}}},q=function(e){var n=self.requestIdleCallback||self.setTimeout,t=-1;return e=m(e),"hidden"===document.visibilityState?e():(t=n(e),v(e)),t},O=[200,500],j=[2500,4e3],V={},_=[800,1800],z=function e(n){document.prerendering?L((function(){return e(n)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(n)}),!0):setTimeout(n,0)},G={passive:!0,capture:!0},J=new Date,K=function(e,n){t||(t=n,r=e,i=new Date,W(removeEventListener),Q())},Q=function(){if(r>=0&&r<i-J){var e={entryType:"first-input",name:t.type,target:t.target,cancelable:t.cancelable,startTime:t.timeStamp,processingStart:t.timeStamp+r};o.forEach((function(n){n(e)})),o=[]}},U=function(e){if(e.cancelable){var n=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,n){var t=function(){K(e,n),i()},r=function(){i()},i=function(){removeEventListener("pointerup",t,G),removeEventListener("pointercancel",r,G)};addEventListener("pointerup",t,G),addEventListener("pointercancel",r,G)}(n,e):K(n,e)}},W=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(n){return e(n,U,G)}))},X=[100,300];return e.CLSThresholds=w,e.FCPThresholds=S,e.FIDThresholds=X,e.INPThresholds=O,e.LCPThresholds=j,e.TTFBThresholds=_,e.onCLS=function(e,n){n=n||{},b(m((function(){var t,r=f("CLS",0),i=0,o=[],a=function(e){e.forEach((function(e){if(!e.hadRecentInput){var n=o[0],t=o[o.length-1];i&&e.startTime-t.startTime<1e3&&e.startTime-n.startTime<5e3?(i+=e.value,o.push(e)):(i=e.value,o=[e])}})),i>r.value&&(r.value=i,r.entries=o,t())},u=d("layout-shift",a);u&&(t=l(e,r,w,n.reportAllChanges),v((function(){a(u.takeRecords()),t(!0)})),c((function(){i=0,r=f("CLS",0),t=l(e,r,w,n.reportAllChanges),p((function(){return t()}))})),setTimeout(t,0))})))},e.onFCP=b,e.onFID=function(e,n){n=n||{},L((function(){var i,a=C(),u=f("FID"),s=function(e){e.startTime<a.firstHiddenTime&&(u.value=e.processingStart-e.startTime,u.entries.push(e),i(!0))},p=function(e){e.forEach(s)},h=d("first-input",p);i=l(e,u,X,n.reportAllChanges),h&&(v(m((function(){p(h.takeRecords()),h.disconnect()}))),c((function(){var a;u=f("FID"),i=l(e,u,X,n.reportAllChanges),o=[],r=-1,t=null,W(addEventListener),a=s,o.push(a),Q()})))}))},e.onINP=function(e,n){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(n=n||{},L((function(){var t;k();var r,i=f("INP"),o=function(e){q((function(){e.forEach(N);var n=x();n&&n.latency!==i.value&&(i.value=n.latency,i.entries=n.entries,r())}))},a=d("event",o,{durationThreshold:null!==(t=n.durationThreshold)&&void 0!==t?t:40});r=l(e,i,O,n.reportAllChanges),a&&(a.observe({type:"first-input",buffered:!0}),v((function(){o(a.takeRecords()),r(!0)})),c((function(){R=M(),D.length=0,B.clear(),i=f("INP"),r=l(e,i,O,n.reportAllChanges)})))})))},e.onLCP=function(e,n){n=n||{},L((function(){var t,r=C(),i=f("LCP"),o=function(e){n.reportAllChanges||(e=e.slice(-1)),e.forEach((function(e){e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-s(),0),i.entries=[e],t())}))},a=d("largest-contentful-paint",o);if(a){t=l(e,i,j,n.reportAllChanges);var u=m((function(){V[i.id]||(o(a.takeRecords()),a.disconnect(),V[i.id]=!0,t(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return q(u)}),{once:!0,capture:!0})})),v(u),c((function(r){i=f("LCP"),t=l(e,i,j,n.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,V[i.id]=!0,t(!0)}))}))}}))},e.onTTFB=function(e,n){n=n||{};var t=f("TTFB"),r=l(e,t,_,n.reportAllChanges);z((function(){var i=u();i&&(t.value=Math.max(i.responseStart-s(),0),t.entries=[i],r(!0),c((function(){t=f("TTFB",0),(r=l(e,t,_,n.reportAllChanges))(!0)})))}))},e}({});
@@ -1 +1 @@
1
- var e,n,t,r,i,o=-1,a=function(e){addEventListener("pageshow",(function(n){n.persisted&&(o=n.timeStamp,e(n))}),!0)},c=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},u=function(){var e=c();return e&&e.activationStart||0},f=function(e,n){var t=c(),r="navigate";o>=0?r="back-forward-cache":t&&(document.prerendering||u()>0?r="prerender":document.wasDiscarded?r="restore":t.type&&(r=t.type.replace(/_/g,"-")));return{name:e,value:void 0===n?-1:n,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},s=function(e,n,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var r=new PerformanceObserver((function(e){Promise.resolve().then((function(){n(e.getEntries())}))}));return r.observe(Object.assign({type:e,buffered:!0},t||{})),r}}catch(e){}},d=function(e,n,t,r){var i,o;return function(a){n.value>=0&&(a||r)&&((o=n.value-(i||0))||void 0===i)&&(i=n.value,n.delta=o,n.rating=function(e,n){return e>n[1]?"poor":e>n[0]?"needs-improvement":"good"}(n.value,t),e(n))}},l=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},p=function(e){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e()}))},v=function(e){var n=!1;return function(){n||(e(),n=!0)}},m=-1,h=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},g=function(e){"hidden"===document.visibilityState&&m>-1&&(m="visibilitychange"===e.type?e.timeStamp:0,T())},y=function(){addEventListener("visibilitychange",g,!0),addEventListener("prerenderingchange",g,!0)},T=function(){removeEventListener("visibilitychange",g,!0),removeEventListener("prerenderingchange",g,!0)},E=function(){return m<0&&(m=h(),y(),a((function(){setTimeout((function(){m=h(),y()}),0)}))),{get firstHiddenTime(){return m}}},C=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},b=[1800,3e3],S=function(e,n){n=n||{},C((function(){var t,r=E(),i=f("FCP"),o=s("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(o.disconnect(),e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-u(),0),i.entries.push(e),t(!0)))}))}));o&&(t=d(e,i,b,n.reportAllChanges),a((function(r){i=f("FCP"),t=d(e,i,b,n.reportAllChanges),l((function(){i.value=performance.now()-r.timeStamp,t(!0)}))})))}))},L=[.1,.25],w=function(e,n){n=n||{},S(v((function(){var t,r=f("CLS",0),i=0,o=[],c=function(e){e.forEach((function(e){if(!e.hadRecentInput){var n=o[0],t=o[o.length-1];i&&e.startTime-t.startTime<1e3&&e.startTime-n.startTime<5e3?(i+=e.value,o.push(e)):(i=e.value,o=[e])}})),i>r.value&&(r.value=i,r.entries=o,t())},u=s("layout-shift",c);u&&(t=d(e,r,L,n.reportAllChanges),p((function(){c(u.takeRecords()),t(!0)})),a((function(){i=0,r=f("CLS",0),t=d(e,r,L,n.reportAllChanges),l((function(){return t()}))})),setTimeout(t,0))})))},A=0,I=1/0,P=0,M=function(e){e.forEach((function(e){e.interactionId&&(I=Math.min(I,e.interactionId),P=Math.max(P,e.interactionId),A=P?(P-I)/7+1:0)}))},k=function(){"interactionCount"in performance||e||(e=s("event",M,{type:"event",buffered:!0,durationThreshold:0}))},F=[],D=new Map,x=0,R=function(){return(e?A:performance.interactionCount||0)-x},B=[],H=function(e){if(B.forEach((function(n){return n(e)})),e.interactionId||"first-input"===e.entryType){var n=F[F.length-1],t=D.get(e.interactionId);if(t||F.length<10||e.duration>n.latency){if(t)e.duration>t.latency?(t.entries=[e],t.latency=e.duration):e.duration===t.latency&&e.startTime===t.entries[0].startTime&&t.entries.push(e);else{var r={id:e.interactionId,latency:e.duration,entries:[e]};D.set(r.id,r),F.push(r)}F.sort((function(e,n){return n.latency-e.latency})),F.length>10&&F.splice(10).forEach((function(e){return D.delete(e.id)}))}}},q=function(e){var n=self.requestIdleCallback||self.setTimeout,t=-1;return e=v(e),"hidden"===document.visibilityState?e():(t=n(e),p(e)),t},O=[200,500],N=function(e,n){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(n=n||{},C((function(){var t;k();var r,i=f("INP"),o=function(e){q((function(){e.forEach(H);var n,t=(n=Math.min(F.length-1,Math.floor(R()/50)),F[n]);t&&t.latency!==i.value&&(i.value=t.latency,i.entries=t.entries,r())}))},c=s("event",o,{durationThreshold:null!==(t=n.durationThreshold)&&void 0!==t?t:40});r=d(e,i,O,n.reportAllChanges),c&&(c.observe({type:"first-input",buffered:!0}),p((function(){o(c.takeRecords()),r(!0)})),a((function(){x=0,F.length=0,D.clear(),i=f("INP"),r=d(e,i,O,n.reportAllChanges)})))})))},j=[2500,4e3],_={},z=function(e,n){n=n||{},C((function(){var t,r=E(),i=f("LCP"),o=function(e){n.reportAllChanges||(e=e.slice(-1)),e.forEach((function(e){e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-u(),0),i.entries=[e],t())}))},c=s("largest-contentful-paint",o);if(c){t=d(e,i,j,n.reportAllChanges);var m=v((function(){_[i.id]||(o(c.takeRecords()),c.disconnect(),_[i.id]=!0,t(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return q(m)}),!0)})),p(m),a((function(r){i=f("LCP"),t=d(e,i,j,n.reportAllChanges),l((function(){i.value=performance.now()-r.timeStamp,_[i.id]=!0,t(!0)}))}))}}))},G=[800,1800],J=function e(n){document.prerendering?C((function(){return e(n)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(n)}),!0):setTimeout(n,0)},K=function(e,n){n=n||{};var t=f("TTFB"),r=d(e,t,G,n.reportAllChanges);J((function(){var i=c();i&&(t.value=Math.max(i.responseStart-u(),0),t.entries=[i],r(!0),a((function(){t=f("TTFB",0),(r=d(e,t,G,n.reportAllChanges))(!0)})))}))},Q={passive:!0,capture:!0},U=new Date,V=function(e,i){n||(n=i,t=e,r=new Date,Y(removeEventListener),W())},W=function(){if(t>=0&&t<r-U){var e={entryType:"first-input",name:n.type,target:n.target,cancelable:n.cancelable,startTime:n.timeStamp,processingStart:n.timeStamp+t};i.forEach((function(n){n(e)})),i=[]}},X=function(e){if(e.cancelable){var n=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,n){var t=function(){V(e,n),i()},r=function(){i()},i=function(){removeEventListener("pointerup",t,Q),removeEventListener("pointercancel",r,Q)};addEventListener("pointerup",t,Q),addEventListener("pointercancel",r,Q)}(n,e):V(n,e)}},Y=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(n){return e(n,X,Q)}))},Z=[100,300],$=function(e,r){r=r||{},C((function(){var o,c=E(),u=f("FID"),l=function(e){e.startTime<c.firstHiddenTime&&(u.value=e.processingStart-e.startTime,u.entries.push(e),o(!0))},m=function(e){e.forEach(l)},h=s("first-input",m);o=d(e,u,Z,r.reportAllChanges),h&&(p(v((function(){m(h.takeRecords()),h.disconnect()}))),a((function(){var a;u=f("FID"),o=d(e,u,Z,r.reportAllChanges),i=[],t=-1,n=null,Y(addEventListener),a=l,i.push(a),W()})))}))};export{L as CLSThresholds,b as FCPThresholds,Z as FIDThresholds,O as INPThresholds,j as LCPThresholds,G as TTFBThresholds,w as onCLS,S as onFCP,$ as onFID,N as onINP,z as onLCP,K as onTTFB};
1
+ var e,n,t,r,i,o=-1,a=function(e){addEventListener("pageshow",(function(n){n.persisted&&(o=n.timeStamp,e(n))}),!0)},c=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},u=function(){var e=c();return e&&e.activationStart||0},f=function(e,n){var t=c(),r="navigate";o>=0?r="back-forward-cache":t&&(document.prerendering||u()>0?r="prerender":document.wasDiscarded?r="restore":t.type&&(r=t.type.replace(/_/g,"-")));return{name:e,value:void 0===n?-1:n,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},s=function(e,n,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var r=new PerformanceObserver((function(e){Promise.resolve().then((function(){n(e.getEntries())}))}));return r.observe(Object.assign({type:e,buffered:!0},t||{})),r}}catch(e){}},d=function(e,n,t,r){var i,o;return function(a){n.value>=0&&(a||r)&&((o=n.value-(i||0))||void 0===i)&&(i=n.value,n.delta=o,n.rating=function(e,n){return e>n[1]?"poor":e>n[0]?"needs-improvement":"good"}(n.value,t),e(n))}},l=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},p=function(e){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e()}))},v=function(e){var n=!1;return function(){n||(e(),n=!0)}},m=-1,h=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},g=function(e){"hidden"===document.visibilityState&&m>-1&&(m="visibilitychange"===e.type?e.timeStamp:0,T())},y=function(){addEventListener("visibilitychange",g,!0),addEventListener("prerenderingchange",g,!0)},T=function(){removeEventListener("visibilitychange",g,!0),removeEventListener("prerenderingchange",g,!0)},E=function(){return m<0&&(m=h(),y(),a((function(){setTimeout((function(){m=h(),y()}),0)}))),{get firstHiddenTime(){return m}}},C=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},b=[1800,3e3],S=function(e,n){n=n||{},C((function(){var t,r=E(),i=f("FCP"),o=s("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(o.disconnect(),e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-u(),0),i.entries.push(e),t(!0)))}))}));o&&(t=d(e,i,b,n.reportAllChanges),a((function(r){i=f("FCP"),t=d(e,i,b,n.reportAllChanges),l((function(){i.value=performance.now()-r.timeStamp,t(!0)}))})))}))},L=[.1,.25],w=function(e,n){n=n||{},S(v((function(){var t,r=f("CLS",0),i=0,o=[],c=function(e){e.forEach((function(e){if(!e.hadRecentInput){var n=o[0],t=o[o.length-1];i&&e.startTime-t.startTime<1e3&&e.startTime-n.startTime<5e3?(i+=e.value,o.push(e)):(i=e.value,o=[e])}})),i>r.value&&(r.value=i,r.entries=o,t())},u=s("layout-shift",c);u&&(t=d(e,r,L,n.reportAllChanges),p((function(){c(u.takeRecords()),t(!0)})),a((function(){i=0,r=f("CLS",0),t=d(e,r,L,n.reportAllChanges),l((function(){return t()}))})),setTimeout(t,0))})))},A=0,I=1/0,P=0,M=function(e){e.forEach((function(e){e.interactionId&&(I=Math.min(I,e.interactionId),P=Math.max(P,e.interactionId),A=P?(P-I)/7+1:0)}))},k=function(){return e?A:performance.interactionCount||0},F=function(){"interactionCount"in performance||e||(e=s("event",M,{type:"event",buffered:!0,durationThreshold:0}))},D=[],x=new Map,R=0,B=function(){var e=Math.min(D.length-1,Math.floor((k()-R)/50));return D[e]},H=[],q=function(e){if(H.forEach((function(n){return n(e)})),e.interactionId||"first-input"===e.entryType){var n=D[D.length-1],t=x.get(e.interactionId);if(t||D.length<10||e.duration>n.latency){if(t)e.duration>t.latency?(t.entries=[e],t.latency=e.duration):e.duration===t.latency&&e.startTime===t.entries[0].startTime&&t.entries.push(e);else{var r={id:e.interactionId,latency:e.duration,entries:[e]};x.set(r.id,r),D.push(r)}D.sort((function(e,n){return n.latency-e.latency})),D.length>10&&D.splice(10).forEach((function(e){return x.delete(e.id)}))}}},O=function(e){var n=self.requestIdleCallback||self.setTimeout,t=-1;return e=v(e),"hidden"===document.visibilityState?e():(t=n(e),p(e)),t},N=[200,500],j=function(e,n){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(n=n||{},C((function(){var t;F();var r,i=f("INP"),o=function(e){O((function(){e.forEach(q);var n=B();n&&n.latency!==i.value&&(i.value=n.latency,i.entries=n.entries,r())}))},c=s("event",o,{durationThreshold:null!==(t=n.durationThreshold)&&void 0!==t?t:40});r=d(e,i,N,n.reportAllChanges),c&&(c.observe({type:"first-input",buffered:!0}),p((function(){o(c.takeRecords()),r(!0)})),a((function(){R=k(),D.length=0,x.clear(),i=f("INP"),r=d(e,i,N,n.reportAllChanges)})))})))},_=[2500,4e3],z={},G=function(e,n){n=n||{},C((function(){var t,r=E(),i=f("LCP"),o=function(e){n.reportAllChanges||(e=e.slice(-1)),e.forEach((function(e){e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-u(),0),i.entries=[e],t())}))},c=s("largest-contentful-paint",o);if(c){t=d(e,i,_,n.reportAllChanges);var m=v((function(){z[i.id]||(o(c.takeRecords()),c.disconnect(),z[i.id]=!0,t(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return O(m)}),{once:!0,capture:!0})})),p(m),a((function(r){i=f("LCP"),t=d(e,i,_,n.reportAllChanges),l((function(){i.value=performance.now()-r.timeStamp,z[i.id]=!0,t(!0)}))}))}}))},J=[800,1800],K=function e(n){document.prerendering?C((function(){return e(n)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(n)}),!0):setTimeout(n,0)},Q=function(e,n){n=n||{};var t=f("TTFB"),r=d(e,t,J,n.reportAllChanges);K((function(){var i=c();i&&(t.value=Math.max(i.responseStart-u(),0),t.entries=[i],r(!0),a((function(){t=f("TTFB",0),(r=d(e,t,J,n.reportAllChanges))(!0)})))}))},U={passive:!0,capture:!0},V=new Date,W=function(e,i){n||(n=i,t=e,r=new Date,Z(removeEventListener),X())},X=function(){if(t>=0&&t<r-V){var e={entryType:"first-input",name:n.type,target:n.target,cancelable:n.cancelable,startTime:n.timeStamp,processingStart:n.timeStamp+t};i.forEach((function(n){n(e)})),i=[]}},Y=function(e){if(e.cancelable){var n=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,n){var t=function(){W(e,n),i()},r=function(){i()},i=function(){removeEventListener("pointerup",t,U),removeEventListener("pointercancel",r,U)};addEventListener("pointerup",t,U),addEventListener("pointercancel",r,U)}(n,e):W(n,e)}},Z=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(n){return e(n,Y,U)}))},$=[100,300],ee=function(e,r){r=r||{},C((function(){var o,c=E(),u=f("FID"),l=function(e){e.startTime<c.firstHiddenTime&&(u.value=e.processingStart-e.startTime,u.entries.push(e),o(!0))},m=function(e){e.forEach(l)},h=s("first-input",m);o=d(e,u,$,r.reportAllChanges),h&&(p(v((function(){m(h.takeRecords()),h.disconnect()}))),a((function(){var a;u=f("FID"),o=d(e,u,$,r.reportAllChanges),i=[],t=-1,n=null,Z(addEventListener),a=l,i.push(a),X()})))}))};export{L as CLSThresholds,b as FCPThresholds,$ as FIDThresholds,N as INPThresholds,_ as LCPThresholds,J as TTFBThresholds,w as onCLS,S as onFCP,ee as onFID,j as onINP,G as onLCP,Q as onTTFB};
@@ -1 +1 @@
1
- !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n((e="undefined"!=typeof globalThis?globalThis:e||self).webVitals={})}(this,(function(e){"use strict";var n,t,i,r,o,a=-1,c=function(e){addEventListener("pageshow",(function(n){n.persisted&&(a=n.timeStamp,e(n))}),!0)},u=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},s=function(){var e=u();return e&&e.activationStart||0},f=function(e,n){var t=u(),i="navigate";a>=0?i="back-forward-cache":t&&(document.prerendering||s()>0?i="prerender":document.wasDiscarded?i="restore":t.type&&(i=t.type.replace(/_/g,"-")));return{name:e,value:void 0===n?-1:n,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:i}},d=function(e,n,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var i=new PerformanceObserver((function(e){Promise.resolve().then((function(){n(e.getEntries())}))}));return i.observe(Object.assign({type:e,buffered:!0},t||{})),i}}catch(e){}},l=function(e,n,t,i){var r,o;return function(a){n.value>=0&&(a||i)&&((o=n.value-(r||0))||void 0===r)&&(r=n.value,n.delta=o,n.rating=function(e,n){return e>n[1]?"poor":e>n[0]?"needs-improvement":"good"}(n.value,t),e(n))}},p=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},v=function(e){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e()}))},m=function(e){var n=!1;return function(){n||(e(),n=!0)}},h=-1,g=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},T=function(e){"hidden"===document.visibilityState&&h>-1&&(h="visibilitychange"===e.type?e.timeStamp:0,E())},y=function(){addEventListener("visibilitychange",T,!0),addEventListener("prerenderingchange",T,!0)},E=function(){removeEventListener("visibilitychange",T,!0),removeEventListener("prerenderingchange",T,!0)},C=function(){return h<0&&(h=g(),y(),c((function(){setTimeout((function(){h=g(),y()}),0)}))),{get firstHiddenTime(){return h}}},b=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},L=[1800,3e3],S=function(e,n){n=n||{},b((function(){var t,i=C(),r=f("FCP"),o=d("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(o.disconnect(),e.startTime<i.firstHiddenTime&&(r.value=Math.max(e.startTime-s(),0),r.entries.push(e),t(!0)))}))}));o&&(t=l(e,r,L,n.reportAllChanges),c((function(i){r=f("FCP"),t=l(e,r,L,n.reportAllChanges),p((function(){r.value=performance.now()-i.timeStamp,t(!0)}))})))}))},w=[.1,.25],I=0,P=1/0,A=0,F=function(e){e.forEach((function(e){e.interactionId&&(P=Math.min(P,e.interactionId),A=Math.max(A,e.interactionId),I=A?(A-P)/7+1:0)}))},M=function(){"interactionCount"in performance||n||(n=d("event",F,{type:"event",buffered:!0,durationThreshold:0}))},k=[],D=new Map,x=0,B=function(){return(n?I:performance.interactionCount||0)-x},R=[],H=function(e){if(R.forEach((function(n){return n(e)})),e.interactionId||"first-input"===e.entryType){var n=k[k.length-1],t=D.get(e.interactionId);if(t||k.length<10||e.duration>n.latency){if(t)e.duration>t.latency?(t.entries=[e],t.latency=e.duration):e.duration===t.latency&&e.startTime===t.entries[0].startTime&&t.entries.push(e);else{var i={id:e.interactionId,latency:e.duration,entries:[e]};D.set(i.id,i),k.push(i)}k.sort((function(e,n){return n.latency-e.latency})),k.length>10&&k.splice(10).forEach((function(e){return D.delete(e.id)}))}}},N=function(e){var n=self.requestIdleCallback||self.setTimeout,t=-1;return e=m(e),"hidden"===document.visibilityState?e():(t=n(e),v(e)),t},q=[200,500],O=[2500,4e3],j={},V=[800,1800],_=function e(n){document.prerendering?b((function(){return e(n)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(n)}),!0):setTimeout(n,0)},z={passive:!0,capture:!0},G=new Date,J=function(e,n){t||(t=n,i=e,r=new Date,U(removeEventListener),K())},K=function(){if(i>=0&&i<r-G){var e={entryType:"first-input",name:t.type,target:t.target,cancelable:t.cancelable,startTime:t.timeStamp,processingStart:t.timeStamp+i};o.forEach((function(n){n(e)})),o=[]}},Q=function(e){if(e.cancelable){var n=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,n){var t=function(){J(e,n),r()},i=function(){r()},r=function(){removeEventListener("pointerup",t,z),removeEventListener("pointercancel",i,z)};addEventListener("pointerup",t,z),addEventListener("pointercancel",i,z)}(n,e):J(n,e)}},U=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(n){return e(n,Q,z)}))},W=[100,300];e.CLSThresholds=w,e.FCPThresholds=L,e.FIDThresholds=W,e.INPThresholds=q,e.LCPThresholds=O,e.TTFBThresholds=V,e.onCLS=function(e,n){n=n||{},S(m((function(){var t,i=f("CLS",0),r=0,o=[],a=function(e){e.forEach((function(e){if(!e.hadRecentInput){var n=o[0],t=o[o.length-1];r&&e.startTime-t.startTime<1e3&&e.startTime-n.startTime<5e3?(r+=e.value,o.push(e)):(r=e.value,o=[e])}})),r>i.value&&(i.value=r,i.entries=o,t())},u=d("layout-shift",a);u&&(t=l(e,i,w,n.reportAllChanges),v((function(){a(u.takeRecords()),t(!0)})),c((function(){r=0,i=f("CLS",0),t=l(e,i,w,n.reportAllChanges),p((function(){return t()}))})),setTimeout(t,0))})))},e.onFCP=S,e.onFID=function(e,n){n=n||{},b((function(){var r,a=C(),u=f("FID"),s=function(e){e.startTime<a.firstHiddenTime&&(u.value=e.processingStart-e.startTime,u.entries.push(e),r(!0))},p=function(e){e.forEach(s)},h=d("first-input",p);r=l(e,u,W,n.reportAllChanges),h&&(v(m((function(){p(h.takeRecords()),h.disconnect()}))),c((function(){var a;u=f("FID"),r=l(e,u,W,n.reportAllChanges),o=[],i=-1,t=null,U(addEventListener),a=s,o.push(a),K()})))}))},e.onINP=function(e,n){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(n=n||{},b((function(){var t;M();var i,r=f("INP"),o=function(e){N((function(){e.forEach(H);var n,t=(n=Math.min(k.length-1,Math.floor(B()/50)),k[n]);t&&t.latency!==r.value&&(r.value=t.latency,r.entries=t.entries,i())}))},a=d("event",o,{durationThreshold:null!==(t=n.durationThreshold)&&void 0!==t?t:40});i=l(e,r,q,n.reportAllChanges),a&&(a.observe({type:"first-input",buffered:!0}),v((function(){o(a.takeRecords()),i(!0)})),c((function(){x=0,k.length=0,D.clear(),r=f("INP"),i=l(e,r,q,n.reportAllChanges)})))})))},e.onLCP=function(e,n){n=n||{},b((function(){var t,i=C(),r=f("LCP"),o=function(e){n.reportAllChanges||(e=e.slice(-1)),e.forEach((function(e){e.startTime<i.firstHiddenTime&&(r.value=Math.max(e.startTime-s(),0),r.entries=[e],t())}))},a=d("largest-contentful-paint",o);if(a){t=l(e,r,O,n.reportAllChanges);var u=m((function(){j[r.id]||(o(a.takeRecords()),a.disconnect(),j[r.id]=!0,t(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return N(u)}),!0)})),v(u),c((function(i){r=f("LCP"),t=l(e,r,O,n.reportAllChanges),p((function(){r.value=performance.now()-i.timeStamp,j[r.id]=!0,t(!0)}))}))}}))},e.onTTFB=function(e,n){n=n||{};var t=f("TTFB"),i=l(e,t,V,n.reportAllChanges);_((function(){var r=u();r&&(t.value=Math.max(r.responseStart-s(),0),t.entries=[r],i(!0),c((function(){t=f("TTFB",0),(i=l(e,t,V,n.reportAllChanges))(!0)})))}))}}));
1
+ !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n((e="undefined"!=typeof globalThis?globalThis:e||self).webVitals={})}(this,(function(e){"use strict";var n,t,r,i,o,a=-1,c=function(e){addEventListener("pageshow",(function(n){n.persisted&&(a=n.timeStamp,e(n))}),!0)},u=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},s=function(){var e=u();return e&&e.activationStart||0},f=function(e,n){var t=u(),r="navigate";a>=0?r="back-forward-cache":t&&(document.prerendering||s()>0?r="prerender":document.wasDiscarded?r="restore":t.type&&(r=t.type.replace(/_/g,"-")));return{name:e,value:void 0===n?-1:n,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},d=function(e,n,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var r=new PerformanceObserver((function(e){Promise.resolve().then((function(){n(e.getEntries())}))}));return r.observe(Object.assign({type:e,buffered:!0},t||{})),r}}catch(e){}},l=function(e,n,t,r){var i,o;return function(a){n.value>=0&&(a||r)&&((o=n.value-(i||0))||void 0===i)&&(i=n.value,n.delta=o,n.rating=function(e,n){return e>n[1]?"poor":e>n[0]?"needs-improvement":"good"}(n.value,t),e(n))}},p=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},v=function(e){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e()}))},m=function(e){var n=!1;return function(){n||(e(),n=!0)}},h=-1,g=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},T=function(e){"hidden"===document.visibilityState&&h>-1&&(h="visibilitychange"===e.type?e.timeStamp:0,E())},y=function(){addEventListener("visibilitychange",T,!0),addEventListener("prerenderingchange",T,!0)},E=function(){removeEventListener("visibilitychange",T,!0),removeEventListener("prerenderingchange",T,!0)},C=function(){return h<0&&(h=g(),y(),c((function(){setTimeout((function(){h=g(),y()}),0)}))),{get firstHiddenTime(){return h}}},b=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},L=[1800,3e3],S=function(e,n){n=n||{},b((function(){var t,r=C(),i=f("FCP"),o=d("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(o.disconnect(),e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-s(),0),i.entries.push(e),t(!0)))}))}));o&&(t=l(e,i,L,n.reportAllChanges),c((function(r){i=f("FCP"),t=l(e,i,L,n.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,t(!0)}))})))}))},w=[.1,.25],I=0,P=1/0,A=0,F=function(e){e.forEach((function(e){e.interactionId&&(P=Math.min(P,e.interactionId),A=Math.max(A,e.interactionId),I=A?(A-P)/7+1:0)}))},M=function(){return n?I:performance.interactionCount||0},k=function(){"interactionCount"in performance||n||(n=d("event",F,{type:"event",buffered:!0,durationThreshold:0}))},D=[],x=new Map,B=0,R=function(){var e=Math.min(D.length-1,Math.floor((M()-B)/50));return D[e]},H=[],N=function(e){if(H.forEach((function(n){return n(e)})),e.interactionId||"first-input"===e.entryType){var n=D[D.length-1],t=x.get(e.interactionId);if(t||D.length<10||e.duration>n.latency){if(t)e.duration>t.latency?(t.entries=[e],t.latency=e.duration):e.duration===t.latency&&e.startTime===t.entries[0].startTime&&t.entries.push(e);else{var r={id:e.interactionId,latency:e.duration,entries:[e]};x.set(r.id,r),D.push(r)}D.sort((function(e,n){return n.latency-e.latency})),D.length>10&&D.splice(10).forEach((function(e){return x.delete(e.id)}))}}},q=function(e){var n=self.requestIdleCallback||self.setTimeout,t=-1;return e=m(e),"hidden"===document.visibilityState?e():(t=n(e),v(e)),t},O=[200,500],j=[2500,4e3],V={},_=[800,1800],z=function e(n){document.prerendering?b((function(){return e(n)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(n)}),!0):setTimeout(n,0)},G={passive:!0,capture:!0},J=new Date,K=function(e,n){t||(t=n,r=e,i=new Date,W(removeEventListener),Q())},Q=function(){if(r>=0&&r<i-J){var e={entryType:"first-input",name:t.type,target:t.target,cancelable:t.cancelable,startTime:t.timeStamp,processingStart:t.timeStamp+r};o.forEach((function(n){n(e)})),o=[]}},U=function(e){if(e.cancelable){var n=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,n){var t=function(){K(e,n),i()},r=function(){i()},i=function(){removeEventListener("pointerup",t,G),removeEventListener("pointercancel",r,G)};addEventListener("pointerup",t,G),addEventListener("pointercancel",r,G)}(n,e):K(n,e)}},W=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(n){return e(n,U,G)}))},X=[100,300];e.CLSThresholds=w,e.FCPThresholds=L,e.FIDThresholds=X,e.INPThresholds=O,e.LCPThresholds=j,e.TTFBThresholds=_,e.onCLS=function(e,n){n=n||{},S(m((function(){var t,r=f("CLS",0),i=0,o=[],a=function(e){e.forEach((function(e){if(!e.hadRecentInput){var n=o[0],t=o[o.length-1];i&&e.startTime-t.startTime<1e3&&e.startTime-n.startTime<5e3?(i+=e.value,o.push(e)):(i=e.value,o=[e])}})),i>r.value&&(r.value=i,r.entries=o,t())},u=d("layout-shift",a);u&&(t=l(e,r,w,n.reportAllChanges),v((function(){a(u.takeRecords()),t(!0)})),c((function(){i=0,r=f("CLS",0),t=l(e,r,w,n.reportAllChanges),p((function(){return t()}))})),setTimeout(t,0))})))},e.onFCP=S,e.onFID=function(e,n){n=n||{},b((function(){var i,a=C(),u=f("FID"),s=function(e){e.startTime<a.firstHiddenTime&&(u.value=e.processingStart-e.startTime,u.entries.push(e),i(!0))},p=function(e){e.forEach(s)},h=d("first-input",p);i=l(e,u,X,n.reportAllChanges),h&&(v(m((function(){p(h.takeRecords()),h.disconnect()}))),c((function(){var a;u=f("FID"),i=l(e,u,X,n.reportAllChanges),o=[],r=-1,t=null,W(addEventListener),a=s,o.push(a),Q()})))}))},e.onINP=function(e,n){"PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&(n=n||{},b((function(){var t;k();var r,i=f("INP"),o=function(e){q((function(){e.forEach(N);var n=R();n&&n.latency!==i.value&&(i.value=n.latency,i.entries=n.entries,r())}))},a=d("event",o,{durationThreshold:null!==(t=n.durationThreshold)&&void 0!==t?t:40});r=l(e,i,O,n.reportAllChanges),a&&(a.observe({type:"first-input",buffered:!0}),v((function(){o(a.takeRecords()),r(!0)})),c((function(){B=M(),D.length=0,x.clear(),i=f("INP"),r=l(e,i,O,n.reportAllChanges)})))})))},e.onLCP=function(e,n){n=n||{},b((function(){var t,r=C(),i=f("LCP"),o=function(e){n.reportAllChanges||(e=e.slice(-1)),e.forEach((function(e){e.startTime<r.firstHiddenTime&&(i.value=Math.max(e.startTime-s(),0),i.entries=[e],t())}))},a=d("largest-contentful-paint",o);if(a){t=l(e,i,j,n.reportAllChanges);var u=m((function(){V[i.id]||(o(a.takeRecords()),a.disconnect(),V[i.id]=!0,t(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return q(u)}),{once:!0,capture:!0})})),v(u),c((function(r){i=f("LCP"),t=l(e,i,j,n.reportAllChanges),p((function(){i.value=performance.now()-r.timeStamp,V[i.id]=!0,t(!0)}))}))}}))},e.onTTFB=function(e,n){n=n||{};var t=f("TTFB"),r=l(e,t,_,n.reportAllChanges);z((function(){var i=u();i&&(t.value=Math.max(i.responseStart-s(),0),t.entries=[i],r(!0),c((function(){t=f("TTFB",0),(r=l(e,t,_,n.reportAllChanges))(!0)})))}))}}));
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-vitals",
3
- "version": "4.2.1",
3
+ "version": "4.2.4",
4
4
  "description": "Easily measure performance metrics in JavaScript",
5
5
  "type": "module",
6
6
  "typings": "dist/modules/index.d.ts",
@@ -63,7 +63,7 @@ let pendingLoAFs: PerformanceLongAnimationFrameTiming[] = [];
63
63
  let pendingEntriesGroups: pendingEntriesGroup[] = [];
64
64
 
65
65
  // The `processingEnd` time of most recently-processed event, chronologically.
66
- let latestProcessingEnd: number;
66
+ let latestProcessingEnd: number = 0;
67
67
 
68
68
  // A WeakMap to look up the event-timing-entries group of a given entry.
69
69
  // Note that this only maps from "important" entries: either the first input or
@@ -188,7 +188,7 @@ const cleanupEntries = () => {
188
188
 
189
189
  // Keep all pending LoAF entries that either:
190
190
  // 1) intersect with entries in the newly cleaned up `pendingEntriesGroups`
191
- // 2) occur after the most recently-processed event entry.
191
+ // 2) occur after the most recently-processed event entry (for up to MAX_PREVIOUS_FRAMES)
192
192
  const loafsToKeep: Set<PerformanceLongAnimationFrameTiming> = new Set();
193
193
  for (let i = 0; i < pendingEntriesGroups.length; i++) {
194
194
  const group = pendingEntriesGroups[i];
@@ -198,18 +198,15 @@ const cleanupEntries = () => {
198
198
  },
199
199
  );
200
200
  }
201
- for (let i = 0; i < MAX_PREVIOUS_FRAMES; i++) {
202
- // Look at pending LoAF in reverse order so the most recent are first.
203
- const loaf = pendingLoAFs[pendingLoAFs.length - 1 - i];
204
-
205
- // If we reach LoAFs that overlap with event processing,
206
- // we can assume all previous ones have already been handled.
207
- if (!loaf || loaf.startTime < latestProcessingEnd) break;
208
-
209
- loafsToKeep.add(loaf);
210
- }
201
+ const prevFrameIndexCutoff = pendingLoAFs.length - 1 - MAX_PREVIOUS_FRAMES;
202
+ // Filter `pendingLoAFs` to preserve LoAF order.
203
+ pendingLoAFs = pendingLoAFs.filter((loaf, index) => {
204
+ if (loaf.startTime > latestProcessingEnd && index > prevFrameIndexCutoff) {
205
+ return true;
206
+ }
211
207
 
212
- pendingLoAFs = Array.from(loafsToKeep);
208
+ return loafsToKeep.has(loaf);
209
+ });
213
210
 
214
211
  // Reset the idle callback handle so it can be queued again.
215
212
  idleHandle = -1;
@@ -240,7 +237,7 @@ const getIntersectingLoAFs = (
240
237
  return intersectingLoAFs;
241
238
  };
242
239
 
243
- const attributeINP = (metric: INPMetric): INPMetricWithAttribution => {
240
+ export const attributeINP = (metric: INPMetric): INPMetricWithAttribution => {
244
241
  const firstEntry = metric.entries[0];
245
242
  const group = entryToEntriesGroupMap.get(firstEntry)!;
246
243
 
@@ -51,7 +51,7 @@ const getInteractionCountForNavigation = () => {
51
51
  };
52
52
 
53
53
  export const resetInteractions = () => {
54
- prevInteractionCount = 0;
54
+ prevInteractionCount = getInteractionCount();
55
55
  longestInteractionList.length = 0;
56
56
  longestInteractionMap.clear();
57
57
  };
@@ -104,7 +104,10 @@ export const onLCP = (
104
104
  // Wrap in a setTimeout so the callback is run in a separate task
105
105
  // to avoid extending the keyboard/click handler to reduce INP impact
106
106
  // https://github.com/GoogleChrome/web-vitals/issues/383
107
- addEventListener(type, () => whenIdle(stopListening), true);
107
+ addEventListener(type, () => whenIdle(stopListening), {
108
+ once: true,
109
+ capture: true,
110
+ });
108
111
  });
109
112
 
110
113
  onHidden(stopListening);
@@ -0,0 +1,14 @@
1
+ #!/bin/bash
2
+
3
+ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
4
+
5
+ # Roll the latest version of the package from NPM
6
+ python3 scripts/deps/roll_front_end_third_party.py web-vitals web-vitals dist
7
+
8
+ # We need this one helper function to be exported, so modify the source .ts and then rebuild
9
+ sed -i '' -e 's/^const attributeINP/export const attributeINP/g' $SCRIPT_DIR/package/src/attribution/onINP.ts
10
+
11
+ # rough tsc version of https://github.com/GoogleChrome/web-vitals/blob/main/tsconfig.json
12
+ # Minor variations in the *.d.ts files are fine, but make sure the only change to onINP.js is the
13
+ # `export` added above.
14
+ node_modules/.bin/tsc -d -t esnext -m nodenext --moduleResolution nodenext --lib es2017,DOM --outDir $SCRIPT_DIR/package/dist/modules/ $SCRIPT_DIR/package/src/**/*.ts
@@ -1,3 +1,5 @@
1
1
  export * from './package/dist/modules/index.js';
2
2
  export * as Attribution from './package/dist/modules/attribution/index.js';
3
3
  export {onBFCacheRestore} from './package/dist/modules/lib/bfcache.js';
4
+ export {attributeINP} from './package/dist/modules/attribution/onINP.js';
5
+ export {entryPreProcessingCallbacks} from './package/dist/modules/lib/interactions.js';
@@ -17,7 +17,6 @@ export interface AdornerData {
17
17
  }
18
18
 
19
19
  export class Adorner extends HTMLElement {
20
- static readonly litTagName = LitHtml.literal`devtools-adorner`;
21
20
  name = '';
22
21
 
23
22
  readonly #shadow = this.attachShadow({mode: 'open'});
@@ -166,6 +166,20 @@ describe('Button', () => {
166
166
  assert.isFalse(innerButton.classList.contains('small'));
167
167
  });
168
168
 
169
+ it('prevents only "keydown" events for Enter and Space to bubble up', () => {
170
+ const button = renderButton({variant: Buttons.Button.Variant.PRIMARY});
171
+ const onKeydown = sinon.spy();
172
+ button.addEventListener('keydown', onKeydown);
173
+
174
+ const innerButton = button.shadowRoot!.querySelector('button') as HTMLButtonElement;
175
+ dispatchKeyDownEvent(innerButton, {bubbles: true, composed: true, key: 'Enter'});
176
+ dispatchKeyDownEvent(innerButton, {bubbles: true, composed: true, key: ' '});
177
+ dispatchKeyDownEvent(innerButton, {bubbles: true, composed: true, key: 'x'});
178
+
179
+ assert.isTrue(onKeydown.calledOnce);
180
+ assert.strictEqual(onKeydown.getCall(0).args[0].key, 'x');
181
+ });
182
+
169
183
  describe('in forms', () => {
170
184
  function renderForm(data: Buttons.Button.ButtonData = {
171
185
  variant: Buttons.Button.Variant.PRIMARY,
@@ -103,7 +103,6 @@ export type ButtonData = CommonButtonData&(|{
103
103
 
104
104
  export class Button extends HTMLElement {
105
105
  static formAssociated = true;
106
- static readonly litTagName = LitHtml.literal`devtools-button`;
107
106
  readonly #shadow = this.attachShadow({mode: 'open', delegatesFocus: true});
108
107
  readonly #boundOnClick = this.#onClick.bind(this);
109
108
  readonly #props: ButtonState = {
@@ -301,6 +300,28 @@ export class Button extends HTMLElement {
301
300
  }
302
301
  }
303
302
 
303
+ /**
304
+ * Handles "keydown" events on the internal `<button>` element.
305
+ *
306
+ * This callback stops propagation of "keydown" events for Enter and Space
307
+ * originating from the `<button>` element, to ensure that this custom element
308
+ * can safely be used within parent elements (such as the `TreeOutline`) that
309
+ * do have "keydown" handlers as well.
310
+ *
311
+ * Without this special logic, the Enter and Space events would be
312
+ * consumed by parent elements, and no "click" event would be generated from
313
+ * this button.
314
+ *
315
+ * @param event the "keydown" event.
316
+ * @see https://crbug.com/373168872
317
+ */
318
+ #onKeydown(event: KeyboardEvent): void {
319
+ if (event.key !== 'Enter' && event.key !== ' ') {
320
+ return;
321
+ }
322
+ event.stopPropagation();
323
+ }
324
+
304
325
  #isToolbarVariant(): boolean {
305
326
  return this.#props.variant === Variant.TOOLBAR || this.#props.variant === Variant.PRIMARY_TOOLBAR;
306
327
  }
@@ -363,10 +384,11 @@ export class Button extends HTMLElement {
363
384
  LitHtml.render(
364
385
  html`
365
386
  <button title=${ifDefined(this.#props.title)}
366
- .disabled=${this.#props.disabled}
367
- class=${classMap(classes)}
368
- aria-pressed=${ifDefined(this.#props.toggled)}
369
- jslog=${ifDefined(jslog)}
387
+ .disabled=${this.#props.disabled}
388
+ class=${classMap(classes)}
389
+ aria-pressed=${ifDefined(this.#props.toggled)}
390
+ jslog=${ifDefined(jslog)}
391
+ @keydown=${this.#onKeydown}
370
392
  >${hasIcon
371
393
  ? html`
372
394
  <devtools-icon name=${ifDefined(this.#props.toggled ? this.#props.toggledIconName : this.#props.iconName || this.#props.iconUrl)}>
@@ -40,6 +40,7 @@ button {
40
40
  align-items: center;
41
41
  background: transparent;
42
42
  border-radius: var(--sys-shape-corner-full);
43
+ cursor: inherit;
43
44
  display: inline-flex;
44
45
  position: relative;
45
46
  font-size: var(--sys-typescale-body4-size);
@@ -8,10 +8,13 @@ import {
8
8
  renderElementIntoDOM,
9
9
  } from '../../../testing/DOMHelpers.js';
10
10
 
11
+ const CONTENT_SLOT = 'content';
12
+ const HEADING_SUFFIX_SLOT = 'heading-suffix';
13
+
11
14
  import * as Cards from './cards.js';
12
15
 
13
- function assertCardContent(card: Cards.Card.Card, expectedContent: string[]) {
14
- const slot = getElementWithinComponent(card, 'slot', HTMLSlotElement);
16
+ function assertCardContent(card: Cards.Card.Card, slotName: string, expectedContent: string[]) {
17
+ const slot = getElementWithinComponent(card, `slot[name="${slotName}"]`, HTMLSlotElement);
15
18
  const textContents = Array.from(slot.assignedElements()).map(child => child.textContent);
16
19
  assert.deepStrictEqual(textContents, expectedContent);
17
20
  }
@@ -29,7 +32,7 @@ describe('Card', () => {
29
32
  content: [content1, content2],
30
33
  };
31
34
 
32
- assertCardContent(card, ['content 1', 'content 2']);
35
+ assertCardContent(card, CONTENT_SLOT, ['content 1', 'content 2']);
33
36
  });
34
37
 
35
38
  it('order of slotted elements matter', () => {
@@ -43,12 +46,12 @@ describe('Card', () => {
43
46
  card.data = {
44
47
  content: [content1, content2],
45
48
  };
46
- assertCardContent(card, ['content 1', 'content 2']);
49
+ assertCardContent(card, CONTENT_SLOT, ['content 1', 'content 2']);
47
50
 
48
51
  card.data = {
49
52
  content: [content2, content1],
50
53
  };
51
- assertCardContent(card, ['content 2', 'content 1']);
54
+ assertCardContent(card, CONTENT_SLOT, ['content 2', 'content 1']);
52
55
  });
53
56
 
54
57
  it('shows heading', () => {
@@ -63,4 +66,27 @@ describe('Card', () => {
63
66
  assert.instanceOf(heading, HTMLElement);
64
67
  assert.strictEqual(heading.textContent, 'This is my heading');
65
68
  });
69
+
70
+ it('shows heading icon', async () => {
71
+ const card = new Cards.Card.Card();
72
+ card.data = {
73
+ headingIconName: 'folder',
74
+ content: [],
75
+ };
76
+ renderElementIntoDOM(card);
77
+ const icon = card.shadowRoot?.querySelector('devtools-icon');
78
+ assert.isNotNull(icon);
79
+ });
80
+
81
+ it('shows heading-suffix', () => {
82
+ const suffix = document.createElement('span');
83
+ suffix.textContent = 'hello';
84
+ const card = new Cards.Card.Card();
85
+ card.data = {
86
+ headingSuffix: suffix,
87
+ content: [],
88
+ };
89
+ renderElementIntoDOM(card);
90
+ assertCardContent(card, HEADING_SUFFIX_SLOT, ['hello']);
91
+ });
66
92
  });
@@ -2,7 +2,8 @@
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
5
- import type * as Common from '../../../core/common/common.js';
5
+ import '../../../ui/components/icon_button/icon_button.js';
6
+
6
7
  import * as LitHtml from '../../lit-html/lit-html.js';
7
8
 
8
9
  import cardStyles from './card.css.js';
@@ -16,22 +17,36 @@ declare global {
16
17
  }
17
18
 
18
19
  export interface CardData {
19
- heading?: Common.UIString.LocalizedString;
20
+ heading?: string;
21
+ headingIconName?: string;
22
+ headingSuffix?: HTMLElement;
20
23
  content: HTMLElement[];
21
24
  }
22
25
  export class Card extends HTMLElement {
23
26
  #heading?: string;
27
+ #headingIconName?: string;
28
+ #headingSuffix?: HTMLElement;
24
29
  #content: HTMLElement[] = [];
25
30
  readonly #shadow = this.attachShadow({mode: 'open'});
26
31
 
27
32
  set data(data: CardData) {
28
33
  this.#heading = data.heading;
34
+ this.#headingIconName = data.headingIconName;
35
+
29
36
  this.#content.forEach(content => content.remove());
30
37
  data.content.forEach(content => {
31
38
  content.slot = 'content';
32
39
  this.append(content);
33
40
  });
34
41
  this.#content = data.content;
42
+
43
+ this.#headingSuffix?.remove();
44
+ if (data.headingSuffix) {
45
+ this.#headingSuffix = data.headingSuffix;
46
+ data.headingSuffix.slot = 'heading-suffix';
47
+ this.append(data.headingSuffix);
48
+ }
49
+
35
50
  this.#render();
36
51
  }
37
52
 
@@ -44,7 +59,11 @@ export class Card extends HTMLElement {
44
59
  // clang-format off
45
60
  LitHtml.render(html`
46
61
  <div class="card">
47
- <div role="heading" class="heading">${this.#heading}</div>
62
+ <div class="heading-wrapper">
63
+ ${this.#headingIconName ? html`<devtools-icon class="heading-icon" name=${this.#headingIconName}></devtools-icon>` : LitHtml.nothing}
64
+ <div role="heading" aria-level="2" class="heading">${this.#heading}</div>
65
+ <slot name="heading-suffix"></slot>
66
+ </div>
48
67
  <slot name="content" class='content-container'></slot>
49
68
  </div>
50
69
  `, this.#shadow, {