chrome-devtools-frontend 1.0.1632065 → 1.0.1635876

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 (107) hide show
  1. package/front_end/core/host/UserMetrics.ts +5 -2
  2. package/front_end/core/root/ExperimentNames.ts +1 -0
  3. package/front_end/core/root/Runtime.ts +5 -0
  4. package/front_end/core/sdk/SourceMapCache.ts +13 -11
  5. package/front_end/core/sdk/SourceMapManager.ts +7 -3
  6. package/front_end/entrypoints/greendev_floaty/FloatyEntrypoint.ts +84 -22
  7. package/front_end/entrypoints/main/MainImpl.ts +8 -0
  8. package/front_end/generated/InspectorBackendCommands.ts +3 -4
  9. package/front_end/generated/SupportedCSSProperties.js +272 -2
  10. package/front_end/generated/protocol-mapping.d.ts +0 -10
  11. package/front_end/generated/protocol-proxy-api.d.ts +0 -8
  12. package/front_end/generated/protocol.ts +5 -7
  13. package/front_end/models/ai_assistance/AiConversation.ts +16 -11
  14. package/front_end/models/ai_assistance/agents/AccessibilityAgent.ts +13 -2
  15. package/front_end/models/ai_assistance/agents/AiAgent.ts +65 -11
  16. package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +42 -2
  17. package/front_end/models/ai_assistance/agents/GreenDevAgent.ts +68 -5
  18. package/front_end/models/ai_assistance/agents/GreenDevAgentAntigravityCliSocketClient.ts +53 -0
  19. package/front_end/models/ai_assistance/agents/GreenDevAgentGeminiCliSocketClient.ts +117 -0
  20. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +30 -1
  21. package/front_end/models/ai_assistance/ai_assistance.ts +4 -0
  22. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +4 -2
  23. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +5 -2
  24. package/front_end/models/extensions/RecorderExtensionEndpoint.ts +9 -1
  25. package/front_end/models/extensions/RecorderPluginManager.ts +1 -0
  26. package/front_end/models/greendev/Prototypes.ts +17 -5
  27. package/front_end/models/trace/handlers/FramesHandler.ts +19 -13
  28. package/front_end/panels/ai_assistance/components/AccessibilityAgentMarkdownRenderer.ts +3 -0
  29. package/front_end/panels/ai_assistance/components/ChatInput.ts +4 -2
  30. package/front_end/panels/ai_assistance/components/ChatMessage.ts +3 -1
  31. package/front_end/panels/application/preloading/components/PreloadingString.ts +0 -8
  32. package/front_end/panels/common/ExtensionServer.ts +34 -11
  33. package/front_end/panels/elements/CSSRuleValidator.ts +37 -34
  34. package/front_end/panels/elements/CSSRuleValidatorHelper.ts +8 -6
  35. package/front_end/panels/elements/ElementsTreeElement.ts +8 -2
  36. package/front_end/panels/elements/components/CSSHintDetailsView.ts +5 -5
  37. package/front_end/panels/js_timeline/js_timeline-meta.ts +30 -0
  38. package/front_end/panels/protocol_monitor/JSONEditor.ts +4 -4
  39. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +2 -2
  40. package/front_end/panels/recorder/RecorderController.ts +50 -1
  41. package/front_end/panels/recorder/extensions/ExtensionManager.ts +1 -0
  42. package/front_end/panels/recorder/models/RecordingPlayer.ts +12 -3
  43. package/front_end/panels/recorder/testing/RecorderHelpers.ts +2 -0
  44. package/front_end/panels/settings/SettingsScreen.ts +3 -2
  45. package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +5 -2
  46. package/front_end/panels/timeline/timeline-meta.ts +10 -6
  47. package/front_end/panels/whats_new/ReleaseNoteText.ts +9 -9
  48. package/front_end/panels/whats_new/resources/WNDT.md +9 -9
  49. package/front_end/third_party/chromium/README.chromium +1 -1
  50. package/front_end/third_party/puppeteer/README.chromium +2 -2
  51. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +8 -5
  52. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +35 -33
  53. package/front_end/third_party/puppeteer/package/lib/puppeteer/cdp/TargetManager.d.ts.map +1 -1
  54. package/front_end/third_party/puppeteer/package/lib/puppeteer/cdp/TargetManager.js +0 -1
  55. package/front_end/third_party/puppeteer/package/lib/puppeteer/cdp/TargetManager.js.map +1 -1
  56. package/front_end/third_party/puppeteer/package/lib/puppeteer/cdp/WebMCP.d.ts.map +1 -1
  57. package/front_end/third_party/puppeteer/package/lib/puppeteer/cdp/WebMCP.js +0 -3
  58. package/front_end/third_party/puppeteer/package/lib/puppeteer/cdp/WebMCP.js.map +1 -1
  59. package/front_end/third_party/puppeteer/package/lib/puppeteer/common/Debug.d.ts +8 -8
  60. package/front_end/third_party/puppeteer/package/lib/puppeteer/common/Debug.d.ts.map +1 -1
  61. package/front_end/third_party/puppeteer/package/lib/puppeteer/common/Debug.js +8 -8
  62. package/front_end/third_party/puppeteer/package/lib/puppeteer/common/Debug.js.map +1 -1
  63. package/front_end/third_party/puppeteer/package/lib/puppeteer/generated/injected.d.ts +1 -1
  64. package/front_end/third_party/puppeteer/package/lib/puppeteer/generated/injected.d.ts.map +1 -1
  65. package/front_end/third_party/puppeteer/package/lib/puppeteer/generated/injected.js +1 -1
  66. package/front_end/third_party/puppeteer/package/lib/puppeteer/generated/injected.js.map +1 -1
  67. package/front_end/third_party/puppeteer/package/lib/puppeteer/injected/CustomQuerySelector.d.ts +2 -2
  68. package/front_end/third_party/puppeteer/package/lib/puppeteer/injected/CustomQuerySelector.d.ts.map +1 -1
  69. package/front_end/third_party/puppeteer/package/lib/puppeteer/injected/CustomQuerySelector.js +2 -1
  70. package/front_end/third_party/puppeteer/package/lib/puppeteer/injected/CustomQuerySelector.js.map +1 -1
  71. package/front_end/third_party/puppeteer/package/lib/puppeteer/injected/injected.d.ts +2 -7
  72. package/front_end/third_party/puppeteer/package/lib/puppeteer/injected/injected.d.ts.map +1 -1
  73. package/front_end/third_party/puppeteer/package/lib/puppeteer/node/PuppeteerNode.d.ts +1 -1
  74. package/front_end/third_party/puppeteer/package/lib/puppeteer/node/PuppeteerNode.js +1 -1
  75. package/front_end/third_party/puppeteer/package/lib/puppeteer/revisions.d.ts +3 -3
  76. package/front_end/third_party/puppeteer/package/lib/puppeteer/revisions.js +3 -3
  77. package/front_end/third_party/puppeteer/package/lib/puppeteer/revisions.js.map +1 -1
  78. package/front_end/third_party/puppeteer/package/lib/puppeteer/util/Mutex.d.ts +10 -7
  79. package/front_end/third_party/puppeteer/package/lib/puppeteer/util/Mutex.d.ts.map +1 -1
  80. package/front_end/third_party/puppeteer/package/lib/puppeteer/util/Mutex.js +16 -12
  81. package/front_end/third_party/puppeteer/package/lib/puppeteer/util/Mutex.js.map +1 -1
  82. package/front_end/third_party/puppeteer/package/lib/puppeteer/util/version.d.ts +1 -1
  83. package/front_end/third_party/puppeteer/package/lib/puppeteer/util/version.js +1 -1
  84. package/front_end/third_party/puppeteer/package/lib/types.d.ts +8 -5
  85. package/front_end/third_party/puppeteer/package/package.json +5 -7
  86. package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +0 -1
  87. package/front_end/third_party/puppeteer/package/src/cdp/WebMCP.ts +0 -3
  88. package/front_end/third_party/puppeteer/package/src/common/Debug.ts +11 -11
  89. package/front_end/third_party/puppeteer/package/src/generated/injected.ts +1 -1
  90. package/front_end/third_party/puppeteer/package/src/injected/CustomQuerySelector.ts +3 -2
  91. package/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts +1 -1
  92. package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
  93. package/front_end/third_party/puppeteer/package/src/util/Mutex.ts +17 -12
  94. package/front_end/third_party/puppeteer/package/src/util/version.ts +1 -1
  95. package/front_end/ui/components/markdown_view/MarkdownLinksMap.ts +7 -0
  96. package/front_end/ui/legacy/InspectorDrawerView.ts +2 -1
  97. package/front_end/ui/legacy/InspectorView.ts +1 -1
  98. package/front_end/ui/legacy/PlusButton.ts +269 -0
  99. package/front_end/ui/legacy/ViewManager.ts +38 -11
  100. package/front_end/ui/legacy/components/source_frame/FontView.ts +11 -3
  101. package/front_end/ui/legacy/components/source_frame/ImageView.ts +16 -0
  102. package/front_end/ui/legacy/components/source_frame/imageView.css +13 -0
  103. package/front_end/ui/legacy/components/utils/Linkifier.ts +1 -1
  104. package/front_end/ui/legacy/legacy.ts +2 -0
  105. package/front_end/ui/visual_logging/KnownContextValues.ts +21 -0
  106. package/mcp/mcp.ts +1 -1
  107. package/package.json +1 -10
