@codingame/monaco-vscode-workbench-service-override 27.0.0 → 28.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": "28.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": "28.0.0",
|
|
19
|
+
"@codingame/monaco-vscode-keybindings-service-override": "28.0.0",
|
|
20
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "28.0.0",
|
|
21
|
+
"@codingame/monaco-vscode-view-banner-service-override": "28.0.0",
|
|
22
|
+
"@codingame/monaco-vscode-view-common-service-override": "28.0.0",
|
|
23
|
+
"@codingame/monaco-vscode-view-status-bar-service-override": "28.0.0",
|
|
24
|
+
"@codingame/monaco-vscode-view-title-bar-service-override": "28.0.0"
|
|
25
25
|
},
|
|
26
26
|
"main": "index.js",
|
|
27
27
|
"module": "index.js",
|
|
@@ -54,7 +54,7 @@ class NotificationAccessibleView {
|
|
|
54
54
|
if (!notification || !message) {
|
|
55
55
|
return;
|
|
56
56
|
}
|
|
57
|
-
return withSeverityPrefix(notification.source ? ( localize(
|
|
57
|
+
return withSeverityPrefix(notification.source ? ( localize(3587, "{0} Source: {1}", message, notification.source)) : message, notification.severity);
|
|
58
58
|
}
|
|
59
59
|
const content = getContentForNotification();
|
|
60
60
|
if (!content) {
|
|
@@ -110,8 +110,8 @@ function getActionsFromNotification(notification, accessibilitySignalService) {
|
|
|
110
110
|
if (actions) {
|
|
111
111
|
actions.push({
|
|
112
112
|
id: "clearNotification",
|
|
113
|
-
label: ( localize(
|
|
114
|
-
tooltip: ( localize(
|
|
113
|
+
label: ( localize(3588, "Clear Notification")),
|
|
114
|
+
tooltip: ( localize(3588, "Clear Notification")),
|
|
115
115
|
run: () => {
|
|
116
116
|
notification.close();
|
|
117
117
|
accessibilitySignalService.playSignal(AccessibilitySignal.clear);
|