chrome-devtools-frontend 1.0.1581449 → 1.0.1581708
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/agents/prompts/merging-devtools-module.md +144 -0
- package/agents/prompts/ui-widgets.md +351 -0
- package/agents/prompts/verification.md +2 -1
- package/docs/contributing/README.md +5 -6
- package/docs/contributing/changes.md +1 -2
- package/docs/styleguide/ux/README.md +1 -1
- package/front_end/core/sdk/OverlayModel.ts +4 -2
- package/front_end/core/sdk/StorageKeyManager.ts +6 -1
- package/front_end/core/sdk/Target.ts +4 -2
- package/front_end/entrypoints/greendev_floaty/FloatyEntrypoint.ts +22 -16
- package/front_end/entrypoints/greendev_floaty/floaty.css +41 -1
- package/front_end/entrypoints/greendev_floaty/floaty.html +8 -1
- package/front_end/entrypoints/greendev_floaty/greendev_floaty.ts +4 -4
- package/front_end/entrypoints/node_app/app/NodeMain.ts +19 -1
- package/front_end/entrypoints/node_app/node_app.ts +34 -0
- package/front_end/models/ai_assistance/AiConversation.ts +10 -0
- package/front_end/models/ai_assistance/agents/AiAgent.ts +2 -0
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.snapshot.txt +22 -0
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +71 -1
- package/front_end/models/computed_style/ComputedStyleModel.ts +26 -0
- package/front_end/models/issues_manager/CookieIssue.ts +0 -28
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +87 -6
- package/front_end/panels/ai_assistance/components/ChatInput.ts +1 -1
- package/front_end/panels/application/ApplicationPanelSidebar.ts +13 -11
- package/front_end/panels/application/DOMStorageModel.ts +1 -1
- package/front_end/panels/application/ResourcesPanel.ts +10 -5
- package/front_end/panels/common/AiCodeCompletionTeaser.ts +13 -3
- package/front_end/panels/common/aiCodeCompletionTeaser.css +6 -0
- package/front_end/panels/console_counters/WarningErrorCounter.ts +16 -10
- package/front_end/panels/elements/ComputedStyleWidget.ts +55 -37
- package/front_end/panels/elements/PlatformFontsWidget.ts +23 -10
- package/front_end/panels/greendev/GreenDevPanel.css +42 -1
- package/front_end/panels/greendev/GreenDevPanel.ts +30 -1
- package/front_end/panels/network/RequestInitiatorView.ts +8 -11
- package/front_end/panels/network/RequestTimingView.ts +1 -1
- package/front_end/panels/settings/KeybindsSettingsTab.ts +4 -3
- package/front_end/panels/sources/OutlineQuickOpen.ts +19 -0
- package/front_end/panels/timeline/TimelinePanel.ts +25 -0
- package/front_end/third_party/lighthouse/README.chromium +2 -2
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +145 -144
- package/front_end/third_party/lighthouse/report/bundle.js +12 -5
- package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +2 -2
- package/front_end/ui/legacy/ListControl.ts +28 -1
- package/front_end/ui/legacy/Treeoutline.ts +1 -1
- package/front_end/ui/legacy/UIUtils.ts +17 -7
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +4 -2
- package/front_end/ui/visual_logging/KnownContextValues.ts +2 -0
- package/inspector_overlay/main.ts +18 -3
- package/inspector_overlay/tool_green_dev_anchors.css +54 -0
- package/inspector_overlay/tool_green_dev_anchors.ts +164 -0
- package/inspector_overlay/tool_persistent.ts +14 -0
- package/package.json +1 -1
- package/docs/contributing/design.md +0 -166
- package/docs/design_guidelines.md +0 -1
|
@@ -601,6 +601,10 @@ var De=.8999999999999999,Pe=.5,Re=.49999999999999994;function Ne(r){let e=Math.s
|
|
|
601
601
|
--section-padding-vertical: 8px;
|
|
602
602
|
}
|
|
603
603
|
|
|
604
|
+
.lh-devtools :focus-visible {
|
|
605
|
+
outline: -webkit-focus-ring-color auto 1px;
|
|
606
|
+
}
|
|
607
|
+
|
|
604
608
|
.lh-container:has(.lh-sticky-header) {
|
|
605
609
|
--sticky-header-buffer: calc(var(--topbar-height) + var(--sticky-header-height));
|
|
606
610
|
}
|
|
@@ -2195,8 +2199,8 @@ details[open] .lh-clump-toggletext--hide { display: block;}
|
|
|
2195
2199
|
*/
|
|
2196
2200
|
@media screen and (max-width: 535px) {
|
|
2197
2201
|
.lh-tooltip {
|
|
2198
|
-
min-width:
|
|
2199
|
-
padding:
|
|
2202
|
+
min-width: 45cqi;
|
|
2203
|
+
padding: 3cqi;
|
|
2200
2204
|
}
|
|
2201
2205
|
}
|
|
2202
2206
|
|
|
@@ -2205,8 +2209,8 @@ details[open] .lh-clump-toggletext--hide { display: block;}
|
|
|
2205
2209
|
*/
|
|
2206
2210
|
@container lh-container (max-width: 535px) {
|
|
2207
2211
|
.lh-tooltip {
|
|
2208
|
-
min-width:
|
|
2209
|
-
padding:
|
|
2212
|
+
min-width: 45cqi;
|
|
2213
|
+
padding: 3cqi;
|
|
2210
2214
|
}
|
|
2211
2215
|
}
|
|
2212
2216
|
|
|
@@ -2342,6 +2346,10 @@ details[open] .lh-clump-toggletext--hide { display: block;}
|
|
|
2342
2346
|
left: 6px;
|
|
2343
2347
|
}
|
|
2344
2348
|
|
|
2349
|
+
.lh-meta__item:hover .lh-tooltip {
|
|
2350
|
+
right: auto;
|
|
2351
|
+
left: 6px;
|
|
2352
|
+
}
|
|
2345
2353
|
/**
|
|
2346
2354
|
* This media query is a temporary fallback for browsers that do not support \`@container query\`.
|
|
2347
2355
|
* TODO: remove this media query when \`@container query\` is fully supported by browsers
|
|
@@ -2657,7 +2665,6 @@ details[open] .lh-clump-toggletext--hide { display: block;}
|
|
|
2657
2665
|
border: none;
|
|
2658
2666
|
padding: 0;
|
|
2659
2667
|
font: inherit;
|
|
2660
|
-
outline: inherit;
|
|
2661
2668
|
}
|
|
2662
2669
|
.lh-tools__button svg {
|
|
2663
2670
|
fill: var(--tools-icon-color);
|