chrome-devtools-frontend 1.0.1386602 → 1.0.1402249

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 (1404) hide show
  1. package/.git-blame-ignore-revs +3 -0
  2. package/.stylelintrc.json +1 -3
  3. package/AUTHORS +3 -1
  4. package/config/gni/devtools_grd_files.gni +38 -31
  5. package/config/gni/devtools_image_files.gni +4 -1
  6. package/docs/README.md +1 -0
  7. package/docs/contributing/issues.md +1 -1
  8. package/docs/policy/README.md +1 -0
  9. package/docs/policy/gar-page-zoom-policy.md +43 -0
  10. package/docs/policy/images/devtools-gar-testing.png +0 -0
  11. package/docs/policy/images/docked-devtools.webp +0 -0
  12. package/docs/policy/images/undocked-devtools.png +0 -0
  13. package/docs/styleguide/ux/components.md +98 -22
  14. package/docs/styleguide/ux/images/radio-buttons-variations.png +0 -0
  15. package/docs/styleguide/ux/images/sliders-variations.png +0 -0
  16. package/docs/styleguide/ux/styles.md +29 -7
  17. package/eslint.config.mjs +725 -0
  18. package/extensions/cxx_debugging/src/CreditsItem.ts +1 -1
  19. package/extensions/cxx_debugging/src/ExtensionOptions.ts +4 -4
  20. package/extensions/cxx_debugging/src/ModuleConfigurationList.ts +1 -1
  21. package/extensions/cxx_debugging/src/rollup.config.in.js +1 -3
  22. package/extensions/cxx_debugging/tests/Formatters_test.ts +2 -1
  23. package/front_end/Images/rollup.config.mjs +1 -1
  24. package/front_end/Images/src/compress.svg +8 -0
  25. package/front_end/Images/src/devtools-thumbnail.svg +57 -0
  26. package/front_end/Images/src/devtools-tips.svg +61 -0
  27. package/front_end/Images/src/whatsnew.svg +61 -0
  28. package/front_end/Tests.js +27 -33
  29. package/front_end/core/common/CharacterIdMap.test.ts +1 -1
  30. package/front_end/core/common/ColorUtils.test.ts +2 -2
  31. package/front_end/core/common/Console.test.ts +7 -7
  32. package/front_end/core/common/Lazy.test.ts +12 -14
  33. package/front_end/core/common/MapWithDefault.test.ts +61 -0
  34. package/front_end/core/common/MapWithDefault.ts +24 -0
  35. package/front_end/core/common/ParsedURL.test.ts +5 -5
  36. package/front_end/core/common/Progress.test.ts +7 -7
  37. package/front_end/core/common/ResolverBase.test.ts +2 -2
  38. package/front_end/core/common/ResourceType.test.ts +3 -3
  39. package/front_end/core/common/SettingRegistration.test.ts +2 -4
  40. package/front_end/core/common/SettingRegistration.ts +1 -1
  41. package/front_end/core/common/Settings.ts +7 -7
  42. package/front_end/core/common/common.ts +4 -3
  43. package/front_end/core/dom_extension/DOMExtension.test.ts +4 -2
  44. package/front_end/core/dom_extension/DOMExtension.ts +5 -4
  45. package/front_end/core/host/AidaClient.test.ts +92 -38
  46. package/front_end/core/host/AidaClient.ts +131 -28
  47. package/front_end/core/host/InspectorFrontendHost.ts +15 -5
  48. package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -4
  49. package/front_end/core/host/UserMetrics.ts +27 -61
  50. package/front_end/core/i18n/i18n.test.ts +45 -0
  51. package/front_end/core/i18n/time-utilities.ts +17 -0
  52. package/front_end/core/platform/ArrayUtilities.test.ts +7 -8
  53. package/front_end/core/platform/MapUtilities.ts +1 -1
  54. package/front_end/core/platform/StringUtilities.test.ts +1 -1
  55. package/front_end/core/platform/TypedArrayUtilities.test.ts +6 -6
  56. package/front_end/core/root/Runtime.test.ts +5 -3
  57. package/front_end/core/root/Runtime.ts +21 -3
  58. package/front_end/core/sdk/AnimationModel.test.ts +4 -4
  59. package/front_end/core/sdk/AutofillModel.test.ts +1 -1
  60. package/front_end/core/sdk/CSSMatchedStyles.test.ts +44 -45
  61. package/front_end/core/sdk/CSSModel.test.ts +1 -1
  62. package/front_end/core/sdk/CSSStyleDeclaration.test.ts +7 -7
  63. package/front_end/core/sdk/ChildTargetManager.test.ts +10 -10
  64. package/front_end/core/sdk/Connections.ts +5 -0
  65. package/front_end/core/sdk/Cookie.test.ts +37 -37
  66. package/front_end/core/sdk/CookieModel.test.ts +5 -5
  67. package/front_end/core/sdk/DOMModel.ts +5 -0
  68. package/front_end/core/sdk/DebuggerModel.test.ts +2 -2
  69. package/front_end/core/sdk/EnhancedTracesParser.test.ts +7 -7
  70. package/front_end/core/sdk/EnhancedTracesParser.ts +3 -1
  71. package/front_end/core/sdk/FrameManager.test.ts +4 -4
  72. package/front_end/core/sdk/NetworkManager.test.ts +3 -3
  73. package/front_end/core/sdk/NetworkManager.ts +1 -1
  74. package/front_end/core/sdk/NetworkRequest.test.ts +5 -5
  75. package/front_end/core/sdk/PreloadingModel.test.ts +226 -10
  76. package/front_end/core/sdk/PreloadingModel.ts +184 -15
  77. package/front_end/core/sdk/RehydratingConnection.test.ts +3 -3
  78. package/front_end/core/sdk/RehydratingConnection.ts +49 -7
  79. package/front_end/core/sdk/RemoteObject.test.ts +60 -60
  80. package/front_end/core/sdk/ResourceTreeModel.test.ts +5 -5
  81. package/front_end/core/sdk/ServiceWorkerManager.test.ts +3 -3
  82. package/front_end/core/sdk/SourceMap.test.ts +30 -30
  83. package/front_end/core/sdk/SourceMapScopesInfo.test.ts +84 -0
  84. package/front_end/core/sdk/SourceMapScopesInfo.ts +63 -1
  85. package/front_end/core/sdk/TraceObject.test.ts +1 -1
  86. package/front_end/core/sdk/sdk-meta.ts +0 -27
  87. package/front_end/devtools_compatibility.js +1 -4
  88. package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.test.ts +1 -1
  89. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +1 -1
  90. package/front_end/entrypoints/inspector_main/InspectorMain.ts +1 -2
  91. package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +1 -2
  92. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +2 -2
  93. package/front_end/entrypoints/inspector_main/nodeIcon.css +1 -0
  94. package/front_end/entrypoints/main/MainImpl.ts +40 -22
  95. package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +1 -1
  96. package/front_end/entrypoints/node_app/NodeMain.ts +6 -0
  97. package/front_end/entrypoints/node_app/node_app.ts +2 -2
  98. package/front_end/entrypoints/shell/shell.ts +1 -1
  99. package/front_end/generated/ARIAProperties.js +1 -1
  100. package/front_end/generated/Deprecation.ts +8 -16
  101. package/front_end/generated/InspectorBackendCommands.js +22 -13
  102. package/front_end/generated/SupportedCSSProperties.js +51 -36
  103. package/front_end/generated/protocol-mapping.d.ts +25 -0
  104. package/front_end/generated/protocol-proxy-api.d.ts +19 -0
  105. package/front_end/generated/protocol.ts +184 -11
  106. package/front_end/legacy/legacy-defs.d.ts +4 -6
  107. package/front_end/models/autofill_manager/AutofillManager.test.ts +1 -1
  108. package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +3 -3
  109. package/front_end/models/bindings/DefaultScriptMapping.test.ts +3 -3
  110. package/front_end/models/bindings/FileUtils.test.ts +2 -2
  111. package/front_end/models/bindings/IgnoreListManager.ts +3 -3
  112. package/front_end/models/breakpoints/BreakpointManager.test.ts +24 -23
  113. package/front_end/models/crux-manager/CrUXManager.test.ts +77 -16
  114. package/front_end/models/crux-manager/CrUXManager.ts +57 -6
  115. package/front_end/models/emulation/DeviceModeModel.ts +15 -0
  116. package/front_end/models/emulation/EmulatedDevices.test.ts +20 -0
  117. package/front_end/models/emulation/EmulatedDevices.ts +22 -18
  118. package/front_end/models/extensions/ExtensionAPI.ts +1 -1
  119. package/front_end/models/extensions/ExtensionServer.test.ts +121 -40
  120. package/front_end/models/extensions/ExtensionServer.ts +6 -2
  121. package/front_end/models/extensions/LanguageExtensionEndpoint.test.ts +59 -0
  122. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +25 -6
  123. package/front_end/models/extensions/RecorderPluginManager.test.ts +1 -1
  124. package/front_end/models/extensions/extensions.ts +4 -0
  125. package/front_end/models/formatter/FormatterWorkerPool.ts +2 -1
  126. package/front_end/models/har/Importer.test.ts +4 -4
  127. package/front_end/models/har/Log.test.ts +1 -1
  128. package/front_end/models/issues_manager/CookieIssue.ts +4 -3
  129. package/front_end/models/issues_manager/DeprecationIssue.test.ts +3 -3
  130. package/front_end/models/issues_manager/DeprecationIssue.ts +1 -1
  131. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.test.ts +1 -1
  132. package/front_end/models/issues_manager/GenericIssue.test.ts +2 -2
  133. package/front_end/models/issues_manager/IssueResolver.test.ts +2 -2
  134. package/front_end/models/issues_manager/IssuesManager.test.ts +19 -19
  135. package/front_end/models/issues_manager/LowTextContrastIssue.test.ts +2 -2
  136. package/front_end/models/issues_manager/PropertyRuleIssue.test.ts +1 -1
  137. package/front_end/models/issues_manager/RelatedIssue.test.ts +7 -7
  138. package/front_end/models/issues_manager/SharedDictionaryIssue.test.ts +1 -1
  139. package/front_end/models/issues_manager/StylesheetLoadingIssue.test.ts +7 -7
  140. package/front_end/models/javascript_metadata/JavaScriptMetadata.test.ts +6 -6
  141. package/front_end/models/javascript_metadata/NativeFunctions.js +81 -69
  142. package/front_end/models/live-metrics/LiveMetrics.ts +92 -44
  143. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +3 -3
  144. package/front_end/models/logs/NetworkLog.test.ts +3 -3
  145. package/front_end/models/logs/RequestResolver.test.ts +2 -2
  146. package/front_end/models/persistence/EditFileSystemView.ts +1 -1
  147. package/front_end/models/persistence/NetworkPersistenceManager.test.ts +2 -2
  148. package/front_end/models/persistence/WorkspaceSettingsTab.ts +2 -1
  149. package/front_end/models/persistence/editFileSystemView.css +13 -8
  150. package/front_end/models/text_utils/Text.test.ts +1 -1
  151. package/front_end/models/text_utils/TextRange.test.ts +2 -4
  152. package/front_end/models/text_utils/TextUtils.test.ts +29 -30
  153. package/front_end/models/trace/ModelImpl.test.ts +2 -2
  154. package/front_end/models/trace/ModelImpl.ts +1 -0
  155. package/front_end/models/trace/Processor.test.ts +75 -12
  156. package/front_end/models/trace/Processor.ts +108 -9
  157. package/front_end/models/trace/extras/Metadata.test.ts +3 -0
  158. package/front_end/models/trace/extras/Metadata.ts +4 -1
  159. package/front_end/models/trace/extras/StackTraceForEvent.test.ts +259 -0
  160. package/front_end/models/trace/extras/StackTraceForEvent.ts +173 -0
  161. package/front_end/models/trace/extras/ThirdParties.test.ts +0 -27
  162. package/front_end/models/trace/extras/ThirdParties.ts +3 -76
  163. package/front_end/models/trace/extras/extras.ts +1 -1
  164. package/front_end/models/trace/handlers/AnimationFramesHandler.test.ts +40 -0
  165. package/front_end/models/trace/handlers/AnimationFramesHandler.ts +119 -0
  166. package/front_end/models/trace/handlers/AsyncJSCallsHandler.test.ts +211 -0
  167. package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +185 -0
  168. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.test.ts +7 -7
  169. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +2 -2
  170. package/front_end/models/trace/handlers/FlowsHandler.test.ts +185 -0
  171. package/front_end/models/trace/handlers/FlowsHandler.ts +176 -0
  172. package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +56 -49
  173. package/front_end/models/trace/handlers/InitiatorsHandler.ts +37 -25
  174. package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +19 -1
  175. package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +18 -6
  176. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +8 -8
  177. package/front_end/models/trace/handlers/MetaHandler.test.ts +10 -10
  178. package/front_end/models/trace/handlers/ModelHandlers.ts +3 -0
  179. package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +116 -10
  180. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +23 -1
  181. package/front_end/models/trace/handlers/PageLoadMetricsHandler.test.ts +2 -2
  182. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +2 -0
  183. package/front_end/models/trace/handlers/RendererHandler.test.ts +25 -6
  184. package/front_end/models/trace/handlers/RendererHandler.ts +39 -1
  185. package/front_end/models/trace/handlers/SamplesHandler.test.ts +1 -1
  186. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +3 -3
  187. package/front_end/models/trace/handlers/Threads.test.ts +1 -1
  188. package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +3 -3
  189. package/front_end/models/trace/handlers/handlers.ts +1 -0
  190. package/front_end/models/trace/{extras/URLForEntry.test.ts → handlers/helpers.test.ts} +34 -7
  191. package/front_end/models/trace/handlers/helpers.ts +159 -0
  192. package/front_end/models/trace/helpers/SamplesIntegrator.test.ts +13 -13
  193. package/front_end/models/trace/helpers/Trace.test.ts +2 -2
  194. package/front_end/models/trace/helpers/Trace.ts +65 -16
  195. package/front_end/models/trace/helpers/TreeHelpers.test.ts +5 -5
  196. package/front_end/models/trace/helpers/TreeHelpers.ts +1 -1
  197. package/front_end/models/trace/insights/CLSCulprits.test.ts +9 -19
  198. package/front_end/models/trace/insights/CLSCulprits.ts +9 -2
  199. package/front_end/models/trace/insights/Common.test.ts +52 -0
  200. package/front_end/models/trace/insights/Common.ts +118 -1
  201. package/front_end/models/trace/insights/DOMSize.test.ts +31 -0
  202. package/front_end/models/trace/insights/DOMSize.ts +121 -0
  203. package/front_end/models/trace/insights/DocumentLatency.test.ts +6 -10
  204. package/front_end/models/trace/insights/FontDisplay.test.ts +3 -13
  205. package/front_end/models/trace/insights/ImageDelivery.test.ts +23 -18
  206. package/front_end/models/trace/insights/ImageDelivery.ts +99 -11
  207. package/front_end/models/trace/insights/InteractionToNextPaint.test.ts +1 -11
  208. package/front_end/models/trace/insights/LCPDiscovery.test.ts +4 -14
  209. package/front_end/models/trace/insights/LCPPhases.test.ts +4 -14
  210. package/front_end/models/trace/insights/Models.ts +1 -0
  211. package/front_end/models/trace/insights/RenderBlocking.test.ts +14 -25
  212. package/front_end/models/trace/insights/SlowCSSSelector.test.ts +5 -15
  213. package/front_end/models/trace/insights/Statistics.test.ts +145 -0
  214. package/front_end/models/trace/insights/Statistics.ts +93 -0
  215. package/front_end/models/trace/insights/ThirdParties.test.ts +1 -11
  216. package/front_end/models/trace/insights/ThirdParties.ts +2 -2
  217. package/front_end/models/trace/insights/Viewport.test.ts +8 -13
  218. package/front_end/models/trace/insights/Viewport.ts +2 -2
  219. package/front_end/models/trace/insights/insights.ts +1 -0
  220. package/front_end/models/trace/insights/types.ts +3 -1
  221. package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +21 -21
  222. package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +1 -1
  223. package/front_end/models/trace/lantern/graph/BaseNode.test.ts +24 -24
  224. package/front_end/models/trace/lantern/graph/PageDependencyGraph.test.ts +26 -26
  225. package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.test.ts +3 -3
  226. package/front_end/models/trace/lantern/metrics/Interactive.test.ts +6 -6
  227. package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.test.ts +3 -3
  228. package/front_end/models/trace/lantern/metrics/SpeedIndex.test.ts +3 -3
  229. package/front_end/models/trace/lantern/metrics/TBTUtils.test.ts +1 -1
  230. package/front_end/models/trace/lantern/simulation/ConnectionPool.test.ts +22 -22
  231. package/front_end/models/trace/lantern/simulation/Simulator.test.ts +1 -1
  232. package/front_end/models/trace/lantern/simulation/TCPConnection.test.ts +1 -1
  233. package/front_end/models/trace/root-causes/LayoutShift.test.ts +15 -15
  234. package/front_end/models/trace/types/Extensions.ts +4 -3
  235. package/front_end/models/trace/types/File.ts +3 -1
  236. package/front_end/models/trace/types/TraceEvents.ts +99 -11
  237. package/front_end/models/workspace/UISourceCode.test.ts +1 -1
  238. package/front_end/models/workspace/WorkspaceImpl.test.ts +6 -6
  239. package/front_end/panels/accessibility/AccessibilitySubPane.ts +1 -1
  240. package/front_end/panels/accessibility/accessibilityNode.css +2 -2
  241. package/front_end/panels/accessibility/axBreadcrumbs.css +1 -1
  242. package/front_end/panels/{freestyler/FreestylerPanel.test.ts → ai_assistance/AiAssistancePanel.test.ts} +155 -121
  243. package/front_end/panels/{freestyler/FreestylerPanel.ts → ai_assistance/AiAssistancePanel.ts} +204 -152
  244. package/front_end/panels/{freestyler → ai_assistance}/AiHistoryStorage.test.ts +53 -30
  245. package/front_end/panels/{freestyler → ai_assistance}/AiHistoryStorage.ts +8 -10
  246. package/front_end/panels/{freestyler → ai_assistance}/ChangeManager.test.ts +6 -6
  247. package/front_end/panels/{freestyler → ai_assistance}/ChangeManager.ts +2 -2
  248. package/front_end/panels/{freestyler/FreestylerEvaluateAction.test.ts → ai_assistance/EvaluateAction.test.ts} +37 -35
  249. package/front_end/panels/{freestyler/FreestylerEvaluateAction.ts → ai_assistance/EvaluateAction.ts} +10 -5
  250. package/front_end/panels/{freestyler → ai_assistance/agents}/AiAgent.test.ts +110 -75
  251. package/front_end/panels/{freestyler → ai_assistance/agents}/AiAgent.ts +152 -115
  252. package/front_end/panels/{freestyler/DrJonesFileAgent.test.ts → ai_assistance/agents/FileAgent.test.ts} +183 -83
  253. package/front_end/panels/{freestyler/DrJonesFileAgent.ts → ai_assistance/agents/FileAgent.ts} +30 -24
  254. package/front_end/panels/{freestyler/DrJonesNetworkAgent.test.ts → ai_assistance/agents/NetworkAgent.test.ts} +36 -37
  255. package/front_end/panels/{freestyler/DrJonesNetworkAgent.ts → ai_assistance/agents/NetworkAgent.ts} +14 -21
  256. package/front_end/panels/ai_assistance/agents/PatchAgent.ts +405 -0
  257. package/front_end/panels/{freestyler/DrJonesPerformanceAgent.test.ts → ai_assistance/agents/PerformanceAgent.test.ts} +27 -28
  258. package/front_end/panels/{freestyler/DrJonesPerformanceAgent.ts → ai_assistance/agents/PerformanceAgent.ts} +8 -15
  259. package/front_end/panels/{freestyler/FreestylerAgent.test.ts → ai_assistance/agents/StylingAgent.test.ts} +285 -233
  260. package/front_end/panels/{freestyler/FreestylerAgent.ts → ai_assistance/agents/StylingAgent.ts} +76 -59
  261. package/front_end/panels/{freestyler/freestylerPanel.css → ai_assistance/aiAssistancePanel.css} +2 -2
  262. package/front_end/panels/{freestyler/freestyler-meta.ts → ai_assistance/ai_assistance-meta.ts} +71 -45
  263. package/front_end/panels/ai_assistance/ai_assistance.ts +16 -0
  264. package/front_end/panels/{freestyler/components/FreestylerChatUi.test.ts → ai_assistance/components/ChatView.test.ts} +21 -24
  265. package/front_end/panels/{freestyler/components/FreestylerChatUi.ts → ai_assistance/components/ChatView.ts} +138 -47
  266. package/front_end/panels/{freestyler → ai_assistance}/components/UserActionRow.test.ts +1 -1
  267. package/front_end/panels/{freestyler → ai_assistance}/components/UserActionRow.ts +19 -15
  268. package/front_end/panels/{freestyler/components/freestylerChatUi.css → ai_assistance/components/chatView.css} +58 -3
  269. package/front_end/panels/animation/AnimationTimeline.ts +3 -3
  270. package/front_end/panels/animation/AnimationUI.ts +1 -1
  271. package/front_end/panels/animation/animationTimeline.css +7 -10
  272. package/front_end/panels/application/AppManifestView.test.ts +7 -7
  273. package/front_end/panels/application/AppManifestView.ts +1 -1
  274. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +8 -11
  275. package/front_end/panels/application/BackgroundServiceView.ts +1 -1
  276. package/front_end/panels/application/DOMStorageModel.test.ts +1 -1
  277. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +3 -5
  278. package/front_end/panels/application/ExtensionStorageModel.test.ts +5 -5
  279. package/front_end/panels/application/IndexedDBViews.test.ts +6 -8
  280. package/front_end/panels/application/InterestGroupTreeElement.test.ts +1 -1
  281. package/front_end/panels/application/ServiceWorkerUpdateCycleView.test.ts +9 -10
  282. package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +2 -2
  283. package/front_end/panels/application/ServiceWorkersView.ts +0 -1
  284. package/front_end/panels/application/SharedStorageItemsView.test.ts +13 -15
  285. package/front_end/panels/application/SharedStorageModel.test.ts +1 -1
  286. package/front_end/panels/application/SharedStorageTreeElement.test.ts +2 -4
  287. package/front_end/panels/application/StorageView.test.ts +2 -4
  288. package/front_end/panels/application/StorageView.ts +5 -5
  289. package/front_end/panels/application/components/BackForwardCacheView.test.ts +10 -12
  290. package/front_end/panels/application/components/BackForwardCacheView.ts +2 -4
  291. package/front_end/panels/application/components/BounceTrackingMitigationsView.test.ts +11 -13
  292. package/front_end/panels/application/components/EndpointsGrid.test.ts +4 -6
  293. package/front_end/panels/application/components/FrameDetailsView.test.ts +3 -5
  294. package/front_end/panels/application/components/FrameDetailsView.ts +2 -4
  295. package/front_end/panels/application/components/InterestGroupAccessGrid.test.ts +2 -4
  296. package/front_end/panels/application/components/OriginTrialTreeView.test.ts +2 -4
  297. package/front_end/panels/application/components/PermissionsPolicySection.ts +2 -4
  298. package/front_end/panels/application/components/ProtocolHandlersView.ts +1 -1
  299. package/front_end/panels/application/components/ReportsGrid.test.ts +2 -4
  300. package/front_end/panels/application/components/ServiceWorkerRouterView.test.ts +3 -5
  301. package/front_end/panels/application/components/SharedStorageAccessGrid.test.ts +2 -4
  302. package/front_end/panels/application/components/SharedStorageMetadataView.test.ts +5 -7
  303. package/front_end/panels/application/components/StorageMetadataView.test.ts +3 -5
  304. package/front_end/panels/application/components/StorageMetadataView.ts +2 -3
  305. package/front_end/panels/application/components/TrustTokensView.test.ts +2 -4
  306. package/front_end/panels/application/components/TrustTokensView.ts +1 -3
  307. package/front_end/panels/application/preloading/PreloadingView.test.ts +42 -27
  308. package/front_end/panels/application/preloading/PreloadingView.ts +12 -9
  309. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +2 -4
  310. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.test.ts +115 -25
  311. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +51 -26
  312. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +10 -20
  313. package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +169 -17
  314. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +73 -50
  315. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.test.ts +3 -4
  316. package/front_end/panels/application/preloading/components/RuleSetDetailsView.test.ts +7 -15
  317. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +4 -5
  318. package/front_end/panels/application/preloading/components/RuleSetGrid.test.ts +2 -4
  319. package/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts +57 -37
  320. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +2 -4
  321. package/front_end/panels/application/preloading/components/preloadingDisabledInfobar.css +4 -17
  322. package/front_end/panels/application/resourcesPanel.css +1 -2
  323. package/front_end/panels/application/serviceWorkersView.css +0 -5
  324. package/front_end/panels/autofill/AutofillView.test.ts +12 -14
  325. package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +2 -2
  326. package/front_end/panels/console/ConsoleContextSelector.ts +1 -2
  327. package/front_end/panels/console/ConsolePinPane.ts +3 -4
  328. package/front_end/panels/console/ConsoleSidebar.ts +1 -1
  329. package/front_end/panels/console/ConsoleView.test.ts +2 -2
  330. package/front_end/panels/console/ConsoleView.ts +5 -4
  331. package/front_end/panels/console/ConsoleViewMessage.test.ts +76 -9
  332. package/front_end/panels/console/ConsoleViewMessage.ts +11 -6
  333. package/front_end/panels/console/ConsoleViewport.ts +2 -2
  334. package/front_end/panels/console/ErrorStackParser.test.ts +31 -11
  335. package/front_end/panels/console/ErrorStackParser.ts +10 -2
  336. package/front_end/panels/console/consolePinPane.css +1 -1
  337. package/front_end/panels/console/consoleView.css +11 -5
  338. package/front_end/panels/coverage/CoverageView.test.ts +4 -6
  339. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +3 -2
  340. package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +1 -2
  341. package/front_end/panels/css_overview/cssOverviewCompletedView.css +3 -2
  342. package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +4 -0
  343. package/front_end/panels/developer_resources/DeveloperResourcesView.ts +17 -0
  344. package/front_end/panels/elements/CSSRuleValidator.ts +4 -10
  345. package/front_end/panels/elements/ClassesPaneWidget.ts +2 -2
  346. package/front_end/panels/elements/ComputedStyleModel.test.ts +157 -0
  347. package/front_end/panels/elements/ComputedStyleModel.ts +79 -17
  348. package/front_end/panels/elements/ComputedStyleWidget.ts +7 -13
  349. package/front_end/panels/elements/DOMLinkifier.ts +18 -17
  350. package/front_end/panels/elements/ElementStatePaneWidget.test.ts +1 -1
  351. package/front_end/panels/elements/ElementStatePaneWidget.ts +2 -1
  352. package/front_end/panels/elements/ElementsPanel.ts +22 -25
  353. package/front_end/panels/elements/ElementsSidebarPane.ts +5 -5
  354. package/front_end/panels/elements/ElementsTreeElement.ts +2 -2
  355. package/front_end/panels/elements/ElementsTreeOutline.ts +2 -9
  356. package/front_end/panels/elements/MetricsSidebarPane.ts +3 -2
  357. package/front_end/panels/elements/PlatformFontsWidget.ts +1 -0
  358. package/front_end/panels/elements/PropertyMatchers.test.ts +33 -34
  359. package/front_end/panels/elements/PropertyRenderer.test.ts +5 -5
  360. package/front_end/panels/elements/StylePropertiesSection.test.ts +9 -4
  361. package/front_end/panels/elements/StylePropertiesSection.ts +1 -1
  362. package/front_end/panels/elements/StylePropertyHighlighter.test.ts +2 -1
  363. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +23 -21
  364. package/front_end/panels/elements/StylePropertyTreeElement.ts +3 -2
  365. package/front_end/panels/elements/StylesSidebarPane.test.ts +8 -6
  366. package/front_end/panels/elements/StylesSidebarPane.ts +9 -21
  367. package/front_end/panels/elements/components/AccessibilityTreeNode.test.ts +3 -5
  368. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +5 -7
  369. package/front_end/panels/elements/components/CSSQuery.ts +1 -1
  370. package/front_end/panels/elements/components/ElementsBreadcrumbs.test.ts +13 -15
  371. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +7 -8
  372. package/front_end/panels/elements/components/ElementsTreeExpandButton.test.ts +3 -5
  373. package/front_end/panels/elements/components/LayoutPane.test.ts +14 -10
  374. package/front_end/panels/elements/components/LayoutPane.ts +3 -4
  375. package/front_end/panels/elements/components/QueryContainer.test.ts +1 -1
  376. package/front_end/panels/elements/components/QueryContainer.ts +1 -1
  377. package/front_end/panels/elements/components/components.ts +0 -2
  378. package/front_end/panels/elements/elementsPanel.css +4 -4
  379. package/front_end/panels/elements/elementsTreeOutline.css +6 -5
  380. package/front_end/panels/elements/metricsSidebarPane.css +1 -1
  381. package/front_end/panels/elements/stylePropertiesTreeOutline.css +4 -0
  382. package/front_end/panels/emulation/DeviceModeToolbar.ts +1 -2
  383. package/front_end/panels/emulation/DeviceModeView.ts +17 -20
  384. package/front_end/panels/emulation/DeviceModeWrapper.ts +26 -1
  385. package/front_end/panels/emulation/MediaQueryInspector.test.ts +2 -2
  386. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +1 -1
  387. package/front_end/panels/emulation/deviceModeView.css +9 -16
  388. package/front_end/panels/emulation/mediaQueryInspector.css +3 -6
  389. package/front_end/panels/event_listeners/EventListenersView.ts +1 -1
  390. package/front_end/panels/explain/PromptBuilder.test.ts +9 -9
  391. package/front_end/panels/explain/components/ConsoleInsight.test.ts +37 -1
  392. package/front_end/panels/explain/components/ConsoleInsight.ts +46 -5
  393. package/front_end/panels/explain/components/consoleInsight.css +13 -9
  394. package/front_end/panels/explain/explain-meta.ts +12 -8
  395. package/front_end/panels/issues/IssueAggregator.test.ts +23 -20
  396. package/front_end/panels/issues/IssueAggregator.ts +8 -3
  397. package/front_end/panels/issues/issuesTree.css +2 -3
  398. package/front_end/panels/layer_viewer/LayerDetailsView.ts +4 -4
  399. package/front_end/panels/layer_viewer/Layers3DView.ts +4 -3
  400. package/front_end/panels/layer_viewer/PaintProfilerView.ts +1 -1
  401. package/front_end/panels/layer_viewer/layerDetailsView.css +1 -2
  402. package/front_end/panels/lighthouse/LighthouseReportRenderer.test.ts +1 -1
  403. package/front_end/panels/lighthouse/LighthouseStatusView.ts +2 -2
  404. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +2 -2
  405. package/front_end/panels/lighthouse/lighthousePanel.css +5 -5
  406. package/front_end/panels/lighthouse/lighthouseStartView.css +1 -0
  407. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.test.ts +3 -3
  408. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +3 -3
  409. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.test.ts +2 -2
  410. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.test.ts +3 -3
  411. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +1 -1
  412. package/front_end/panels/linear_memory_inspector/components/valueInterpreterSettings.css +1 -2
  413. package/front_end/panels/media/MainView.test.ts +2 -2
  414. package/front_end/panels/media/PlayerMessagesView.ts +2 -3
  415. package/front_end/panels/mobile_throttling/ThrottlingManager.test.ts +1 -1
  416. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +119 -65
  417. package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +37 -1
  418. package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +4 -3
  419. package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +13 -8
  420. package/front_end/panels/network/BlockedURLsPane.ts +1 -1
  421. package/front_end/panels/network/NetworkConfigView.test.ts +15 -0
  422. package/front_end/panels/network/NetworkConfigView.ts +11 -11
  423. package/front_end/panels/network/NetworkDataGridNode.test.ts +2 -2
  424. package/front_end/panels/network/NetworkLogView.test.ts +47 -17
  425. package/front_end/panels/network/NetworkLogView.ts +11 -13
  426. package/front_end/panels/network/NetworkLogViewColumns.ts +5 -8
  427. package/front_end/panels/network/NetworkOverview.test.ts +2 -4
  428. package/front_end/panels/network/NetworkOverview.ts +2 -4
  429. package/front_end/panels/network/NetworkPanel.test.ts +5 -7
  430. package/front_end/panels/network/NetworkPanel.ts +3 -4
  431. package/front_end/panels/network/NetworkWaterfallColumn.ts +3 -5
  432. package/front_end/panels/network/RequestPayloadView.ts +2 -2
  433. package/front_end/panels/network/RequestTimingView.test.ts +1 -1
  434. package/front_end/panels/network/RequestTimingView.ts +9 -10
  435. package/front_end/panels/network/blockedURLsPane.css +1 -2
  436. package/front_end/panels/network/components/HeaderSectionRow.test.ts +25 -27
  437. package/front_end/panels/network/components/RequestHeaderSection.test.ts +3 -5
  438. package/front_end/panels/network/components/RequestHeadersView.test.ts +27 -29
  439. package/front_end/panels/network/components/RequestHeadersView.ts +2 -4
  440. package/front_end/panels/network/components/RequestTrustTokensView.test.ts +1 -1
  441. package/front_end/panels/network/components/ResponseHeaderSection.test.ts +32 -34
  442. package/front_end/panels/network/networkConfigView.css +0 -8
  443. package/front_end/panels/network/networkLogView.css +2 -5
  444. package/front_end/panels/network/networkTimingTable.css +1 -1
  445. package/front_end/panels/network/webSocketFrameView.css +1 -1
  446. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +4 -4
  447. package/front_end/panels/performance_monitor/performanceMonitor.css +1 -2
  448. package/front_end/panels/profiler/HeapDetachedElementsView.ts +4 -0
  449. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +2 -2
  450. package/front_end/panels/profiler/HeapSnapshotView.ts +1 -1
  451. package/front_end/panels/profiler/HeapTimelineOverview.ts +1 -2
  452. package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +1 -2
  453. package/front_end/panels/profiler/ProfileLauncherView.ts +7 -10
  454. package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +8 -2
  455. package/front_end/panels/profiler/ProfilesPanel.ts +4 -1
  456. package/front_end/panels/profiler/heapProfiler.css +8 -4
  457. package/front_end/panels/profiler/profileLauncherView.css +26 -31
  458. package/front_end/panels/profiler/profilesPanel.css +1 -4
  459. package/front_end/panels/profiler/profilesSidebarTree.css +10 -0
  460. package/front_end/panels/protocol_monitor/ProtocolMonitor.test.ts +12 -12
  461. package/front_end/panels/protocol_monitor/components/JSONEditor.test.ts +40 -42
  462. package/front_end/panels/protocol_monitor/components/JSONEditor.ts +0 -1
  463. package/front_end/panels/recorder/RecorderController.test.ts +11 -13
  464. package/front_end/panels/recorder/RecorderController.ts +5 -5
  465. package/front_end/panels/recorder/components/CreateRecordingView.test.ts +9 -9
  466. package/front_end/panels/recorder/components/CreateRecordingView.ts +1 -1
  467. package/front_end/panels/recorder/components/RecordingListView.test.ts +7 -9
  468. package/front_end/panels/recorder/components/RecordingView.test.ts +7 -9
  469. package/front_end/panels/recorder/components/RecordingView.ts +0 -2
  470. package/front_end/panels/recorder/components/ReplaySection.test.ts +3 -5
  471. package/front_end/panels/recorder/components/SelectButton.test.ts +3 -5
  472. package/front_end/panels/recorder/components/StepEditor.test.ts +38 -38
  473. package/front_end/panels/recorder/components/StepView.test.ts +10 -10
  474. package/front_end/panels/recorder/components/StepView.ts +4 -4
  475. package/front_end/panels/recorder/components/controlButton.css +3 -4
  476. package/front_end/panels/recorder/components/stepView.css +4 -4
  477. package/front_end/panels/recorder/converters/LighthouseConverter.test.ts +1 -1
  478. package/front_end/panels/recorder/converters/PuppeteerConverter.test.ts +2 -2
  479. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.test.ts +1 -1
  480. package/front_end/panels/recorder/injected/selectors/CSSSelector.test.ts +1 -1
  481. package/front_end/panels/recorder/models/RecordingPlayer.test.ts +7 -7
  482. package/front_end/panels/recorder/models/SchemaUtils.ts +6 -1
  483. package/front_end/panels/recorder/models/ScreenshotUtils.test.ts +4 -4
  484. package/front_end/panels/recorder/models/Section.test.ts +5 -5
  485. package/front_end/panels/recorder/models/recording-storage.test.ts +1 -1
  486. package/front_end/panels/recorder/models/screenshot-storage.test.ts +1 -1
  487. package/front_end/panels/screencast/ScreencastView.ts +17 -19
  488. package/front_end/panels/screencast/screencastView.css +1 -0
  489. package/front_end/panels/search/SearchView.ts +2 -4
  490. package/front_end/panels/security/CookieControlsView.test.ts +2 -2
  491. package/front_end/panels/security/CookieControlsView.ts +42 -19
  492. package/front_end/panels/security/CookieReportView.test.ts +21 -21
  493. package/front_end/panels/security/CookieReportView.ts +193 -5
  494. package/front_end/panels/security/SecurityPanel.ts +1 -2
  495. package/front_end/panels/security/mainView.css +1 -2
  496. package/front_end/panels/security/originView.css +1 -2
  497. package/front_end/panels/sensors/SensorsView.ts +10 -10
  498. package/front_end/panels/sensors/locationsSettingsTab.css +1 -1
  499. package/front_end/panels/sensors/sensors.css +1 -4
  500. package/front_end/panels/settings/AISettingsTab.test.ts +53 -7
  501. package/front_end/panels/settings/AISettingsTab.ts +77 -39
  502. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +3 -3
  503. package/front_end/panels/settings/KeybindsSettingsTab.ts +7 -8
  504. package/front_end/panels/settings/SettingsScreen.ts +4 -4
  505. package/front_end/panels/settings/aiSettingsTab.css +14 -4
  506. package/front_end/panels/settings/components/SyncSection.test.ts +2 -2
  507. package/front_end/panels/settings/components/SyncSection.ts +1 -1
  508. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +2 -2
  509. package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +1 -2
  510. package/front_end/panels/settings/emulation/devicesSettingsTab.css +3 -1
  511. package/front_end/panels/settings/emulation/utils/StructuredHeaders.test.ts +2 -2
  512. package/front_end/panels/settings/keybindsSettingsTab.css +5 -9
  513. package/front_end/panels/settings/settingsScreen.css +31 -13
  514. package/front_end/panels/sources/CSSPlugin.test.ts +1 -1
  515. package/front_end/panels/sources/CallStackSidebarPane.ts +1 -1
  516. package/front_end/panels/sources/DebuggerPausedMessage.ts +3 -3
  517. package/front_end/panels/sources/DebuggerPlugin.test.ts +5 -5
  518. package/front_end/panels/sources/DebuggerPlugin.ts +1 -1
  519. package/front_end/panels/sources/NavigatorView.test.ts +3 -3
  520. package/front_end/panels/sources/NavigatorView.ts +7 -0
  521. package/front_end/panels/sources/OutlineQuickOpen.ts +1 -1
  522. package/front_end/panels/sources/SourcesNavigator.test.ts +1 -1
  523. package/front_end/panels/sources/SourcesView.test.ts +5 -5
  524. package/front_end/panels/sources/TabbedEditorContainer.test.ts +5 -5
  525. package/front_end/panels/sources/TabbedEditorContainer.ts +1 -1
  526. package/front_end/panels/sources/UISourceCodeFrame.ts +2 -5
  527. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +2 -2
  528. package/front_end/panels/sources/components/BreakpointsView.test.ts +28 -30
  529. package/front_end/panels/sources/components/BreakpointsView.ts +7 -9
  530. package/front_end/panels/sources/components/HeadersView.test.ts +21 -23
  531. package/front_end/panels/sources/navigatorTree.css +4 -4
  532. package/front_end/panels/sources/sources-meta.ts +17 -1
  533. package/front_end/panels/timeline/AppenderUtils.ts +2 -0
  534. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +5 -2
  535. package/front_end/panels/timeline/CountersGraph.ts +5 -4
  536. package/front_end/panels/timeline/EntriesFilter.test.ts +10 -10
  537. package/front_end/panels/timeline/EventsTimelineTreeView.ts +1 -6
  538. package/front_end/panels/timeline/ExtensionTrackAppender.ts +9 -4
  539. package/front_end/panels/timeline/Initiators.test.ts +149 -168
  540. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +3 -26
  541. package/front_end/panels/timeline/ModificationsManager.test.ts +5 -5
  542. package/front_end/panels/timeline/TimelineController.ts +50 -4
  543. package/front_end/panels/timeline/TimelineDetailsView.test.ts +1 -6
  544. package/front_end/panels/timeline/TimelineDetailsView.ts +3 -6
  545. package/front_end/panels/timeline/TimelineEventOverview.ts +1 -1
  546. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +4 -8
  547. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +66 -76
  548. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +3 -3
  549. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +32 -28
  550. package/front_end/panels/timeline/TimelineFlameChartView.test.ts +180 -201
  551. package/front_end/panels/timeline/TimelineFlameChartView.ts +170 -54
  552. package/front_end/panels/timeline/TimelineHistoryManager.test.ts +10 -46
  553. package/front_end/panels/timeline/TimelineHistoryManager.ts +26 -59
  554. package/front_end/panels/timeline/TimelineLoader.test.ts +11 -11
  555. package/front_end/panels/timeline/TimelineLoader.ts +12 -15
  556. package/front_end/panels/timeline/TimelineMiniMap.test.ts +1 -2
  557. package/front_end/panels/timeline/TimelineMiniMap.ts +3 -9
  558. package/front_end/panels/timeline/TimelinePaintProfilerView.ts +1 -1
  559. package/front_end/panels/timeline/TimelinePanel.ts +259 -124
  560. package/front_end/panels/timeline/TimelineTreeView.ts +6 -11
  561. package/front_end/panels/timeline/TimelineUIUtils.test.ts +131 -33
  562. package/front_end/panels/timeline/TimelineUIUtils.ts +64 -66
  563. package/front_end/panels/timeline/TimingsTrackAppender.ts +19 -77
  564. package/front_end/panels/timeline/components/BreadcrumbsUI.test.ts +8 -10
  565. package/front_end/panels/timeline/components/CPUThrottlingSelector.test.ts +7 -9
  566. package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +33 -3
  567. package/front_end/panels/timeline/components/FieldSettingsDialog.test.ts +54 -311
  568. package/front_end/panels/timeline/components/FieldSettingsDialog.ts +13 -255
  569. package/front_end/panels/timeline/components/IgnoreListSetting.test.ts +425 -0
  570. package/front_end/panels/timeline/components/IgnoreListSetting.ts +362 -0
  571. package/front_end/panels/timeline/components/InteractionBreakdown.test.ts +2 -3
  572. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +83 -116
  573. package/front_end/panels/timeline/components/LiveMetricsView.ts +104 -137
  574. package/front_end/panels/timeline/components/MetricCard.test.ts +58 -37
  575. package/front_end/panels/timeline/components/MetricCard.ts +5 -1
  576. package/front_end/panels/timeline/components/MetricCompareStrings.ts +9 -9
  577. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +5 -8
  578. package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +14 -15
  579. package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +35 -5
  580. package/front_end/panels/timeline/components/OriginMap.test.ts +359 -0
  581. package/front_end/panels/timeline/components/OriginMap.ts +278 -0
  582. package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +37 -6
  583. package/front_end/panels/timeline/components/RelatedInsightChips.ts +34 -10
  584. package/front_end/panels/timeline/components/Sidebar.test.ts +1 -7
  585. package/front_end/panels/timeline/components/Sidebar.ts +6 -11
  586. package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +17 -20
  587. package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +2 -4
  588. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +0 -1
  589. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +66 -14
  590. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +58 -73
  591. package/front_end/panels/timeline/components/Utils.test.ts +16 -18
  592. package/front_end/panels/timeline/components/breadcrumbsUI.css +1 -2
  593. package/front_end/panels/timeline/components/components.ts +4 -0
  594. package/front_end/panels/timeline/components/cpuThrottlingSelector.css +5 -2
  595. package/front_end/panels/timeline/components/fieldSettingsDialog.css +7 -10
  596. package/front_end/panels/timeline/components/ignoreListSetting.css +68 -0
  597. package/front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts +5 -7
  598. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +25 -12
  599. package/front_end/panels/timeline/components/insights/CLSCulprits.test.ts +44 -0
  600. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +36 -29
  601. package/front_end/panels/timeline/components/insights/DOMSize.ts +62 -0
  602. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +2 -10
  603. package/front_end/panels/timeline/components/insights/EventRef.ts +2 -13
  604. package/front_end/panels/timeline/components/insights/FontDisplay.ts +2 -10
  605. package/front_end/panels/timeline/components/insights/ImageDelivery.ts +28 -53
  606. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +11 -10
  607. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +18 -12
  608. package/front_end/panels/timeline/components/insights/LCPPhases.ts +11 -11
  609. package/front_end/panels/timeline/components/insights/README.md +10 -24
  610. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +14 -13
  611. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +45 -29
  612. package/front_end/panels/timeline/components/insights/Table.ts +9 -0
  613. package/front_end/panels/timeline/components/insights/ThirdParties.ts +28 -23
  614. package/front_end/panels/timeline/components/insights/Viewport.ts +2 -10
  615. package/front_end/panels/timeline/components/insights/baseInsightComponent.css +11 -4
  616. package/front_end/panels/timeline/components/insights/insights.ts +2 -0
  617. package/front_end/panels/timeline/components/insights/table.css +1 -1
  618. package/front_end/panels/timeline/components/liveMetricsView.css +40 -1
  619. package/front_end/panels/timeline/components/metricCard.css +39 -4
  620. package/front_end/panels/timeline/components/networkThrottlingSelector.css +5 -2
  621. package/front_end/panels/timeline/components/originMap.css +71 -0
  622. package/front_end/panels/timeline/components/relatedInsightChips.css +29 -0
  623. package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +8 -0
  624. package/front_end/panels/timeline/components/timelineSummary.css +1 -4
  625. package/front_end/panels/timeline/fixtures/traces/README.md +29 -4
  626. package/front_end/panels/timeline/fixtures/traces/async-js-calls.json.gz +0 -0
  627. package/front_end/panels/timeline/fixtures/traces/dom-size-long.json.gz +0 -0
  628. package/front_end/panels/timeline/fixtures/traces/dom-size.json.gz +0 -0
  629. package/front_end/panels/timeline/fixtures/traces/extension-tracks-and-marks.json.gz +0 -0
  630. package/front_end/panels/timeline/fixtures/traces/image-delivery.json.gz +0 -0
  631. package/front_end/panels/timeline/fixtures/traces/lcp-multiple-frames.json.gz +0 -0
  632. package/front_end/panels/timeline/fixtures/traces/web-dev-animation-frames.json.gz +0 -0
  633. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +45 -18
  634. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +198 -64
  635. package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +16 -8
  636. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +2 -1
  637. package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +2 -1
  638. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +1 -2
  639. package/front_end/panels/timeline/timeline.ts +0 -2
  640. package/front_end/panels/timeline/timelineFlameChartView.css +44 -5
  641. package/front_end/panels/timeline/timelineFlamechartPopover.css +2 -2
  642. package/front_end/panels/timeline/timelinePanel.css +4 -3
  643. package/front_end/panels/timeline/timelineStatusDialog.css +1 -0
  644. package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +1 -1
  645. package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +6 -20
  646. package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +23 -9
  647. package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +1 -1
  648. package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +3 -3
  649. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +2 -2
  650. package/front_end/panels/timeline/track_appenders/NetworkTrackAppender.test.ts +1 -1
  651. package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +2 -2
  652. package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +13 -12
  653. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +4 -64
  654. package/front_end/panels/timeline/utils/AICallTree.test.ts +11 -11
  655. package/front_end/panels/timeline/utils/AICallTree.ts +1 -1
  656. package/front_end/panels/timeline/utils/EntityMapper.test.ts +124 -0
  657. package/front_end/panels/timeline/utils/EntityMapper.ts +164 -0
  658. package/front_end/panels/timeline/utils/EntryStyles.ts +40 -2
  659. package/front_end/panels/timeline/utils/Helpers.ts +20 -0
  660. package/front_end/panels/timeline/utils/IgnoreList.test.ts +1 -1
  661. package/front_end/panels/timeline/utils/ImageCache.test.ts +2 -2
  662. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +83 -2
  663. package/front_end/panels/timeline/utils/SourceMapsResolver.ts +23 -21
  664. package/front_end/panels/timeline/utils/utils.ts +2 -0
  665. package/front_end/panels/utils/utils.test.ts +2 -2
  666. package/front_end/panels/web_audio/AudioContextSelector.ts +1 -2
  667. package/front_end/panels/webauthn/WebauthnPane.test.ts +55 -11
  668. package/front_end/panels/webauthn/WebauthnPane.ts +47 -27
  669. package/front_end/panels/webauthn/webauthnPane.css +2 -9
  670. package/front_end/panels/whats_new/ReleaseNote.test.ts +3 -2
  671. package/front_end/panels/whats_new/ReleaseNoteText.ts +25 -10
  672. package/front_end/panels/whats_new/ReleaseNoteView.test.ts +159 -0
  673. package/front_end/panels/whats_new/ReleaseNoteView.ts +110 -107
  674. package/front_end/panels/whats_new/releaseNoteView.css +78 -88
  675. package/front_end/panels/whats_new/resources/WNDT.md +6 -6
  676. package/front_end/panels/whats_new/whats_new-meta.ts +2 -2
  677. package/front_end/testing/DOMHelpers.ts +15 -1
  678. package/front_end/testing/DataGridHelpers.ts +2 -3
  679. package/front_end/testing/EnvironmentHelpers.ts +17 -5
  680. package/front_end/testing/InsightHelpers.ts +11 -0
  681. package/front_end/testing/NetworkHelpers.ts +2 -4
  682. package/front_end/testing/StubIssue.ts +1 -1
  683. package/front_end/testing/TraceHelpers.ts +104 -11
  684. package/front_end/testing/TraceLoader.ts +14 -0
  685. package/front_end/third_party/axe-core/README.chromium +2 -2
  686. package/front_end/third_party/i18n/localized-string-set.ts +13 -3
  687. package/front_end/third_party/lighthouse/README.chromium +2 -2
  688. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1091 -807
  689. package/front_end/third_party/lighthouse/locales/ar-XB.json +60 -0
  690. package/front_end/third_party/lighthouse/locales/ar.json +60 -0
  691. package/front_end/third_party/lighthouse/locales/bg.json +77 -17
  692. package/front_end/third_party/lighthouse/locales/ca.json +77 -17
  693. package/front_end/third_party/lighthouse/locales/cs.json +77 -17
  694. package/front_end/third_party/lighthouse/locales/da.json +77 -17
  695. package/front_end/third_party/lighthouse/locales/de.json +77 -17
  696. package/front_end/third_party/lighthouse/locales/el.json +77 -17
  697. package/front_end/third_party/lighthouse/locales/en-GB.json +70 -10
  698. package/front_end/third_party/lighthouse/locales/en-US.json +154 -40
  699. package/front_end/third_party/lighthouse/locales/en-XL.json +154 -40
  700. package/front_end/third_party/lighthouse/locales/es-419.json +77 -17
  701. package/front_end/third_party/lighthouse/locales/es.json +60 -0
  702. package/front_end/third_party/lighthouse/locales/fi.json +60 -0
  703. package/front_end/third_party/lighthouse/locales/fil.json +60 -0
  704. package/front_end/third_party/lighthouse/locales/fr.json +77 -17
  705. package/front_end/third_party/lighthouse/locales/he.json +77 -17
  706. package/front_end/third_party/lighthouse/locales/hi.json +77 -17
  707. package/front_end/third_party/lighthouse/locales/hr.json +60 -0
  708. package/front_end/third_party/lighthouse/locales/hu.json +77 -17
  709. package/front_end/third_party/lighthouse/locales/id.json +77 -17
  710. package/front_end/third_party/lighthouse/locales/it.json +77 -17
  711. package/front_end/third_party/lighthouse/locales/ja.json +60 -0
  712. package/front_end/third_party/lighthouse/locales/ko.json +60 -0
  713. package/front_end/third_party/lighthouse/locales/lt.json +77 -17
  714. package/front_end/third_party/lighthouse/locales/lv.json +77 -17
  715. package/front_end/third_party/lighthouse/locales/nl.json +60 -0
  716. package/front_end/third_party/lighthouse/locales/no.json +77 -17
  717. package/front_end/third_party/lighthouse/locales/pl.json +60 -0
  718. package/front_end/third_party/lighthouse/locales/pt-PT.json +60 -0
  719. package/front_end/third_party/lighthouse/locales/pt.json +77 -17
  720. package/front_end/third_party/lighthouse/locales/ro.json +77 -17
  721. package/front_end/third_party/lighthouse/locales/ru.json +60 -0
  722. package/front_end/third_party/lighthouse/locales/sk.json +60 -0
  723. package/front_end/third_party/lighthouse/locales/sl.json +77 -17
  724. package/front_end/third_party/lighthouse/locales/sr-Latn.json +60 -0
  725. package/front_end/third_party/lighthouse/locales/sr.json +60 -0
  726. package/front_end/third_party/lighthouse/locales/sv.json +77 -17
  727. package/front_end/third_party/lighthouse/locales/ta.json +77 -17
  728. package/front_end/third_party/lighthouse/locales/te.json +72 -12
  729. package/front_end/third_party/lighthouse/locales/th.json +60 -0
  730. package/front_end/third_party/lighthouse/locales/tr.json +77 -17
  731. package/front_end/third_party/lighthouse/locales/uk.json +78 -18
  732. package/front_end/third_party/lighthouse/locales/vi.json +60 -0
  733. package/front_end/third_party/lighthouse/locales/zh-HK.json +77 -17
  734. package/front_end/third_party/lighthouse/locales/zh-TW.json +77 -17
  735. package/front_end/third_party/lighthouse/locales/zh.json +77 -17
  736. package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
  737. package/front_end/third_party/lit/lib/decorators.d.ts +5 -2
  738. package/front_end/third_party/lit/lib/decorators.js +5 -5
  739. package/front_end/third_party/lit/lib/decorators.js.map +1 -1
  740. package/front_end/third_party/lit/lib/directive.d.ts +15 -7
  741. package/front_end/third_party/lit/lib/directive.js.map +1 -1
  742. package/front_end/third_party/lit/lib/directives.d.ts +147 -7
  743. package/front_end/third_party/lit/lib/directives.js +9 -9
  744. package/front_end/third_party/lit/lib/directives.js.map +1 -1
  745. package/front_end/third_party/lit/lib/lit.d.ts +126 -13
  746. package/front_end/third_party/lit/lib/lit.js +5 -5
  747. package/front_end/third_party/lit/lib/lit.js.map +1 -1
  748. package/front_end/third_party/lit/lib/static-html.d.ts +202 -0
  749. package/front_end/third_party/lit/lib/static-html.js +13 -0
  750. package/front_end/third_party/lit/lib/static-html.js.map +1 -0
  751. package/front_end/third_party/lit/lit.ts +2 -1
  752. package/front_end/third_party/lit/package.json +2 -2
  753. package/front_end/third_party/lit/{rollup.config.js → rollup.config.mjs} +2 -2
  754. package/front_end/third_party/lit/src/static-html.ts +5 -0
  755. package/front_end/third_party/puppeteer/README.chromium +2 -2
  756. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +28 -0
  757. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
  758. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +33 -0
  759. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
  760. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts +14 -0
  761. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts.map +1 -1
  762. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +12 -0
  763. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js.map +1 -1
  764. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.d.ts.map +1 -1
  765. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +5 -0
  766. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
  767. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
  768. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +22 -6
  769. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
  770. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +0 -1
  771. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
  772. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js +17 -7
  773. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
  774. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.d.ts +2 -2
  775. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.d.ts.map +1 -1
  776. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js +19 -8
  777. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js.map +1 -1
  778. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.d.ts +3 -0
  779. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.d.ts.map +1 -1
  780. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js +35 -9
  781. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js.map +1 -1
  782. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts +2 -0
  783. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  784. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js +15 -1
  785. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js.map +1 -1
  786. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +17 -7
  787. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
  788. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
  789. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js +13 -2
  790. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js.map +1 -1
  791. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts +2 -1
  792. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
  793. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.js +4 -1
  794. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.js.map +1 -1
  795. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts +11 -1
  796. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts.map +1 -1
  797. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +30 -2
  798. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
  799. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts +2 -0
  800. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  801. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +7 -0
  802. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  803. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts +1 -1
  804. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
  805. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  806. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts +8 -1
  807. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  808. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +100 -4
  809. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
  810. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.d.ts +2 -2
  811. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
  812. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js.map +1 -1
  813. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.d.ts +3 -0
  814. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.d.ts.map +1 -1
  815. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js +28 -0
  816. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js.map +1 -1
  817. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.d.ts +1 -1
  818. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.d.ts.map +1 -1
  819. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js +9 -2
  820. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js.map +1 -1
  821. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.d.ts +1 -1
  822. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.d.ts.map +1 -1
  823. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js +12 -4
  824. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js.map +1 -1
  825. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts +1 -0
  826. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  827. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js +11 -1
  828. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js.map +1 -1
  829. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.d.ts.map +1 -1
  830. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.js +1 -0
  831. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.js.map +1 -1
  832. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js +1 -1
  833. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js.map +1 -1
  834. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts +2 -1
  835. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
  836. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +18 -13
  837. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js.map +1 -1
  838. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.d.ts.map +1 -1
  839. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +17 -7
  840. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js.map +1 -1
  841. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts +1 -0
  842. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  843. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js +7 -0
  844. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js.map +1 -1
  845. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +6 -6
  846. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  847. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts +85 -4
  848. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts.map +1 -1
  849. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +17 -7
  850. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
  851. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
  852. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts.map +1 -1
  853. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
  854. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js.map +1 -1
  855. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
  856. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.js +17 -7
  857. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.js.map +1 -1
  858. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts +6 -6
  859. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  860. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js +20 -10
  861. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js.map +1 -1
  862. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts +5 -5
  863. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  864. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js +7 -4
  865. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js.map +1 -1
  866. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts +4 -4
  867. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
  868. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js +4 -3
  869. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js.map +1 -1
  870. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts +50 -48
  871. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts.map +1 -1
  872. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.d.ts +14 -13
  873. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.d.ts.map +1 -1
  874. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.js +34 -24
  875. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.js.map +1 -1
  876. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts +7 -3
  877. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts.map +1 -1
  878. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js +17 -7
  879. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js.map +1 -1
  880. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
  881. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
  882. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
  883. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
  884. package/front_end/third_party/puppeteer/package/lib/cjs/third_party/parsel-js/parsel-js.js +11 -21
  885. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +283 -120
  886. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +714 -497
  887. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +28 -0
  888. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
  889. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +33 -0
  890. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
  891. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts +14 -0
  892. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts.map +1 -1
  893. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +12 -0
  894. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js.map +1 -1
  895. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.d.ts.map +1 -1
  896. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +5 -0
  897. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
  898. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
  899. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +22 -6
  900. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
  901. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +0 -1
  902. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
  903. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.d.ts +2 -2
  904. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.d.ts.map +1 -1
  905. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.js +2 -1
  906. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.js.map +1 -1
  907. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.d.ts +3 -0
  908. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.d.ts.map +1 -1
  909. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js +36 -10
  910. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js.map +1 -1
  911. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts +2 -0
  912. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  913. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js +15 -1
  914. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js.map +1 -1
  915. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
  916. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js +14 -3
  917. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js.map +1 -1
  918. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts +2 -1
  919. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
  920. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.js +4 -1
  921. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.js.map +1 -1
  922. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts +11 -1
  923. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts.map +1 -1
  924. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +27 -4
  925. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
  926. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts +2 -0
  927. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  928. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js +7 -0
  929. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  930. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts +1 -1
  931. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
  932. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  933. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts +8 -1
  934. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  935. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +100 -4
  936. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
  937. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.d.ts +2 -2
  938. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
  939. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js.map +1 -1
  940. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.d.ts +3 -0
  941. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.d.ts.map +1 -1
  942. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js +28 -0
  943. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js.map +1 -1
  944. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.d.ts +1 -1
  945. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.d.ts.map +1 -1
  946. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js +9 -2
  947. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js.map +1 -1
  948. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.d.ts +1 -1
  949. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.d.ts.map +1 -1
  950. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.js +12 -4
  951. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.js.map +1 -1
  952. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts +1 -0
  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 +11 -1
  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/EmulationManager.d.ts.map +1 -1
  957. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/EmulationManager.js +1 -0
  958. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/EmulationManager.js.map +1 -1
  959. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js +1 -1
  960. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js.map +1 -1
  961. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts +2 -1
  962. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
  963. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +17 -13
  964. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js.map +1 -1
  965. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts.map +1 -1
  966. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js.map +1 -1
  967. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts +1 -0
  968. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  969. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js +7 -0
  970. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js.map +1 -1
  971. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +6 -6
  972. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  973. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts +85 -4
  974. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts.map +1 -1
  975. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
  976. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts.map +1 -1
  977. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
  978. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js.map +1 -1
  979. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts +6 -6
  980. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  981. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js +3 -3
  982. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
  983. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts +5 -5
  984. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  985. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js +7 -4
  986. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map +1 -1
  987. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts +4 -4
  988. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
  989. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js +4 -3
  990. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js.map +1 -1
  991. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +50 -48
  992. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -1
  993. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.d.ts +14 -13
  994. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.d.ts.map +1 -1
  995. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.js +34 -24
  996. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.js.map +1 -1
  997. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts +7 -3
  998. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts.map +1 -1
  999. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
  1000. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
  1001. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
  1002. package/front_end/third_party/puppeteer/package/lib/esm/third_party/parsel-js/parsel-js.js +11 -21
  1003. package/front_end/third_party/puppeteer/package/lib/types.d.ts +283 -120
  1004. package/front_end/third_party/puppeteer/package/package.json +7 -7
  1005. package/front_end/third_party/puppeteer/package/src/api/Browser.ts +37 -0
  1006. package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +26 -0
  1007. package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +6 -0
  1008. package/front_end/third_party/puppeteer/package/src/api/Page.ts +22 -8
  1009. package/front_end/third_party/puppeteer/package/src/bidi/BrowserConnector.ts +4 -6
  1010. package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +57 -10
  1011. package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +17 -0
  1012. package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +20 -3
  1013. package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +6 -2
  1014. package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +43 -5
  1015. package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +10 -0
  1016. package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +1 -1
  1017. package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +55 -3
  1018. package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +2 -5
  1019. package/front_end/third_party/puppeteer/package/src/cdp/BrowserContext.ts +33 -0
  1020. package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +12 -5
  1021. package/front_end/third_party/puppeteer/package/src/cdp/Connection.ts +15 -6
  1022. package/front_end/third_party/puppeteer/package/src/cdp/ElementHandle.ts +13 -1
  1023. package/front_end/third_party/puppeteer/package/src/cdp/EmulationManager.ts +1 -0
  1024. package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +1 -1
  1025. package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +25 -13
  1026. package/front_end/third_party/puppeteer/package/src/common/BrowserConnector.ts +1 -2
  1027. package/front_end/third_party/puppeteer/package/src/common/CallbackRegistry.ts +8 -0
  1028. package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +7 -6
  1029. package/front_end/third_party/puppeteer/package/src/common/Cookie.ts +87 -4
  1030. package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
  1031. package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +14 -12
  1032. package/front_end/third_party/puppeteer/package/src/node/ChromeLauncher.ts +11 -12
  1033. package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +9 -9
  1034. package/front_end/third_party/puppeteer/package/src/node/LaunchOptions.ts +52 -50
  1035. package/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts +55 -45
  1036. package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
  1037. package/front_end/ui/components/adorners/Adorner.test.ts +2 -2
  1038. package/front_end/ui/components/buttons/button.css +5 -5
  1039. package/front_end/ui/components/cards/Card.test.ts +1 -1
  1040. package/front_end/ui/components/cards/card.css +2 -2
  1041. package/front_end/ui/components/chrome_link/ChromeLink.test.ts +2 -4
  1042. package/front_end/ui/components/chrome_link/ChromeLink.ts +1 -1
  1043. package/front_end/ui/components/data_grid/DataGrid.test.ts +65 -67
  1044. package/front_end/ui/components/data_grid/DataGrid.ts +11 -16
  1045. package/front_end/ui/components/data_grid/DataGridController.test.ts +34 -36
  1046. package/front_end/ui/components/data_grid/dataGrid.css +1 -1
  1047. package/front_end/ui/components/dialogs/ButtonDialog.test.ts +4 -6
  1048. package/front_end/ui/components/dialogs/ButtonDialog.ts +3 -1
  1049. package/front_end/ui/components/dialogs/Dialog.test.ts +47 -50
  1050. package/front_end/ui/components/dialogs/Dialog.ts +13 -101
  1051. package/front_end/ui/components/dialogs/ShortcutDialog.test.ts +7 -23
  1052. package/front_end/ui/components/dialogs/ShortcutDialog.ts +13 -92
  1053. package/front_end/ui/components/dialogs/buttonDialog.css +1 -1
  1054. package/front_end/ui/components/dialogs/dialog.css +10 -8
  1055. package/front_end/ui/components/dialogs/dialogs.ts +0 -2
  1056. package/front_end/ui/components/dialogs/shortcutDialog.css +10 -8
  1057. package/front_end/ui/components/diff_view/DiffView.test.ts +1 -1
  1058. package/front_end/ui/components/diff_view/diffView.css +2 -2
  1059. package/front_end/ui/components/docs/{freestyler → ai_assistance}/basic.ts +8 -8
  1060. package/front_end/ui/components/docs/{freestyler → ai_assistance}/empty_state.ts +5 -5
  1061. package/front_end/ui/components/docs/building-ui-documentation/TestingComponents.md +6 -7
  1062. package/front_end/ui/components/docs/button/basic.html +18 -34
  1063. package/front_end/ui/components/docs/button/basic.ts +135 -371
  1064. package/front_end/ui/components/docs/create_breadcrumbs.ts +1 -1
  1065. package/front_end/ui/components/docs/dialog/basic.ts +71 -7
  1066. package/front_end/ui/components/docs/dialog/button_dialog.ts +2 -1
  1067. package/front_end/ui/components/docs/{shortcut_dialog/basic.html → dialog/shortcut_dialog.html} +1 -1
  1068. package/front_end/ui/components/docs/{shortcut_dialog/basic.ts → dialog/shortcut_dialog.ts} +5 -5
  1069. package/front_end/ui/components/docs/menu/basic.ts +0 -1
  1070. package/front_end/ui/components/docs/performance_panel/basic.ts +0 -5
  1071. package/front_end/ui/components/docs/performance_panel/timeline_history_manager.ts +0 -3
  1072. package/front_end/ui/components/docs/radio_button/basic.html +23 -0
  1073. package/front_end/ui/components/docs/radio_button/basic.ts +50 -0
  1074. package/front_end/ui/components/docs/recorder_control_button/basic.ts +1 -1
  1075. package/front_end/ui/components/docs/recorder_create_recording_view/basic.ts +1 -1
  1076. package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +1 -1
  1077. package/front_end/ui/components/docs/recorder_recording_view/basic.ts +1 -1
  1078. package/front_end/ui/components/docs/recorder_select_button/basic.ts +1 -1
  1079. package/front_end/ui/components/docs/recorder_split_view/basic.ts +1 -1
  1080. package/front_end/ui/components/docs/recorder_start_view/basic.ts +1 -1
  1081. package/front_end/ui/components/docs/select_menu/basic.ts +3 -4
  1082. package/front_end/ui/components/docs/slider/basic.html +20 -0
  1083. package/front_end/ui/components/docs/slider/basic.ts +62 -0
  1084. package/front_end/ui/components/expandable_list/ExpandableList.test.ts +4 -4
  1085. package/front_end/ui/components/helpers/helpers.test.ts +4 -6
  1086. package/front_end/ui/components/helpers/scheduled-render.ts +4 -3
  1087. package/front_end/ui/components/highlighting/HighlightManager.test.ts +7 -7
  1088. package/front_end/ui/components/icon_button/FileSourceIcon.ts +0 -1
  1089. package/front_end/ui/components/icon_button/IconButton.test.ts +8 -8
  1090. package/front_end/ui/components/icon_button/icon.css +1 -1
  1091. package/front_end/ui/components/issue_counter/IssueCounter.test.ts +10 -10
  1092. package/front_end/ui/components/issue_counter/IssueLinkIcon.test.ts +4 -6
  1093. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +2 -4
  1094. package/front_end/ui/components/linkifier/LinkifierImpl.test.ts +8 -10
  1095. package/front_end/ui/components/linkifier/LinkifierImpl.ts +3 -5
  1096. package/front_end/ui/components/markdown_view/MarkdownImage.test.ts +2 -4
  1097. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +9 -9
  1098. package/front_end/ui/components/markdown_view/markdownLink.css +0 -4
  1099. package/front_end/ui/components/markdown_view/markdownView.css +1 -5
  1100. package/front_end/ui/components/menus/Menu.ts +3 -22
  1101. package/front_end/ui/components/menus/SelectMenu.test.ts +5 -7
  1102. package/front_end/ui/components/menus/SelectMenu.ts +6 -39
  1103. package/front_end/ui/components/menus/selectMenuButton.css +1 -1
  1104. package/front_end/ui/components/panel_feedback/FeedbackButton.test.ts +2 -4
  1105. package/front_end/ui/components/panel_feedback/PanelFeedback.test.ts +2 -4
  1106. package/front_end/ui/components/panel_feedback/PreviewToggle.test.ts +5 -7
  1107. package/front_end/ui/components/render_coordinator/render_coordinator.test.ts +53 -52
  1108. package/front_end/ui/components/render_coordinator/render_coordinator.ts +301 -2
  1109. package/front_end/ui/components/request_link_icon/RequestLinkIcon.test.ts +5 -7
  1110. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +30 -27
  1111. package/front_end/ui/components/request_link_icon/requestLinkIcon.css +3 -0
  1112. package/front_end/ui/components/settings/SettingCheckbox.test.ts +3 -3
  1113. package/front_end/ui/components/settings/SettingCheckbox.ts +4 -3
  1114. package/front_end/ui/components/spinners/spinner.css +4 -4
  1115. package/front_end/ui/components/split_view/SplitView.test.ts +6 -8
  1116. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +2 -4
  1117. package/front_end/ui/components/srgb_overlay/srgbOverlay.css +2 -2
  1118. package/front_end/ui/components/suggestion_input/SuggestionInput.ts +1 -1
  1119. package/front_end/ui/components/suggestion_input/suggestionInput.css +1 -2
  1120. package/front_end/ui/components/survey_link/SurveyLink.ts +1 -1
  1121. package/front_end/ui/components/switch/SwitchImpl.test.ts +1 -1
  1122. package/front_end/ui/components/switch/SwitchImpl.ts +2 -2
  1123. package/front_end/ui/components/text_editor/TextEditor.test.ts +6 -6
  1124. package/front_end/ui/components/text_editor/config.ts +22 -4
  1125. package/front_end/ui/components/text_prompt/TextPrompt.test.ts +3 -3
  1126. package/front_end/ui/components/tree_outline/TreeOutline.test.ts +46 -48
  1127. package/front_end/ui/components/tree_outline/TreeOutline.ts +3 -5
  1128. package/front_end/ui/legacy/ARIAUtils.ts +1 -5
  1129. package/front_end/ui/legacy/Dialog.ts +2 -4
  1130. package/front_end/ui/legacy/DockController.test.ts +2 -2
  1131. package/front_end/ui/legacy/DropTarget.ts +1 -2
  1132. package/front_end/ui/legacy/EmptyWidget.ts +1 -1
  1133. package/front_end/ui/legacy/FilterBar.ts +3 -5
  1134. package/front_end/ui/legacy/Infobar.ts +5 -7
  1135. package/front_end/ui/legacy/ListWidget.ts +1 -1
  1136. package/front_end/ui/legacy/ProgressIndicator.ts +2 -3
  1137. package/front_end/ui/legacy/ReportView.ts +2 -2
  1138. package/front_end/ui/legacy/SearchableView.ts +4 -7
  1139. package/front_end/ui/legacy/SettingsUI.ts +2 -2
  1140. package/front_end/ui/legacy/ShortcutRegistry.test.ts +3 -3
  1141. package/front_end/ui/legacy/SoftDropDown.ts +0 -1
  1142. package/front_end/ui/legacy/SplitWidget.ts +2 -2
  1143. package/front_end/ui/legacy/SuggestBox.test.ts +5 -5
  1144. package/front_end/ui/legacy/SuggestBox.ts +1 -2
  1145. package/front_end/ui/legacy/TabbedPane.ts +42 -2
  1146. package/front_end/ui/legacy/TextPrompt.ts +1 -1
  1147. package/front_end/ui/legacy/Toolbar.test.ts +2 -5
  1148. package/front_end/ui/legacy/Toolbar.ts +11 -8
  1149. package/front_end/ui/legacy/Treeoutline.ts +1 -2
  1150. package/front_end/ui/legacy/UIUtils.ts +164 -131
  1151. package/front_end/ui/legacy/ViewRegistration.test.ts +1 -1
  1152. package/front_end/ui/legacy/Widget.test.ts +111 -4
  1153. package/front_end/ui/legacy/Widget.ts +81 -34
  1154. package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +4 -4
  1155. package/front_end/ui/legacy/components/color_picker/Spectrum.test.ts +1 -1
  1156. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -2
  1157. package/front_end/ui/legacy/components/color_picker/spectrum.css +2 -1
  1158. package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +1 -1
  1159. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +8 -8
  1160. package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +2 -4
  1161. package/front_end/ui/legacy/components/data_grid/dataGrid.css +10 -17
  1162. package/front_end/ui/legacy/components/inline_editor/CSSAngle.test.ts +3 -3
  1163. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +1 -0
  1164. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +2 -2
  1165. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.test.ts +1 -1
  1166. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.test.ts +5 -5
  1167. package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +22 -23
  1168. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +26 -26
  1169. package/front_end/ui/legacy/components/inline_editor/bezierSwatch.css +4 -4
  1170. package/front_end/ui/legacy/components/inline_editor/cssAngleEditor.css +1 -4
  1171. package/front_end/ui/legacy/components/inline_editor/cssAngleSwatch.css +1 -4
  1172. package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +2 -4
  1173. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +2 -5
  1174. package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +4 -4
  1175. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +72 -71
  1176. package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +1 -1
  1177. package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +1 -1
  1178. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +172 -108
  1179. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +3 -3
  1180. package/front_end/ui/legacy/components/perf_ui/PieChart.test.ts +6 -6
  1181. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +29 -11
  1182. package/front_end/ui/legacy/components/perf_ui/filmStripView.css +1 -2
  1183. package/front_end/ui/legacy/components/perf_ui/flameChart.css +1 -12
  1184. package/front_end/ui/legacy/components/perf_ui/overviewGrid.css +1 -4
  1185. package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +13 -11
  1186. package/front_end/ui/legacy/components/perf_ui/pieChart.css +1 -1
  1187. package/front_end/ui/legacy/components/perf_ui/timelineGrid.css +1 -4
  1188. package/front_end/ui/legacy/components/quick_open/CommandMenu.test.ts +3 -3
  1189. package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +2 -2
  1190. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +3 -1
  1191. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +1 -2
  1192. package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -1
  1193. package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -1
  1194. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +1 -1
  1195. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +2 -4
  1196. package/front_end/ui/legacy/components/utils/ImagePreview.ts +22 -19
  1197. package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +3 -4
  1198. package/front_end/ui/legacy/components/utils/Linkifier.test.ts +4 -0
  1199. package/front_end/ui/legacy/dropTarget.css +1 -4
  1200. package/front_end/ui/legacy/glassPane.css +2 -4
  1201. package/front_end/ui/legacy/inspectorCommon.css +86 -20
  1202. package/front_end/ui/legacy/inspectorViewTabbedPane.css +0 -19
  1203. package/front_end/ui/legacy/legacy.ts +0 -2
  1204. package/front_end/ui/legacy/reportView.css +7 -1
  1205. package/front_end/ui/legacy/rootView.css +1 -4
  1206. package/front_end/ui/legacy/softDropDown.css +1 -2
  1207. package/front_end/ui/legacy/tabbedPane.css +10 -18
  1208. package/front_end/ui/legacy/textButton.css +6 -6
  1209. package/front_end/ui/legacy/themeColors.css +50 -28
  1210. package/front_end/ui/legacy/toolbar.css +4 -28
  1211. package/front_end/ui/legacy/treeoutline.css +1 -1
  1212. package/front_end/ui/lit-html/i18n-template.test.ts +53 -0
  1213. package/front_end/ui/lit-html/i18n-template.ts +32 -0
  1214. package/front_end/ui/lit-html/lit-html.ts +13 -14
  1215. package/front_end/ui/visual_logging/Debugging.test.ts +0 -9
  1216. package/front_end/ui/visual_logging/Debugging.ts +45 -12
  1217. package/front_end/ui/visual_logging/DomState.test.ts +6 -6
  1218. package/front_end/ui/visual_logging/KnownContextValues.ts +199 -3
  1219. package/front_end/ui/visual_logging/LoggingDriver.test.ts +6 -7
  1220. package/front_end/ui/visual_logging/LoggingDriver.ts +3 -4
  1221. package/front_end/ui/visual_logging/LoggingEvents.test.ts +16 -16
  1222. package/front_end/ui/visual_logging/LoggingEvents.ts +1 -1
  1223. package/front_end/ui/visual_logging/visual_logging.ts +12 -1
  1224. package/inspector_overlay/common.css +1 -4
  1225. package/inspector_overlay/css_grid_label_helpers.test.ts +14 -15
  1226. package/inspector_overlay/css_grid_label_helpers.ts +2 -2
  1227. package/inspector_overlay/highlight_common.test.ts +6 -6
  1228. package/inspector_overlay/highlight_common.ts +1 -1
  1229. package/inspector_overlay/highlight_flex_common.test.ts +45 -45
  1230. package/inspector_overlay/main.ts +7 -7
  1231. package/inspector_overlay/tool_highlight.css +1 -1
  1232. package/inspector_overlay/tool_highlight.test.ts +3 -3
  1233. package/inspector_overlay/tool_highlight.ts +1 -1
  1234. package/inspector_overlay/tool_window_controls.test.ts +2 -2
  1235. package/package.json +15 -14
  1236. package/scripts/{freestyler → ai_assistance}/README.md +11 -10
  1237. package/scripts/{freestyler/auto_freestyler.js → ai_assistance/auto-run.js} +31 -2
  1238. package/scripts/{freestyler → ai_assistance}/eval/index.js +1 -1
  1239. package/scripts/ai_assistance/types.d.ts +54 -0
  1240. package/scripts/build/typescript/ts_library.py +3 -0
  1241. package/scripts/build/typescript/typescript.gni +4 -1
  1242. package/scripts/check_experiments.js +82 -23
  1243. package/scripts/component_server/server.js +142 -48
  1244. package/scripts/devtools_paths.js +25 -9
  1245. package/scripts/eslint_rules/README.md +5 -1
  1246. package/scripts/eslint_rules/lib/{l10n_no_locked_or_placeholder_only_phrase.js → l10n-no-locked-or-placeholder-only-phrase.js} +1 -1
  1247. package/scripts/eslint_rules/lib/{l10n_no_uistrings_export.js → l10n-no-uistrings-export.js} +1 -1
  1248. package/scripts/eslint_rules/lib/{l10n_no_unused_message.js → l10n-no-unused-message.js} +1 -1
  1249. package/scripts/eslint_rules/lib/{ban_a_tags_in_lit_html.js → no-a-tags-in-lit-html.js} +0 -1
  1250. package/scripts/eslint_rules/lib/no-assert-deep-strict-equal.js +61 -0
  1251. package/scripts/eslint_rules/lib/no-assert-equal-boolean-null-undefined.js +125 -0
  1252. package/scripts/eslint_rules/lib/no-assert-strict-equal-for-arrays-and-objects.js +75 -0
  1253. package/scripts/eslint_rules/lib/no-customized-builtin-elements.js +120 -0
  1254. package/scripts/eslint_rules/lib/{ban_imports_in_directory.js → no-imports-in-directory.js} +0 -1
  1255. package/scripts/eslint_rules/lib/{ban_new_lit_element_components.js → no-new-lit-element-components.js} +0 -1
  1256. package/scripts/eslint_rules/lib/{ban_style_tags_in_lit_html.js → no-style-tags-in-lit-html.js} +14 -3
  1257. package/scripts/eslint_rules/lib/prefer-assert-instance-of.js +89 -0
  1258. package/scripts/eslint_rules/lib/prefer-assert-is-ok.js +71 -0
  1259. package/scripts/eslint_rules/lib/prefer-assert-length-of.js +79 -0
  1260. package/scripts/eslint_rules/lib/{use_private_class_members.js → prefer-private-class-members.js} +4 -6
  1261. package/scripts/eslint_rules/lib/prefer-readonly-keyword.js +57 -0
  1262. package/scripts/eslint_rules/tests/{canvas_context_tracking_test.js → canvas-context-tracking.test.js} +2 -2
  1263. package/scripts/eslint_rules/tests/{check_css_import_test.js → check-css-import.test.js} +2 -2
  1264. package/scripts/eslint_rules/tests/{check_enumerated_histograms_test.js → check-enumerated-histograms.test.js} +2 -2
  1265. package/scripts/eslint_rules/tests/{check_license_header_test.js → check-license-header.test.js} +2 -2
  1266. package/scripts/eslint_rules/tests/{check_test_definitions_test.js → check-test-definitions.test.js} +2 -2
  1267. package/scripts/eslint_rules/tests/{check_was_shown_methods_test.js → check-was-shown-methods.test.js} +2 -2
  1268. package/scripts/eslint_rules/tests/{enforce_bound_render_for_schedule_render_test.js → enforce-bound-render-for-schedule-render.test.js} +2 -2
  1269. package/scripts/eslint_rules/tests/{enforce_custom_event_names_test.js → enforce-custom-event-names.test.js} +2 -2
  1270. package/scripts/eslint_rules/tests/{enforce_default_import_name_test.js → enforce-default-import-name.test.js} +2 -2
  1271. package/scripts/eslint_rules/tests/{es_modules_import_test.js → es-modules-import.test.js} +2 -2
  1272. package/scripts/eslint_rules/tests/{html_tagged_template_test.js → html-tagged-template.test.js} +2 -2
  1273. package/scripts/eslint_rules/tests/{inject_checkbox_styles_test.js → inject-checkbox-styles.test.js} +2 -2
  1274. package/scripts/eslint_rules/tests/{inline_type_imports_test.js → inline-type-imports.test.js} +2 -2
  1275. package/scripts/eslint_rules/tests/{jslog_context_list_test.js → jslog-context-list.test.js} +2 -2
  1276. package/scripts/eslint_rules/tests/{l10n_filename_matches_test.js → l10n-filename-matches.test.js} +2 -2
  1277. package/scripts/eslint_rules/tests/{l10n_i18nString_call_only_with_uistrings_test.js → l10n-i18nString-call-only-with-uistrings.test.js} +2 -2
  1278. package/scripts/eslint_rules/tests/{l10n_no_i18nString_calls_module_instantiation_test.js → l10n-no-i18nString-calls-module-instantiation.test.js} +2 -2
  1279. package/scripts/eslint_rules/tests/{l10n_no_locked_or_placeholder_only_phrase_test.js → l10n-no-locked-or-placeholder-only-phrase.test.js} +2 -2
  1280. package/scripts/eslint_rules/tests/{l10n_no_uistrings_export_test.js → l10n-no-uistrings-export.test.js} +2 -2
  1281. package/scripts/eslint_rules/tests/{l10n_no_unused_message_test.js → l10n-no-unused-message.test.js} +2 -2
  1282. package/scripts/eslint_rules/tests/{lit_html_host_this_test.js → lit-html-host-this.test.js} +2 -2
  1283. package/scripts/eslint_rules/tests/{lit_html_no_attribute_quotes_test.js → lit-html-no-attribute-quotes.test.js} +2 -2
  1284. package/scripts/eslint_rules/tests/{lit_template_result_or_nothing_test.js → lit-template-result-or-nothing.test.js} +2 -2
  1285. package/scripts/eslint_rules/tests/{ban_a_tags_in_lit_html_test.js → no-a-tags-in-lit-html.test.js} +2 -2
  1286. package/scripts/eslint_rules/tests/no-assert-deep-strict-equal.test.js +53 -0
  1287. package/scripts/eslint_rules/tests/no-assert-equal-boolean-null-undefined.test.js +209 -0
  1288. package/scripts/eslint_rules/tests/{avoid_assert_equal_test.js → no-assert-equal.test.js} +2 -2
  1289. package/scripts/eslint_rules/tests/no-assert-strict-equal-for-arrays-and-objects.test.js +89 -0
  1290. package/scripts/eslint_rules/tests/{no_bound_component_methods_test.js → no-bound-component-methods.test.js} +2 -2
  1291. package/scripts/eslint_rules/tests/{commented_out_console_test.js → no-commented-out-console.test.js} +2 -2
  1292. package/scripts/eslint_rules/tests/{commented_out_import_test.js → no-commented-out-import.test.js} +2 -2
  1293. package/scripts/eslint_rules/tests/no-customized-builtin-elements.test.js +152 -0
  1294. package/scripts/eslint_rules/tests/{no_importing_images_from_src_test.js → no-importing-images-from-src.test.js} +2 -2
  1295. package/scripts/eslint_rules/tests/{ban_imports_in_directory_test.js → no-imports-in-directory.test.js} +2 -2
  1296. package/scripts/eslint_rules/tests/{no_it_screenshot_only_or_repeat_test.js → no-it-screenshot-only-or-repeat.test.js} +2 -2
  1297. package/scripts/eslint_rules/tests/{ban_new_lit_element_components_test.js → no-new-lit-element-components.test.js} +2 -2
  1298. package/scripts/eslint_rules/tests/{no_only_eslint_tests_test.js → no-only-eslint-tests.test.js} +9 -9
  1299. package/scripts/eslint_rules/tests/{ban_screenshot_test_outside_perf_panel_test.js → no-screenshot-test-outside-perf-panel.test.js} +2 -2
  1300. package/scripts/eslint_rules/tests/{ban_self_closing_custom_element_tagnames_test.js → no-self-closing-custom-element-tagnames.test.js} +2 -2
  1301. package/scripts/eslint_rules/tests/{ban_style_tags_in_lit_html_test.js → no-style-tags-in-lit-html.test.js} +2 -2
  1302. package/scripts/eslint_rules/tests/{no_underscored_properties_test.js → no-underscored-properties.test.js} +2 -2
  1303. package/scripts/eslint_rules/tests/prefer-assert-instance-of.test.js +197 -0
  1304. package/scripts/eslint_rules/tests/prefer-assert-is-ok.test.js +81 -0
  1305. package/scripts/eslint_rules/tests/prefer-assert-length-of.test.js +145 -0
  1306. package/scripts/eslint_rules/tests/{use_private_class_members_test.js → prefer-private-class-members.test.js} +2 -2
  1307. package/scripts/eslint_rules/tests/{prefer_readonly_keyword_test.js → prefer-readonly-keyword.test.js} +31 -15
  1308. package/scripts/eslint_rules/tests/{screenshot_assertion_in_it_screenshot_test.js → screenshot-assertion-in-it-screenshot.test.js} +2 -2
  1309. package/scripts/eslint_rules/tests/{set_data_type_reference_test.js → set-data-type-reference.test.js} +2 -2
  1310. package/scripts/eslint_rules/tests/{single_screenshot_assertion_per_test_test.js → single-screenshot-assertion-per-test.test.js} +2 -2
  1311. package/scripts/eslint_rules/tests/{static_custom_event_names_test.js → static-custom-event-names.test.js} +2 -2
  1312. package/scripts/eslint_rules/tests/{trace_engine_test_timeouts_test.js → trace-engine-test-timeouts.test.js} +2 -2
  1313. package/scripts/generate_metric_compare_strings.js +1 -1
  1314. package/scripts/stylelint_rules/lib/{use_theme_colors.js → use_theme_colors.mjs} +150 -52
  1315. package/scripts/stylelint_rules/tests/use_theme_colors_test.js +102 -42
  1316. package/.eslintignore +0 -41
  1317. package/.eslintrc.js +0 -315
  1318. package/front_end/.eslintrc.js +0 -96
  1319. package/front_end/Images/whatsnew.avif +0 -0
  1320. package/front_end/legacy_test_runner/.eslintrc.js +0 -13
  1321. package/front_end/models/trace/extras/URLForEntry.ts +0 -56
  1322. package/front_end/models/trace/handlers/.eslintrc.js +0 -18
  1323. package/front_end/models/trace/lantern/.eslintrc.js +0 -16
  1324. package/front_end/panels/elements/ComputedStyleWidget.test.ts +0 -72
  1325. package/front_end/panels/elements/components/AdornerSettingsPane.ts +0 -132
  1326. package/front_end/panels/elements/components/adornerSettingsPane.css +0 -40
  1327. package/front_end/panels/freestyler/freestyler.ts +0 -16
  1328. package/front_end/panels/recorder/injected/.eslintrc.js +0 -14
  1329. package/front_end/panels/timeline/ExtensionDataGatherer.ts +0 -65
  1330. package/front_end/panels/timeline/TimelineLandingPage.ts +0 -108
  1331. package/front_end/panels/timeline/fixtures/traces/nested-initiators.json.gz +0 -0
  1332. package/front_end/panels/timeline/fixtures/traces/set-timeout-long-task.json.gz +0 -0
  1333. package/front_end/panels/whats_new/resources/whatsnew.avif +0 -0
  1334. package/front_end/ui/components/dialogs/IconDialog.ts +0 -160
  1335. package/front_end/ui/components/dialogs/iconDialog.css +0 -24
  1336. package/front_end/ui/components/docs/.eslintrc.js +0 -19
  1337. package/front_end/ui/components/docs/icon_dialog/basic.html +0 -28
  1338. package/front_end/ui/components/docs/icon_dialog/basic.ts +0 -46
  1339. package/front_end/ui/components/render_coordinator/RenderCoordinator.ts +0 -331
  1340. package/front_end/ui/legacy/HistoryInput.ts +0 -61
  1341. package/front_end/ui/legacy/components/perf_ui/.eslintrc.js +0 -18
  1342. package/front_end/ui/legacy/radioButton.css +0 -32
  1343. package/front_end/ui/legacy/slider.css +0 -51
  1344. package/front_end/ui/lit-html/static.test.ts +0 -153
  1345. package/front_end/ui/lit-html/static.ts +0 -127
  1346. package/scripts/.eslintrc.js +0 -9
  1347. package/scripts/eslint_rules/lib/compare_arrays_with_assert_deepequal.js +0 -60
  1348. package/scripts/eslint_rules/lib/lit_no_style_interpolation.js +0 -80
  1349. package/scripts/eslint_rules/lib/migrate_create_shadow_root_with_styles.js +0 -110
  1350. package/scripts/eslint_rules/lib/migrate_register_required_css.js +0 -240
  1351. package/scripts/eslint_rules/lib/no_repeated_tests.js +0 -30
  1352. package/scripts/eslint_rules/lib/prefer_readonly_keyword.js +0 -27
  1353. package/scripts/eslint_rules/lib/static_tag_must_be_static_property.js +0 -71
  1354. package/scripts/eslint_rules/tests/.eslintrc.js +0 -18
  1355. package/scripts/eslint_rules/tests/compare_arrays_with_assert_deepequal_test.js +0 -110
  1356. package/scripts/eslint_rules/tests/lit_no_style_interpolation_test.js +0 -60
  1357. package/scripts/eslint_rules/tests/migrate_create_shadow_root_with_styles_test.js +0 -265
  1358. package/scripts/eslint_rules/tests/migrate_register_required_css_test.js +0 -473
  1359. package/scripts/eslint_rules/tests/no_repeated_tests_test.js +0 -49
  1360. package/scripts/eslint_rules/tests/static_tag_must_be_static_property_test.js +0 -93
  1361. /package/front_end/panels/{freestyler → ai_assistance}/ExtensionScope.ts +0 -0
  1362. /package/front_end/panels/{freestyler → ai_assistance}/components/userActionRow.css +0 -0
  1363. /package/front_end/ui/components/docs/{freestyler → ai_assistance}/basic.html +0 -0
  1364. /package/front_end/ui/components/docs/{freestyler → ai_assistance}/empty_state.html +0 -0
  1365. /package/scripts/{freestyler → ai_assistance}/eval/index.html +0 -0
  1366. /package/scripts/{freestyler → ai_assistance}/to_tsv.mjs +0 -0
  1367. /package/scripts/eslint_rules/lib/{canvas_context_tracking.js → canvas-context-tracking.js} +0 -0
  1368. /package/scripts/eslint_rules/lib/{check_css_import.js → check-css-import.js} +0 -0
  1369. /package/scripts/eslint_rules/lib/{check_enumerated_histograms.js → check-enumerated-histograms.js} +0 -0
  1370. /package/scripts/eslint_rules/lib/{check_license_header.js → check-license-header.js} +0 -0
  1371. /package/scripts/eslint_rules/lib/{check_test_definitions.js → check-test-definitions.js} +0 -0
  1372. /package/scripts/eslint_rules/lib/{check_was_shown_methods.js → check-was-shown-methods.js} +0 -0
  1373. /package/scripts/eslint_rules/lib/{enforce_bound_render_for_schedule_render.js → enforce-bound-render-for-schedule-render.js} +0 -0
  1374. /package/scripts/eslint_rules/lib/{enforce_custom_event_names.js → enforce-custom-event-names.js} +0 -0
  1375. /package/scripts/eslint_rules/lib/{enforce_default_import_name.js → enforce-default-import-name.js} +0 -0
  1376. /package/scripts/eslint_rules/lib/{es_modules_import.js → es-modules-import.js} +0 -0
  1377. /package/scripts/eslint_rules/lib/{html_tagged_template.js → html-tagged-template.js} +0 -0
  1378. /package/scripts/eslint_rules/lib/{inject_checkbox_styles.js → inject-checkbox-styles.js} +0 -0
  1379. /package/scripts/eslint_rules/lib/{inline_type_imports.js → inline-type-imports.js} +0 -0
  1380. /package/scripts/eslint_rules/lib/{jslog_context_list.js → jslog-context-list.js} +0 -0
  1381. /package/scripts/eslint_rules/lib/{l10n_filename_matches.js → l10n-filename-matches.js} +0 -0
  1382. /package/scripts/eslint_rules/lib/{l10n_helper.js → l10n-helper.js} +0 -0
  1383. /package/scripts/eslint_rules/lib/{l10n_i18nString_call_only_with_uistrings.js → l10n-i18nString-call-only-with-uistrings.js} +0 -0
  1384. /package/scripts/eslint_rules/lib/{l10n_no_i18nString_calls_module_instantiation.js → l10n-no-i18nString-calls-module-instantiation.js} +0 -0
  1385. /package/scripts/eslint_rules/lib/{lit_html_host_this.js → lit-html-host-this.js} +0 -0
  1386. /package/scripts/eslint_rules/lib/{lit_html_no_attribute_quotes.js → lit-html-no-attribute-quotes.js} +0 -0
  1387. /package/scripts/eslint_rules/lib/{lit_template_result_or_nothing.js → lit-template-result-or-nothing.js} +0 -0
  1388. /package/scripts/eslint_rules/lib/{avoid_assert_equal.js → no-assert-equal.js} +0 -0
  1389. /package/scripts/eslint_rules/lib/{no_bound_component_methods.js → no-bound-component-methods.js} +0 -0
  1390. /package/scripts/eslint_rules/lib/{commented_out_console.js → no-commented-out-console.js} +0 -0
  1391. /package/scripts/eslint_rules/lib/{commented_out_import.js → no-commented-out-import.js} +0 -0
  1392. /package/scripts/eslint_rules/lib/{no_importing_images_from_src.js → no-importing-images-from-src.js} +0 -0
  1393. /package/scripts/eslint_rules/lib/{no_it_screenshot_only_or_repeat.js → no-it-screenshot-only-or-repeat.js} +0 -0
  1394. /package/scripts/eslint_rules/lib/{no_only_eslint_tests.js → no-only-eslint-tests.js} +0 -0
  1395. /package/scripts/eslint_rules/lib/{ban_screenshot_test_outside_perf_panel.js → no-screenshot-test-outside-perf-panel.js} +0 -0
  1396. /package/scripts/eslint_rules/lib/{ban_self_closing_custom_element_tagnames.js → no-self-closing-custom-element-tagnames.js} +0 -0
  1397. /package/scripts/eslint_rules/lib/{no_underscored_properties.js → no-underscored-properties.js} +0 -0
  1398. /package/scripts/eslint_rules/lib/{screenshot_assertion_in_it_screenshot.js → screenshot-assertion-in-it-screenshot.js} +0 -0
  1399. /package/scripts/eslint_rules/lib/{set_data_type_reference.js → set-data-type-reference.js} +0 -0
  1400. /package/scripts/eslint_rules/lib/{single_screenshot_assertion_per_test.js → single-screenshot-assertion-per-test.js} +0 -0
  1401. /package/scripts/eslint_rules/lib/{static_custom_event_names.js → static-custom-event-names.js} +0 -0
  1402. /package/scripts/eslint_rules/lib/{trace_engine_test_timeouts.js → trace-engine-test-timeouts.js} +0 -0
  1403. /package/scripts/eslint_rules/tests/{enforce-optional-properties-last_test.js → enforce-optional-properties-last.test.js} +0 -0
  1404. /package/scripts/eslint_rules/tests/{utils_test.js → utils.test.js} +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"lit.js","sources":["../node_modules/@lit/reactive-element/css-tag.js","../node_modules/@lit/reactive-element/reactive-element.js","../node_modules/lit-html/lit-html.js","../node_modules/lit-element/lit-element.js","../node_modules/lit-html/is-server.js"],"sourcesContent":["/**\n * @license\n * Copyright 2019 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,e=t.ShadowRoot&&(void 0===t.ShadyCSS||t.ShadyCSS.nativeShadow)&&\"adoptedStyleSheets\"in Document.prototype&&\"replace\"in CSSStyleSheet.prototype,s=Symbol(),o=new WeakMap;class n{constructor(t,e,o){if(this._$cssResult$=!0,o!==s)throw Error(\"CSSResult is not constructable. Use `unsafeCSS` or `css` instead.\");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const s=this.t;if(e&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=o.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&o.set(s,t))}return t}toString(){return this.cssText}}const r=t=>new n(\"string\"==typeof t?t:t+\"\",void 0,s),i=(t,...e)=>{const o=1===t.length?t[0]:e.reduce(((e,s,o)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if(\"number\"==typeof t)return t;throw Error(\"Value passed to 'css' function must be a 'css' function result: \"+t+\". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.\")})(s)+t[o+1]),t[0]);return new n(o,t,s)},S=(s,o)=>{if(e)s.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const e of o){const o=document.createElement(\"style\"),n=t.litNonce;void 0!==n&&o.setAttribute(\"nonce\",n),o.textContent=e.cssText,s.appendChild(o)}},c=e?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e=\"\";for(const s of t.cssRules)e+=s.cssText;return r(e)})(t):t;export{n as CSSResult,S as adoptStyles,i as css,c as getCompatibleStyle,e as supportsAdoptingStyleSheets,r as unsafeCSS};\n//# sourceMappingURL=css-tag.js.map\n","import{getCompatibleStyle as t,adoptStyles as s}from\"./css-tag.js\";export{CSSResult,adoptStyles,css,getCompatibleStyle,supportsAdoptingStyleSheets,unsafeCSS}from\"./css-tag.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const{is:i,defineProperty:e,getOwnPropertyDescriptor:r,getOwnPropertyNames:h,getOwnPropertySymbols:o,getPrototypeOf:n}=Object,a=globalThis,c=a.trustedTypes,l=c?c.emptyScript:\"\",p=a.reactiveElementPolyfillSupport,d=(t,s)=>t,u={toAttribute(t,s){switch(s){case Boolean:t=t?l:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,s){let i=t;switch(s){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t)}catch(t){i=null}}return i}},f=(t,s)=>!i(t,s),y={attribute:!0,type:String,converter:u,reflect:!1,hasChanged:f};Symbol.metadata??=Symbol(\"metadata\"),a.litPropertyMetadata??=new WeakMap;class b extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,s=y){if(s.state&&(s.attribute=!1),this._$Ei(),this.elementProperties.set(t,s),!s.noAccessor){const i=Symbol(),r=this.getPropertyDescriptor(t,i,s);void 0!==r&&e(this.prototype,t,r)}}static getPropertyDescriptor(t,s,i){const{get:e,set:h}=r(this.prototype,t)??{get(){return this[s]},set(t){this[s]=t}};return{get(){return e?.call(this)},set(s){const r=e?.call(this);h.call(this,s),this.requestUpdate(t,r,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??y}static _$Ei(){if(this.hasOwnProperty(d(\"elementProperties\")))return;const t=n(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(d(\"finalized\")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(d(\"properties\"))){const t=this.properties,s=[...h(t),...o(t)];for(const i of s)this.createProperty(i,t[i])}const t=this[Symbol.metadata];if(null!==t){const s=litPropertyMetadata.get(t);if(void 0!==s)for(const[t,i]of s)this.elementProperties.set(t,i)}this._$Eh=new Map;for(const[t,s]of this.elementProperties){const i=this._$Eu(t,s);void 0!==i&&this._$Eh.set(i,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(s){const i=[];if(Array.isArray(s)){const e=new Set(s.flat(1/0).reverse());for(const s of e)i.unshift(t(s))}else void 0!==s&&i.push(t(s));return i}static _$Eu(t,s){const i=s.attribute;return!1===i?void 0:\"string\"==typeof i?i:\"string\"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$Eg=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$ES??=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$ES?.splice(this._$ES.indexOf(t)>>>0,1)}_$E_(){const t=new Map,s=this.constructor.elementProperties;for(const i of s.keys())this.hasOwnProperty(i)&&(t.set(i,this[i]),delete this[i]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return s(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$ES?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$ES?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,s,i){this._$AK(t,i)}_$EO(t,s){const i=this.constructor.elementProperties.get(t),e=this.constructor._$Eu(t,i);if(void 0!==e&&!0===i.reflect){const r=(void 0!==i.converter?.toAttribute?i.converter:u).toAttribute(s,i.type);this._$Em=t,null==r?this.removeAttribute(e):this.setAttribute(e,r),this._$Em=null}}_$AK(t,s){const i=this.constructor,e=i._$Eh.get(t);if(void 0!==e&&this._$Em!==e){const t=i.getPropertyOptions(e),r=\"function\"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:u;this._$Em=e,this[e]=r.fromAttribute(s,t.type),this._$Em=null}}requestUpdate(t,s,i,e=!1,r){if(void 0!==t){if(i??=this.constructor.getPropertyOptions(t),!(i.hasChanged??f)(e?r:this[t],s))return;this.C(t,s,i)}!1===this.isUpdatePending&&(this._$Eg=this._$EP())}C(t,s,i){this._$AL.has(t)||this._$AL.set(t,s),!0===i.reflect&&this._$Em!==t&&(this._$Ej??=new Set).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this._$Ep){for(const[t,s]of this._$Ep)this[t]=s;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[s,i]of t)!0!==i.wrapped||this._$AL.has(s)||void 0===this[s]||this.C(s,this[s],i)}let t=!1;const s=this._$AL;try{t=this.shouldUpdate(s),t?(this.willUpdate(s),this._$ES?.forEach((t=>t.hostUpdate?.())),this.update(s)):this._$ET()}catch(s){throw t=!1,this._$ET(),s}t&&this._$AE(s)}willUpdate(t){}_$AE(t){this._$ES?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$ET(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$Ej&&=this._$Ej.forEach((t=>this._$EO(t,this[t]))),this._$ET()}updated(t){}firstUpdated(t){}}b.elementStyles=[],b.shadowRootOptions={mode:\"open\"},b[d(\"elementProperties\")]=new Map,b[d(\"finalized\")]=new Map,p?.({ReactiveElement:b}),(a.reactiveElementVersions??=[]).push(\"2.0.1\");export{b as ReactiveElement,u as defaultConverter,f as notEqual};\n//# sourceMappingURL=reactive-element.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,i=t.trustedTypes,s=i?i.createPolicy(\"lit-html\",{createHTML:t=>t}):void 0,e=\"$lit$\",h=`lit$${(Math.random()+\"\").slice(9)}$`,o=\"?\"+h,n=`<${o}>`,r=document,l=()=>r.createComment(\"\"),c=t=>null===t||\"object\"!=typeof t&&\"function\"!=typeof t,a=Array.isArray,u=t=>a(t)||\"function\"==typeof t?.[Symbol.iterator],d=\"[ \\t\\n\\f\\r]\",f=/<(?:(!--|\\/[^a-zA-Z])|(\\/?[a-zA-Z][^>\\s]*)|(\\/?$))/g,v=/-->/g,_=/>/g,m=RegExp(`>|${d}(?:([^\\\\s\"'>=/]+)(${d}*=${d}*(?:[^ \\t\\n\\f\\r\"'\\`<>=]|(\"|')|))|$)`,\"g\"),p=/'/g,g=/\"/g,$=/^(?:script|style|textarea|title)$/i,y=t=>(i,...s)=>({_$litType$:t,strings:i,values:s}),x=y(1),b=y(2),w=Symbol.for(\"lit-noChange\"),T=Symbol.for(\"lit-nothing\"),A=new WeakMap,E=r.createTreeWalker(r,129);function C(t,i){if(!Array.isArray(t)||!t.hasOwnProperty(\"raw\"))throw Error(\"invalid template strings array\");return void 0!==s?s.createHTML(i):i}const P=(t,i)=>{const s=t.length-1,o=[];let r,l=2===i?\"<svg>\":\"\",c=f;for(let i=0;i<s;i++){const s=t[i];let a,u,d=-1,y=0;for(;y<s.length&&(c.lastIndex=y,u=c.exec(s),null!==u);)y=c.lastIndex,c===f?\"!--\"===u[1]?c=v:void 0!==u[1]?c=_:void 0!==u[2]?($.test(u[2])&&(r=RegExp(\"</\"+u[2],\"g\")),c=m):void 0!==u[3]&&(c=m):c===m?\">\"===u[0]?(c=r??f,d=-1):void 0===u[1]?d=-2:(d=c.lastIndex-u[2].length,a=u[1],c=void 0===u[3]?m:'\"'===u[3]?g:p):c===g||c===p?c=m:c===v||c===_?c=f:(c=m,r=void 0);const x=c===m&&t[i+1].startsWith(\"/>\")?\" \":\"\";l+=c===f?s+n:d>=0?(o.push(a),s.slice(0,d)+e+s.slice(d)+h+x):s+h+(-2===d?i:x)}return[C(t,l+(t[s]||\"<?>\")+(2===i?\"</svg>\":\"\")),o]};class V{constructor({strings:t,_$litType$:s},n){let r;this.parts=[];let c=0,a=0;const u=t.length-1,d=this.parts,[f,v]=P(t,s);if(this.el=V.createElement(f,n),E.currentNode=this.el.content,2===s){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=E.nextNode())&&d.length<u;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(e)){const i=v[a++],s=r.getAttribute(t).split(h),e=/([.?@])?(.*)/.exec(i);d.push({type:1,index:c,name:e[2],strings:s,ctor:\".\"===e[1]?k:\"?\"===e[1]?H:\"@\"===e[1]?I:R}),r.removeAttribute(t)}else t.startsWith(h)&&(d.push({type:6,index:c}),r.removeAttribute(t));if($.test(r.tagName)){const t=r.textContent.split(h),s=t.length-1;if(s>0){r.textContent=i?i.emptyScript:\"\";for(let i=0;i<s;i++)r.append(t[i],l()),E.nextNode(),d.push({type:2,index:++c});r.append(t[s],l())}}}else if(8===r.nodeType)if(r.data===o)d.push({type:2,index:c});else{let t=-1;for(;-1!==(t=r.data.indexOf(h,t+1));)d.push({type:7,index:c}),t+=h.length-1}c++}}static createElement(t,i){const s=r.createElement(\"template\");return s.innerHTML=t,s}}function N(t,i,s=t,e){if(i===w)return i;let h=void 0!==e?s._$Co?.[e]:s._$Cl;const o=c(i)?void 0:i._$litDirective$;return h?.constructor!==o&&(h?._$AO?.(!1),void 0===o?h=void 0:(h=new o(t),h._$AT(t,s,e)),void 0!==e?(s._$Co??=[])[e]=h:s._$Cl=h),void 0!==h&&(i=N(t,h._$AS(t,i.values),h,e)),i}class S{constructor(t,i){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=i}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:i},parts:s}=this._$AD,e=(t?.creationScope??r).importNode(i,!0);E.currentNode=e;let h=E.nextNode(),o=0,n=0,l=s[0];for(;void 0!==l;){if(o===l.index){let i;2===l.type?i=new M(h,h.nextSibling,this,t):1===l.type?i=new l.ctor(h,l.name,l.strings,this,t):6===l.type&&(i=new L(h,this,t)),this._$AV.push(i),l=s[++n]}o!==l?.index&&(h=E.nextNode(),o++)}return E.currentNode=r,e}p(t){let i=0;for(const s of this._$AV)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,i),i+=s.strings.length-2):s._$AI(t[i])),i++}}class M{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,i,s,e){this.type=2,this._$AH=T,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=s,this.options=e,this._$Cv=e?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===t?.nodeType&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=N(this,t,i),c(t)?t===T||null==t||\"\"===t?(this._$AH!==T&&this._$AR(),this._$AH=T):t!==this._$AH&&t!==w&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):u(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==T&&c(this._$AH)?this._$AA.nextSibling.data=t:this.$(r.createTextNode(t)),this._$AH=t}g(t){const{values:i,_$litType$:s}=t,e=\"number\"==typeof s?this._$AC(t):(void 0===s.el&&(s.el=V.createElement(C(s.h,s.h[0]),this.options)),s);if(this._$AH?._$AD===e)this._$AH.p(i);else{const t=new S(e,this),s=t.u(this.options);t.p(i),this.$(s),this._$AH=t}}_$AC(t){let i=A.get(t.strings);return void 0===i&&A.set(t.strings,i=new V(t)),i}T(t){a(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let s,e=0;for(const h of t)e===i.length?i.push(s=new M(this.k(l()),this.k(l()),this,this.options)):s=i[e],s._$AI(h),e++;e<i.length&&(this._$AR(s&&s._$AB.nextSibling,e),i.length=e)}_$AR(t=this._$AA.nextSibling,i){for(this._$AP?.(!1,!0,i);t&&t!==this._$AB;){const i=t.nextSibling;t.remove(),t=i}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class R{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,i,s,e,h){this.type=1,this._$AH=T,this._$AN=void 0,this.element=t,this.name=i,this._$AM=e,this.options=h,s.length>2||\"\"!==s[0]||\"\"!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=T}_$AI(t,i=this,s,e){const h=this.strings;let o=!1;if(void 0===h)t=N(this,t,i,0),o=!c(t)||t!==this._$AH&&t!==w,o&&(this._$AH=t);else{const e=t;let n,r;for(t=h[0],n=0;n<h.length-1;n++)r=N(this,e[s+n],i,n),r===w&&(r=this._$AH[n]),o||=!c(r)||r!==this._$AH[n],r===T?t=T:t!==T&&(t+=(r??\"\")+h[n+1]),this._$AH[n]=r}o&&!e&&this.O(t)}O(t){t===T?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??\"\")}}class k extends R{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===T?void 0:t}}class H extends R{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==T)}}class I extends R{constructor(t,i,s,e,h){super(t,i,s,e,h),this.type=5}_$AI(t,i=this){if((t=N(this,t,i,0)??T)===w)return;const s=this._$AH,e=t===T&&s!==T||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,h=t!==T&&(s===T||e);e&&this.element.removeEventListener(this.name,this,s),h&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){\"function\"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class L{constructor(t,i,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){N(this,t)}}const z={j:e,P:h,A:o,C:1,M:P,L:S,R:u,V:N,D:M,I:R,H,N:I,U:k,B:L},Z=t.litHtmlPolyfillSupport;Z?.(V,M),(t.litHtmlVersions??=[]).push(\"3.0.2\");const j=(t,i,s)=>{const e=s?.renderBefore??i;let h=e._$litPart$;if(void 0===h){const t=s?.renderBefore??null;e._$litPart$=h=new M(i.insertBefore(l(),t),t,void 0,s??{})}return h._$AI(t),h};export{z as _$LH,x as html,w as noChange,T as nothing,j as render,b as svg};\n//# sourceMappingURL=lit-html.js.map\n","import{ReactiveElement as t}from\"@lit/reactive-element\";export*from\"@lit/reactive-element\";import{render as e,noChange as i}from\"lit-html\";export*from\"lit-html\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */class s extends t{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const i=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=e(i,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return i}}s._$litElement$=!0,s[(\"finalized\",\"finalized\")]=!0,globalThis.litElementHydrateSupport?.({LitElement:s});const r=globalThis.litElementPolyfillSupport;r?.({LitElement:s});const o={_$AK:(t,e,i)=>{t._$AK(e,i)},_$AL:t=>t._$AL};(globalThis.litElementVersions??=[]).push(\"4.0.1\");export{s as LitElement,o as _$LE};\n//# sourceMappingURL=lit-element.js.map\n","/**\n * @license\n * Copyright 2022 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst o=!1;export{o as isServer};\n//# sourceMappingURL=is-server.js.map\n"],"names":["t","globalThis","e","ShadowRoot","ShadyCSS","nativeShadow","Document","prototype","CSSStyleSheet","s","Symbol","o","WeakMap","n","constructor","this","_$cssResult$","Error","cssText","styleSheet","length","get","replaceSync","set","toString","r","i","reduce","S","adoptedStyleSheets","map","document","createElement","litNonce","setAttribute","textContent","appendChild","c","cssRules","is","defineProperty","getOwnPropertyDescriptor","getOwnPropertyNames","h","getOwnPropertySymbols","getPrototypeOf","Object","a","trustedTypes","l","emptyScript","p","reactiveElementPolyfillSupport","d","u","toAttribute","Boolean","Array","JSON","stringify","fromAttribute","Number","parse","f","y","attribute","type","String","converter","reflect","hasChanged","metadata","litPropertyMetadata","b","HTMLElement","addInitializer","_$Ei","push","observedAttributes","finalize","_$Eh","keys","createProperty","state","elementProperties","noAccessor","getPropertyDescriptor","call","requestUpdate","configurable","enumerable","getPropertyOptions","hasOwnProperty","Map","finalized","properties","_$Eu","elementStyles","finalizeStyles","styles","isArray","Set","flat","reverse","unshift","toLowerCase","super","_$Ep","isUpdatePending","hasUpdated","_$Em","_$Ev","_$Eg","Promise","enableUpdating","_$AL","_$E_","forEach","addController","_$ES","renderRoot","isConnected","hostConnected","removeController","splice","indexOf","size","createRenderRoot","shadowRoot","attachShadow","shadowRootOptions","connectedCallback","disconnectedCallback","hostDisconnected","attributeChangedCallback","_$AK","_$EO","removeAttribute","C","_$EP","has","_$Ej","add","reject","scheduleUpdate","performUpdate","wrapped","shouldUpdate","willUpdate","hostUpdate","update","_$ET","_$AE","hostUpdated","firstUpdated","updated","updateComplete","getUpdateComplete","mode","ReactiveElement","reactiveElementVersions","createPolicy","createHTML","Math","random","slice","createComment","iterator","v","_","m","RegExp","g","$","_$litType$","strings","values","x","w","for","T","A","E","createTreeWalker","P","lastIndex","exec","test","startsWith","V","parts","el","currentNode","content","firstChild","replaceWith","childNodes","nextNode","nodeType","hasAttributes","getAttributeNames","endsWith","getAttribute","split","index","name","ctor","k","H","I","R","tagName","append","data","innerHTML","N","_$Co","_$Cl","_$litDirective$","_$AO","_$AT","_$AS","_$AV","_$AN","_$AD","_$AM","parentNode","_$AU","creationScope","importNode","M","nextSibling","L","_$AI","_$Cv","_$AH","_$AA","_$AB","options","startNode","endNode","_$AR","insertBefore","createTextNode","_$AC","_$AP","remove","setConnected","element","fill","O","arguments","toggleAttribute","capture","once","passive","removeEventListener","addEventListener","handleEvent","host","z","j","D","U","B","Z","litHtmlPolyfillSupport","litHtmlVersions","renderBefore","_$litPart$","renderOptions","_$Do","render","_$litElement$","litElementHydrateSupport","LitElement","litElementPolyfillSupport","litElementVersions"],"mappings":"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"}
