@codingame/monaco-vscode-workbench-service-override 24.2.0 → 25.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-workbench-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "25.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - workbench service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "
|
|
19
|
-
"@codingame/monaco-vscode-keybindings-service-override": "
|
|
20
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "
|
|
21
|
-
"@codingame/monaco-vscode-view-banner-service-override": "
|
|
22
|
-
"@codingame/monaco-vscode-view-common-service-override": "
|
|
23
|
-
"@codingame/monaco-vscode-view-status-bar-service-override": "
|
|
24
|
-
"@codingame/monaco-vscode-view-title-bar-service-override": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "25.0.0",
|
|
19
|
+
"@codingame/monaco-vscode-keybindings-service-override": "25.0.0",
|
|
20
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "25.0.0",
|
|
21
|
+
"@codingame/monaco-vscode-view-banner-service-override": "25.0.0",
|
|
22
|
+
"@codingame/monaco-vscode-view-common-service-override": "25.0.0",
|
|
23
|
+
"@codingame/monaco-vscode-view-status-bar-service-override": "25.0.0",
|
|
24
|
+
"@codingame/monaco-vscode-view-title-bar-service-override": "25.0.0"
|
|
25
25
|
},
|
|
26
26
|
"main": "index.js",
|
|
27
27
|
"module": "index.js",
|
|
@@ -55,7 +55,7 @@ class NotificationAccessibleView {
|
|
|
55
55
|
if (!notification || !message) {
|
|
56
56
|
return;
|
|
57
57
|
}
|
|
58
|
-
return withSeverityPrefix(notification.source ? ( localize(
|
|
58
|
+
return withSeverityPrefix(notification.source ? ( localize(3524, '{0} Source: {1}', message, notification.source)) : message, notification.severity);
|
|
59
59
|
}
|
|
60
60
|
const content = getContentForNotification();
|
|
61
61
|
if (!content) {
|
|
@@ -118,7 +118,7 @@ function getActionsFromNotification(notification, accessibilitySignalService) {
|
|
|
118
118
|
}
|
|
119
119
|
if (actions) {
|
|
120
120
|
actions.push({
|
|
121
|
-
id: 'clearNotification', label: ( localize(
|
|
121
|
+
id: 'clearNotification', label: ( localize(3525, "Clear Notification")), tooltip: ( localize(3525, "Clear Notification")), run: () => {
|
|
122
122
|
notification.close();
|
|
123
123
|
accessibilitySignalService.playSignal(AccessibilitySignal.clear);
|
|
124
124
|
}, enabled: true, class: ThemeIcon.asClassName(Codicon.clearAll)
|