chrome-devtools-frontend 1.0.1367881 → 1.0.1380117

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