@codingame/monaco-vscode-notifications-service-override 32.0.2 → 33.0.9
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,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-notifications-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "33.0.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - notifications service-override",
|
|
6
6
|
"keywords": [],
|
|
7
|
+
"license": "MIT",
|
|
7
8
|
"author": {
|
|
8
9
|
"name": "CodinGame",
|
|
9
10
|
"url": "http://www.codingame.com"
|
|
10
11
|
},
|
|
11
|
-
"license": "MIT",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "git+ssh://git@github.com/CodinGame/monaco-vscode-api.git"
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "33.0.9"
|
|
19
19
|
},
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"module": "index.js",
|
|
@@ -187,7 +187,7 @@ let NotificationService = class NotificationService extends Disposable {
|
|
|
187
187
|
if (this.storageService.getBoolean(id, scope)) {
|
|
188
188
|
return ( new NoOpNotification());
|
|
189
189
|
}
|
|
190
|
-
const neverShowAgainAction = toDispose.add(( new Action("workbench.notification.neverShowAgain", ( localize(
|
|
190
|
+
const neverShowAgainAction = toDispose.add(( new Action("workbench.notification.neverShowAgain", ( localize(16960, "Don't Show Again")), undefined, true, async () => {
|
|
191
191
|
handle.close();
|
|
192
192
|
this.storageService.store(id, true, scope, StorageTarget.USER);
|
|
193
193
|
})));
|
|
@@ -226,7 +226,7 @@ let NotificationService = class NotificationService extends Disposable {
|
|
|
226
226
|
return ( new NoOpNotification());
|
|
227
227
|
}
|
|
228
228
|
const neverShowAgainChoice = {
|
|
229
|
-
label: ( localize(
|
|
229
|
+
label: ( localize(16960, "Don't Show Again")),
|
|
230
230
|
run: () => this.storageService.store(id, true, scope, StorageTarget.USER),
|
|
231
231
|
isSecondary: options.neverShowAgain.isSecondary
|
|
232
232
|
};
|