@@ -9,7 +9,7 @@ import * as Common from '../../core/common/common.js';
9
9
  import * as Host from '../../core/host/host.js';
10
10
  import * as i18n from '../../core/i18n/i18n.js';
11
11
  import * as Platform from '../../core/platform/platform.js';
12
- import type * as Root from '../../core/root/root.js';
12
+ import * as Root from '../../core/root/root.js';
13
13
  import type * as Foundation from '../../foundation/foundation.js';
14
14
  import {createIcon, type Icon} from '../kit/kit.js';
15
15
  import {render, type TemplateResult} from '../lit/lit.js';
@@ -17,6 +17,7 @@ import * as VisualLogging from '../visual_logging/visual_logging.js';
17
17
 
18
18
  import * as ARIAUtils from './ARIAUtils.js';
19
19
  import type {ContextMenu} from './ContextMenu.js';
20
+ import * as PlusButton from './PlusButton.js';
20
21
  import {type EventData, Events as TabbedPaneEvents, TabbedPane} from './TabbedPane.js';
21
22
  import {type ItemsProvider, type ToolbarItem, ToolbarMenuButton} from './Toolbar.js';
22
23
  import {createTextChild} from './UIUtils.js';
@@ -397,11 +398,8 @@ export class ViewManager extends Common.ObjectWrapper.ObjectWrapper<EventTypes>
397
398
 
