@codingame/monaco-vscode-markers-service-override 20.1.1 → 20.2.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-markers-service-override",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - markers service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-262ed59d-4f76-57cd-9e9f-1877f26ae049-common": "20.
|
|
19
|
-
"@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.
|
|
20
|
-
"@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "20.
|
|
21
|
-
"@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common": "20.
|
|
22
|
-
"@codingame/monaco-vscode-ab07af84-42e8-5a0f-8aef-b83fb90ede21-common": "20.
|
|
23
|
-
"@codingame/monaco-vscode-api": "20.
|
|
24
|
-
"@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "20.
|
|
18
|
+
"@codingame/monaco-vscode-262ed59d-4f76-57cd-9e9f-1877f26ae049-common": "20.2.0",
|
|
19
|
+
"@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.2.0",
|
|
20
|
+
"@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "20.2.0",
|
|
21
|
+
"@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common": "20.2.0",
|
|
22
|
+
"@codingame/monaco-vscode-ab07af84-42e8-5a0f-8aef-b83fb90ede21-common": "20.2.0",
|
|
23
|
+
"@codingame/monaco-vscode-api": "20.2.0",
|
|
24
|
+
"@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "20.2.0"
|
|
25
25
|
},
|
|
26
26
|
"main": "index.js",
|
|
27
27
|
"module": "index.js",
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/*---------------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
+
*--------------------------------------------------------------------------------------------*/
|
|
5
|
+
|
|
1
6
|
.markers-panel-action-filter > .markers-panel-filter-controls > .monaco-action-bar .action-label.markers-filters.checked {
|
|
2
7
|
border-color: var(--vscode-inputOption-activeBorder);
|
|
3
8
|
color: var(--vscode-inputOption-activeForeground);
|
|
@@ -1,83 +1,110 @@
|
|
|
1
|
+
/*---------------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
+
*--------------------------------------------------------------------------------------------*/
|
|
5
|
+
|
|
1
6
|
.markers-panel .markers-panel-container {
|
|
2
7
|
height: 100%;
|
|
3
8
|
}
|
|
9
|
+
|
|
4
10
|
.markers-panel .hide {
|
|
5
11
|
display: none;
|
|
6
12
|
}
|
|
13
|
+
|
|
7
14
|
.markers-panel .markers-panel-container .message-box-container {
|
|
8
15
|
line-height: 22px;
|
|
9
16
|
padding-left: 20px;
|
|
10
17
|
}
|
|
18
|
+
|
|
11
19
|
.markers-panel .markers-panel-container .message-box-container .messageAction {
|
|
12
20
|
margin-left: 4px;
|
|
13
21
|
cursor: pointer;
|
|
14
22
|
text-decoration: underline;
|
|
15
23
|
}
|
|
24
|
+
|
|
16
25
|
.markers-panel .markers-panel-container .hidden {
|
|
17
26
|
display: none;
|
|
18
27
|
}
|
|
28
|
+
|
|
19
29
|
.markers-panel .markers-panel-container .codicon.codicon-light-bulb {
|
|
20
30
|
color: var(--vscode-editorLightBulb-foreground);
|
|
21
31
|
}
|
|
32
|
+
|
|
22
33
|
.markers-panel .markers-panel-container .codicon.codicon-lightbulb-autofix {
|
|
23
34
|
color: var(--vscode-editorLightBulbAutoFix-foreground);
|
|
24
35
|
}
|
|
36
|
+
|
|
25
37
|
.markers-panel .markers-panel-container .tree-container.hidden {
|
|
26
38
|
display: none;
|
|
27
39
|
visibility: hidden;
|
|
28
40
|
}
|
|
41
|
+
|
|
29
42
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents {
|
|
30
43
|
display: flex;
|
|
31
44
|
line-height: 22px;
|
|
32
45
|
padding-right: 10px;
|
|
33
46
|
}
|
|
47
|
+
|
|
34
48
|
.monaco-workbench.hc-black .markers-panel .markers-panel-container .tree-container .monaco-tl-contents,
|
|
35
49
|
.monaco-workbench.hc-light .markers-panel .markers-panel-container .tree-container .monaco-tl-contents {
|
|
36
50
|
line-height: 20px;
|
|
37
51
|
}
|
|
52
|
+
|
|
38
53
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-stats {
|
|
39
54
|
display: inline-block;
|
|
40
55
|
margin-left: 10px;
|
|
41
56
|
}
|
|
57
|
+
|
|
42
58
|
.markers-panel:not(.wide) .markers-panel-container .tree-container .monaco-tl-contents .resource-label-container {
|
|
43
59
|
flex: 1;
|
|
44
60
|
}
|
|
61
|
+
|
|
45
62
|
.markers-panel.wide .markers-panel-container .tree-container .monaco-tl-contents .count-badge-wrapper {
|
|
46
63
|
margin-left: 10px;
|
|
47
64
|
}
|
|
65
|
+
|
|
48
66
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-message-details-container {
|
|
49
67
|
flex: 1;
|
|
50
68
|
overflow: hidden;
|
|
51
69
|
}
|
|
70
|
+
|
|
52
71
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-message-details-container > .marker-message-line {
|
|
53
72
|
overflow: hidden;
|
|
54
73
|
}
|
|
74
|
+
|
|
55
75
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-message-details-container > .marker-message-line > .marker-message {
|
|
56
76
|
overflow: hidden;
|
|
57
77
|
text-overflow: ellipsis;
|
|
58
78
|
white-space: pre;
|
|
59
79
|
}
|
|
80
|
+
|
|
60
81
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-message-details-container > .marker-message-line.details-container {
|
|
61
82
|
display: flex;
|
|
62
83
|
}
|
|
84
|
+
|
|
63
85
|
.markers-panel .markers-panel-container .tree-container .monaco-list:focus .monaco-list-row.focused .monaco-tl-contents .details-container a.monaco-link {
|
|
64
86
|
color: inherit;
|
|
65
87
|
}
|
|
88
|
+
|
|
66
89
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .details-container a.monaco-link .monaco-highlighted-label {
|
|
67
90
|
text-decoration: underline;
|
|
68
91
|
text-underline-position: under;
|
|
69
92
|
}
|
|
93
|
+
|
|
70
94
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-code:before {
|
|
71
95
|
content: '(';
|
|
72
96
|
}
|
|
97
|
+
|
|
73
98
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-code:after {
|
|
74
99
|
content: ')';
|
|
75
100
|
}
|
|
101
|
+
|
|
76
102
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .details-container .multiline-actions,
|
|
77
103
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .details-container .marker-source,
|
|
78
104
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .details-container .marker-line {
|
|
79
105
|
margin-left: 6px;
|
|
80
106
|
}
|
|
107
|
+
|
|
81
108
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-source,
|
|
82
109
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .related-info-resource,
|
|
83
110
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .related-info-resource-separator,
|
|
@@ -85,9 +112,11 @@
|
|
|
85
112
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .marker-code {
|
|
86
113
|
opacity: 0.7;
|
|
87
114
|
}
|
|
115
|
+
|
|
88
116
|
.markers-panel .markers-panel-container .tree-container .monaco-tl-contents .highlight {
|
|
89
117
|
font-weight: bold;
|
|
90
118
|
}
|
|
119
|
+
|
|
91
120
|
.markers-panel .monaco-tl-contents .marker-icon {
|
|
92
121
|
height: 22px;
|
|
93
122
|
margin: 0 6px;
|
|
@@ -95,48 +124,61 @@
|
|
|
95
124
|
align-items: center;
|
|
96
125
|
justify-content: center;
|
|
97
126
|
}
|
|
127
|
+
|
|
98
128
|
.markers-panel .monaco-tl-contents .actions .monaco-action-bar {
|
|
99
129
|
display: none;
|
|
100
130
|
}
|
|
131
|
+
|
|
101
132
|
.markers-panel .monaco-list-row:hover .monaco-tl-contents > .marker-icon.quickFix,
|
|
102
133
|
.markers-panel .monaco-list-row.selected .monaco-tl-contents > .marker-icon.quickFix,
|
|
103
134
|
.markers-panel .monaco-list-row.focused .monaco-tl-contents > .marker-icon.quickFix {
|
|
104
135
|
display: none;
|
|
105
136
|
}
|
|
137
|
+
|
|
106
138
|
.markers-panel .monaco-list-row:hover .monaco-tl-contents .actions .monaco-action-bar,
|
|
107
139
|
.markers-panel .monaco-list-row.selected .monaco-tl-contents .actions .monaco-action-bar,
|
|
108
140
|
.markers-panel .monaco-list-row.focused .monaco-tl-contents .actions .monaco-action-bar {
|
|
109
141
|
display: block;
|
|
110
142
|
}
|
|
143
|
+
|
|
111
144
|
.markers-panel .monaco-tl-contents .actions,
|
|
112
145
|
.markers-panel .monaco-tl-contents .multiline-actions .monaco-action-bar {
|
|
113
146
|
height: 22px;
|
|
114
147
|
}
|
|
148
|
+
|
|
115
149
|
.markers-panel .monaco-tl-contents .actions .action-label,
|
|
116
150
|
.markers-panel .monaco-tl-contents .multiline-actions .monaco-action-bar .action-label {
|
|
117
151
|
padding: 2px;
|
|
118
152
|
}
|
|
153
|
+
|
|
119
154
|
.markers-panel .monaco-tl-contents .actions .action-item {
|
|
120
155
|
margin: 0 4px;
|
|
121
156
|
}
|
|
157
|
+
|
|
122
158
|
.markers-panel .monaco-tl-contents .multiline-actions .action-item.disabled,
|
|
123
159
|
.markers-panel .monaco-tl-contents .actions .action-item.disabled {
|
|
124
160
|
display: none;
|
|
125
161
|
}
|
|
162
|
+
|
|
163
|
+
/* Table */
|
|
164
|
+
|
|
126
165
|
.markers-panel .markers-table-container .monaco-table .monaco-table-th {
|
|
127
166
|
display: flex;
|
|
128
167
|
font-weight: 600;
|
|
129
168
|
align-items: center;
|
|
130
169
|
padding-left: 10px;
|
|
131
170
|
}
|
|
171
|
+
|
|
132
172
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td {
|
|
133
173
|
display: flex;
|
|
134
174
|
align-items: center;
|
|
135
175
|
padding-left: 10px;
|
|
136
176
|
}
|
|
177
|
+
|
|
137
178
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td .highlight {
|
|
138
179
|
font-weight: bold;
|
|
139
180
|
}
|
|
181
|
+
|
|
140
182
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code,
|
|
141
183
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .message,
|
|
142
184
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .file,
|
|
@@ -144,44 +186,55 @@
|
|
|
144
186
|
overflow: hidden;
|
|
145
187
|
text-overflow: ellipsis;
|
|
146
188
|
}
|
|
189
|
+
|
|
147
190
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .severity {
|
|
148
191
|
display: flex;
|
|
149
192
|
}
|
|
193
|
+
|
|
150
194
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row.selected .monaco-table-tr > .monaco-table-td.quickFix > .severity,
|
|
151
195
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row.focused .monaco-table-tr > .monaco-table-td.quickFix > .severity,
|
|
152
196
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row:hover .monaco-table-tr > .monaco-table-td.quickFix > .severity {
|
|
153
197
|
display: none;
|
|
154
198
|
}
|
|
199
|
+
|
|
155
200
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .actions {
|
|
156
201
|
margin-left: -3px;
|
|
157
202
|
}
|
|
203
|
+
|
|
158
204
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .actions > .monaco-action-bar .action-item {
|
|
159
205
|
display: none;
|
|
160
206
|
}
|
|
207
|
+
|
|
161
208
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row.selected .monaco-table-tr > .monaco-table-td.quickFix > .actions > .monaco-action-bar .action-item,
|
|
162
209
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row.focused .monaco-table-tr > .monaco-table-td.quickFix > .actions > .monaco-action-bar .action-item,
|
|
163
210
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row:hover .monaco-table-tr > .monaco-table-td.quickFix > .actions > .monaco-action-bar .action-item {
|
|
164
211
|
display: flex;
|
|
165
212
|
}
|
|
213
|
+
|
|
166
214
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code > .monaco-link::before,
|
|
167
215
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code > .code-label::before {
|
|
168
216
|
content: '(';
|
|
169
217
|
}
|
|
218
|
+
|
|
170
219
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code > .monaco-link::after,
|
|
171
220
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code > .code-label::after {
|
|
172
221
|
content: ')';
|
|
173
222
|
}
|
|
223
|
+
|
|
174
224
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code > .code-label,
|
|
175
225
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code > .monaco-link {
|
|
176
226
|
display: none;
|
|
177
227
|
}
|
|
228
|
+
|
|
178
229
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code.code-label > .code-label {
|
|
179
230
|
display: inline;
|
|
180
231
|
}
|
|
232
|
+
|
|
181
233
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .code.code-link > .monaco-link {
|
|
182
234
|
display: inline;
|
|
183
235
|
text-decoration: underline;
|
|
184
236
|
}
|
|
237
|
+
|
|
185
238
|
.markers-panel .markers-table-container .monaco-table .monaco-list-row .monaco-table-tr > .monaco-table-td > .file > .file-position {
|
|
186
239
|
margin-left: 6px;
|
|
187
240
|
opacity: 0.7;
|