mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-12 02:58:31 -05:00
Merge VS Code 1.31.1 (#4283)
This commit is contained in:
@@ -10,8 +10,8 @@ export const IIssueService = createDecorator<IIssueService>('issueService');
|
||||
// Since data sent through the service is serialized to JSON, functions will be lost, so Color objects
|
||||
// should not be sent as their 'toString' method will be stripped. Instead convert to strings before sending.
|
||||
export interface WindowStyles {
|
||||
backgroundColor: string;
|
||||
color: string;
|
||||
backgroundColor?: string;
|
||||
color?: string;
|
||||
}
|
||||
export interface WindowData {
|
||||
styles: WindowStyles;
|
||||
@@ -26,19 +26,19 @@ export const enum IssueType {
|
||||
}
|
||||
|
||||
export interface IssueReporterStyles extends WindowStyles {
|
||||
textLinkColor: string;
|
||||
textLinkActiveForeground: string;
|
||||
inputBackground: string;
|
||||
inputForeground: string;
|
||||
inputBorder: string;
|
||||
inputErrorBorder: string;
|
||||
inputActiveBorder: string;
|
||||
buttonBackground: string;
|
||||
buttonForeground: string;
|
||||
buttonHoverBackground: string;
|
||||
sliderBackgroundColor: string;
|
||||
sliderHoverColor: string;
|
||||
sliderActiveColor: string;
|
||||
textLinkColor?: string;
|
||||
textLinkActiveForeground?: string;
|
||||
inputBackground?: string;
|
||||
inputForeground?: string;
|
||||
inputBorder?: string;
|
||||
inputErrorBorder?: string;
|
||||
inputActiveBorder?: string;
|
||||
buttonBackground?: string;
|
||||
buttonForeground?: string;
|
||||
buttonHoverBackground?: string;
|
||||
sliderBackgroundColor?: string;
|
||||
sliderHoverColor?: string;
|
||||
sliderActiveColor?: string;
|
||||
}
|
||||
|
||||
export interface IssueReporterExtensionData {
|
||||
@@ -75,9 +75,9 @@ export interface IssueReporterFeatures {
|
||||
}
|
||||
|
||||
export interface ProcessExplorerStyles extends WindowStyles {
|
||||
hoverBackground: string;
|
||||
hoverForeground: string;
|
||||
highlightForeground: string;
|
||||
hoverBackground?: string;
|
||||
hoverForeground?: string;
|
||||
highlightForeground?: string;
|
||||
}
|
||||
|
||||
export interface ProcessExplorerData extends WindowData {
|
||||
@@ -87,6 +87,6 @@ export interface ProcessExplorerData extends WindowData {
|
||||
|
||||
export interface IIssueService {
|
||||
_serviceBrand: any;
|
||||
openReporter(data: IssueReporterData): Thenable<void>;
|
||||
openProcessExplorer(data: ProcessExplorerData): Thenable<void>;
|
||||
openReporter(data: IssueReporterData): Promise<void>;
|
||||
openProcessExplorer(data: ProcessExplorerData): Promise<void>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user