398
399
  createTabbedLocation(
399
400
  revealCallback: (() => void), location: string, restoreSelection?: boolean, allowReorder?: boolean,
400
- defaultTab?: string|null, isLocationVisible?: (() => boolean),
401
- tabbedPaneFactory?: TabbedPaneFactory): TabbedViewLocation {
402
- return new TabbedLocation(
403
- this, revealCallback, location, restoreSelection, allowReorder, defaultTab, isLocationVisible,
404
- tabbedPaneFactory);
401
+ options?: TabbedLocationOptions): TabbedViewLocation {
402
+ return new TabbedLocation(this, revealCallback, location, restoreSelection, allowReorder, options);
405
403
  }
406
404
 
407
405
  createStackLocation(revealCallback?: (() => void), location?: string, jslogContext?: string): ViewLocation {
@@ -648,6 +646,17 @@ type CloseableTabSetting = Record<string, boolean>;
648
646
 
649
647
  type TabOrderSetting = Record<string, number>;
650
648
 
649
+ export interface TabbedLocationOptions {
650
+ defaultTab?: string|null;
651
+ isLocationVisible?: () => boolean;
652
+ tabbedPaneFactory?: TabbedPaneFactory;
653
+ /**
654
+ * Installed into the `TabbedPane`'s `trailing-button` slot before any
655
+ * tabs are appended, so the very first layout pass reserves width for it.
656
+ */
657
+ plusButton?: PlusButton.PlusButtonOptions;
658
+ }
659
+
651
660
  class TabbedLocation extends Location implements TabbedViewLocation {
652
661
  #tabbedPane: TabbedPane;
653
662
  private readonly location: string;
@@ -661,9 +670,8 @@ class TabbedLocation extends Location implements TabbedViewLocation {
661
670
 
662
671
  constructor(
663
672
  manager: ViewManager, revealCallback: (() => void), location: string, restoreSelection?: boolean,
664
- allowReorder?: boolean, defaultTab?: string|null, isLocationVisible?: (() => boolean),
665
- tabbedPaneFactory?: TabbedPaneFactory) {
666
- const tabbedPane = tabbedPaneFactory ? tabbedPaneFactory() : new TabbedPane();
673
+ allowReorder?: boolean, options?: TabbedLocationOptions) {
674
+ const tabbedPane = options?.tabbedPaneFactory ? options.tabbedPaneFactory() : new TabbedPane();
667
675
  if (allowReorder) {
668
676
  tabbedPane.setAllowTabReorder(true);
669
677
  }
@@ -687,8 +695,27 @@ class TabbedLocation extends Location implements TabbedViewLocation {
687
695
  if (restoreSelection) {
688
696
  this.lastSelectedTabSetting = Common.Settings.Settings.instance().createSetting(location + '-selected-tab', '');
689
697
  }
690
- this.defaultTab = defaultTab;
691
- this.isLocationVisible = isLocationVisible;
698
+ this.defaultTab = options?.defaultTab;
699
+ this.isLocationVisible = options?.isLocationVisible;
700
+
701
+ // Install before `appendApplicableItems` so the very first layout pass
702
+ // reserves width for the button and we avoid a reflow that snaps the
703
+ // last tab into the overflow menu.
704
+ if (options?.plusButton && Root.Runtime.hostConfig.devToolsPlusButton?.enabled) {
705
+ PlusButton.installPlusButton(
706
+ {
707
+ tabbedPane: this.#tabbedPane,
708
+ location: this.location,
709
+ // Use the local `views` map (not `manager.viewsForLocation`) so
710
+ // cross-location moves added via `appendView` are reflected.
711
+ views: () => this.views.values(),
712
+ manager: this.manager,
713
+ showView: view => {
714
+ this.showView(view, undefined, /* userGesture */ true).catch(err => console.error(err));
715
+ },
716
+ },
717
+ options.plusButton);
718
+ }
692
719
 
693
720
  if (location) {
694
721
  this.appendApplicableItems(location);
@@ -31,7 +31,7 @@
31
31
  */
32
32
 
33
33
  import * as i18n from '../../../../core/i18n/i18n.js';
34
- import * as Platform from '../../../../core/platform/platform.js';
34
+ import type * as Platform from '../../../../core/platform/platform.js';
35
35
  import * as TextUtils from '../../../../models/text_utils/text_utils.js';
36
36
  import {Directives, html, render} from '../../../lit/lit.js';
37
37
  import * as VisualLogging from '../../../visual_logging/visual_logging.js';
@@ -133,8 +133,16 @@ export class FontView extends UI.View.SimpleView {
133
133
  this.#fontFamily = `WebInspectorFontPreview${++fontId}`;
134
134
  void this.contentProvider.requestContentData().then(contentData => {
135
135
  const url = TextUtils.ContentData.ContentData.isError(contentData) ? this.url : contentData.asDataUrl();
136
- this.#fontFaceRule =
137
- Platform.StringUtilities.sprintf('@font-face { font-family: "%s"; src: url(%s); }', this.#fontFamily, url);
136
+ if (url) {
137
+ const sheet = new CSSStyleSheet();
138
+ sheet.insertRule('@font-face {}');
139
+ const rule = sheet.cssRules[0] as CSSFontFaceRule;
140
+ rule.style.setProperty('font-family', this.#fontFamily);
141
+ rule.style.setProperty('src', `url(${JSON.stringify(url)})`);
142
+ this.#fontFaceRule = rule.cssText;
143
+ } else {
144
+ this.#fontFaceRule = '';
145
+ }
138
146
  this.#previewVisible = true;
139
147
  this.requestUpdate();
140
148
  });
@@ -37,6 +37,7 @@ import * as i18n from '../../../../core/i18n/i18n.js';
37
37
  import * as Platform from '../../../../core/platform/platform.js';
38
38
  import * as TextUtils from '../../../../models/text_utils/text_utils.js';
39
39
  import * as Workspace from '../../../../models/workspace/workspace.js';
40
+ import {createIcon} from '../../../kit/kit.js';
40
41
  import * as VisualLogging from '../../../visual_logging/visual_logging.js';
41
42
  import * as UI from '../../legacy.js';
42
43
 
@@ -82,6 +83,10 @@ const UIStrings = {
82
83
  * @description The default file name when downloading a file
83
84
  */
84
85
  download: 'download',
86
+ /**
87
+ * @description Text indicating an image is too large to display and offering to open it in a new tab
88
+ */
89
+ thisImageIsTooBig: 'This image is too big to display in DevTools. Click here to open it in a new tab.',
85
90
  } as const;
86
91
  const str_ = i18n.i18n.registerUIStrings('ui/legacy/components/source_frame/ImageView.ts', UIStrings);
87
92
  const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
@@ -97,6 +102,7 @@ export class ImageView extends UI.View.SimpleView {
97
102
  private readonly mimeTypeLabel: UI.Toolbar.ToolbarText;
98
103
  private readonly container: HTMLElement;
99
104
  private imagePreviewElement: HTMLImageElement;
105
+ private imageUnavailableElement: HTMLElement;
100
106
  private cachedContent?: TextUtils.ContentData.ContentData;
101
107
  constructor(mimeType: string, contentProvider: TextUtils.ContentProvider.ContentProvider) {
102
108
  super({
@@ -125,6 +131,14 @@ export class ImageView extends UI.View.SimpleView {
125
131
  this.container = this.element.createChild('div', 'image');
126
132
  this.imagePreviewElement = this.container.createChild('img', 'resource-image-view');
127
133
  this.imagePreviewElement.addEventListener('contextmenu', this.contextMenu.bind(this), true);
134
+
135
+ const link = document.createElement('devtools-link');
136
+ link.setAttribute('href', this.url);
137
+ link.classList.add('resource-image-unavailable', 'hidden');
138
+ link.appendChild(createIcon('open-externally'));
139
+ link.appendChild(document.createTextNode(i18nString(UIStrings.thisImageIsTooBig)));
140
+ this.container.appendChild(link);
141
+ this.imageUnavailableElement = link;
128
142
  }
129
143
 
130
144
  override async toolbarItems(): Promise<UI.Toolbar.ToolbarItem[]> {
@@ -165,8 +179,10 @@ export class ImageView extends UI.View.SimpleView {
165
179
  this.cachedContent = content;
166
180
  const imageSrc = content.asImagePreviewUrl();
167
181
  if (imageSrc === null) {
182
+ this.imageUnavailableElement.classList.remove('hidden');
168
183
  return;
169
184
  }
185
+ this.imageUnavailableElement.classList.add('hidden');
170
186
  const loadPromise = new Promise(x => {
171
187
  this.imagePreviewElement.onload = x;
172
188
  });
@@ -21,3 +21,16 @@
21
21
  user-select: text;
22
22
  -webkit-user-drag: auto;
23
23
  }
24
+
25
+ .resource-image-unavailable {
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: center;
29
+ gap: var(--sys-size-4);
30
+ }
31
+
32
+ .resource-image-unavailable devtools-icon {
33
+ color: var(--sys-color-primary);
34
+ width: var(--sys-size-7);
35
+ height: var(--sys-size-7);
36
+ }
@@ -1112,7 +1112,7 @@ export class ContentProviderContextMenuProvider implements
1112
1112
  if (!Common.ParsedURL.schemeIs(contentUrl, 'file:')) {
1113
1113
  contextMenu.revealSection().appendItem(
1114
1114
  UI.UIUtils.openLinkExternallyLabel(),
1115
- () => Host.InspectorFrontendHost.InspectorFrontendHostInstance.openInNewTab(
1115
+ () => UIHelpers.openInNewTab(
1116
1116
  contentUrl.endsWith(':formatted') ?
1117
1117
  Common.ParsedURL.ParsedURL.slice(contentUrl, 0, contentUrl.lastIndexOf(':')) :
1118
1118
  contentUrl),
@@ -29,6 +29,7 @@ import * as ListControl from './ListControl.js';
29
29
  import * as ListModel from './ListModel.js';
30
30
  import * as ListWidget from './ListWidget.js';
31
31
  import * as Panel from './Panel.js';
32
+ import * as PlusButton from './PlusButton.js';
32
33
  import * as PopoverHelper from './PopoverHelper.js';
33
34
  import * as ProgressIndicator from './ProgressIndicator.js';
34
35
  import * as RemoteDebuggingTerminatedScreen from './RemoteDebuggingTerminatedScreen.js';
@@ -82,6 +83,7 @@ export {
82
83
  ListModel,
83
84
  ListWidget,
84
85
  Panel,
86
+ PlusButton,
85
87
  PopoverHelper,
86
88
  ProgressIndicator,
87
89
  RemoteDebuggingTerminatedScreen,
@@ -1074,21 +1074,37 @@ export const knownContextValues = new Set([
1074
1074
  'copy-xpath',
1075
1075
  'core-web-vitals',
1076
1076
  'corner',
1077
+ 'corner-block-end',
1077
1078
  'corner-block-end-shape',
1079
+ 'corner-block-start',
1078
1080
  'corner-block-start-shape',
1081
+ 'corner-bottom',
1082
+ 'corner-bottom-left',
1079
1083
  'corner-bottom-left-shape',
1084
+ 'corner-bottom-right',
1080
1085
  'corner-bottom-right-shape',
1081
1086
  'corner-bottom-shape',
1087
+ 'corner-end-end',
1082
1088
  'corner-end-end-shape',
1089
+ 'corner-end-start',
1083
1090
  'corner-end-start-shape',
1091
+ 'corner-inline-end',
1084
1092
  'corner-inline-end-shape',
1093
+ 'corner-inline-start',
1085
1094
  'corner-inline-start-shape',
1095
+ 'corner-left',
1086
1096
  'corner-left-shape',
1097
+ 'corner-right',
1087
1098
  'corner-right-shape',
1088
1099
  'corner-shape',
1100
+ 'corner-start-end',
1089
1101
  'corner-start-end-shape',
1102
+ 'corner-start-start',
1090
1103
  'corner-start-start-shape',
1104
+ 'corner-top',
1105
+ 'corner-top-left',
1091
1106
  'corner-top-left-shape',
1107
+ 'corner-top-right',
1092
1108
  'corner-top-right-shape',
1093
1109
  'corner-top-shape',
1094
1110
  'corners',
@@ -1850,7 +1866,9 @@ export const knownContextValues = new Set([
1850
1866
  'greendev',
1851
1867
  'greendev-ai-annotations-enabled',
1852
1868
  'greendev-artifact-viewer-enabled',
1869
+ 'greendev-beyond-styling-antigravity-enabled',
1853
1870
  'greendev-beyond-styling-enabled',
1871
+ 'greendev-beyond-styling-gemini-enabled',
1854
1872
  'greendev-breakpoint-debugger-agent-enabled',
1855
1873
  'greendev-copy-to-gemini-enabled',
1856
1874
  'greendev-emulation-capabilities-enabled',
@@ -2316,6 +2334,7 @@ export const knownContextValues = new Set([
2316
2334
  'lighthouse',
2317
2335
  'lighthouse-report-widget',
2318
2336
  'lighthouse-show-settings-toolbar',
2337
+ 'lighthouse-snapshot-report-widget',
2319
2338
  'lighthouse.audit-summary.average',
2320
2339
  'lighthouse.audit-summary.fail',
2321
2340
  'lighthouse.audit-summary.informative',
@@ -3053,6 +3072,7 @@ export const knownContextValues = new Set([
3053
3072
  'play-recording',
3054
3073
  'player',
3055
3074
  'playing',
3075
+ 'plus-button',
3056
3076
  'pointer',
3057
3077
  'pointer-32-bit',
3058
3078
  'pointer-64-bit',
@@ -3441,6 +3461,7 @@ export const knownContextValues = new Set([
3441
3461
  'script-text-node',
3442
3462
  'scripting',
3443
3463
  'scroll',
3464
+ 'scroll-axis-lock',
3444
3465
  'scroll-behavior',
3445
3466
  'scroll-initial-target',
3446
3467
  'scroll-into-view',
package/mcp/mcp.ts CHANGED
@@ -38,7 +38,7 @@ export {
38
38
  } from '../front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.js';
39
39
  export {AgentFocus} from '../front_end/models/ai_assistance/performance/AIContext.js';
40
40
  export {DebuggerWorkspaceBinding} from '../front_end/models/bindings/DebuggerWorkspaceBinding.js';
41
- export {CrUXManager} from '../front_end/models/crux-manager/CrUXManager.js';
41
+ export * as CrUXManager from '../front_end/models/crux-manager/CrUXManager.js';
42
42
  export * as Formatter from '../front_end/models/formatter/formatter.js';
43
43
  export * as HeapSnapshotModel from '../front_end/models/heap_snapshot/heap_snapshot.js';
44
44
  export {Issue} from '../front_end/models/issues_manager/Issue.js';
package/package.json CHANGED
@@ -96,14 +96,5 @@
96
96
  "yargs": "17.7.2",
97
97
  "js-rouge": "3.2.0"
98
98
  },
99
- "overrides": {
100
- "electron-to-chromium": "1.5.335",
101
- "bare-os": "3.9.0",
102
- "bare-stream": "2.13.0",
103
- "tar-stream": "3.1.5",
104
- "socks": "2.8.7",
105
- "ip-address": "10.1.0",
106
- "basic-ftp": "5.2.2"
107
- },
108
- "version": "1.0.1632065"
99
+ "version": "1.0.1635876"
109
100
  }