@chrome-devtools/device-mode-emulation-frame 1.20260524.0 → 1.20260531.0

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.
@@ -1658,6 +1658,9 @@
1658
1658
  "models/issues_manager/DeprecationIssue.ts | title": {
1659
1659
  "message": "Deprecated feature used"
1660
1660
  },
1661
+ "models/issues_manager/EmailVerificationRequestIssue.ts | emailVerification": {
1662
+ "message": "Email Verification Protocol"
1663
+ },
1661
1664
  "models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
1662
1665
  "message": "Federated Credential Management API"
1663
1666
  },
@@ -5528,9 +5531,6 @@
5528
5531
  "panels/application/preloading/components/PreloadingGrid.ts | status": {
5529
5532
  "message": "Status"
5530
5533
  },
5531
- "panels/application/preloading/components/PreloadingString.ts | PrefetchCancelledOnUserNavigation": {
5532
- "message": "The prefetch was cancelled because the user navigated the page before the prefetch finished"
5533
- },
5534
5534
  "panels/application/preloading/components/PreloadingString.ts | PrefetchEvictedAfterBrowsingDataRemoved": {
5535
5535
  "message": "The prefetch was discarded because browsing data was removed."
5536
5536
  },
@@ -7799,6 +7799,9 @@
7799
7799
  "panels/elements/elements-meta.ts | captureAreaScreenshot": {
7800
7800
  "message": "Capture area screenshot"
7801
7801
  },
7802
+ "panels/elements/elements-meta.ts | collapseNonContributingCSSRules": {
7803
+ "message": "Collapse non-contributing CSS rules"
7804
+ },
7802
7805
  "panels/elements/elements-meta.ts | copyStyles": {
7803
7806
  "message": "Copy styles"
7804
7807
  },
@@ -17861,6 +17864,9 @@
17861
17864
  "ui/legacy/components/source_frame/ImageView.ts | saveImageAs": {
17862
17865
  "message": "Save image as…"
17863
17866
  },
17867
+ "ui/legacy/components/source_frame/ImageView.ts | thisImageIsTooBig": {
17868
+ "message": "This image is too big to display in DevTools. Click here to open it in a new tab."
17869
+ },
17864
17870
  "ui/legacy/components/source_frame/JSONView.ts | find": {
17865
17871
  "message": "Find"
17866
17872
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrome-devtools/device-mode-emulation-frame",
3
- "version": "1.20260524.0",
3
+ "version": "1.20260531.0",
4
4
  "description": "chrome-devtools-frontend built version",
5
5
  "repository": "https://github.com/iam-medvedev/chrome-devtools.git",
6
6
  "author": "Ilya Medvedev <ilya@medvedev.im>",
@@ -1028,7 +1028,6 @@
1028
1028
  var EVENT_BINDING_NAME = "__chromium_devtools_metrics_reporter";
1029
1029
  var INTERNAL_KILL_SWITCH = "__chromium_devtools_kill_live_metrics";
1030
1030
  var SCRIPTS_PER_LOAF_LIMIT = 10;
1031
- var LOAF_LIMIT = 5;
1032
1031
  function getUniqueLayoutShiftId(entry) {
1033
1032
  return `layout-shift-${entry.value}-${entry.startTime}`;
1034
1033
  }
@@ -1213,7 +1212,7 @@
1213
1212
  interactionType: interaction.attribution.interactionType,
1214
1213
  eventName: interaction.entries[0].name,
1215
1214
  // To limit the amount of events, just get the last 5 LoAFs
1216
- longAnimationFrameEntries: limitScripts(interaction.attribution.longAnimationFrameEntries.slice(-LOAF_LIMIT).map(loaf => loaf.toJSON())),
1215
+ longAnimationFrameEntries: limitScripts(interaction.attribution.longAnimationFrameEntries.slice(-5).map(loaf => loaf.toJSON())),
1217
1216
  };
1218
1217
  const target = interaction.attribution.interactionTarget;
1219
1218
  if (target) {