chrome-devtools-frontend 1.0.1553956 → 1.0.1555430

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 (85) hide show
  1. package/front_end/Images/src/spark.svg +10 -0
  2. package/front_end/core/protocol_client/InspectorBackend.ts +1 -1
  3. package/front_end/core/root/Runtime.ts +0 -4
  4. package/front_end/core/sdk/DOMModel.ts +101 -7
  5. package/front_end/core/sdk/ResourceTreeModel.ts +0 -1
  6. package/front_end/generated/SupportedCSSProperties.js +18 -0
  7. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +1 -1
  8. package/front_end/models/ai_assistance/agents/StylingAgent.ts +1 -1
  9. package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +1 -1
  10. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +1 -1
  11. package/front_end/{ui/components → models}/annotations/AnnotationRepository.ts +3 -3
  12. package/front_end/models/annotations/README.md +7 -0
  13. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
  14. package/front_end/models/javascript_metadata/NativeFunctions.js +15 -23
  15. package/front_end/models/stack_trace/StackTrace.ts +13 -2
  16. package/front_end/models/stack_trace/StackTraceImpl.ts +81 -6
  17. package/front_end/models/stack_trace/StackTraceModel.ts +35 -3
  18. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +45 -4
  19. package/front_end/panels/ai_assistance/components/ArtifactsViewer.ts +57 -0
  20. package/front_end/panels/ai_assistance/components/ChatView.ts +1 -0
  21. package/front_end/panels/ai_assistance/components/artifactsViewer.css +10 -0
  22. package/front_end/panels/application/BounceTrackingMitigationsTreeElement.ts +2 -6
  23. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +133 -118
  24. package/front_end/panels/application/preloading/PreloadingView.ts +12 -6
  25. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +230 -237
  26. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +96 -79
  27. package/front_end/panels/application/preloading/components/preloadingGrid.css +26 -29
  28. package/front_end/panels/application/preloading/preloadingView.css +6 -0
  29. package/front_end/panels/common/Annotation.ts +1 -1
  30. package/front_end/panels/common/AnnotationManager.ts +1 -1
  31. package/front_end/panels/common/ExtensionView.ts +1 -0
  32. package/front_end/panels/console/ConsoleContextSelector.ts +74 -9
  33. package/front_end/panels/console/consoleContextSelector.css +31 -29
  34. package/front_end/panels/coverage/coverageListView.css +59 -57
  35. package/front_end/panels/elements/ElementsPanel.ts +1 -1
  36. package/front_end/panels/elements/ElementsTreeElement.ts +39 -1
  37. package/front_end/panels/elements/ElementsTreeOutline.ts +23 -21
  38. package/front_end/panels/elements/TopLayerContainer.ts +26 -91
  39. package/front_end/panels/explain/components/ConsoleInsight.ts +3 -3
  40. package/front_end/panels/network/NetworkItemView.ts +1 -1
  41. package/front_end/panels/network/NetworkLogView.ts +1 -1
  42. package/front_end/panels/network/NetworkPanel.ts +1 -1
  43. package/front_end/panels/recorder/RecorderController.ts +0 -1
  44. package/front_end/panels/security/CookieControlsView.ts +21 -10
  45. package/front_end/panels/security/SecurityPanelSidebar.ts +5 -0
  46. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +0 -1
  47. package/front_end/panels/timeline/TimelineUIUtils.ts +5 -8
  48. package/front_end/panels/timeline/components/Sidebar.ts +16 -7
  49. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +169 -129
  50. package/front_end/panels/timeline/components/TimelineSummary.ts +75 -54
  51. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +16 -25
  52. package/front_end/panels/timeline/components/insights/Cache.ts +12 -8
  53. package/front_end/panels/timeline/components/insights/Checklist.ts +53 -43
  54. package/front_end/panels/timeline/components/insights/DOMSize.ts +25 -21
  55. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +6 -3
  56. package/front_end/panels/timeline/components/insights/DuplicatedJavaScript.ts +7 -7
  57. package/front_end/panels/timeline/components/insights/FontDisplay.ts +7 -5
  58. package/front_end/panels/timeline/components/insights/ForcedReflow.ts +11 -9
  59. package/front_end/panels/timeline/components/insights/INPBreakdown.ts +7 -6
  60. package/front_end/panels/timeline/components/insights/ImageDelivery.ts +7 -5
  61. package/front_end/panels/timeline/components/insights/InsightRenderer.ts +20 -18
  62. package/front_end/panels/timeline/components/insights/LCPBreakdown.ts +12 -12
  63. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +7 -3
  64. package/front_end/panels/timeline/components/insights/LegacyJavaScript.ts +7 -7
  65. package/front_end/panels/timeline/components/insights/ModernHTTP.ts +7 -5
  66. package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +15 -13
  67. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +2 -2
  68. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +15 -14
  69. package/front_end/panels/timeline/components/insights/Table.ts +152 -130
  70. package/front_end/panels/timeline/components/insights/ThirdParties.ts +11 -9
  71. package/front_end/panels/timeline/components/sidebarInsightsTab.css +50 -48
  72. package/front_end/panels/timeline/components/timelineSummary.css +58 -57
  73. package/front_end/panels/timeline/thirdPartyTreeView.css +109 -0
  74. package/front_end/panels/timeline/timelineDetailsView.css +2 -4
  75. package/front_end/panels/timeline/timelinePanel.css +0 -110
  76. package/front_end/third_party/chromium/README.chromium +1 -1
  77. package/front_end/ui/components/settings/SettingCheckbox.ts +4 -6
  78. package/front_end/ui/legacy/TabbedPane.ts +20 -13
  79. package/front_end/ui/legacy/ViewManager.ts +2 -32
  80. package/front_end/ui/legacy/Widget.ts +1 -3
  81. package/front_end/ui/legacy/tabbedPane.css +4 -7
  82. package/front_end/ui/visual_logging/KnownContextValues.ts +1 -0
  83. package/package.json +1 -1
  84. /package/front_end/{ui/components → models}/annotations/AnnotationType.ts +0 -0
  85. /package/front_end/{ui/components → models}/annotations/annotations.ts +0 -0
