chrome-devtools-frontend 1.0.1002543 → 1.0.1003496
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.
- package/config/gni/devtools_grd_files.gni +1 -0
- package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -0
- package/front_end/core/host/UserMetrics.ts +17 -1
- package/front_end/core/i18n/locales/en-US.json +20 -35
- package/front_end/core/i18n/locales/en-XL.json +20 -35
- package/front_end/core/sdk/TracingModel.ts +5 -4
- package/front_end/devtools_compatibility.js +1 -0
- package/front_end/entrypoints/main/MainImpl.ts +1 -0
- package/front_end/generated/InspectorBackendCommands.js +4 -2
- package/front_end/generated/SupportedCSSProperties.js +3 -5
- package/front_end/generated/protocol.ts +18 -4
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +4 -1
- package/front_end/models/issues_manager/DeprecationIssue.ts +84 -103
- package/front_end/models/issues_manager/descriptions/arInvalidHeader.md +3 -0
- package/front_end/models/persistence/NetworkPersistenceManager.ts +20 -0
- package/front_end/models/timeline_model/TimelineModel.ts +2 -1
- package/front_end/panels/elements/StylesSidebarPane.ts +21 -5
- package/front_end/panels/elements/stylesSidebarPane.css +3 -0
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +14 -0
- package/front_end/panels/lighthouse/LighthouseController.ts +2 -1
- package/front_end/panels/network/NetworkLogView.ts +32 -0
- package/front_end/panels/sources/SourcesNavigator.ts +1 -1
- package/front_end/panels/sources/SourcesPanel.ts +1 -1
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +4 -12
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +409 -409
- package/front_end/third_party/lighthouse/locales/en-US.json +3 -0
- package/front_end/third_party/lighthouse/locales/en-XL.json +3 -0
- package/front_end/third_party/lighthouse/report/bundle.d.ts +2 -22
- package/front_end/third_party/lighthouse/report/bundle.js +5 -354
- package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
- package/front_end/ui/components/text_editor/javascript.ts +6 -15
- package/front_end/ui/legacy/InspectorView.ts +29 -0
- package/package.json +1 -1
- package/scripts/whitespaces.txt +1 -0
@@ -1847,6 +1847,9 @@
|
|
1847
1847
|
"lighthouse-core/audits/work-during-interaction.js | displayValue": {
|
1848
1848
|
"message": "{timeInMs, number, milliseconds} ms spent on event '{interactionType}'"
|
1849
1849
|
},
|
1850
|
+
"lighthouse-core/audits/work-during-interaction.js | eventTarget": {
|
1851
|
+
"message": "Event target"
|
1852
|
+
},
|
1850
1853
|
"lighthouse-core/audits/work-during-interaction.js | failureTitle": {
|
1851
1854
|
"message": "Minimize work during key interaction"
|
1852
1855
|
},
|
@@ -1847,6 +1847,9 @@
|
|
1847
1847
|
"lighthouse-core/audits/work-during-interaction.js | displayValue": {
|
1848
1848
|
"message": "{timeInMs, number, milliseconds} m̂ś ŝṕêńt̂ ón̂ év̂én̂t́ '{interactionType}'"
|
1849
1849
|
},
|
1850
|
+
"lighthouse-core/audits/work-during-interaction.js | eventTarget": {
|
1851
|
+
"message": "Êv́êńt̂ t́âŕĝét̂"
|
1852
|
+
},
|
1850
1853
|
"lighthouse-core/audits/work-during-interaction.js | failureTitle": {
|
1851
1854
|
"message": "M̂ín̂ím̂íẑé ŵór̂ḱ d̂úr̂ín̂ǵ k̂éŷ ín̂t́êŕâćt̂íôń"
|
1852
1855
|
},
|
@@ -10,13 +10,6 @@ export type CRCSegment = {
|
|
10
10
|
transferSize: number;
|
11
11
|
treeMarkers: boolean[];
|
12
12
|
};
|
13
|
-
export type LineDetails = {
|
14
|
-
content: string;
|
15
|
-
lineNumber: string | number;
|
16
|
-
contentType: LineContentType;
|
17
|
-
truncated?: boolean;
|
18
|
-
visibility?: LineVisibility;
|
19
|
-
};
|
20
13
|
/**
|
21
14
|
* @license
|
22
15
|
* Copyright 2017 The Lighthouse Authors. All Rights Reserved.
|
@@ -306,19 +299,6 @@ export function format(_: any): void;
|
|
306
299
|
*/
|
307
300
|
export function renderReport(lhr: LH.Result, opts?: LH.Renderer.Options): HTMLElement;
|
308
301
|
export function swapLocale(_: any): void;
|
309
|
-
type LineContentType = number;
|
310
|
-
declare namespace LineContentType {
|
311
|
-
const CONTENT_NORMAL: number;
|
312
|
-
const CONTENT_HIGHLIGHTED: number;
|
313
|
-
const PLACEHOLDER: number;
|
314
|
-
const MESSAGE: number;
|
315
|
-
}
|
316
|
-
type LineVisibility = number;
|
317
|
-
declare namespace LineVisibility {
|
318
|
-
const ALWAYS: number;
|
319
|
-
const WHEN_COLLAPSED: number;
|
320
|
-
const WHEN_EXPANDED: number;
|
321
|
-
}
|
322
302
|
/**
|
323
303
|
* @license
|
324
304
|
* Copyright 2017 The Lighthouse Authors. All Rights Reserved.
|
@@ -715,10 +695,10 @@ declare class DetailsRenderer {
|
|
715
695
|
*/
|
716
696
|
_renderTable(details: OpportunityTable | Table): Element;
|
717
697
|
/**
|
718
|
-
* @param {LH.Audit.Details.List} details
|
698
|
+
* @param {LH.FormattedIcu<LH.Audit.Details.List>} details
|
719
699
|
* @return {Element}
|
720
700
|
*/
|
721
|
-
_renderList(details: LH.Audit.Details.List): Element;
|
701
|
+
_renderList(details: LH.FormattedIcu<LH.Audit.Details.List>): Element;
|
722
702
|
/**
|
723
703
|
* @param {LH.Audit.Details.NodeValue} item
|
724
704
|
* @return {Element}
|