@codingame/monaco-vscode-markers-service-override 12.0.0 → 13.0.0
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.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +10 -9
- package/vscode/src/vs/workbench/contrib/markers/browser/markers.contribution.js +25 -25
- package/vscode/src/vs/workbench/contrib/markers/browser/markers.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/markers/browser/markersFileDecorations.js +22 -22
- package/vscode/src/vs/workbench/contrib/markers/browser/markersFilterOptions.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/markers/browser/markersFilterOptions.js +5 -5
- package/vscode/src/vs/workbench/contrib/markers/browser/markersModel.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/markers/browser/markersModel.js +9 -9
- package/vscode/src/vs/workbench/contrib/markers/browser/markersTable.d.ts +7 -7
- package/vscode/src/vs/workbench/contrib/markers/browser/markersTable.js +20 -20
- package/vscode/src/vs/workbench/contrib/markers/browser/markersTreeViewer.d.ts +17 -17
- package/vscode/src/vs/workbench/contrib/markers/browser/markersTreeViewer.js +39 -39
- package/vscode/src/vs/workbench/contrib/markers/browser/markersView.d.ts +19 -19
- package/vscode/src/vs/workbench/contrib/markers/browser/markersView.js +38 -38
- package/vscode/src/vs/workbench/contrib/markers/browser/markersViewActions.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/markers/browser/markersViewActions.d.ts +7 -7
- package/vscode/src/vs/workbench/contrib/markers/browser/markersViewActions.js +9 -9
- package/vscode/src/vs/workbench/contrib/markers/browser/media/markers.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/markers/browser/messages.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/markers/browser/messages.js +3 -3
package/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { type IEditorOverrideServices } from "vscode/vscode/vs/editor/standalone/browser/standaloneServices";
|
|
1
|
+
import { type IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices";
|
|
2
2
|
export default function getServiceOverride(): IEditorOverrideServices;
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import 'vscode/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
2
|
+
import '@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
3
3
|
import './vscode/src/vs/workbench/contrib/markers/browser/markers.contribution.js';
|
|
4
4
|
|
|
5
5
|
function getServiceOverride() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-markers-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - markers service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,15 +15,16 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common": "
|
|
19
|
-
"@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "
|
|
20
|
-
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "
|
|
21
|
-
"@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "
|
|
22
|
-
"@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common": "
|
|
23
|
-
"@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "
|
|
24
|
-
|
|
18
|
+
"@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common": "13.0.0",
|
|
19
|
+
"@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.0.0",
|
|
20
|
+
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.0.0",
|
|
21
|
+
"@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "13.0.0",
|
|
22
|
+
"@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common": "13.0.0",
|
|
23
|
+
"@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "13.0.0"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@codingame/monaco-vscode-api": "13.0.0"
|
|
25
27
|
},
|
|
26
|
-
"peerDependencies": {},
|
|
27
28
|
"peerDependenciesMeta": {},
|
|
28
29
|
"main": "index.js",
|
|
29
30
|
"module": "index.js",
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
3
|
import './markersFileDecorations.js';
|
|
4
|
-
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
5
|
-
import { Extensions } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
6
|
-
import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommonCategories';
|
|
7
|
-
import { KeybindingsRegistry, KeybindingWeight } from 'vscode/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
8
|
-
import { KeyCode, KeyMod } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
9
|
-
import { localize, localize2 } from 'vscode/vscode/vs/nls';
|
|
4
|
+
import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
|
|
5
|
+
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
6
|
+
import { Categories } from '@codingame/monaco-vscode-api/vscode/vs/platform/action/common/actionCommonCategories';
|
|
7
|
+
import { KeybindingsRegistry, KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
8
|
+
import { KeyCode, KeyMod } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
9
|
+
import { localize, localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
10
10
|
import { Marker, ResourceMarkers, RelatedInformation } from './markersModel.js';
|
|
11
11
|
import { MarkersView } from './markersView.js';
|
|
12
|
-
import { registerAction2, MenuId, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
13
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
12
|
+
import { registerAction2, MenuId, Action2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
13
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
14
14
|
import { Markers, MarkersContextKeys, MarkersViewMode } from '@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common/vscode/vs/workbench/contrib/markers/common/markers';
|
|
15
15
|
import Messages from './messages.js';
|
|
16
|
-
import { Extensions as Extensions$2 } from 'vscode/vscode/vs/workbench/common/contributions';
|
|
17
|
-
import { LifecyclePhase } from 'vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
18
|
-
import { IClipboardService } from 'vscode/vscode/vs/platform/clipboard/common/clipboardService.service';
|
|
19
|
-
import { Disposable, MutableDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
20
|
-
import { StatusbarAlignment } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
21
|
-
import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar.service';
|
|
22
|
-
import { IMarkerService } from 'vscode/vscode/vs/platform/markers/common/markers.service';
|
|
23
|
-
import { Extensions as Extensions$1, ViewContainerLocation } from 'vscode/vscode/vs/workbench/common/views';
|
|
24
|
-
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
25
|
-
import { FocusedViewContext, getVisbileViewContextKey } from 'vscode/vscode/vs/workbench/common/contextkeys';
|
|
16
|
+
import { Extensions as Extensions$2 } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
|
|
17
|
+
import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
18
|
+
import { IClipboardService } from '@codingame/monaco-vscode-api/vscode/vs/platform/clipboard/common/clipboardService.service';
|
|
19
|
+
import { Disposable, MutableDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
20
|
+
import { StatusbarAlignment } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
21
|
+
import { IStatusbarService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/statusbar/browser/statusbar.service';
|
|
22
|
+
import { IMarkerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers.service';
|
|
23
|
+
import { Extensions as Extensions$1, ViewContainerLocation } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views';
|
|
24
|
+
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
25
|
+
import { FocusedViewContext, getVisbileViewContextKey } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
|
|
26
26
|
import { ViewPaneContainer } from '@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/parts/views/viewPaneContainer';
|
|
27
|
-
import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
|
|
28
|
-
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
29
|
-
import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
27
|
+
import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
|
|
28
|
+
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
29
|
+
import { registerIcon } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/iconRegistry';
|
|
30
30
|
import { ViewAction } from '@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/vscode/vs/workbench/browser/parts/views/viewPane';
|
|
31
31
|
import { NumberBadge } from '@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common/vscode/vs/workbench/services/activity/common/activity';
|
|
32
|
-
import { IActivityService } from 'vscode/vscode/vs/workbench/services/activity/common/activity.service';
|
|
32
|
+
import { IActivityService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/activity/common/activity.service';
|
|
33
33
|
import { viewFilterSubmenu } from '@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/vscode/vs/workbench/browser/parts/views/viewFilter';
|
|
34
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
35
|
-
import { problemsConfigurationNodeBase } from 'vscode/vscode/vs/workbench/common/configuration';
|
|
34
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
35
|
+
import { problemsConfigurationNodeBase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/configuration';
|
|
36
36
|
|
|
37
37
|
KeybindingsRegistry.registerCommandAndKeybindingRule({
|
|
38
38
|
id: Markers.MARKER_OPEN_ACTION_ID,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MarkersFilters } from "./markersViewActions.js";
|
|
2
|
-
import { IView } from "vscode/vscode/vs/workbench/common/views";
|
|
2
|
+
import { IView } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/views";
|
|
3
3
|
import { MarkerElement, ResourceMarkers } from "./markersModel.js";
|
|
4
4
|
import { MarkersViewMode } from "@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common/vscode/vs/workbench/contrib/markers/common/markers";
|
|
5
5
|
export interface IMarkersView extends IView {
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { Extensions as Extensions$1 } from 'vscode/vscode/vs/workbench/common/contributions';
|
|
4
|
-
import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
5
|
-
import { IMarkerService } from 'vscode/vscode/vs/platform/markers/common/markers.service';
|
|
6
|
-
import { IDecorationsService } from 'vscode/vscode/vs/workbench/services/decorations/common/decorations.service';
|
|
7
|
-
import { dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
8
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
9
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
10
|
-
import 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
11
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
12
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
13
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
14
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
15
|
-
import { listErrorForeground, listWarningForeground } from 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
16
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
17
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
18
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
19
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
20
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
21
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
22
|
-
import { Extensions } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
23
|
-
import { LifecyclePhase } from 'vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { Extensions as Extensions$1 } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
|
|
4
|
+
import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers';
|
|
5
|
+
import { IMarkerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers.service';
|
|
6
|
+
import { IDecorationsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/decorations/common/decorations.service';
|
|
7
|
+
import { dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
8
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
9
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
10
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
11
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
12
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
13
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
14
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
15
|
+
import { listErrorForeground, listWarningForeground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
16
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
17
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
18
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
19
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
20
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
21
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
22
|
+
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
23
|
+
import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
24
24
|
|
|
25
25
|
class MarkersDecorationsProvider {
|
|
26
26
|
constructor(_markerService) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { IFilter } from "vscode/vscode/vs/base/common/filters";
|
|
2
|
-
import { IExpression } from "vscode/vscode/vs/base/common/glob";
|
|
3
|
-
import { URI } from "vscode/vscode/vs/base/common/uri";
|
|
4
|
-
import { IUriIdentityService } from "vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
1
|
+
import { IFilter } from "@codingame/monaco-vscode-api/vscode/vs/base/common/filters";
|
|
2
|
+
import { IExpression } from "@codingame/monaco-vscode-api/vscode/vs/base/common/glob";
|
|
3
|
+
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
4
|
+
import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
5
5
|
export declare class ResourceGlobMatcher {
|
|
6
6
|
private readonly globalExpression;
|
|
7
7
|
private readonly expressionsByRoot;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
import { matchesFuzzy2, matchesFuzzy } from 'vscode/vscode/vs/base/common/filters';
|
|
3
|
-
import { parse, getEmptyExpression, splitGlobAware } from 'vscode/vscode/vs/base/common/glob';
|
|
4
|
-
import { rtrim, ltrim } from 'vscode/vscode/vs/base/common/strings';
|
|
5
|
-
import { relativePath } from 'vscode/vscode/vs/base/common/resources';
|
|
6
|
-
import { TernarySearchTree } from 'vscode/vscode/vs/base/common/ternarySearchTree';
|
|
2
|
+
import { matchesFuzzy2, matchesFuzzy } from '@codingame/monaco-vscode-api/vscode/vs/base/common/filters';
|
|
3
|
+
import { parse, getEmptyExpression, splitGlobAware } from '@codingame/monaco-vscode-api/vscode/vs/base/common/glob';
|
|
4
|
+
import { rtrim, ltrim } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings';
|
|
5
|
+
import { relativePath } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
6
|
+
import { TernarySearchTree } from '@codingame/monaco-vscode-api/vscode/vs/base/common/ternarySearchTree';
|
|
7
7
|
|
|
8
8
|
class ResourceGlobMatcher {
|
|
9
9
|
constructor(globalExpression, rootExpressions, uriIdentityService) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
2
|
-
import { IMatch } from "vscode/vscode/vs/base/common/filters";
|
|
3
|
-
import { URI } from "vscode/vscode/vs/base/common/uri";
|
|
4
|
-
import { IRange } from "vscode/vscode/vs/editor/common/core/range";
|
|
5
|
-
import { IMarker, IRelatedInformation } from "vscode/vscode/vs/platform/markers/common/markers";
|
|
1
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
2
|
+
import { IMatch } from "@codingame/monaco-vscode-api/vscode/vs/base/common/filters";
|
|
3
|
+
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
4
|
+
import { IRange } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range";
|
|
5
|
+
import { IMarker, IRelatedInformation } from "@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers";
|
|
6
6
|
export type MarkerElement = ResourceMarkers | Marker | RelatedInformation;
|
|
7
7
|
export declare function compareMarkersByUri(a: IMarker, b: IMarker): number;
|
|
8
8
|
export declare class ResourceMarkers {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
import { isNonEmptyArray } from 'vscode/vscode/vs/base/common/arrays';
|
|
3
|
-
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
4
|
-
import { hash } from 'vscode/vscode/vs/base/common/hash';
|
|
5
|
-
import { ResourceMap } from 'vscode/vscode/vs/base/common/map';
|
|
6
|
-
import { extUri, basename } from 'vscode/vscode/vs/base/common/resources';
|
|
7
|
-
import { splitLines } from 'vscode/vscode/vs/base/common/strings';
|
|
8
|
-
import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
9
|
-
import { MarkerSeverity, IMarkerData } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
10
|
-
import { unsupportedSchemas } from 'vscode/vscode/vs/platform/markers/common/markerService';
|
|
2
|
+
import { isNonEmptyArray } from '@codingame/monaco-vscode-api/vscode/vs/base/common/arrays';
|
|
3
|
+
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
4
|
+
import { hash } from '@codingame/monaco-vscode-api/vscode/vs/base/common/hash';
|
|
5
|
+
import { ResourceMap } from '@codingame/monaco-vscode-api/vscode/vs/base/common/map';
|
|
6
|
+
import { extUri, basename } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
7
|
+
import { splitLines } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings';
|
|
8
|
+
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
9
|
+
import { MarkerSeverity, IMarkerData } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers';
|
|
10
|
+
import { unsupportedSchemas } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markerService';
|
|
11
11
|
|
|
12
12
|
function compareMarkersByUri(a, b) {
|
|
13
13
|
return extUri.compare(a.resource, b.resource);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
2
|
-
import { ITableContextMenuEvent, ITableEvent } from "vscode/vscode/vs/base/browser/ui/table/table";
|
|
3
|
-
import { Disposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
4
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
5
|
-
import { IOpenEvent, IWorkbenchTableOptions } from "vscode/vscode/vs/platform/list/browser/listService";
|
|
1
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
2
|
+
import { ITableContextMenuEvent, ITableEvent } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/table/table";
|
|
3
|
+
import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
4
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
5
|
+
import { IOpenEvent, IWorkbenchTableOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService";
|
|
6
6
|
import { Marker, MarkerTableItem, ResourceMarkers } from "./markersModel.js";
|
|
7
|
-
import { ILabelService } from "vscode/vscode/vs/platform/label/common/label.service";
|
|
7
|
+
import { ILabelService } from "@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service";
|
|
8
8
|
import { FilterOptions } from "./markersFilterOptions.js";
|
|
9
9
|
import { MarkersViewModel } from "./markersTreeViewer.js";
|
|
10
10
|
import { IProblemsWidget } from "./markersView.js";
|
|
11
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
11
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
12
12
|
export declare class MarkersTable extends Disposable implements IProblemsWidget {
|
|
13
13
|
private readonly container;
|
|
14
14
|
private readonly markersViewModel;
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
4
|
-
import { $ as $$1, append, findParentWithClass } from 'vscode/vscode/vs/base/browser/dom';
|
|
5
|
-
import { Event } from 'vscode/vscode/vs/base/common/event';
|
|
6
|
-
import { DisposableStore, Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
7
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
8
|
-
import { WorkbenchTable } from 'vscode/vscode/vs/platform/list/browser/listService';
|
|
9
|
-
import { HighlightedLabel } from 'vscode/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
4
|
+
import { $ as $$1, append, findParentWithClass } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
5
|
+
import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
6
|
+
import { DisposableStore, Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
7
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
8
|
+
import { WorkbenchTable } from '@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService';
|
|
9
|
+
import { HighlightedLabel } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
10
10
|
import { MarkerTableItem, compareMarkersByUri, Marker } from './markersModel.js';
|
|
11
|
-
import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
12
|
-
import { SeverityIcon } from 'vscode/vscode/vs/platform/severityIcon/browser/severityIcon';
|
|
13
|
-
import { ActionBar } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
14
|
-
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service';
|
|
11
|
+
import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers';
|
|
12
|
+
import { SeverityIcon } from '@codingame/monaco-vscode-api/vscode/vs/platform/severityIcon/browser/severityIcon';
|
|
13
|
+
import { ActionBar } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
14
|
+
import { ILabelService } from '@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service';
|
|
15
15
|
import { FilterOptions } from './markersFilterOptions.js';
|
|
16
|
-
import { Link } from 'vscode/vscode/vs/platform/opener/browser/link';
|
|
17
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
16
|
+
import { Link } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/browser/link';
|
|
17
|
+
import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
|
|
18
18
|
import { QuickFixAction, QuickFixActionViewItem } from './markersViewActions.js';
|
|
19
|
-
import { DomEmitter } from 'vscode/vscode/vs/base/browser/event';
|
|
19
|
+
import { DomEmitter } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/event';
|
|
20
20
|
import Messages from './messages.js';
|
|
21
|
-
import { isUndefinedOrNull } from 'vscode/vscode/vs/base/common/types';
|
|
22
|
-
import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
23
|
-
import { unsupportedSchemas } from 'vscode/vscode/vs/platform/markers/common/markerService';
|
|
24
|
-
import Severity from 'vscode/vscode/vs/base/common/severity';
|
|
25
|
-
import { IHoverService } from 'vscode/vscode/vs/platform/hover/browser/hover.service';
|
|
21
|
+
import { isUndefinedOrNull } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
22
|
+
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
23
|
+
import { unsupportedSchemas } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markerService';
|
|
24
|
+
import Severity from '@codingame/monaco-vscode-api/vscode/vs/base/common/severity';
|
|
25
|
+
import { IHoverService } from '@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service';
|
|
26
26
|
|
|
27
27
|
var MarkerSeverityColumnRenderer_1, MarkerCodeColumnRenderer_1, MarkerFileColumnRenderer_1;
|
|
28
28
|
const $ = $$1;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { CountBadge } from "vscode/vscode/vs/base/browser/ui/countBadge/countBadge";
|
|
1
|
+
import { CountBadge } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/countBadge/countBadge";
|
|
2
2
|
import { ResourceLabels, IResourceLabel } from "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/labels";
|
|
3
|
-
import { HighlightedLabel } from "vscode/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel";
|
|
3
|
+
import { HighlightedLabel } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel";
|
|
4
4
|
import { ResourceMarkers, Marker, RelatedInformation, MarkerElement, MarkerTableItem } from "./markersModel.js";
|
|
5
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
6
|
-
import { Disposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
5
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
6
|
+
import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
7
7
|
import { QuickFixAction } from "./markersViewActions.js";
|
|
8
|
-
import { ILabelService } from "vscode/vscode/vs/platform/label/common/label.service";
|
|
9
|
-
import { IListVirtualDelegate } from "vscode/vscode/vs/base/browser/ui/list/list";
|
|
10
|
-
import { ITreeFilter, TreeVisibility, TreeFilterResult, ITreeRenderer, ITreeNode } from "vscode/vscode/vs/base/browser/ui/tree/tree";
|
|
8
|
+
import { ILabelService } from "@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service";
|
|
9
|
+
import { IListVirtualDelegate } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/list/list";
|
|
10
|
+
import { ITreeFilter, TreeVisibility, TreeFilterResult, ITreeRenderer, ITreeNode } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/tree/tree";
|
|
11
11
|
import { FilterOptions } from "./markersFilterOptions.js";
|
|
12
|
-
import { IMatch } from "vscode/vscode/vs/base/common/filters";
|
|
13
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
14
|
-
import { IListAccessibilityProvider } from "vscode/vscode/vs/base/browser/ui/list/listWidget";
|
|
15
|
-
import { URI } from "vscode/vscode/vs/base/common/uri";
|
|
16
|
-
import { IModelService } from "vscode/vscode/vs/editor/common/services/model";
|
|
17
|
-
import { IEditorService } from "vscode/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
18
|
-
import { IOpenerService } from "vscode/vscode/vs/platform/opener/common/opener.service";
|
|
19
|
-
import { ILanguageFeaturesService } from "vscode/vscode/vs/editor/common/services/languageFeatures";
|
|
20
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
12
|
+
import { IMatch } from "@codingame/monaco-vscode-api/vscode/vs/base/common/filters";
|
|
13
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
14
|
+
import { IListAccessibilityProvider } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/list/listWidget";
|
|
15
|
+
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
16
|
+
import { IModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model";
|
|
17
|
+
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
18
|
+
import { IOpenerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service";
|
|
19
|
+
import { ILanguageFeaturesService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures";
|
|
20
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
21
21
|
import { MarkersViewMode } from "@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common/vscode/vs/workbench/contrib/markers/common/markers";
|
|
22
|
-
import { IHoverService } from "vscode/vscode/vs/platform/hover/browser/hover.service";
|
|
22
|
+
import { IHoverService } from "@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service";
|
|
23
23
|
interface IResourceMarkersTemplateData {
|
|
24
24
|
readonly resourceLabel: IResourceLabel;
|
|
25
25
|
readonly count: CountBadge;
|
|
@@ -1,48 +1,48 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { append, $, clearNode, addDisposableListener, EventType } from 'vscode/vscode/vs/base/browser/dom';
|
|
4
|
-
import { dirname, basename as basename$1 } from 'vscode/vscode/vs/base/common/path';
|
|
5
|
-
import { CountBadge } from 'vscode/vscode/vs/base/browser/ui/countBadge/countBadge';
|
|
6
|
-
import { HighlightedLabel } from 'vscode/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
7
|
-
import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { append, $, clearNode, addDisposableListener, EventType } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { dirname, basename as basename$1 } from '@codingame/monaco-vscode-api/vscode/vs/base/common/path';
|
|
5
|
+
import { CountBadge } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/countBadge/countBadge';
|
|
6
|
+
import { HighlightedLabel } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
7
|
+
import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers';
|
|
8
8
|
import { ResourceMarkers, Marker, MarkerTableItem, RelatedInformation } from './markersModel.js';
|
|
9
9
|
import Messages from './messages.js';
|
|
10
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
11
|
-
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
12
|
-
import { DisposableStore, Disposable, toDisposable, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
13
|
-
import { ActionBar } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
10
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
11
|
+
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
12
|
+
import { DisposableStore, Disposable, toDisposable, dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
13
|
+
import { ActionBar } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
14
14
|
import { QuickFixAction, QuickFixActionViewItem } from './markersViewActions.js';
|
|
15
|
-
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service';
|
|
16
|
-
import { basename, isEqual } from 'vscode/vscode/vs/base/common/resources';
|
|
17
|
-
import { TreeVisibility } from 'vscode/vscode/vs/base/browser/ui/tree/tree';
|
|
15
|
+
import { ILabelService } from '@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service';
|
|
16
|
+
import { basename, isEqual } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
17
|
+
import { TreeVisibility } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/tree/tree';
|
|
18
18
|
import { FilterOptions } from './markersFilterOptions.js';
|
|
19
|
-
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
20
|
-
import { isUndefinedOrNull } from 'vscode/vscode/vs/base/common/types';
|
|
21
|
-
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
22
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
23
|
-
import { createCancelablePromise, Delayer } from 'vscode/vscode/vs/base/common/async';
|
|
24
|
-
import { IModelService } from 'vscode/vscode/vs/editor/common/services/model';
|
|
25
|
-
import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
26
|
-
import { getCodeActions, applyCodeAction, ApplyCodeActionReason } from 'vscode/vscode/vs/editor/contrib/codeAction/browser/codeAction';
|
|
27
|
-
import { CodeActionTriggerSource, CodeActionKind } from 'vscode/vscode/vs/editor/contrib/codeAction/common/types';
|
|
28
|
-
import { ACTIVE_GROUP } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
29
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
30
|
-
import { SeverityIcon } from 'vscode/vscode/vs/platform/severityIcon/browser/severityIcon';
|
|
31
|
-
import { CodeActionTriggerType } from 'vscode/vscode/vs/editor/common/languages';
|
|
32
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
33
|
-
import { Progress } from 'vscode/vscode/vs/platform/progress/common/progress';
|
|
34
|
-
import { ActionViewItem } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionViewItems';
|
|
35
|
-
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
36
|
-
import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
37
|
-
import { Link } from 'vscode/vscode/vs/platform/opener/browser/link';
|
|
38
|
-
import { ILanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeatures';
|
|
39
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
19
|
+
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
20
|
+
import { isUndefinedOrNull } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
21
|
+
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
22
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
23
|
+
import { createCancelablePromise, Delayer } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
24
|
+
import { IModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model';
|
|
25
|
+
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
26
|
+
import { getCodeActions, applyCodeAction, ApplyCodeActionReason } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/codeAction/browser/codeAction';
|
|
27
|
+
import { CodeActionTriggerSource, CodeActionKind } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/codeAction/common/types';
|
|
28
|
+
import { ACTIVE_GROUP } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService';
|
|
29
|
+
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
30
|
+
import { SeverityIcon } from '@codingame/monaco-vscode-api/vscode/vs/platform/severityIcon/browser/severityIcon';
|
|
31
|
+
import { CodeActionTriggerType } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages';
|
|
32
|
+
import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
|
|
33
|
+
import { Progress } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress';
|
|
34
|
+
import { ActionViewItem } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionViewItems';
|
|
35
|
+
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
36
|
+
import { registerIcon } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/iconRegistry';
|
|
37
|
+
import { Link } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/browser/link';
|
|
38
|
+
import { ILanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures';
|
|
39
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
40
40
|
import { MarkersViewMode, MarkersContextKeys } from '@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common/vscode/vs/workbench/contrib/markers/common/markers';
|
|
41
|
-
import { unsupportedSchemas } from 'vscode/vscode/vs/platform/markers/common/markerService';
|
|
42
|
-
import { defaultCountBadgeStyles } from 'vscode/vscode/vs/platform/theme/browser/defaultStyles';
|
|
43
|
-
import Severity from 'vscode/vscode/vs/base/common/severity';
|
|
44
|
-
import { getDefaultHoverDelegate } from 'vscode/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
45
|
-
import { IHoverService } from 'vscode/vscode/vs/platform/hover/browser/hover.service';
|
|
41
|
+
import { unsupportedSchemas } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markerService';
|
|
42
|
+
import { defaultCountBadgeStyles } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/browser/defaultStyles';
|
|
43
|
+
import Severity from '@codingame/monaco-vscode-api/vscode/vs/base/common/severity';
|
|
44
|
+
import { getDefaultHoverDelegate } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
45
|
+
import { IHoverService } from '@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service';
|
|
46
46
|
|
|
47
47
|
let MarkersWidgetAccessibilityProvider = class MarkersWidgetAccessibilityProvider {
|
|
48
48
|
constructor(labelService) {
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { ITelemetryService } from "vscode/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
2
|
-
import { IEditorService } from "vscode/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
1
|
+
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
2
|
+
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
3
3
|
import { Marker, ResourceMarkers, MarkerElement, MarkerTableItem } from "./markersModel.js";
|
|
4
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
4
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
5
5
|
import { MarkersFilters } from "./markersViewActions.js";
|
|
6
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
7
|
-
import { IThemeService } from "vscode/vscode/vs/platform/theme/common/themeService.service";
|
|
8
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
9
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
10
|
-
import { ITreeContextMenuEvent, ITreeEvent } from "vscode/vscode/vs/base/browser/ui/tree/tree";
|
|
11
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
12
|
-
import { IOpenEvent } from "vscode/vscode/vs/platform/list/browser/listService";
|
|
6
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
7
|
+
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
8
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
9
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
10
|
+
import { ITreeContextMenuEvent, ITreeEvent } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/tree/tree";
|
|
11
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
12
|
+
import { IOpenEvent } from "@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService";
|
|
13
13
|
import { FilterOptions } from "./markersFilterOptions.js";
|
|
14
|
-
import { IWorkspaceContextService } from "vscode/vscode/vs/platform/workspace/common/workspace.service";
|
|
15
|
-
import { IContextMenuService } from "vscode/vscode/vs/platform/contextview/browser/contextView.service";
|
|
16
|
-
import { IKeybindingService } from "vscode/vscode/vs/platform/keybinding/common/keybinding.service";
|
|
17
|
-
import { IMarkerService } from "vscode/vscode/vs/platform/markers/common/markers.service";
|
|
14
|
+
import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
|
|
15
|
+
import { IContextMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
16
|
+
import { IKeybindingService } from "@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service";
|
|
17
|
+
import { IMarkerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers.service";
|
|
18
18
|
import { IViewPaneOptions, FilterViewPane } from "@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/vscode/vs/workbench/browser/parts/views/viewPane";
|
|
19
|
-
import { IViewDescriptorService } from "vscode/vscode/vs/workbench/common/views.service";
|
|
20
|
-
import { IOpenerService } from "vscode/vscode/vs/platform/opener/common/opener.service";
|
|
21
|
-
import { IUriIdentityService } from "vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
19
|
+
import { IViewDescriptorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service";
|
|
20
|
+
import { IOpenerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service";
|
|
21
|
+
import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
22
22
|
import { IMarkersView } from "./markers.js";
|
|
23
|
-
import { ITableContextMenuEvent, ITableEvent } from "vscode/vscode/vs/base/browser/ui/table/table";
|
|
23
|
+
import { ITableContextMenuEvent, ITableEvent } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/table/table";
|
|
24
24
|
import { MarkersViewMode } from "@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common/vscode/vs/workbench/contrib/markers/common/markers";
|
|
25
|
-
import { IHoverService } from "vscode/vscode/vs/platform/hover/browser/hover.service";
|
|
25
|
+
import { IHoverService } from "@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service";
|
|
26
26
|
export interface IProblemsWidget {
|
|
27
27
|
get contextKeyService(): IContextKeyService;
|
|
28
28
|
get onContextMenu(): Event<ITreeContextMenuEvent<MarkerElement | null>> | Event<ITableContextMenuEvent<MarkerTableItem>>;
|
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
3
|
import './media/markers.css.js';
|
|
4
|
-
import { addDisposableListener, append, $, isActiveElement, clearNode, addStandardDisposableListener, EventType } from 'vscode/vscode/vs/base/browser/dom';
|
|
5
|
-
import { Separator } from 'vscode/vscode/vs/base/common/actions';
|
|
6
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
7
|
-
import { SIDE_GROUP, ACTIVE_GROUP } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
8
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
4
|
+
import { addDisposableListener, append, $, isActiveElement, clearNode, addStandardDisposableListener, EventType } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
5
|
+
import { Separator } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
6
|
+
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
7
|
+
import { SIDE_GROUP, ACTIVE_GROUP } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService';
|
|
8
|
+
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
9
9
|
import { MarkersModel, Marker, RelatedInformation, MarkerTableItem, ResourceMarkers, compareMarkersByUri } from './markersModel.js';
|
|
10
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
10
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
11
11
|
import { MarkersFilters } from './markersViewActions.js';
|
|
12
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
12
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
13
13
|
import Messages from './messages.js';
|
|
14
|
-
import { RangeHighlightDecorations } from 'vscode/vscode/vs/workbench/browser/codeeditor';
|
|
15
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
16
|
-
import { StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
17
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
18
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
19
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
20
|
-
import { Iterable } from 'vscode/vscode/vs/base/common/iterator';
|
|
21
|
-
import { Event, Relay } from 'vscode/vscode/vs/base/common/event';
|
|
22
|
-
import { WorkbenchObjectTree } from 'vscode/vscode/vs/platform/list/browser/listService';
|
|
23
|
-
import { IListService } from 'vscode/vscode/vs/platform/list/browser/listService.service';
|
|
14
|
+
import { RangeHighlightDecorations } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/codeeditor';
|
|
15
|
+
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
16
|
+
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
17
|
+
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
18
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
19
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
20
|
+
import { Iterable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/iterator';
|
|
21
|
+
import { Event, Relay } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
22
|
+
import { WorkbenchObjectTree } from '@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService';
|
|
23
|
+
import { IListService } from '@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService.service';
|
|
24
24
|
import { FilterOptions } from './markersFilterOptions.js';
|
|
25
|
-
import { deepClone } from 'vscode/vscode/vs/base/common/objects';
|
|
26
|
-
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
|
|
25
|
+
import { deepClone } from '@codingame/monaco-vscode-api/vscode/vs/base/common/objects';
|
|
26
|
+
import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
|
|
27
27
|
import { MarkersViewModel, MarkersWidgetAccessibilityProvider, Filter, VirtualDelegate, ResourceMarkersRenderer, MarkerRenderer, RelatedInformationRenderer } from './markersTreeViewer.js';
|
|
28
|
-
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
29
|
-
import { MenuId } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
30
|
-
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
31
|
-
import { StandardKeyboardEvent } from 'vscode/vscode/vs/base/browser/keyboardEvent';
|
|
28
|
+
import { IContextMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service';
|
|
29
|
+
import { MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
30
|
+
import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
31
|
+
import { StandardKeyboardEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/keyboardEvent';
|
|
32
32
|
import { ResourceLabels } from '@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/labels';
|
|
33
|
-
import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
34
|
-
import { IMarkerService } from 'vscode/vscode/vs/platform/markers/common/markers.service';
|
|
33
|
+
import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers';
|
|
34
|
+
import { IMarkerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers.service';
|
|
35
35
|
import { Memento } from '@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/common/memento';
|
|
36
|
-
import { KeyCode } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
36
|
+
import { KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
37
37
|
import { FilterViewPane } from '@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/vscode/vs/workbench/browser/parts/views/viewPane';
|
|
38
|
-
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
39
|
-
import { withSelection } from 'vscode/vscode/vs/platform/opener/common/opener';
|
|
40
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
41
|
-
import { ActionViewItem } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionViewItems';
|
|
42
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
43
|
-
import { DisposableStore, toDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
44
|
-
import { groupBy } from 'vscode/vscode/vs/base/common/arrays';
|
|
45
|
-
import { ResourceMap } from 'vscode/vscode/vs/base/common/map';
|
|
46
|
-
import { EditorResourceAccessor, SideBySideEditor } from 'vscode/vscode/vs/workbench/common/editor';
|
|
38
|
+
import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
|
|
39
|
+
import { withSelection } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener';
|
|
40
|
+
import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
|
|
41
|
+
import { ActionViewItem } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionViewItems';
|
|
42
|
+
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
43
|
+
import { DisposableStore, toDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
44
|
+
import { groupBy } from '@codingame/monaco-vscode-api/vscode/vs/base/common/arrays';
|
|
45
|
+
import { ResourceMap } from '@codingame/monaco-vscode-api/vscode/vs/base/common/map';
|
|
46
|
+
import { EditorResourceAccessor, SideBySideEditor } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
|
|
47
47
|
import { ResourceListDnDHandler } from '@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/browser/dnd';
|
|
48
48
|
import { MarkersTable } from './markersTable.js';
|
|
49
49
|
import { Markers, MarkersContextKeys, MarkersViewMode } from '@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common/vscode/vs/workbench/contrib/markers/common/markers';
|
|
50
50
|
import { registerNavigableContainer } from '@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common/vscode/vs/workbench/browser/actions/widgetNavigationCommands';
|
|
51
|
-
import { IHoverService } from 'vscode/vscode/vs/platform/hover/browser/hover.service';
|
|
52
|
-
import { ResultKind } from 'vscode/vscode/vs/platform/keybinding/common/keybindingResolver';
|
|
51
|
+
import { IHoverService } from '@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service';
|
|
52
|
+
import { ResultKind } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingResolver';
|
|
53
53
|
|
|
54
54
|
function createResourceMarkersIterator(resourceMarkers) {
|
|
55
55
|
return ( Iterable.map(resourceMarkers.markers, m => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import n from 'vscode/external/rollup-plugin-styles/dist/runtime/inject-css';
|
|
1
|
+
import n from '@codingame/monaco-vscode-api/external/rollup-plugin-styles/dist/runtime/inject-css';
|
|
2
2
|
|
|
3
3
|
var css = ".markers-panel-action-filter>.markers-panel-filter-controls>.monaco-action-bar .action-label.markers-filters.checked{background-color:var(--vscode-inputOption-activeBackground);border-color:var(--vscode-inputOption-activeBorder);color:var(--vscode-inputOption-activeForeground)}";
|
|
4
4
|
n(css,{});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as DOM from "vscode/vscode/vs/base/browser/dom";
|
|
2
|
-
import { Action, IAction } from "vscode/vscode/vs/base/common/actions";
|
|
3
|
-
import { IContextMenuService } from "vscode/vscode/vs/platform/contextview/browser/contextView.service";
|
|
4
|
-
import { Disposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
1
|
+
import * as DOM from "@codingame/monaco-vscode-api/vscode/vs/base/browser/dom";
|
|
2
|
+
import { Action, IAction } from "@codingame/monaco-vscode-api/vscode/vs/base/common/actions";
|
|
3
|
+
import { IContextMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
4
|
+
import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
5
5
|
import { Marker } from "./markersModel.js";
|
|
6
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
7
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
8
|
-
import { ActionViewItem, IActionViewItemOptions } from "vscode/vscode/vs/base/browser/ui/actionbar/actionViewItems";
|
|
6
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
7
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
8
|
+
import { ActionViewItem, IActionViewItemOptions } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionViewItems";
|
|
9
9
|
export interface IMarkersFiltersChangeEvent {
|
|
10
10
|
excludedFiles?: boolean;
|
|
11
11
|
showWarnings?: boolean;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { EventHelper, getDomNodePagePosition } from 'vscode/vscode/vs/base/browser/dom';
|
|
4
|
-
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
5
|
-
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { EventHelper, getDomNodePagePosition } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
5
|
+
import { IContextMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service';
|
|
6
6
|
import Messages from './messages.js';
|
|
7
|
-
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
8
|
-
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
9
|
-
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
10
|
-
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
11
|
-
import { ActionViewItem } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionViewItems';
|
|
7
|
+
import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
8
|
+
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
9
|
+
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
10
|
+
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
11
|
+
import { ActionViewItem } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionViewItems';
|
|
12
12
|
import { MarkersContextKeys } from '@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common/vscode/vs/workbench/contrib/markers/common/markers';
|
|
13
13
|
import './markersViewActions.css.js';
|
|
14
14
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import n from 'vscode/external/rollup-plugin-styles/dist/runtime/inject-css';
|
|
1
|
+
import n from '@codingame/monaco-vscode-api/external/rollup-plugin-styles/dist/runtime/inject-css';
|
|
2
2
|
|
|
3
3
|
var css = ".markers-panel .markers-panel-container{height:100%}.markers-panel .hide{display:none}.markers-panel .markers-panel-container .message-box-container{line-height:22px;padding-left:20px}.markers-panel .markers-panel-container .message-box-container .messageAction{cursor:pointer;margin-left:4px;text-decoration:underline}.markers-panel .markers-panel-container .hidden{display:none}.markers-panel .markers-panel-container .codicon.codicon-light-bulb{color:var(--vscode-editorLightBulb-foreground)}.markers-panel .markers-panel-container .codicon.codicon-lightbulb-autofix{color:var(--vscode-editorLightBulbAutoFix-foreground)}.markers-panel .markers-panel-container .tree-container.hidden{display:none;visibility:hidden}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents{display:flex;line-height:22px;padding-right:10px}.monaco-workbench.hc-black .markers-panel .markers-panel-container .tree-container .monaco-tl-contents,.monaco-workbench.hc-light .markers-panel .markers-panel-container .tree-container .monaco-tl-contents{line-height:20px}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-stats{display:inline-block;margin-left:10px}.markers-panel:not(.wide) .markers-panel-container .tree-container .monaco-tl-contents .resource-label-container{flex:1}.markers-panel.wide .markers-panel-container .tree-container .monaco-tl-contents .count-badge-wrapper{margin-left:10px}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-message-details-container{flex:1;overflow:hidden}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-message-details-container>.marker-message-line{overflow:hidden}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-message-details-container>.marker-message-line>.marker-message{overflow:hidden;text-overflow:ellipsis;white-space:pre}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-message-details-container>.marker-message-line.details-container{display:flex}.markers-panel .markers-panel-container .tree-container .monaco-list:focus .monaco-list-row.focused .monaco-tl-contents .details-container a.monaco-link{color:inherit}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .details-container a.monaco-link .monaco-highlighted-label{text-decoration:underline;text-underline-position:under}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-code:before{content:\"(\"}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-code:after{content:\")\"}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .details-container .marker-line,.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .details-container .marker-source,.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .details-container .multiline-actions{margin-left:6px}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-code,.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-line,.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-source,.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .related-info-resource,.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .related-info-resource-separator{opacity:.7}.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .highlight{font-weight:700}.markers-panel .monaco-tl-contents .marker-icon{align-items:center;display:flex;height:22px;justify-content:center;margin:0 6px}.markers-panel .monaco-list-row.focused .monaco-tl-contents>.marker-icon.quickFix,.markers-panel .monaco-list-row.selected .monaco-tl-contents>.marker-icon.quickFix,.markers-panel .monaco-list-row:hover .monaco-tl-contents>.marker-icon.quickFix,.markers-panel .monaco-tl-contents .actions .monaco-action-bar{display:none}.markers-panel .monaco-list-row.focused .monaco-tl-contents .actions .monaco-action-bar,.markers-panel .monaco-list-row.selected .monaco-tl-contents .actions .monaco-action-bar,.markers-panel .monaco-list-row:hover .monaco-tl-contents .actions .monaco-action-bar{display:block}.markers-panel .monaco-tl-contents .actions,.markers-panel .monaco-tl-contents .multiline-actions .monaco-action-bar{height:22px}.markers-panel .monaco-tl-contents .actions .action-label,.markers-panel .monaco-tl-contents .multiline-actions .monaco-action-bar .action-label{padding:2px}.markers-panel .monaco-tl-contents .actions .action-item{margin:0 4px}.markers-panel .monaco-tl-contents .actions .action-item.disabled,.markers-panel .monaco-tl-contents .multiline-actions .action-item.disabled{display:none}.markers-panel .markers-table-container .monaco-table .monaco-table-th{align-items:center;display:flex;font-weight:600;padding-left:10px}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td{align-items:center;display:flex;padding-left:10px}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td .highlight{font-weight:700}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code,.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.file,.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.message,.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.owner{overflow:hidden;text-overflow:ellipsis}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.severity{display:flex}.markers-panel .markers-table-container .monaco-table .monaco-list-row.focused .monaco-table-tr>.monaco-table-td.quickFix>.severity,.markers-panel .markers-table-container .monaco-table .monaco-list-row.selected .monaco-table-tr>.monaco-table-td.quickFix>.severity,.markers-panel .markers-table-container .monaco-table .monaco-list-row:hover .monaco-table-tr>.monaco-table-td.quickFix>.severity{display:none}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.actions{margin-left:-3px}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.actions>.monaco-action-bar .action-item{display:none}.markers-panel .markers-table-container .monaco-table .monaco-list-row.focused .monaco-table-tr>.monaco-table-td.quickFix>.actions>.monaco-action-bar .action-item,.markers-panel .markers-table-container .monaco-table .monaco-list-row.selected .monaco-table-tr>.monaco-table-td.quickFix>.actions>.monaco-action-bar .action-item,.markers-panel .markers-table-container .monaco-table .monaco-list-row:hover .monaco-table-tr>.monaco-table-td.quickFix>.actions>.monaco-action-bar .action-item{display:flex}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code>.code-label:before,.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code>.monaco-link:before{content:\"(\"}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code>.code-label:after,.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code>.monaco-link:after{content:\")\"}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code>.code-label,.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code>.monaco-link{display:none}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code.code-label>.code-label{display:inline}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.code.code-link>.monaco-link{display:inline;text-decoration:underline}.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr>.monaco-table-td>.file>.file-position{margin-left:6px;opacity:.7}";
|
|
4
4
|
n(css,{});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as nls from "vscode/vscode/vs/nls";
|
|
2
|
-
import { IRelatedInformation } from "vscode/vscode/vs/platform/markers/common/markers";
|
|
3
|
-
import { ILocalizedString } from "vscode/vscode/vs/platform/action/common/action";
|
|
1
|
+
import * as nls from "@codingame/monaco-vscode-api/vscode/vs/nls";
|
|
2
|
+
import { IRelatedInformation } from "@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers";
|
|
3
|
+
import { ILocalizedString } from "@codingame/monaco-vscode-api/vscode/vs/platform/action/common/action";
|
|
4
4
|
import { Marker } from "./markersModel.js";
|
|
5
5
|
export default class Messages {
|
|
6
6
|
static MARKERS_PANEL_TOGGLE_LABEL: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
import { localize, localize2 } from 'vscode/vscode/vs/nls';
|
|
3
|
-
import { basename } from 'vscode/vscode/vs/base/common/resources';
|
|
4
|
-
import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
2
|
+
import { localize, localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
3
|
+
import { basename } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
4
|
+
import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers';
|
|
5
5
|
|
|
6
6
|
class Messages {
|
|
7
7
|
static { this.MARKERS_PANEL_TOGGLE_LABEL = ( localize(7095, "Toggle Problems (Errors, Warnings, Infos)")); }
|