@codingame/monaco-vscode-notifications-service-override 13.0.0 → 13.1.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-notifications-service-override",
3
- "version": "13.0.0",
3
+ "version": "13.1.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - notifications service-override",
6
6
  "keywords": [],
@@ -15,12 +15,9 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-494be54c-bd37-5b3c-af70-02f086e28768-common": "13.0.0"
18
+ "@codingame/monaco-vscode-494be54c-bd37-5b3c-af70-02f086e28768-common": "13.1.0",
19
+ "@codingame/monaco-vscode-api": "13.1.0"
19
20
  },
20
- "peerDependencies": {
21
- "@codingame/monaco-vscode-api": "13.0.0"
22
- },
23
- "peerDependenciesMeta": {},
24
21
  "main": "index.js",
25
22
  "module": "index.js",
26
23
  "types": "index.d.ts",
@@ -158,7 +158,7 @@ let NotificationService = class NotificationService extends Disposable {
158
158
  if (this.storageService.getBoolean(id, scope)) {
159
159
  return ( new NoOpNotification());
160
160
  }
161
- const neverShowAgainAction = toDispose.add(( new Action('workbench.notification.neverShowAgain', ( localize(11662, "Don't Show Again")), undefined, true, async () => {
161
+ const neverShowAgainAction = toDispose.add(( new Action('workbench.notification.neverShowAgain', ( localize(11680, "Don't Show Again")), undefined, true, async () => {
162
162
  handle.close();
163
163
  this.storageService.store(id, true, scope, StorageTarget.USER);
164
164
  })));
@@ -199,7 +199,7 @@ let NotificationService = class NotificationService extends Disposable {
199
199
  return ( new NoOpNotification());
200
200
  }
201
201
  const neverShowAgainChoice = {
202
- label: ( localize(11662, "Don't Show Again")),
202
+ label: ( localize(11680, "Don't Show Again")),
203
203
  run: () => this.storageService.store(id, true, scope, StorageTarget.USER),
204
204
  isSecondary: options.neverShowAgain.isSecondary
205
205
  };