@@ -1,11 +1,10 @@
1
1
  // Copyright 2024 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
- /* eslint-disable @devtools/no-lit-render-outside-of-view */
5
4
 
6
5
  import * as i18n from '../../../../core/i18n/i18n.js';
7
6
  import type * as Trace from '../../../../models/trace/trace.js';
8
- import * as ComponentHelpers from '../../../../ui/components/helpers/helpers.js';
7
+ import * as UI from '../../../../ui/legacy/legacy.js';
9
8
  import * as Lit from '../../../../ui/lit/lit.js';
10
9
 
11
10
  import type * as BaseInsightComponent from './BaseInsightComponent.js';
@@ -48,7 +47,7 @@ export interface TableState {
48
47
  selectionIsSticky: boolean;
49
48
  }
50
49
 
51
- export interface TableData {
50
+ interface TableData {
52
51
  insight: BaseInsightComponent;
53
52
  headers: string[];
54
53
  rows: TableDataRow[];
@@ -60,6 +59,11 @@ export interface TableDataRow {
60
59
  subRows?: TableDataRow[];
61
60
  }
62
61
 
62
+ interface FlattenedTableDataRow {
63
+ row: TableDataRow;
64
+ depth: number;
65
+ }
66
+
63
67
  export function renderOthersLabel(numOthers: number): string {
64
68
  return i18nString(UIStrings.others, {PH1: numOthers});
65
69
  }
@@ -94,113 +98,195 @@ export function createLimitedRows<T>(arr: T[], aggregator: RowLimitAggregator<T>
94
98
  return items;
95
99
  }
96
100
 
97
- export class Table extends HTMLElement {
98
- readonly #shadow = this.attachShadow({mode: 'open'});
101
+ interface ViewInput {
102
+ interactive: boolean;
103
+ headers: string[];
104
+ flattenedRows: FlattenedTableDataRow[];
105
+
106
+ onHoverRow: (row: TableDataRow, rowEl: HTMLElement) => void;
107
+ onClickRow: (row: TableDataRow, rowEl: HTMLElement) => void;
108
+ onMouseLeave: () => void;
109
+ }
110
+
111
+ type View = (input: ViewInput, output: undefined, target: HTMLElement) => void;
112
+
113
+ export const DEFAULT_VIEW: View = (input, output, target) => {
114
+ const {
115
+ interactive,
116
+ headers,
117
+ flattenedRows,
118
+ onHoverRow,
119
+ onClickRow,
120
+ onMouseLeave,
121
+ } = input;
122
+
123
+ const numColumns = headers.length;
124
+
125
+ function renderRow({row, depth}: FlattenedTableDataRow): Lit.TemplateResult {
126
+ const thStyles = Lit.Directives.styleMap({
127
+ paddingLeft: `calc(${depth} * var(--sys-size-5))`,
128
+ backgroundImage: `repeating-linear-gradient(
129
+ to right,
130
+ var(--sys-color-tonal-outline) 0 var(--sys-size-1),
131
+ transparent var(--sys-size-1) var(--sys-size-5)
132
+ )`,
133
+ backgroundPosition: '0 0',
134
+ backgroundRepeat: 'no-repeat',
135
+ backgroundSize: `calc(${depth} * var(--sys-size-5))`,
136
+ });
137
+ const trStyles = Lit.Directives.styleMap({
138
+ color: depth ? 'var(--sys-color-on-surface-subtle)' : '',
139
+ });
140
+ const columnEls = row.values.map(
141
+ (value, i) => i === 0 ? html`<th
142
+ scope="row"
143
+ colspan=${i === row.values.length - 1 ? numColumns - i : 1}
144
+ style=${thStyles}>${value}
145
+ </th>` :
146
+ html`<td>${value}</td>`);
147
+ return html`<tr style=${trStyles}>${columnEls}</tr>`;
148
+ }
149
+
150
+ const findRowAndEl = (el: HTMLElement): {row: TableDataRow, rowEl: HTMLElement} => {
151
+ const rowEl = el.closest('tr') as HTMLTableRowElement;
152
+ const row = flattenedRows[rowEl.sectionRowIndex].row;
153
+ return {row, rowEl};
154
+ };
155
+
156
+ // clang-format off
157
+ Lit.render(html`
158
+ <style>${tableStyles}</style>
159
+ <table
160
+ class=${Lit.Directives.classMap({
161
+ interactive,
162
+ })}
163
+ @mouseleave=${interactive ? onMouseLeave : null}>
164
+ <thead>
165
+ <tr>
166
+ ${headers.map(h => html`<th scope="col">${h}</th>`)}
167
+ </tr>
168
+ </thead>
169
+ <tbody
170
+ @mouseover=${interactive ? (e: Event) => {
171
+ const {row, rowEl} = findRowAndEl(e.target as HTMLElement);
172
+ onHoverRow(row, rowEl);
173
+ } : null}
174
+ @click=${interactive ? (e: Event) => {
175
+ const {row, rowEl} = findRowAndEl(e.target as HTMLElement);
176
+ onClickRow(row, rowEl);
177
+ } : null}
178
+ >${flattenedRows.map(renderRow)}</tbody>
179
+ </table>`,
180
+ target);
181
+ // clang-format on
182
+ };
183
+
184
+ export class Table extends UI.Widget.Widget {
185
+ #view: View;
99
186
  #insight?: BaseInsightComponent;
100
187
  #state?: TableState;
101
188
  #headers?: string[];
102
189
  /** The rows as given as by the user, which may include recursive rows via subRows. */
103
190
  #rows?: TableDataRow[];
104
191
  /** All rows/subRows, in the order that they appear visually. This is the result of traversing `#rows` and any subRows found. */
105
- #flattenedRows?: TableDataRow[];
192
+ #flattenedRows?: FlattenedTableDataRow[];
106
193
  #rowToParentRow = new Map<TableDataRow, TableDataRow>();
107
194
  #interactive = false;
108
- #currentHoverIndex: number|null = null;
195
+ #currentHoverRow: TableDataRow|null = null;
196
+
197
+ constructor(element?: HTMLElement, view: View = DEFAULT_VIEW) {
198
+ super(element, {useShadowDom: true});
199
+ this.#view = view;
200
+ }
109
201
 
110
202
  set data(data: TableData) {
111
203
  this.#insight = data.insight;
112
204
  this.#state = data.insight.sharedTableState;
113
205
  this.#headers = data.headers;
114
206
  this.#rows = data.rows;
207
+ this.#flattenedRows = this.#createFlattenedRows();
115
208
  // If this table isn't interactive, don't attach mouse listeners or use CSS :hover.
116
209
  this.#interactive = this.#rows.some(row => row.overlays || row.subRows?.length);
117
- void ComponentHelpers.ScheduledRender.scheduleRender(this, this.#render);
118
- }
119
-
120
- connectedCallback(): void {
121
- void ComponentHelpers.ScheduledRender.scheduleRender(this, this.#render);
210
+ this.requestUpdate();
122
211
  }
123
212
 
124
- #onHoverRow(e: MouseEvent): void {
125
- if (!this.#flattenedRows) {
126
- return;
213
+ #createFlattenedRows(): FlattenedTableDataRow[] {
214
+ if (!this.#rows) {
215
+ return [];
127
216
  }
128
217
 
129
- if (!(e.target instanceof HTMLElement)) {
130
- return;
218
+ const rowToParentRow = this.#rowToParentRow;
219
+ rowToParentRow.clear();
220
+
221
+ const flattenedRows: FlattenedTableDataRow[] = [];
222
+ function traverse(parent: TableDataRow|null, row: TableDataRow, depth = 0): void {
223
+ if (parent) {
224
+ rowToParentRow.set(row, parent);
225
+ }
226
+
227
+ flattenedRows.push({depth, row});
228
+
229
+ for (const subRow of row.subRows ?? []) {
230
+ traverse(row, subRow, depth + 1);
231
+ }
131
232
  }
132
233
 
133
- const rowEl = e.target.closest('tr');
134
- if (!rowEl?.parentElement) {
135
- return;
234
+ for (const row of this.#rows) {
235
+ traverse(null, row);
136
236
  }
137
237
 
138
- const rowEls = [...rowEl.parentElement.children];
139
- const index = rowEl.sectionRowIndex;
140
- if (index === this.#currentHoverIndex) {
238
+ return flattenedRows;
239
+ }
240
+
241
+ #onHoverRow(row: TableDataRow, rowEl: HTMLElement): void {
242
+ if (row === this.#currentHoverRow) {
141
243
  return;
142
244
  }
143
245
 
144
- for (const el of rowEl.parentElement.querySelectorAll('.hover')) {
246
+ for (const el of this.element.querySelectorAll('.hover')) {
145
247
  el.classList.remove('hover');
146
248
  }
147
249
 
148
250
  // Add 'hover' class to all parent rows.
149
- let row: TableDataRow|undefined = this.#rowToParentRow.get(this.#flattenedRows[index]);
150
- while (row) {
151
- const index = this.#flattenedRows.indexOf(row);
152
- const rowEl = rowEls[index];
251
+ let curRow: TableDataRow|undefined = this.#rowToParentRow.get(row);
252
+ while (curRow) {
153
253
  rowEl.classList.add('hover');
154
- row = this.#rowToParentRow.get(row);
254
+ curRow = this.#rowToParentRow.get(row);
155
255
  }
156
256
 
157
- this.#currentHoverIndex = index;
257
+ this.#currentHoverRow = row;
158
258
  // Temporarily selects the row, but only if there is not already a sticky selection.
159
- this.#onSelectedRowChanged(rowEl, index, {isHover: true});
259
+ this.#onSelectedRowChanged(row, rowEl, {isHover: true});
160
260
  }
161
261
 
162
- #onClickRow(e: MouseEvent): void {
163
- if (!(e.target instanceof HTMLElement)) {
164
- return;
165
- }
166
-
167
- const rowEl = e.target.closest('tr');
168
- if (!rowEl?.parentElement) {
169
- return;
170
- }
171
-
172
- const index = [...rowEl.parentElement.children].indexOf(rowEl);
173
- if (index === -1) {
174
- return;
175
- }
176
-
262
+ #onClickRow(row: TableDataRow, rowEl: HTMLElement): void {
177
263
  // If the desired overlays consist of just a single ENTRY_OUTLINE, then
178
264
  // it is more intuitive to just select the target event.
179
- const overlays = this.#flattenedRows?.[index]?.overlays;
265
+ const overlays = row.overlays;
180
266
  if (overlays?.length === 1 && overlays[0].type === 'ENTRY_OUTLINE') {
181
- this.dispatchEvent(new EventReferenceClick(overlays[0].entry));
267
+ this.element.dispatchEvent(new EventReferenceClick(overlays[0].entry));
182
268
  return;
183
269
  }
184
270
 
185
271
  // Select the row and make it sticky.
186
- this.#onSelectedRowChanged(rowEl, index, {sticky: true});
272
+ this.#onSelectedRowChanged(row, rowEl, {sticky: true});
187
273
  }
188
274
 
189
275
  #onMouseLeave(): void {
190
- for (const el of this.shadowRoot?.querySelectorAll('.hover') ?? []) {
276
+ for (const el of this.element.shadowRoot?.querySelectorAll('.hover') ?? []) {
191
277
  el.classList.remove('hover');
192
278
  }
193
279
 
194
- this.#currentHoverIndex = null;
280
+ this.#currentHoverRow = null;
195
281
  // Unselect the row, unless it's sticky.
196
282
  this.#onSelectedRowChanged(null, null);
197
283
  }
198
284
 
199
- #onSelectedRowChanged(rowEl: HTMLElement|null, rowIndex: number|null, opts: {
285
+ #onSelectedRowChanged(row: TableDataRow|null, rowEl: HTMLElement|null, opts: {
200
286
  sticky?: boolean,
201
287
  isHover?: boolean,
202
288
  } = {}): void {
203
- if (!this.#flattenedRows || !this.#state || !this.#insight) {
289
+ if (!this.#state || !this.#insight) {
204
290
  return;
205
291
  }
206
292
 
@@ -214,8 +300,8 @@ export class Table extends HTMLElement {
214
300
  opts.sticky = false;
215
301
  }
216
302
 
217
- if (rowEl && rowIndex !== null) {
218
- const overlays = this.#flattenedRows[rowIndex].overlays;
303
+ if (rowEl && row) {
304
+ const overlays = row.overlays;
219
305
  if (overlays) {
220
306
  this.#insight.toggleTemporaryOverlays(overlays, {updateTraceWindow: !opts.isHover});
221
307
  }
@@ -229,83 +315,19 @@ export class Table extends HTMLElement {
229
315
  this.#state.selectionIsSticky = opts.sticky ?? false;
230
316
  }
231
317
 
232
- async #render(): Promise<void> {
233
- if (!this.#headers || !this.#rows) {
318
+ override performUpdate(): void {
319
+ if (!this.#headers || !this.#flattenedRows) {
234
320
  return;
235
321
  }
236
322
 
237
- const rowToParentRow = this.#rowToParentRow;
238
- rowToParentRow.clear();
239
-
240
- const numColumns = this.#headers.length;
241
- const flattenedRows: TableDataRow[] = [];
242
- const rowEls: Lit.TemplateResult[] = [];
243
- function traverse(parent: TableDataRow|null, row: TableDataRow, depth = 0): void {
244
- if (parent) {
245
- rowToParentRow.set(row, parent);
246
- }
247
-
248
- const thStyles = Lit.Directives.styleMap({
249
- paddingLeft: `calc(${depth} * var(--sys-size-5))`,
250
- backgroundImage: `repeating-linear-gradient(
251
- to right,
252
- var(--sys-color-tonal-outline) 0 var(--sys-size-1),
253
- transparent var(--sys-size-1) var(--sys-size-5)
254
- )`,
255
- backgroundPosition: '0 0',
256
- backgroundRepeat: 'no-repeat',
257
- backgroundSize: `calc(${depth} * var(--sys-size-5))`,
258
- });
259
- const trStyles = Lit.Directives.styleMap({
260
- color: depth ? 'var(--sys-color-on-surface-subtle)' : '',
261
- });
262
- const columnEls = row.values.map(
263
- (value, i) => i === 0 ? html`<th
264
- scope="row"
265
- colspan=${i === row.values.length - 1 ? numColumns - i : 1}
266
- style=${thStyles}>${value}
267
- </th>` :
268
- html`<td>${value}</td>`);
269
- rowEls.push(html`<tr style=${trStyles}>${columnEls}</tr>`);
270
-
271
- flattenedRows.push(row);
272
-
273
- for (const subRow of row.subRows ?? []) {
274
- traverse(row, subRow, depth + 1);
275
- }
276
- }
277
-
278
- for (const row of this.#rows) {
279
- traverse(null, row);
280
- }
281
-
282
- this.#flattenedRows = flattenedRows;
283
-
284
- Lit.render(
285
- html`<style>${tableStyles}</style>
286
- <table
287
- class=${Lit.Directives.classMap({
288
- interactive: this.#interactive,
289
- })}
290
- @mouseleave=${this.#interactive ? this.#onMouseLeave : null}>
291
- <thead>
292
- <tr>
293
- ${this.#headers.map(h => html`<th scope="col">${h}</th>`)}
294
- </tr>
295
- </thead>
296
- <tbody
297
- @mouseover=${this.#interactive ? this.#onHoverRow : null}
298
- @click=${this.#interactive ? this.#onClickRow : null}
299
- >${rowEls}</tbody>
300
- </table>`,
301
- this.#shadow, {host: this});
323
+ const input: ViewInput = {
324
+ interactive: this.#interactive,
325
+ headers: this.#headers,
326
+ flattenedRows: this.#flattenedRows,
327
+ onHoverRow: this.#onHoverRow.bind(this),
328
+ onClickRow: this.#onClickRow.bind(this),
329
+ onMouseLeave: this.#onMouseLeave.bind(this),
330
+ };
331
+ this.#view(input, undefined, this.contentElement);
302
332
  }
303
333
  }
304
-
305
- declare global {
306
- interface HTMLElementTagNameMap {
307
- 'devtools-performance-table': Table;
308
- }
309
- }
310
-
311
- customElements.define('devtools-performance-table', Table);
@@ -5,14 +5,16 @@
5
5
  import * as i18n from '../../../../core/i18n/i18n.js';
6
6
  import type {ThirdPartiesInsightModel} from '../../../../models/trace/insights/ThirdParties.js';
7
7
  import * as Trace from '../../../../models/trace/trace.js';
8
+ import * as UI from '../../../../ui/legacy/legacy.js';
8
9
  import * as Lit from '../../../../ui/lit/lit.js';
9
10
 
10
11
  import {BaseInsightComponent} from './BaseInsightComponent.js';
11
- import {createLimitedRows, renderOthersLabel, type RowLimitAggregator} from './Table.js';
12
+ import {createLimitedRows, renderOthersLabel, type RowLimitAggregator, Table} from './Table.js';
12
13
 
13
14
  const {UIStrings, i18nString, createOverlaysForSummary} = Trace.Insights.Models.ThirdParties;
14
15
 
15
16
  const {html} = Lit;
17
+ const {widgetConfig} = UI.Widget;
16
18
 
17
19
  const MAX_TO_SHOW = 5;
18
20
 
@@ -77,13 +79,13 @@ export class ThirdParties extends BaseInsightComponent<ThirdPartiesInsightModel>
77
79
  // clang-format off
78
80
  sections.push(html`
79
81
  <div class="insight-section">
80
- <devtools-performance-table
81
- .data=${{
82
+ <devtools-widget .widgetConfig=${widgetConfig(Table, {
83
+ data: {
82
84
  insight: this,
83
85
  headers: [i18nString(UIStrings.columnThirdParty), i18nString(UIStrings.columnTransferSize)],
84
86
  rows,
85
- }}>
86
- </devtools-performance-table>
87
+ }})}>
88
+ </devtools-widget>
87
89
  </div>
88
90
  `);
89
91
  // clang-format on
@@ -94,13 +96,13 @@ export class ThirdParties extends BaseInsightComponent<ThirdPartiesInsightModel>
94
96
  // clang-format off
95
97
  sections.push(html`
96
98
  <div class="insight-section">
97
- <devtools-performance-table
98
- .data=${{
99
+ <devtools-widget .widgetConfig=${widgetConfig(Table, {
100
+ data: {
99
101
  insight: this,
100
102
  headers: [i18nString(UIStrings.columnThirdParty), i18nString(UIStrings.columnMainThreadTime)],
101
103
  rows,
102
- }}>
103
- </devtools-performance-table>
104
+ }})}>
105
+ </devtools-widget>
104
106
  </div>
105
107
  `);
106
108
  // clang-format on
@@ -4,68 +4,70 @@
4
4
  * found in the LICENSE file.
5
5
  */
6
6
 
7
- :host {
8
- display: flex;
9
- flex-flow: column nowrap;
10
- flex-grow: 1;
11
- }
12
-
13
- .insight-sets-wrapper {
14
- display: flex;
15
- flex-flow: column nowrap;
16
- flex-grow: 1; /* so it fills the available vertical height in the sidebar */
17
-
18
- details {
19
- flex-grow: 0;
20
- }
21
-
22
- details[open] {
7
+ @scope to (devtools-widget > *) {
8
+ :host {
9
+ display: flex;
10
+ flex-flow: column nowrap;
23
11
  flex-grow: 1;
24
- border-bottom: 1px solid var(--sys-color-divider);
25
12
  }
26
13
 
27
- summary {
28
- background-color: var(--sys-color-surface2);
29
- border-bottom: 1px solid var(--sys-color-divider);
30
- overflow: hidden;
31
- padding: 2px 5px;
32
- text-overflow: ellipsis;
33
- white-space: nowrap;
34
- font: var(--sys-typescale-body4-medium);
14
+ .insight-sets-wrapper {
35
15
  display: flex;
36
- align-items: center;
16
+ flex-flow: column nowrap;
17
+ flex-grow: 1; /* so it fills the available vertical height in the sidebar */
37
18
 
38
- &:focus {
39
- background-color: var(--sys-color-tonal-container);
19
+ details {
20
+ flex-grow: 0;
40
21
  }
41
22
 
42
- &::marker {
43
- color: var(--sys-color-on-surface-subtle);
44
- font-size: 11px;
45
- line-height: 1;
23
+ details[open] {
24
+ flex-grow: 1;
25
+ border-bottom: 1px solid var(--sys-color-divider);
46
26
  }
47
27
 
48
- /* make sure the first summary has a top border */
49
- details:first-child & {
50
- border-top: 1px solid var(--sys-color-divider);
28
+ summary {
29
+ background-color: var(--sys-color-surface2);
30
+ border-bottom: 1px solid var(--sys-color-divider);
31
+ overflow: hidden;
32
+ padding: 2px 5px;
33
+ text-overflow: ellipsis;
34
+ white-space: nowrap;
35
+ font: var(--sys-typescale-body4-medium);
36
+ display: flex;
37
+ align-items: center;
38
+
39
+ &:focus {
40
+ background-color: var(--sys-color-tonal-container);
41
+ }
42
+
43
+ &::marker {
44
+ color: var(--sys-color-on-surface-subtle);
45
+ font-size: 11px;
46
+ line-height: 1;
47
+ }
48
+
49
+ /* make sure the first summary has a top border */
50
+ details:first-child & {
51
+ border-top: 1px solid var(--sys-color-divider);
52
+ }
51
53
  }
52
54
  }
53
- }
54
-
55
- .zoom-button {
56
- margin-left: auto;
57
- }
58
55
 
59
- .zoom-icon {
60
- visibility: hidden;
56
+ .zoom-button {
57
+ margin-left: auto;
58
+ }
61
59
 
62
- &.active devtools-button {
63
- visibility: visible;
60
+ .zoom-icon {
61
+ visibility: hidden;
62
+
63
+ &.active devtools-button {
64
+ visibility: visible;
65
+ }
64
66
  }
65
- }
66
67
 
67
- .dropdown-icon {
68
- &.active devtools-button {
69
- transform: rotate(90deg);
68
+ .dropdown-icon {
69
+ &.active devtools-button {
70
+ transform: rotate(90deg);
71
+ }
70
72
  }
71
73
  }
@@ -3,69 +3,70 @@
3
3
  * Use of this source code is governed by a BSD-style license that can be
4
4
  * found in the LICENSE file.
5
5
  */
6
+ @scope to (devtools-widget > *){
7
+ .timeline-summary {
8
+ max-height: 100%;
9
+ overflow: hidden auto;
10
+ scrollbar-width: thin; /* ~11px wide reserved for gutter */
11
+ font-size: var(--sys-typescale-body4-size);
12
+ flex-direction: column;
13
+ padding: 0 var(--sys-size-6) var(--sys-size-4) var(--sys-size-8) ;
14
+ /* The category summary can't be more narrow than this, so we'll force a horizontal scrollbar
15
+ */
16
+ min-width: 192px;
17
+ }
6
18
 
7
- :host {
8
- max-height: 100%;
9
- overflow: hidden auto;
10
- scrollbar-width: thin; /* ~11px wide reserved for gutter */
11
- }
19
+ .summary-range {
20
+ font-weight: var(--ref-typeface-weight-medium);
21
+ height: 24.5px;
22
+ line-height: 22px;
23
+ }
12
24
 
13
- .timeline-summary {
14
- font-size: var(--sys-typescale-body4-size);
15
- flex-direction: column;
16
- padding: 0 var(--sys-size-6) var(--sys-size-4) var(--sys-size-8) ;
17
- }
25
+ .category-summary {
26
+ gap: var(--sys-size-4);
27
+ display: flex;
28
+ flex-direction: column;
29
+ }
18
30
 
19
- .summary-range {
20
- font-weight: var(--ref-typeface-weight-medium);
21
- height: 24.5px;
22
- line-height: 22px;
23
- }
31
+ .category-row {
32
+ min-height: 16px;
33
+ line-height: 16px;
34
+ }
24
35
 
25
- .category-summary {
26
- gap: var(--sys-size-4);
27
- display: flex;
28
- flex-direction: column;
29
- }
36
+ .category-swatch {
37
+ display: inline-block;
38
+ width: var(--sys-size-6);
39
+ height: var(--sys-size-6);
40
+ margin-right: var(--sys-size-4);
41
+ top: var(--sys-size-1);
42
+ position: relative;
43
+ border: var(--sys-size-1) solid var(--sys-color-neutral-outline);
44
+ }
30
45
 
31
- .category-row {
32
- min-height: 16px;
33
- line-height: 16px;
34
- }
46
+ .category-name {
47
+ display: inline;
48
+ word-break: break-all;
49
+ }
35
50
 
36
- .category-swatch {
37
- display: inline-block;
38
- width: var(--sys-size-6);
39
- height: var(--sys-size-6);
40
- margin-right: var(--sys-size-4);
41
- top: var(--sys-size-1);
42
- position: relative;
43
- border: var(--sys-size-1) solid var(--sys-color-neutral-outline);
44
- }
51
+ .category-value {
52
+ text-align: right;
53
+ position: relative;
54
+ float: right;
55
+ z-index: 0;
56
+ width: var(--sys-size-19);
57
+ }
45
58
 
46
- .category-name {
47
- display: inline;
48
- word-break: break-all;
49
- }
50
-
51
- .category-value {
52
- text-align: right;
53
- position: relative;
54
- float: right;
55
- z-index: 0;
56
- width: var(--sys-size-19);
57
- }
58
-
59
- .background-bar-container {
60
- position: absolute;
61
- inset: 0 0 0 var(--sys-size-3);
62
- z-index: -1;
63
- }
59
+ .background-bar-container {
60
+ position: absolute;
61
+ inset: 0 0 0 var(--sys-size-3);
62
+ z-index: -1;
63
+ }
64
64
 
65
- .background-bar {
66
- width: 100%;
67
- float: right;
68
- height: var(--sys-size-8);
69
- background-color: var(--sys-color-surface-yellow);
70
- border-bottom: var(--sys-size-1) solid var(--sys-color-yellow-outline);
65
+ .background-bar {
66
+ width: 100%;
67
+ float: right;
68
+ height: var(--sys-size-8);
69
+ background-color: var(--sys-color-surface-yellow);
70
+ border-bottom: var(--sys-size-1) solid var(--sys-color-yellow-outline);
71
+ }
71
72
  }