Skip to content

Commit

Permalink
Build 15-09-2024 (#52)
Browse files Browse the repository at this point in the history
Latest devtools frontend commit:
[83cbe41](https://chromium.googlesource.com/devtools/devtools-frontend.git/+/83cbe41b4107e188a1f66fdf6ea3a9cca42587c6)

Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Sep 15, 2024
1 parent bcbfaa4 commit d71c6fb
Show file tree
Hide file tree
Showing 522 changed files with 6,081 additions and 2,542 deletions.
2 changes: 2 additions & 0 deletions public/Images/Images.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions public/Images/Images.prebundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions public/Images/pause-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/Images/smart-assistant.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/Images/src/pause-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/Images/src/smart-assistant.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 15 additions & 1 deletion public/core/common/SettingRegistration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export interface SettingRegistration {
*/
disabledCondition?: (config?: Root.Runtime.HostConfig) => DisabledConditionResult;
/**
* If a setting is deprecated, define this notice to show an appropriate warning according to the `warning` propertiy.
* If a setting is deprecated, define this notice to show an appropriate warning according to the `warning` property.
* If `disabled` is set, the setting will be disabled in the settings UI. In that case, `experiment` optionally can be
* set to link to an experiment (by experiment name). The information icon in the settings UI can then be clicked to
* jump to the experiment. If a setting is not disabled, the experiment entry will be ignored.
Expand All @@ -129,6 +129,20 @@ export interface SettingRegistration {
warning: () => Platform.UIString.LocalizedString;
experiment?: string;
};
/**
* Optional information to learn more about the setting. If provided, a `(?)` icon will show next to the setting
* in the Settings panel with a link to learn more, and the `tooltip` will be presented to the user when hovering
* the `(?)` icon.
*/
learnMore?: LearnMore;
}
/**
* Metadata to learn more about a setting. The `url` will be used to construct
* a `(?)` icon link and the `tooltip` will be shown when hovering the icon.
*/
export interface LearnMore {
tooltip: () => Platform.UIString.LocalizedString;
url: Platform.DevToolsPath.UrlString;
}
interface LocalizedSettingExtensionOption {
value: boolean | string;
Expand Down
Loading

0 comments on commit d71c6fb

Please sign in to comment.