1
+ {"version":3,"file":"lit.js","sources":["../node_modules/@lit/reactive-element/css-tag.js","../node_modules/@lit/reactive-element/reactive-element.js","../node_modules/lit-html/lit-html.js","../node_modules/lit-element/lit-element.js","../node_modules/lit-html/is-server.js"],"sourcesContent":["/**\n * @license\n * Copyright 2019 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,e=t.ShadowRoot&&(void 0===t.ShadyCSS||t.ShadyCSS.nativeShadow)&&\"adoptedStyleSheets\"in Document.prototype&&\"replace\"in CSSStyleSheet.prototype,s=Symbol(),o=new WeakMap;class n{constructor(t,e,o){if(this._$cssResult$=!0,o!==s)throw Error(\"CSSResult is not constructable. Use `unsafeCSS` or `css` instead.\");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const s=this.t;if(e&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=o.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&o.set(s,t))}return t}toString(){return this.cssText}}const r=t=>new n(\"string\"==typeof t?t:t+\"\",void 0,s),i=(t,...e)=>{const o=1===t.length?t[0]:e.reduce(((e,s,o)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if(\"number\"==typeof t)return t;throw Error(\"Value passed to 'css' function must be a 'css' function result: \"+t+\". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.\")})(s)+t[o+1]),t[0]);return new n(o,t,s)},S=(s,o)=>{if(e)s.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const e of o){const o=document.createElement(\"style\"),n=t.litNonce;void 0!==n&&o.setAttribute(\"nonce\",n),o.textContent=e.cssText,s.appendChild(o)}},c=e?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e=\"\";for(const s of t.cssRules)e+=s.cssText;return r(e)})(t):t;export{n as CSSResult,S as adoptStyles,i as css,c as getCompatibleStyle,e as supportsAdoptingStyleSheets,r as unsafeCSS};\n//# sourceMappingURL=css-tag.js.map\n","import{getCompatibleStyle as t,adoptStyles as s}from\"./css-tag.js\";export{CSSResult,adoptStyles,css,getCompatibleStyle,supportsAdoptingStyleSheets,unsafeCSS}from\"./css-tag.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const{is:i,defineProperty:e,getOwnPropertyDescriptor:r,getOwnPropertyNames:h,getOwnPropertySymbols:o,getPrototypeOf:n}=Object,a=globalThis,c=a.trustedTypes,l=c?c.emptyScript:\"\",p=a.reactiveElementPolyfillSupport,d=(t,s)=>t,u={toAttribute(t,s){switch(s){case Boolean:t=t?l:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,s){let i=t;switch(s){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t)}catch(t){i=null}}return i}},f=(t,s)=>!i(t,s),y={attribute:!0,type:String,converter:u,reflect:!1,hasChanged:f};Symbol.metadata??=Symbol(\"metadata\"),a.litPropertyMetadata??=new WeakMap;class b extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,s=y){if(s.state&&(s.attribute=!1),this._$Ei(),this.elementProperties.set(t,s),!s.noAccessor){const i=Symbol(),r=this.getPropertyDescriptor(t,i,s);void 0!==r&&e(this.prototype,t,r)}}static getPropertyDescriptor(t,s,i){const{get:e,set:h}=r(this.prototype,t)??{get(){return this[s]},set(t){this[s]=t}};return{get(){return e?.call(this)},set(s){const r=e?.call(this);h.call(this,s),this.requestUpdate(t,r,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??y}static _$Ei(){if(this.hasOwnProperty(d(\"elementProperties\")))return;const t=n(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(d(\"finalized\")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(d(\"properties\"))){const t=this.properties,s=[...h(t),...o(t)];for(const i of s)this.createProperty(i,t[i])}const t=this[Symbol.metadata];if(null!==t){const s=litPropertyMetadata.get(t);if(void 0!==s)for(const[t,i]of s)this.elementProperties.set(t,i)}this._$Eh=new Map;for(const[t,s]of this.elementProperties){const i=this._$Eu(t,s);void 0!==i&&this._$Eh.set(i,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(s){const i=[];if(Array.isArray(s)){const e=new Set(s.flat(1/0).reverse());for(const s of e)i.unshift(t(s))}else void 0!==s&&i.push(t(s));return i}static _$Eu(t,s){const i=s.attribute;return!1===i?void 0:\"string\"==typeof i?i:\"string\"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$EO??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$EO?.delete(t)}_$E_(){const t=new Map,s=this.constructor.elementProperties;for(const i of s.keys())this.hasOwnProperty(i)&&(t.set(i,this[i]),delete this[i]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return s(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,s,i){this._$AK(t,i)}_$EC(t,s){const i=this.constructor.elementProperties.get(t),e=this.constructor._$Eu(t,i);if(void 0!==e&&!0===i.reflect){const r=(void 0!==i.converter?.toAttribute?i.converter:u).toAttribute(s,i.type);this._$Em=t,null==r?this.removeAttribute(e):this.setAttribute(e,r),this._$Em=null}}_$AK(t,s){const i=this.constructor,e=i._$Eh.get(t);if(void 0!==e&&this._$Em!==e){const t=i.getPropertyOptions(e),r=\"function\"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:u;this._$Em=e,this[e]=r.fromAttribute(s,t.type),this._$Em=null}}requestUpdate(t,s,i){if(void 0!==t){if(i??=this.constructor.getPropertyOptions(t),!(i.hasChanged??f)(this[t],s))return;this.P(t,s,i)}!1===this.isUpdatePending&&(this._$ES=this._$ET())}P(t,s,i){this._$AL.has(t)||this._$AL.set(t,s),!0===i.reflect&&this._$Em!==t&&(this._$Ej??=new Set).add(t)}async _$ET(){this.isUpdatePending=!0;try{await this._$ES}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,s]of this._$Ep)this[t]=s;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[s,i]of t)!0!==i.wrapped||this._$AL.has(s)||void 0===this[s]||this.P(s,this[s],i)}let t=!1;const s=this._$AL;try{t=this.shouldUpdate(s),t?(this.willUpdate(s),this._$EO?.forEach((t=>t.hostUpdate?.())),this.update(s)):this._$EU()}catch(s){throw t=!1,this._$EU(),s}t&&this._$AE(s)}willUpdate(t){}_$AE(t){this._$EO?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EU(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Ej&&=this._$Ej.forEach((t=>this._$EC(t,this[t]))),this._$EU()}updated(t){}firstUpdated(t){}}b.elementStyles=[],b.shadowRootOptions={mode:\"open\"},b[d(\"elementProperties\")]=new Map,b[d(\"finalized\")]=new Map,p?.({ReactiveElement:b}),(a.reactiveElementVersions??=[]).push(\"2.0.4\");export{b as ReactiveElement,u as defaultConverter,f as notEqual};\n//# sourceMappingURL=reactive-element.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,i=t.trustedTypes,s=i?i.createPolicy(\"lit-html\",{createHTML:t=>t}):void 0,e=\"$lit$\",h=`lit$${Math.random().toFixed(9).slice(2)}$`,o=\"?\"+h,n=`<${o}>`,r=document,l=()=>r.createComment(\"\"),c=t=>null===t||\"object\"!=typeof t&&\"function\"!=typeof t,a=Array.isArray,u=t=>a(t)||\"function\"==typeof t?.[Symbol.iterator],d=\"[ \\t\\n\\f\\r]\",f=/<(?:(!--|\\/[^a-zA-Z])|(\\/?[a-zA-Z][^>\\s]*)|(\\/?$))/g,v=/-->/g,_=/>/g,m=RegExp(`>|${d}(?:([^\\\\s\"'>=/]+)(${d}*=${d}*(?:[^ \\t\\n\\f\\r\"'\\`<>=]|(\"|')|))|$)`,\"g\"),p=/'/g,g=/\"/g,$=/^(?:script|style|textarea|title)$/i,y=t=>(i,...s)=>({_$litType$:t,strings:i,values:s}),x=y(1),b=y(2),w=y(3),T=Symbol.for(\"lit-noChange\"),E=Symbol.for(\"lit-nothing\"),A=new WeakMap,C=r.createTreeWalker(r,129);function P(t,i){if(!a(t)||!t.hasOwnProperty(\"raw\"))throw Error(\"invalid template strings array\");return void 0!==s?s.createHTML(i):i}const V=(t,i)=>{const s=t.length-1,o=[];let r,l=2===i?\"<svg>\":3===i?\"<math>\":\"\",c=f;for(let i=0;i<s;i++){const s=t[i];let a,u,d=-1,y=0;for(;y<s.length&&(c.lastIndex=y,u=c.exec(s),null!==u);)y=c.lastIndex,c===f?\"!--\"===u[1]?c=v:void 0!==u[1]?c=_:void 0!==u[2]?($.test(u[2])&&(r=RegExp(\"</\"+u[2],\"g\")),c=m):void 0!==u[3]&&(c=m):c===m?\">\"===u[0]?(c=r??f,d=-1):void 0===u[1]?d=-2:(d=c.lastIndex-u[2].length,a=u[1],c=void 0===u[3]?m:'\"'===u[3]?g:p):c===g||c===p?c=m:c===v||c===_?c=f:(c=m,r=void 0);const x=c===m&&t[i+1].startsWith(\"/>\")?\" \":\"\";l+=c===f?s+n:d>=0?(o.push(a),s.slice(0,d)+e+s.slice(d)+h+x):s+h+(-2===d?i:x)}return[P(t,l+(t[s]||\"<?>\")+(2===i?\"</svg>\":3===i?\"</math>\":\"\")),o]};class N{constructor({strings:t,_$litType$:s},n){let r;this.parts=[];let c=0,a=0;const u=t.length-1,d=this.parts,[f,v]=V(t,s);if(this.el=N.createElement(f,n),C.currentNode=this.el.content,2===s||3===s){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=C.nextNode())&&d.length<u;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(e)){const i=v[a++],s=r.getAttribute(t).split(h),e=/([.?@])?(.*)/.exec(i);d.push({type:1,index:c,name:e[2],strings:s,ctor:\".\"===e[1]?H:\"?\"===e[1]?I:\"@\"===e[1]?L:k}),r.removeAttribute(t)}else t.startsWith(h)&&(d.push({type:6,index:c}),r.removeAttribute(t));if($.test(r.tagName)){const t=r.textContent.split(h),s=t.length-1;if(s>0){r.textContent=i?i.emptyScript:\"\";for(let i=0;i<s;i++)r.append(t[i],l()),C.nextNode(),d.push({type:2,index:++c});r.append(t[s],l())}}}else if(8===r.nodeType)if(r.data===o)d.push({type:2,index:c});else{let t=-1;for(;-1!==(t=r.data.indexOf(h,t+1));)d.push({type:7,index:c}),t+=h.length-1}c++}}static createElement(t,i){const s=r.createElement(\"template\");return s.innerHTML=t,s}}function S(t,i,s=t,e){if(i===T)return i;let h=void 0!==e?s._$Co?.[e]:s._$Cl;const o=c(i)?void 0:i._$litDirective$;return h?.constructor!==o&&(h?._$AO?.(!1),void 0===o?h=void 0:(h=new o(t),h._$AT(t,s,e)),void 0!==e?(s._$Co??=[])[e]=h:s._$Cl=h),void 0!==h&&(i=S(t,h._$AS(t,i.values),h,e)),i}class M{constructor(t,i){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=i}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:i},parts:s}=this._$AD,e=(t?.creationScope??r).importNode(i,!0);C.currentNode=e;let h=C.nextNode(),o=0,n=0,l=s[0];for(;void 0!==l;){if(o===l.index){let i;2===l.type?i=new R(h,h.nextSibling,this,t):1===l.type?i=new l.ctor(h,l.name,l.strings,this,t):6===l.type&&(i=new z(h,this,t)),this._$AV.push(i),l=s[++n]}o!==l?.index&&(h=C.nextNode(),o++)}return C.currentNode=r,e}p(t){let i=0;for(const s of this._$AV)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,i),i+=s.strings.length-2):s._$AI(t[i])),i++}}class R{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,i,s,e){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=s,this.options=e,this._$Cv=e?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===t?.nodeType&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=S(this,t,i),c(t)?t===E||null==t||\"\"===t?(this._$AH!==E&&this._$AR(),this._$AH=E):t!==this._$AH&&t!==T&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):u(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==E&&c(this._$AH)?this._$AA.nextSibling.data=t:this.T(r.createTextNode(t)),this._$AH=t}$(t){const{values:i,_$litType$:s}=t,e=\"number\"==typeof s?this._$AC(t):(void 0===s.el&&(s.el=N.createElement(P(s.h,s.h[0]),this.options)),s);if(this._$AH?._$AD===e)this._$AH.p(i);else{const t=new M(e,this),s=t.u(this.options);t.p(i),this.T(s),this._$AH=t}}_$AC(t){let i=A.get(t.strings);return void 0===i&&A.set(t.strings,i=new N(t)),i}k(t){a(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let s,e=0;for(const h of t)e===i.length?i.push(s=new R(this.O(l()),this.O(l()),this,this.options)):s=i[e],s._$AI(h),e++;e<i.length&&(this._$AR(s&&s._$AB.nextSibling,e),i.length=e)}_$AR(t=this._$AA.nextSibling,i){for(this._$AP?.(!1,!0,i);t&&t!==this._$AB;){const i=t.nextSibling;t.remove(),t=i}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class k{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,i,s,e,h){this.type=1,this._$AH=E,this._$AN=void 0,this.element=t,this.name=i,this._$AM=e,this.options=h,s.length>2||\"\"!==s[0]||\"\"!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=E}_$AI(t,i=this,s,e){const h=this.strings;let o=!1;if(void 0===h)t=S(this,t,i,0),o=!c(t)||t!==this._$AH&&t!==T,o&&(this._$AH=t);else{const e=t;let n,r;for(t=h[0],n=0;n<h.length-1;n++)r=S(this,e[s+n],i,n),r===T&&(r=this._$AH[n]),o||=!c(r)||r!==this._$AH[n],r===E?t=E:t!==E&&(t+=(r??\"\")+h[n+1]),this._$AH[n]=r}o&&!e&&this.j(t)}j(t){t===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??\"\")}}class H extends k{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===E?void 0:t}}class I extends k{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==E)}}class L extends k{constructor(t,i,s,e,h){super(t,i,s,e,h),this.type=5}_$AI(t,i=this){if((t=S(this,t,i,0)??E)===T)return;const s=this._$AH,e=t===E&&s!==E||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,h=t!==E&&(s===E||e);e&&this.element.removeEventListener(this.name,this,s),h&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){\"function\"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class z{constructor(t,i,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){S(this,t)}}const Z={M:e,P:h,A:o,C:1,L:V,R:M,D:u,V:S,I:R,H:k,N:I,U:L,B:H,F:z},j=t.litHtmlPolyfillSupport;j?.(N,R),(t.litHtmlVersions??=[]).push(\"3.2.1\");const B=(t,i,s)=>{const e=s?.renderBefore??i;let h=e._$litPart$;if(void 0===h){const t=s?.renderBefore??null;e._$litPart$=h=new R(i.insertBefore(l(),t),t,void 0,s??{})}return h._$AI(t),h};export{Z as _$LH,x as html,w as mathml,T as noChange,E as nothing,B as render,b as svg};\n//# sourceMappingURL=lit-html.js.map\n","import{ReactiveElement as t}from\"@lit/reactive-element\";export*from\"@lit/reactive-element\";import{render as e,noChange as s}from\"lit-html\";export*from\"lit-html\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */class r extends t{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const s=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=e(s,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return s}}r._$litElement$=!0,r[\"finalized\"]=!0,globalThis.litElementHydrateSupport?.({LitElement:r});const i=globalThis.litElementPolyfillSupport;i?.({LitElement:r});const o={_$AK:(t,e,s)=>{t._$AK(e,s)},_$AL:t=>t._$AL};(globalThis.litElementVersions??=[]).push(\"4.1.1\");export{r as LitElement,o as _$LE};\n//# sourceMappingURL=lit-element.js.map\n","/**\n * @license\n * Copyright 2022 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst o=!1;export{o as isServer};\n//# sourceMappingURL=is-server.js.map\n"],"names":["t","globalThis","e","ShadowRoot","ShadyCSS","nativeShadow","Document","prototype","CSSStyleSheet","s","Symbol","o","WeakMap","n$2","constructor","this","_$cssResult$","Error","cssText","styleSheet","length","get","replaceSync","set","toString","r","n","i","reduce","S","adoptedStyleSheets","map","document","createElement","litNonce","setAttribute","textContent","appendChild","c","cssRules","is","defineProperty","getOwnPropertyDescriptor","getOwnPropertyNames","h","getOwnPropertySymbols","getPrototypeOf","Object","a","trustedTypes","l","emptyScript","p","reactiveElementPolyfillSupport","d","u","toAttribute","Boolean","Array","JSON","stringify","fromAttribute","Number","parse","f","y","attribute","type","String","converter","reflect","hasChanged","metadata","litPropertyMetadata","b$1","HTMLElement","addInitializer","_$Ei","push","observedAttributes","finalize","_$Eh","keys","createProperty","state","elementProperties","noAccessor","getPropertyDescriptor","call","requestUpdate","configurable","enumerable","getPropertyOptions","hasOwnProperty","Map","finalized","properties","_$Eu","elementStyles","finalizeStyles","styles","isArray","Set","flat","reverse","unshift","toLowerCase","super","_$Ep","isUpdatePending","hasUpdated","_$Em","_$Ev","_$ES","Promise","enableUpdating","_$AL","_$E_","forEach","addController","_$EO","add","renderRoot","isConnected","hostConnected","removeController","delete","size","createRenderRoot","shadowRoot","attachShadow","shadowRootOptions","connectedCallback","disconnectedCallback","hostDisconnected","attributeChangedCallback","_$AK","_$EC","removeAttribute","P","_$ET","has","_$Ej","reject","scheduleUpdate","performUpdate","wrapped","shouldUpdate","willUpdate","hostUpdate","update","_$EU","_$AE","hostUpdated","firstUpdated","updated","updateComplete","getUpdateComplete","b","mode","ReactiveElement","reactiveElementVersions","createPolicy","createHTML","Math","random","toFixed","slice","createComment","iterator","v","_","m","RegExp","g","$","_$litType$","strings","values","x","w","T","for","E","A","C","createTreeWalker","V","lastIndex","exec","test","startsWith","N","parts","el","currentNode","content","firstChild","replaceWith","childNodes","nextNode","nodeType","hasAttributes","getAttributeNames","endsWith","getAttribute","split","index","name","ctor","H","I","L","k","tagName","append","data","indexOf","innerHTML","_$Co","_$Cl","_$litDirective$","_$AO","_$AT","_$AS","M","_$AV","_$AN","_$AD","_$AM","parentNode","_$AU","creationScope","importNode","R","nextSibling","z","_$AI","_$Cv","_$AH","_$AA","_$AB","options","startNode","endNode","_$AR","O","insertBefore","createTextNode","_$AC","_$AP","remove","setConnected","element","fill","j","arguments","toggleAttribute","capture","once","passive","removeEventListener","addEventListener","handleEvent","host","Z","D","U","B","F","litHtmlPolyfillSupport","litHtmlVersions","renderBefore","_$litPart$","renderOptions","_$Do","render","_$litElement$","litElementHydrateSupport","LitElement","litElementPolyfillSupport","litElementVersions"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4]}
@@ -0,0 +1,202 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2017 Google LLC
4
+ * SPDX-License-Identifier: BSD-3-Clause
5
+ */
6
+
7
+ /** TemplateResult types */
8
+ declare const HTML_RESULT = 1;
9
+ declare const SVG_RESULT = 2;
10
+ declare const MATHML_RESULT = 3;
11
+ type ResultType = typeof HTML_RESULT | typeof SVG_RESULT | typeof MATHML_RESULT;
12
+ /**
13
+ * The return type of the template tag functions, {@linkcode html} and
14
+ * {@linkcode svg} when it hasn't been compiled by @lit-labs/compiler.
15
+ *
16
+ * A `TemplateResult` object holds all the information about a template
17
+ * expression required to render it: the template strings, expression values,
18
+ * and type of template (html or svg).
19
+ *
20
+ * `TemplateResult` objects do not create any DOM on their own. To create or
21
+ * update DOM you need to render the `TemplateResult`. See
22
+ * [Rendering](https://lit.dev/docs/components/rendering) for more information.
23
+ *
24
+ */
25
+ type UncompiledTemplateResult<T extends ResultType = ResultType> = {
26
+ ['_$litType$']: T;
27
+ strings: TemplateStringsArray;
28
+ values: unknown[];
29
+ };
30
+ /**
31
+ * The return type of the template tag functions, {@linkcode html} and
32
+ * {@linkcode svg}.
33
+ *
34
+ * A `TemplateResult` object holds all the information about a template
35
+ * expression required to render it: the template strings, expression values,
36
+ * and type of template (html or svg).
37
+ *
38
+ * `TemplateResult` objects do not create any DOM on their own. To create or
39
+ * update DOM you need to render the `TemplateResult`. See
40
+ * [Rendering](https://lit.dev/docs/components/rendering) for more information.
41
+ *
42
+ * In Lit 4, this type will be an alias of
43
+ * MaybeCompiledTemplateResult, so that code will get type errors if it assumes
44
+ * that Lit templates are not compiled. When deliberately working with only
45
+ * one, use either {@linkcode CompiledTemplateResult} or
46
+ * {@linkcode UncompiledTemplateResult} explicitly.
47
+ */
48
+ type TemplateResult<T extends ResultType = ResultType> = UncompiledTemplateResult<T>;
49
+ /**
50
+ * Interprets a template literal as an HTML template that can efficiently
51
+ * render to and update a container.
52
+ *
53
+ * ```ts
54
+ * const header = (title: string) => html`<h1>${title}</h1>`;
55
+ * ```
56
+ *
57
+ * The `html` tag returns a description of the DOM to render as a value. It is
58
+ * lazy, meaning no work is done until the template is rendered. When rendering,
59
+ * if a template comes from the same expression as a previously rendered result,
60
+ * it's efficiently updated instead of replaced.
61
+ */
62
+ declare const html$1: (strings: TemplateStringsArray, ...values: unknown[]) => TemplateResult<1>;
63
+ /**
64
+ * Interprets a template literal as an SVG fragment that can efficiently render
65
+ * to and update a container.
66
+ *
67
+ * ```ts
68
+ * const rect = svg`<rect width="10" height="10"></rect>`;
69
+ *
70
+ * const myImage = html`
71
+ * <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
72
+ * ${rect}
73
+ * </svg>`;
74
+ * ```
75
+ *
76
+ * The `svg` *tag function* should only be used for SVG fragments, or elements
77
+ * that would be contained **inside** an `<svg>` HTML element. A common error is
78
+ * placing an `<svg>` *element* in a template tagged with the `svg` tag
79
+ * function. The `<svg>` element is an HTML element and should be used within a
80
+ * template tagged with the {@linkcode html} tag function.
81
+ *
82
+ * In LitElement usage, it's invalid to return an SVG fragment from the
83
+ * `render()` method, as the SVG fragment will be contained within the element's
84
+ * shadow root and thus not be properly contained within an `<svg>` HTML
85
+ * element.
86
+ */
87
+ declare const svg$1: (strings: TemplateStringsArray, ...values: unknown[]) => TemplateResult<2>;
88
+ /**
89
+ * Interprets a template literal as MathML fragment that can efficiently render
90
+ * to and update a container.
91
+ *
92
+ * ```ts
93
+ * const num = mathml`<mn>1</mn>`;
94
+ *
95
+ * const eq = html`
96
+ * <math>
97
+ * ${num}
98
+ * </math>`;
99
+ * ```
100
+ *
101
+ * The `mathml` *tag function* should only be used for MathML fragments, or
102
+ * elements that would be contained **inside** a `<math>` HTML element. A common
103
+ * error is placing a `<math>` *element* in a template tagged with the `mathml`
104
+ * tag function. The `<math>` element is an HTML element and should be used
105
+ * within a template tagged with the {@linkcode html} tag function.
106
+ *
107
+ * In LitElement usage, it's invalid to return an MathML fragment from the
108
+ * `render()` method, as the MathML fragment will be contained within the
109
+ * element's shadow root and thus not be properly contained within a `<math>`
110
+ * HTML element.
111
+ */
112
+ declare const mathml$1: (strings: TemplateStringsArray, ...values: unknown[]) => TemplateResult<3>;
113
+
114
+ /**
115
+ * @license
116
+ * Copyright 2020 Google LLC
117
+ * SPDX-License-Identifier: BSD-3-Clause
118
+ */
119
+
120
+ interface StaticValue {
121
+ /** The value to interpolate as-is into the template. */
122
+ _$litStatic$: string;
123
+ /**
124
+ * A value that can't be decoded from ordinary JSON, make it harder for
125
+ * an attacker-controlled data that goes through JSON.parse to produce a valid
126
+ * StaticValue.
127
+ */
128
+ r: typeof brand;
129
+ }
130
+ /**
131
+ * Prevents JSON injection attacks.
132
+ *
133
+ * The goals of this brand:
134
+ * 1) fast to check
135
+ * 2) code is small on the wire
136
+ * 3) multiple versions of Lit in a single page will all produce mutually
137
+ * interoperable StaticValues
138
+ * 4) normal JSON.parse (without an unusual reviver) can not produce a
139
+ * StaticValue
140
+ *
141
+ * Symbols satisfy (1), (2), and (4). We use Symbol.for to satisfy (3), but
142
+ * we don't care about the key, so we break ties via (2) and use the empty
143
+ * string.
144
+ */
145
+ declare const brand: unique symbol;
146
+ /**
147
+ * Wraps a string so that it behaves like part of the static template
148
+ * strings instead of a dynamic value.
149
+ *
150
+ * Users must take care to ensure that adding the static string to the template
151
+ * results in well-formed HTML, or else templates may break unexpectedly.
152
+ *
153
+ * Note that this function is unsafe to use on untrusted content, as it will be
154
+ * directly parsed into HTML. Do not pass user input to this function
155
+ * without sanitizing it.
156
+ *
157
+ * Static values can be changed, but they will cause a complete re-render
158
+ * since they effectively create a new template.
159
+ */
160
+ declare const unsafeStatic: (value: string) => StaticValue;
161
+ /**
162
+ * Tags a string literal so that it behaves like part of the static template
163
+ * strings instead of a dynamic value.
164
+ *
165
+ * The only values that may be used in template expressions are other tagged
166
+ * `literal` results or `unsafeStatic` values (note that untrusted content
167
+ * should never be passed to `unsafeStatic`).
168
+ *
169
+ * Users must take care to ensure that adding the static string to the template
170
+ * results in well-formed HTML, or else templates may break unexpectedly.
171
+ *
172
+ * Static values can be changed, but they will cause a complete re-render since
173
+ * they effectively create a new template.
174
+ */
175
+ declare const literal: (strings: TemplateStringsArray, ...values: unknown[]) => StaticValue;
176
+ /**
177
+ * Wraps a lit-html template tag (`html` or `svg`) to add static value support.
178
+ */
179
+ declare const withStatic: (coreTag: typeof html$1 | typeof svg$1 | typeof mathml$1) => (strings: TemplateStringsArray, ...values: unknown[]) => TemplateResult;
180
+ /**
181
+ * Interprets a template literal as an HTML template that can efficiently
182
+ * render to and update a container.
183
+ *
184
+ * Includes static value support from `lit-html/static.js`.
185
+ */
186
+ declare const html: (strings: TemplateStringsArray, ...values: unknown[]) => TemplateResult;
187
+ /**
188
+ * Interprets a template literal as an SVG template that can efficiently
189
+ * render to and update a container.
190
+ *
191
+ * Includes static value support from `lit-html/static.js`.
192
+ */
193
+ declare const svg: (strings: TemplateStringsArray, ...values: unknown[]) => TemplateResult;
194
+ /**
195
+ * Interprets a template literal as MathML fragment that can efficiently render
196
+ * to and update a container.
197
+ *
198
+ * Includes static value support from `lit-html/static.js`.
199
+ */
200
+ declare const mathml: (strings: TemplateStringsArray, ...values: unknown[]) => TemplateResult;
201
+
202
+ export { StaticValue, html, literal, mathml, svg, unsafeStatic, withStatic };
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2017 Google LLC
4
+ * SPDX-License-Identifier: BSD-3-Clause
5
+ */
6
+ const t=globalThis,e=t.trustedTypes,s=e?e.createPolicy("lit-html",{createHTML:t=>t}):void 0,i="$lit$",n=`lit$${Math.random().toFixed(9).slice(2)}$`,o="?"+n,r=`<${o}>`,h=document,l=()=>h.createComment(""),$=t=>null===t||"object"!=typeof t&&"function"!=typeof t,a=Array.isArray,c="[ \t\n\f\r]",_=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,A=/-->/g,p=/>/g,d=RegExp(`>|${c}(?:([^\\s"'>=/]+)(${c}*=${c}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),u=/'/g,g=/"/g,f=/^(?:script|style|textarea|title)$/i,v=t=>(e,...s)=>({_$litType$:t,strings:e,values:s}),m=v(1),y=v(2),x=v(3),H=Symbol.for("lit-noChange"),N=Symbol.for("lit-nothing"),b=new WeakMap,S=h.createTreeWalker(h,129);function T(t,e){if(!a(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==s?s.createHTML(e):e}const M=(t,e)=>{const s=t.length-1,o=[];let h,l=2===e?"<svg>":3===e?"<math>":"",$=_;for(let e=0;e<s;e++){const s=t[e];let a,c,v=-1,m=0;for(;m<s.length&&($.lastIndex=m,c=$.exec(s),null!==c);)m=$.lastIndex,$===_?"!--"===c[1]?$=A:void 0!==c[1]?$=p:void 0!==c[2]?(f.test(c[2])&&(h=RegExp("</"+c[2],"g")),$=d):void 0!==c[3]&&($=d):$===d?">"===c[0]?($=h??_,v=-1):void 0===c[1]?v=-2:(v=$.lastIndex-c[2].length,a=c[1],$=void 0===c[3]?d:'"'===c[3]?g:u):$===g||$===u?$=d:$===A||$===p?$=_:($=d,h=void 0);const y=$===d&&t[e+1].startsWith("/>")?" ":"";l+=$===_?s+r:v>=0?(o.push(a),s.slice(0,v)+i+s.slice(v)+n+y):s+n+(-2===v?e:y)}return[T(t,l+(t[s]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),o]};class w{constructor({strings:t,_$litType$:s},r){let h;this.parts=[];let $=0,a=0;const c=t.length-1,_=this.parts,[A,p]=M(t,s);if(this.el=w.createElement(A,r),S.currentNode=this.el.content,2===s||3===s){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(h=S.nextNode())&&_.length<c;){if(1===h.nodeType){if(h.hasAttributes())for(const t of h.getAttributeNames())if(t.endsWith(i)){const e=p[a++],s=h.getAttribute(t).split(n),i=/([.?@])?(.*)/.exec(e);_.push({type:1,index:$,name:i[2],strings:s,ctor:"."===i[1]?O:"?"===i[1]?R:"@"===i[1]?j:U}),h.removeAttribute(t)}else t.startsWith(n)&&(_.push({type:6,index:$}),h.removeAttribute(t));if(f.test(h.tagName)){const t=h.textContent.split(n),s=t.length-1;if(s>0){h.textContent=e?e.emptyScript:"";for(let e=0;e<s;e++)h.append(t[e],l()),S.nextNode(),_.push({type:2,index:++$});h.append(t[s],l())}}}else if(8===h.nodeType)if(h.data===o)_.push({type:2,index:$});else{let t=-1;for(;-1!==(t=h.data.indexOf(n,t+1));)_.push({type:7,index:$}),t+=n.length-1}$++}}static createElement(t,e){const s=h.createElement("template");return s.innerHTML=t,s}}function C(t,e,s=t,i){if(e===H)return e;let n=void 0!==i?s._$Co?.[i]:s._$Cl;const o=$(e)?void 0:e._$litDirective$;return n?.constructor!==o&&(n?._$AO?.(!1),void 0===o?n=void 0:(n=new o(t),n._$AT(t,s,i)),void 0!==i?(s._$Co??=[])[i]=n:s._$Cl=n),void 0!==n&&(e=C(t,n._$AS(t,e.values),n,i)),e}class E{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:e},parts:s}=this._$AD,i=(t?.creationScope??h).importNode(e,!0);S.currentNode=i;let n=S.nextNode(),o=0,r=0,l=s[0];for(;void 0!==l;){if(o===l.index){let e;2===l.type?e=new I(n,n.nextSibling,this,t):1===l.type?e=new l.ctor(n,l.name,l.strings,this,t):6===l.type&&(e=new B(n,this,t)),this._$AV.push(e),l=s[++r]}o!==l?.index&&(n=S.nextNode(),o++)}return S.currentNode=h,i}p(t){let e=0;for(const s of this._$AV)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,e),e+=s.strings.length-2):s._$AI(t[e])),e++}}class I{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,s,i){this.type=2,this._$AH=N,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=s,this.options=i,this._$Cv=i?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===t?.nodeType&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=C(this,t,e),$(t)?t===N||null==t||""===t?(this._$AH!==N&&this._$AR(),this._$AH=N):t!==this._$AH&&t!==H&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>a(t)||"function"==typeof t?.[Symbol.iterator])(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==N&&$(this._$AH)?this._$AA.nextSibling.data=t:this.T(h.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:s}=t,i="number"==typeof s?this._$AC(t):(void 0===s.el&&(s.el=w.createElement(T(s.h,s.h[0]),this.options)),s);if(this._$AH?._$AD===i)this._$AH.p(e);else{const t=new E(i,this),s=t.u(this.options);t.p(e),this.T(s),this._$AH=t}}_$AC(t){let e=b.get(t.strings);return void 0===e&&b.set(t.strings,e=new w(t)),e}k(t){a(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let s,i=0;for(const n of t)i===e.length?e.push(s=new I(this.O(l()),this.O(l()),this,this.options)):s=e[i],s._$AI(n),i++;i<e.length&&(this._$AR(s&&s._$AB.nextSibling,i),e.length=i)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t&&t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class U{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,s,i,n){this.type=1,this._$AH=N,this._$AN=void 0,this.element=t,this.name=e,this._$AM=i,this.options=n,s.length>2||""!==s[0]||""!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=N}_$AI(t,e=this,s,i){const n=this.strings;let o=!1;if(void 0===n)t=C(this,t,e,0),o=!$(t)||t!==this._$AH&&t!==H,o&&(this._$AH=t);else{const i=t;let r,h;for(t=n[0],r=0;r<n.length-1;r++)h=C(this,i[s+r],e,r),h===H&&(h=this._$AH[r]),o||=!$(h)||h!==this._$AH[r],h===N?t=N:t!==N&&(t+=(h??"")+n[r+1]),this._$AH[r]=h}o&&!i&&this.j(t)}j(t){t===N?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class O extends U{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===N?void 0:t}}class R extends U{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==N)}}class j extends U{constructor(t,e,s,i,n){super(t,e,s,i,n),this.type=5}_$AI(t,e=this){if((t=C(this,t,e,0)??N)===H)return;const s=this._$AH,i=t===N&&s!==N||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,n=t!==N&&(s===N||i);i&&this.element.removeEventListener(this.name,this,s),n&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class B{constructor(t,e,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){C(this,t)}}const W=t.litHtmlPolyfillSupport;W?.(w,I),(t.litHtmlVersions??=[]).push("3.2.1");
7
+ /**
8
+ * @license
9
+ * Copyright 2020 Google LLC
10
+ * SPDX-License-Identifier: BSD-3-Clause
11
+ */
12
+ const k=Symbol.for(""),L=t=>{if(t?.r===k)return t?._$litStatic$},P=t=>({_$litStatic$:t,r:k}),V=(t,...e)=>({_$litStatic$:e.reduce(((e,s,i)=>e+(t=>{if(void 0!==t._$litStatic$)return t._$litStatic$;throw Error(`Value passed to 'literal' function must be a 'literal' result: ${t}. Use 'unsafeStatic' to pass non-literal values, but\n take care to ensure page security.`)})(s)+t[i+1]),t[0]),r:k}),D=new Map,z=t=>(e,...s)=>{const i=s.length;let n,o;const r=[],h=[];let l,$=0,a=!1;for(;$<i;){for(l=e[$];$<i&&void 0!==(o=s[$],n=L(o));)l+=n+e[++$],a=!0;$!==i&&h.push(o),r.push(l),$++}if($===i&&r.push(e[i]),a){const t=r.join("$$lit$$");void 0===(e=D.get(t))&&(r.raw=r,D.set(t,e=r)),s=h}return t(e,...s)},Z=z(m),F=z(y),q=z(x);export{Z as html,V as literal,q as mathml,F as svg,P as unsafeStatic,z as withStatic};
13
+ //# sourceMappingURL=static-html.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static-html.js","sources":["../node_modules/lit-html/lit-html.js","../node_modules/lit-html/static.js"],"sourcesContent":["/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,i=t.trustedTypes,s=i?i.createPolicy(\"lit-html\",{createHTML:t=>t}):void 0,e=\"$lit$\",h=`lit$${Math.random().toFixed(9).slice(2)}$`,o=\"?\"+h,n=`<${o}>`,r=document,l=()=>r.createComment(\"\"),c=t=>null===t||\"object\"!=typeof t&&\"function\"!=typeof t,a=Array.isArray,u=t=>a(t)||\"function\"==typeof t?.[Symbol.iterator],d=\"[ \\t\\n\\f\\r]\",f=/<(?:(!--|\\/[^a-zA-Z])|(\\/?[a-zA-Z][^>\\s]*)|(\\/?$))/g,v=/-->/g,_=/>/g,m=RegExp(`>|${d}(?:([^\\\\s\"'>=/]+)(${d}*=${d}*(?:[^ \\t\\n\\f\\r\"'\\`<>=]|(\"|')|))|$)`,\"g\"),p=/'/g,g=/\"/g,$=/^(?:script|style|textarea|title)$/i,y=t=>(i,...s)=>({_$litType$:t,strings:i,values:s}),x=y(1),b=y(2),w=y(3),T=Symbol.for(\"lit-noChange\"),E=Symbol.for(\"lit-nothing\"),A=new WeakMap,C=r.createTreeWalker(r,129);function P(t,i){if(!a(t)||!t.hasOwnProperty(\"raw\"))throw Error(\"invalid template strings array\");return void 0!==s?s.createHTML(i):i}const V=(t,i)=>{const s=t.length-1,o=[];let r,l=2===i?\"<svg>\":3===i?\"<math>\":\"\",c=f;for(let i=0;i<s;i++){const s=t[i];let a,u,d=-1,y=0;for(;y<s.length&&(c.lastIndex=y,u=c.exec(s),null!==u);)y=c.lastIndex,c===f?\"!--\"===u[1]?c=v:void 0!==u[1]?c=_:void 0!==u[2]?($.test(u[2])&&(r=RegExp(\"</\"+u[2],\"g\")),c=m):void 0!==u[3]&&(c=m):c===m?\">\"===u[0]?(c=r??f,d=-1):void 0===u[1]?d=-2:(d=c.lastIndex-u[2].length,a=u[1],c=void 0===u[3]?m:'\"'===u[3]?g:p):c===g||c===p?c=m:c===v||c===_?c=f:(c=m,r=void 0);const x=c===m&&t[i+1].startsWith(\"/>\")?\" \":\"\";l+=c===f?s+n:d>=0?(o.push(a),s.slice(0,d)+e+s.slice(d)+h+x):s+h+(-2===d?i:x)}return[P(t,l+(t[s]||\"<?>\")+(2===i?\"</svg>\":3===i?\"</math>\":\"\")),o]};class N{constructor({strings:t,_$litType$:s},n){let r;this.parts=[];let c=0,a=0;const u=t.length-1,d=this.parts,[f,v]=V(t,s);if(this.el=N.createElement(f,n),C.currentNode=this.el.content,2===s||3===s){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=C.nextNode())&&d.length<u;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(e)){const i=v[a++],s=r.getAttribute(t).split(h),e=/([.?@])?(.*)/.exec(i);d.push({type:1,index:c,name:e[2],strings:s,ctor:\".\"===e[1]?H:\"?\"===e[1]?I:\"@\"===e[1]?L:k}),r.removeAttribute(t)}else t.startsWith(h)&&(d.push({type:6,index:c}),r.removeAttribute(t));if($.test(r.tagName)){const t=r.textContent.split(h),s=t.length-1;if(s>0){r.textContent=i?i.emptyScript:\"\";for(let i=0;i<s;i++)r.append(t[i],l()),C.nextNode(),d.push({type:2,index:++c});r.append(t[s],l())}}}else if(8===r.nodeType)if(r.data===o)d.push({type:2,index:c});else{let t=-1;for(;-1!==(t=r.data.indexOf(h,t+1));)d.push({type:7,index:c}),t+=h.length-1}c++}}static createElement(t,i){const s=r.createElement(\"template\");return s.innerHTML=t,s}}function S(t,i,s=t,e){if(i===T)return i;let h=void 0!==e?s._$Co?.[e]:s._$Cl;const o=c(i)?void 0:i._$litDirective$;return h?.constructor!==o&&(h?._$AO?.(!1),void 0===o?h=void 0:(h=new o(t),h._$AT(t,s,e)),void 0!==e?(s._$Co??=[])[e]=h:s._$Cl=h),void 0!==h&&(i=S(t,h._$AS(t,i.values),h,e)),i}class M{constructor(t,i){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=i}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:i},parts:s}=this._$AD,e=(t?.creationScope??r).importNode(i,!0);C.currentNode=e;let h=C.nextNode(),o=0,n=0,l=s[0];for(;void 0!==l;){if(o===l.index){let i;2===l.type?i=new R(h,h.nextSibling,this,t):1===l.type?i=new l.ctor(h,l.name,l.strings,this,t):6===l.type&&(i=new z(h,this,t)),this._$AV.push(i),l=s[++n]}o!==l?.index&&(h=C.nextNode(),o++)}return C.currentNode=r,e}p(t){let i=0;for(const s of this._$AV)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,i),i+=s.strings.length-2):s._$AI(t[i])),i++}}class R{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,i,s,e){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=s,this.options=e,this._$Cv=e?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===t?.nodeType&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=S(this,t,i),c(t)?t===E||null==t||\"\"===t?(this._$AH!==E&&this._$AR(),this._$AH=E):t!==this._$AH&&t!==T&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):u(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==E&&c(this._$AH)?this._$AA.nextSibling.data=t:this.T(r.createTextNode(t)),this._$AH=t}$(t){const{values:i,_$litType$:s}=t,e=\"number\"==typeof s?this._$AC(t):(void 0===s.el&&(s.el=N.createElement(P(s.h,s.h[0]),this.options)),s);if(this._$AH?._$AD===e)this._$AH.p(i);else{const t=new M(e,this),s=t.u(this.options);t.p(i),this.T(s),this._$AH=t}}_$AC(t){let i=A.get(t.strings);return void 0===i&&A.set(t.strings,i=new N(t)),i}k(t){a(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let s,e=0;for(const h of t)e===i.length?i.push(s=new R(this.O(l()),this.O(l()),this,this.options)):s=i[e],s._$AI(h),e++;e<i.length&&(this._$AR(s&&s._$AB.nextSibling,e),i.length=e)}_$AR(t=this._$AA.nextSibling,i){for(this._$AP?.(!1,!0,i);t&&t!==this._$AB;){const i=t.nextSibling;t.remove(),t=i}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class k{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,i,s,e,h){this.type=1,this._$AH=E,this._$AN=void 0,this.element=t,this.name=i,this._$AM=e,this.options=h,s.length>2||\"\"!==s[0]||\"\"!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=E}_$AI(t,i=this,s,e){const h=this.strings;let o=!1;if(void 0===h)t=S(this,t,i,0),o=!c(t)||t!==this._$AH&&t!==T,o&&(this._$AH=t);else{const e=t;let n,r;for(t=h[0],n=0;n<h.length-1;n++)r=S(this,e[s+n],i,n),r===T&&(r=this._$AH[n]),o||=!c(r)||r!==this._$AH[n],r===E?t=E:t!==E&&(t+=(r??\"\")+h[n+1]),this._$AH[n]=r}o&&!e&&this.j(t)}j(t){t===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??\"\")}}class H extends k{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===E?void 0:t}}class I extends k{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==E)}}class L extends k{constructor(t,i,s,e,h){super(t,i,s,e,h),this.type=5}_$AI(t,i=this){if((t=S(this,t,i,0)??E)===T)return;const s=this._$AH,e=t===E&&s!==E||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,h=t!==E&&(s===E||e);e&&this.element.removeEventListener(this.name,this,s),h&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){\"function\"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class z{constructor(t,i,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){S(this,t)}}const Z={M:e,P:h,A:o,C:1,L:V,R:M,D:u,V:S,I:R,H:k,N:I,U:L,B:H,F:z},j=t.litHtmlPolyfillSupport;j?.(N,R),(t.litHtmlVersions??=[]).push(\"3.2.1\");const B=(t,i,s)=>{const e=s?.renderBefore??i;let h=e._$litPart$;if(void 0===h){const t=s?.renderBefore??null;e._$litPart$=h=new R(i.insertBefore(l(),t),t,void 0,s??{})}return h._$AI(t),h};export{Z as _$LH,x as html,w as mathml,T as noChange,E as nothing,B as render,b as svg};\n//# sourceMappingURL=lit-html.js.map\n","import{html as t,svg as r,mathml as e}from\"./lit-html.js\";\n/**\n * @license\n * Copyright 2020 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst a=Symbol.for(\"\"),o=t=>{if(t?.r===a)return t?._$litStatic$},s=t=>({_$litStatic$:t,r:a}),i=(t,...r)=>({_$litStatic$:r.reduce(((r,e,a)=>r+(t=>{if(void 0!==t._$litStatic$)return t._$litStatic$;throw Error(`Value passed to 'literal' function must be a 'literal' result: ${t}. Use 'unsafeStatic' to pass non-literal values, but\\n take care to ensure page security.`)})(e)+t[a+1]),t[0]),r:a}),l=new Map,n=t=>(r,...e)=>{const a=e.length;let s,i;const n=[],u=[];let c,$=0,f=!1;for(;$<a;){for(c=r[$];$<a&&void 0!==(i=e[$],s=o(i));)c+=s+r[++$],f=!0;$!==a&&u.push(i),n.push(c),$++}if($===a&&n.push(r[a]),f){const t=n.join(\"$$lit$$\");void 0===(r=l.get(t))&&(n.raw=n,l.set(t,r=n)),e=u}return t(r,...e)},u=n(t),c=n(r),$=n(e);export{u as html,i as literal,$ as mathml,c as svg,s as unsafeStatic,n as withStatic};\n//# sourceMappingURL=static.js.map\n"],"names":["t","globalThis","i","trustedTypes","s","createPolicy","createHTML","e","h","Math","random","toFixed","slice","o","n","r","document","l","createComment","c","a","Array","isArray","d","f","v","_","m","RegExp","p","g","$","y","_$litType$","strings","values","x","b","w","T","Symbol","for","E","A","WeakMap","C","createTreeWalker","P","hasOwnProperty","Error","V","length","u","lastIndex","exec","test","startsWith","push","N","constructor","this","parts","el","createElement","currentNode","content","firstChild","replaceWith","childNodes","nextNode","nodeType","hasAttributes","getAttributeNames","endsWith","getAttribute","split","type","index","name","ctor","H","I","L","k","removeAttribute","tagName","textContent","emptyScript","append","data","indexOf","innerHTML","S","_$Co","_$Cl","_$litDirective$","_$AO","_$AT","_$AS","M","_$AV","_$AN","_$AD","_$AM","parentNode","_$AU","creationScope","importNode","R","nextSibling","z","_$AI","_$Cv","_$AH","_$AA","_$AB","options","isConnected","startNode","endNode","_$AR","iterator","O","insertBefore","createTextNode","_$AC","get","set","_$AP","remove","setConnected","element","fill","String","j","setAttribute","super","arguments","toggleAttribute","capture","once","passive","removeEventListener","addEventListener","handleEvent","call","host","litHtmlPolyfillSupport","litHtmlVersions","_$litStatic$","reduce","Map","join","raw"],"mappings":"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","x_google_ignoreList":[0,1]}
@@ -6,5 +6,6 @@ export * from './lib/lit.js';
6
6
  import * as Directives from './lib/directives.js';
7
7
  import * as Directive from './lib/directive.js';
8
8
  import * as Decorators from './lib/decorators.js';
9
+ import * as StaticHtml from './lib/static-html.js';
9
10
 
10
- export {Directives, Directive, Decorators};
11
+ export {Directives, Directive, Decorators, StaticHtml};
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "devDependencies": {
9
9
  "@rollup/plugin-node-resolve": "13.3.0",
10
- "rollup-plugin-dts": "4.2.3",
11
- "rollup-plugin-terser": "7.0.2"
10
+ "@rollup/plugin-terser": "^0.4.4",
11
+ "rollup-plugin-dts": "4.2.3"
12
12
  }
13
13
  }
@@ -1,8 +1,8 @@
1
1
  import { nodeResolve } from "@rollup/plugin-node-resolve";
2
+ import terser from "@rollup/plugin-terser";
2
3
  import dts from "rollup-plugin-dts";
3
- import { terser } from "rollup-plugin-terser";
4
4
 
5
- export default ['directive', 'directives', 'decorators', 'lit'].flatMap(filename => ([
5
+ export default ['directive', 'directives', 'decorators', 'lit', 'static-html'].flatMap(filename => ([
6
6
  {
7
7
  input: `./src/${filename}.js`,
8
8
  output: {
@@ -0,0 +1,5 @@
1
+ // Copyright 2024 The Chromium Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
5
+ export * from "lit/static-html.js";
@@ -1,10 +1,10 @@
1
1
  Name: Puppeteer Core
2
2
  Short Name: Puppeteer Core
3
3
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
4
- Version: 23.9.0
4
+ Version: 23.11.1
5
5
  License: Apache-2.0
6
6
  License File: LICENSE
7
- Revision: ba33db8d1f731b07691f627e998ae637026e3cd1
7
+ Revision: 893f5eccbab8e983f8765a3e4ef936bdf99cb35e
8
8
  Security Critical: no
9
9
  Shipped: yes
10
10
 
@@ -7,6 +7,7 @@
7
7
  import type { ChildProcess } from 'child_process';
8
8
  import type { Protocol } from 'devtools-protocol';
9
9
  import type { ProtocolType } from '../common/ConnectOptions.js';
10
+ import type { Cookie } from '../common/Cookie.js';
10
11
  import type { DownloadBehavior } from '../common/DownloadBehavior.js';
11
12
  import { EventEmitter, type EventType } from '../common/EventEmitter.js';
12
13
  import { asyncDisposeSymbol, disposeSymbol } from '../util/disposable.js';
@@ -310,6 +311,33 @@ export declare abstract class Browser extends EventEmitter<BrowserEvents> {
310
311
  * process running.
311
312
  */
312
313
  abstract disconnect(): Promise<void>;
314
+ /**
315
+ * Returns all cookies in the default {@link BrowserContext}.
316
+ *
317
+ * @remarks
318
+ *
319
+ * Shortcut for
320
+ * {@link BrowserContext.cookies | browser.defaultBrowserContext().cookies()}.
321
+ */
322
+ cookies(): Promise<Cookie[]>;
323
+ /**
324
+ * Sets cookies in the default {@link BrowserContext}.
325
+ *
326
+ * @remarks
327
+ *
328
+ * Shortcut for
329
+ * {@link BrowserContext.setCookie | browser.defaultBrowserContext().setCookie()}.
330
+ */
331
+ setCookie(...cookies: Cookie[]): Promise<void>;
332
+ /**
333
+ * Removes cookies from the default {@link BrowserContext}.
334
+ *
335
+ * @remarks
336
+ *
337
+ * Shortcut for
338
+ * {@link BrowserContext.deleteCookie | browser.defaultBrowserContext().deleteCookie()}.
339
+ */
340
+ deleteCookie(...cookies: Cookie[]): Promise<void>;
313
341
  /**
314
342
  * Whether Puppeteer is connected to this {@link Browser | browser}.
315
343
  *
@@ -1 +1 @@
1
- {"version":3,"file":"Browser.d.ts","sourceRoot":"","sources":["../../../../src/api/Browser.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Browser.d.ts","sourceRoot":"","sources":["../../../../src/api/Browser.ts"],"names":[],"mappings":"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"}