@codingame/monaco-vscode-issue-service-override 13.1.4 → 13.1.6

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/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
3
- import { IWorkbenchIssueService, IIssueFormService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/issue/common/issue.service';
3
+ import { IIssueFormService, IWorkbenchIssueService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/issue/common/issue.service';
4
4
  import { TroubleshootIssueService } from './vscode/src/vs/workbench/contrib/issue/browser/issueTroubleshoot.js';
5
5
  import { ITroubleshootIssueService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/issue/browser/issueTroubleshoot.service';
6
6
  import { BrowserIssueService } from './vscode/src/vs/workbench/contrib/issue/browser/issueService.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-issue-service-override",
3
- "version": "13.1.4",
3
+ "version": "13.1.6",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - issue service-override",
6
6
  "keywords": [],
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-89a82baf-8ded-5b2f-b8af-e5fbd72dc5ad-common": "13.1.4",
19
- "@codingame/monaco-vscode-api": "13.1.4"
18
+ "@codingame/monaco-vscode-89a82baf-8ded-5b2f-b8af-e5fbd72dc5ad-common": "13.1.6",
19
+ "@codingame/monaco-vscode-api": "13.1.6"
20
20
  },
21
21
  "main": "index.js",
22
22
  "module": "index.js",
@@ -11,14 +11,14 @@ import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/ext
11
11
  import { normalizeGitHubUrl } from '../common/issueReporterUtil.js';
12
12
  import { IProductService } from '@codingame/monaco-vscode-api/vscode/vs/platform/product/common/productService.service';
13
13
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
14
- import { foreground, textLinkForeground, textLinkActiveForeground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
14
+ import { textLinkActiveForeground, textLinkForeground, foreground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
15
15
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
16
16
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
17
- import { inputBackground, inputForeground, inputBorder, inputActiveOptionBorder, inputValidationErrorBorder, inputValidationErrorBackground, inputValidationErrorForeground, buttonBackground, buttonForeground, buttonHoverBackground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
17
+ import { buttonHoverBackground, buttonForeground, buttonBackground, inputValidationErrorForeground, inputValidationErrorBackground, inputValidationErrorBorder, inputActiveOptionBorder, inputBorder, inputForeground, inputBackground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
18
18
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
19
19
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
20
20
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
21
- import { scrollbarSliderActiveBackground, scrollbarSliderBackground, scrollbarSliderHoverBackground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
21
+ import { scrollbarSliderHoverBackground, scrollbarSliderBackground, scrollbarSliderActiveBackground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
22
22
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
23
23
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
24
24
  import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';