@codingame/monaco-vscode-accessibility-service-override 28.4.1 → 29.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-accessibility-service-override",
3
- "version": "28.4.1",
3
+ "version": "29.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - accessibility service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "28.4.1",
18
+ "@codingame/monaco-vscode-api": "29.0.0",
19
19
  "marked": "14.0.0"
20
20
  },
21
21
  "main": "index.js",
@@ -53,21 +53,21 @@ let AccessibilityStatus = class AccessibilityStatus extends Disposable {
53
53
  }
54
54
  showScreenReaderNotification() {
55
55
  this.screenReaderNotification = this.notificationService.prompt(Severity.Info, ( localize(
56
- 4478,
56
+ 4488,
57
57
  "Screen reader usage detected. Do you want to enable {0} to optimize the editor for screen reader usage?",
58
58
  "editor.accessibilitySupport"
59
59
  )), [{
60
- label: ( localize(4479, "Yes")),
60
+ label: ( localize(4489, "Yes")),
61
61
  run: () => {
62
62
  this.configurationService.updateValue("editor.accessibilitySupport", "on", ConfigurationTarget.USER);
63
63
  }
64
64
  }, {
65
- label: ( localize(4480, "No")),
65
+ label: ( localize(4490, "No")),
66
66
  run: () => {
67
67
  this.configurationService.updateValue("editor.accessibilitySupport", "off", ConfigurationTarget.USER);
68
68
  }
69
69
  }, {
70
- label: ( localize(4481, "Learn More")),
70
+ label: ( localize(4491, "Learn More")),
71
71
  run: () => {
72
72
  this.openerService.open("https://code.visualstudio.com/docs/editor/accessibility#_screen-readers");
73
73
  }
@@ -80,9 +80,9 @@ let AccessibilityStatus = class AccessibilityStatus extends Disposable {
80
80
  updateScreenReaderModeElement(visible) {
81
81
  if (visible) {
82
82
  if (!this.screenReaderModeElement.value) {
83
- const text = ( localize(4482, "Screen Reader Optimized"));
83
+ const text = ( localize(4492, "Screen Reader Optimized"));
84
84
  this.screenReaderModeElement.value = this.statusbarService.addEntry({
85
- name: ( localize(4483, "Screen Reader Mode")),
85
+ name: ( localize(4493, "Screen Reader Mode")),
86
86
  text,
87
87
  ariaLabel: text,
88
88
  command: "showEditorScreenReaderNotification",
@@ -50,7 +50,9 @@ import { resolveContentAndKeybindingItems } from './accessibleViewKeybindingReso
50
50
 
51
51
  var DIMENSIONS;
52
52
  (function(DIMENSIONS) {
53
- DIMENSIONS[DIMENSIONS["MAX_WIDTH"] = 600] = "MAX_WIDTH";
53
+ DIMENSIONS[DIMENSIONS["MAX_WIDTH"] = 900] = "MAX_WIDTH";
54
+ DIMENSIONS[DIMENSIONS["WIDTH_RATIO"] = 0.75] = "WIDTH_RATIO";
55
+ DIMENSIONS[DIMENSIONS["MAX_HEIGHT_RATIO"] = 0.6] = "MAX_HEIGHT_RATIO";
54
56
  })(DIMENSIONS || (DIMENSIONS = {}));
55
57
  let AccessibleView = class AccessibleView extends Disposable {
56
58
  get editorWidget() {
@@ -289,7 +291,7 @@ let AccessibleView = class AccessibleView extends Disposable {
289
291
  getAnchor: () => {
290
292
  return {
291
293
  x: (getActiveWindow().innerWidth / 2) - ((Math.min(
292
- this._layoutService.activeContainerDimension.width * 0.62,
294
+ this._layoutService.activeContainerDimension.width * DIMENSIONS.WIDTH_RATIO,
293
295
  DIMENSIONS.MAX_WIDTH
294
296
  )) / 2),
295
297
  y: this._layoutService.activeContainerOffset.quickPickTop
@@ -463,8 +465,8 @@ let AccessibleView = class AccessibleView extends Disposable {
463
465
  const disposables = this._register(( new DisposableStore()));
464
466
  const quickPick = disposables.add(this._quickInputService.createQuickPick());
465
467
  quickPick.items = items;
466
- quickPick.title = ( localize(4484, "Configure keybindings"));
467
- quickPick.placeholder = ( localize(4485, "Select a command ID to configure a keybinding for it"));
468
+ quickPick.title = ( localize(4494, "Configure keybindings"));
469
+ quickPick.placeholder = ( localize(4495, "Select a command ID to configure a keybinding for it"));
468
470
  quickPick.show();
469
471
  disposables.add(quickPick.onDidAccept(async () => {
470
472
  const item = quickPick.selectedItems[0];
@@ -507,8 +509,8 @@ let AccessibleView = class AccessibleView extends Disposable {
507
509
  if (label) {
508
510
  symbols.push({
509
511
  markdownToParse: label,
510
- label: ( localize(4486, "({0}) {1}", token.type, label)),
511
- ariaLabel: ( localize(4487, "({0}) {1}", token.type, label)),
512
+ label: ( localize(4496, "({0}) {1}", token.type, label)),
513
+ ariaLabel: ( localize(4497, "({0}) {1}", token.type, label)),
512
514
  firstListItem
513
515
  });
514
516
  firstListItem = undefined;
@@ -548,7 +550,7 @@ let AccessibleView = class AccessibleView extends Disposable {
548
550
  }
549
551
  this._configurationService.updateValue(this._currentProvider?.verbositySettingKey, false);
550
552
  alert(( localize(
551
- 4488,
553
+ 4498,
552
554
  "{0} accessibility verbosity is now disabled",
553
555
  this._currentProvider.verbositySettingKey
554
556
  )));
@@ -642,16 +644,16 @@ let AccessibleView = class AccessibleView extends Disposable {
642
644
  const hasActions = this._accessibleViewSupportsNavigation.get() || this._accessibleViewVerbosityEnabled.get() || this._accessibleViewGoToSymbolSupported.get() || provider.actions?.length;
643
645
  if (verbose && !showAccessibleViewHelp && hasActions) {
644
646
  actionsHint = provider.options.position ? ( localize(
645
- 4489,
647
+ 4499,
646
648
  "Explore actions such as disabling this hint (Shift+Tab), use Escape to exit this dialog."
647
- )) : ( localize(4490, "Explore actions such as disabling this hint (Shift+Tab)."));
649
+ )) : ( localize(4500, "Explore actions such as disabling this hint (Shift+Tab)."));
648
650
  }
649
- let ariaLabel = provider.options.type === AccessibleViewType.Help ? ( localize(4491, "Accessibility Help")) : ( localize(4492, "Accessible View"));
651
+ let ariaLabel = provider.options.type === AccessibleViewType.Help ? ( localize(4501, "Accessibility Help")) : ( localize(4502, "Accessible View"));
650
652
  this._title.textContent = ariaLabel;
651
653
  if (actionsHint && provider.options.type === AccessibleViewType.View) {
652
- ariaLabel = ( localize(4493, "Accessible View, {0}", actionsHint));
654
+ ariaLabel = ( localize(4503, "Accessible View, {0}", actionsHint));
653
655
  } else if (actionsHint) {
654
- ariaLabel = ( localize(4494, "Accessibility Help, {0}", actionsHint));
656
+ ariaLabel = ( localize(4504, "Accessibility Help, {0}", actionsHint));
655
657
  }
656
658
  if (isWindows && widgetIsFocused) {
657
659
  ariaLabel = "";
@@ -745,7 +747,7 @@ let AccessibleView = class AccessibleView extends Disposable {
745
747
  return disposableStore;
746
748
  }
747
749
  _updateToolbar(providedActions, type) {
748
- this._toolbar.setAriaLabel(type === AccessibleViewType.Help ? ( localize(4495, "Accessibility Help")) : ( localize(4496, "Accessible View")));
750
+ this._toolbar.setAriaLabel(type === AccessibleViewType.Help ? ( localize(4505, "Accessibility Help")) : ( localize(4506, "Accessible View")));
749
751
  const toolbarMenu = this._register(
750
752
  this._menuService.createMenu(MenuId.AccessibleView, this._contextKeyService)
751
753
  );
@@ -762,9 +764,9 @@ let AccessibleView = class AccessibleView extends Disposable {
762
764
  }
763
765
  _layout() {
764
766
  const dimension = this._layoutService.activeContainerDimension;
765
- const maxHeight = dimension.height && dimension.height * .4;
767
+ const maxHeight = dimension.height && dimension.height * DIMENSIONS.MAX_HEIGHT_RATIO;
766
768
  const height = Math.min(maxHeight, this._editorWidget.getContentHeight());
767
- const width = Math.min(dimension.width * 0.62, DIMENSIONS.MAX_WIDTH);
769
+ const width = Math.min(dimension.width * DIMENSIONS.WIDTH_RATIO, DIMENSIONS.MAX_WIDTH);
768
770
  this._editorWidget.layout({
769
771
  width,
770
772
  height
@@ -843,9 +845,9 @@ let AccessibleView = class AccessibleView extends Disposable {
843
845
  _accessibleViewHelpDialogContent(providerHasSymbols) {
844
846
  const navigationHint = this._navigationHint();
845
847
  const goToSymbolHint = this._goToSymbolHint(providerHasSymbols);
846
- const toolbarHint = ( localize(4497, "Navigate to the toolbar (Shift+Tab)."));
848
+ const toolbarHint = ( localize(4507, "Navigate to the toolbar (Shift+Tab)."));
847
849
  const chatHints = this._getChatHints();
848
- let hint = ( localize(4498, "In the accessible view, you can:\n"));
850
+ let hint = ( localize(4508, "In the accessible view, you can:\n"));
849
851
  if (navigationHint) {
850
852
  hint += " - " + navigationHint + "\n";
851
853
  }
@@ -865,22 +867,22 @@ let AccessibleView = class AccessibleView extends Disposable {
865
867
  return;
866
868
  }
867
869
  return [( localize(
868
- 4499,
870
+ 4509,
869
871
  " - Insert the code block at the cursor{0}.",
870
872
  "<keybinding:workbench.action.chat.insertCodeBlock>"
871
873
  )), ( localize(
872
- 4500,
874
+ 4510,
873
875
  " - Insert the code block into a new file{0}.",
874
876
  "<keybinding:workbench.action.chat.insertIntoNewFile>"
875
877
  )), ( localize(
876
- 4501,
878
+ 4511,
877
879
  " - Run the code block in the terminal{0}.\n",
878
880
  "<keybinding:workbench.action.chat.runInTerminal>"
879
881
  ))].join("\n");
880
882
  }
881
883
  _navigationHint() {
882
884
  return localize(
883
- 4502,
885
+ 4512,
884
886
  "Show the next item{0} or previous item{1}.",
885
887
  `<keybinding:${AccessibilityCommandId.ShowNext}>`,
886
888
  `<keybinding:${AccessibilityCommandId.ShowPrevious}>`
@@ -889,7 +891,7 @@ let AccessibleView = class AccessibleView extends Disposable {
889
891
  _disableVerbosityHint(provider) {
890
892
  if (provider.options.type === AccessibleViewType.Help && this._verbosityEnabled()) {
891
893
  return localize(
892
- 4503,
894
+ 4513,
893
895
  "\nDisable accessibility verbosity for this feature{0}.",
894
896
  `<keybinding:${AccessibilityCommandId.DisableVerbosityHint}>`
895
897
  );
@@ -901,7 +903,7 @@ let AccessibleView = class AccessibleView extends Disposable {
901
903
  return;
902
904
  }
903
905
  return localize(
904
- 4504,
906
+ 4514,
905
907
  "Go to a symbol{0}.",
906
908
  `<keybinding:${AccessibilityCommandId.GoToSymbol}>`
907
909
  );
@@ -910,7 +912,7 @@ let AccessibleView = class AccessibleView extends Disposable {
910
912
  const configureKb = this._keybindingService.lookupKeybinding(AccessibilityCommandId.AccessibilityHelpConfigureKeybindings)?.getAriaLabel();
911
913
  const keybindingToConfigureQuickPick = configureKb ? "(" + configureKb + ")" : "by assigning a keybinding to the command Accessibility Help Configure Unassigned Keybindings.";
912
914
  return localize(
913
- 4505,
915
+ 4515,
914
916
  "\nConfigure keybindings for commands that lack them {0}.",
915
917
  keybindingToConfigureQuickPick
916
918
  );
@@ -919,7 +921,7 @@ let AccessibleView = class AccessibleView extends Disposable {
919
921
  const configureKb = this._keybindingService.lookupKeybinding(AccessibilityCommandId.AccessibilityHelpConfigureAssignedKeybindings)?.getAriaLabel();
920
922
  const keybindingToConfigureQuickPick = configureKb ? "(" + configureKb + ")" : "by assigning a keybinding to the command Accessibility Help Configure Assigned Keybindings.";
921
923
  return localize(
922
- 4506,
924
+ 4516,
923
925
  "\nConfigure keybindings for commands that already have assignments {0}.",
924
926
  keybindingToConfigureQuickPick
925
927
  );
@@ -938,11 +940,11 @@ let AccessibleView = class AccessibleView extends Disposable {
938
940
  return screenReaderModeHint;
939
941
  }
940
942
  _exitDialogHint(provider) {
941
- return this._verbosityEnabled() && !provider.options.position ? ( localize(4507, "\nExit this dialog (Escape).")) : "";
943
+ return this._verbosityEnabled() && !provider.options.position ? ( localize(4517, "\nExit this dialog (Escape).")) : "";
942
944
  }
943
945
  _readMoreHint(provider) {
944
946
  return provider.options.readMoreUrl ? ( localize(
945
- 4508,
947
+ 4518,
946
948
  "\nOpen a browser window with more information related to accessibility{0}.",
947
949
  `<keybinding:${AccessibilityCommandId.AccessibilityHelpOpenHelpLink}>`
948
950
  )) : "";
@@ -987,10 +989,10 @@ let AccessibleViewService = class AccessibleViewService extends Disposable {
987
989
  const keybinding = this._keybindingService.lookupKeybinding(AccessibilityCommandId.OpenAccessibleView)?.getAriaLabel();
988
990
  let hint = null;
989
991
  if (keybinding) {
990
- hint = ( localize(4509, "Inspect this in the accessible view with {0}", keybinding));
992
+ hint = ( localize(4519, "Inspect this in the accessible view with {0}", keybinding));
991
993
  } else {
992
994
  hint = ( localize(
993
- 4510,
995
+ 4520,
994
996
  "Inspect this in the accessible view via the command Open Accessible View which is currently not triggerable via keybinding."
995
997
  ));
996
998
  }
@@ -1028,8 +1030,8 @@ let AccessibleViewSymbolQuickPick = class AccessibleViewSymbolQuickPick {
1028
1030
  show(provider) {
1029
1031
  const disposables = ( new DisposableStore());
1030
1032
  const quickPick = disposables.add(this._quickInputService.createQuickPick());
1031
- quickPick.placeholder = ( localize(4511, "Type to search symbols"));
1032
- quickPick.title = ( localize(4512, "Go to Symbol Accessible View"));
1033
+ quickPick.placeholder = ( localize(4521, "Type to search symbols"));
1034
+ quickPick.title = ( localize(4522, "Go to Symbol Accessible View"));
1033
1035
  const picks = [];
1034
1036
  const symbols = this._accessibleView.getSymbols();
1035
1037
  if (!symbols) {
@@ -18,11 +18,11 @@ class ShowSignalSoundHelp extends Action2 {
18
18
  constructor() {
19
19
  super({
20
20
  id: ShowSignalSoundHelp.ID,
21
- title: ( localize2(4525, "Help: List Signal Sounds")),
21
+ title: ( localize2(4535, "Help: List Signal Sounds")),
22
22
  f1: true,
23
23
  metadata: {
24
24
  description: ( localize(
25
- 4526,
25
+ 4536,
26
26
  "List all accessibility sounds, noises, or audio cues and configure their settings"
27
27
  ))
28
28
  }
@@ -40,7 +40,7 @@ class ShowSignalSoundHelp extends Action2 {
40
40
  signal,
41
41
  buttons: userGestureSignals.includes(signal) ? [{
42
42
  iconClass: ThemeIcon.asClassName(Codicon.settingsGear),
43
- tooltip: ( localize(4527, "Configure Sound")),
43
+ tooltip: ( localize(4537, "Configure Sound")),
44
44
  alwaysVisible: true
45
45
  }] : []
46
46
  }))).sort((a, b) => a.label.localeCompare(b.label));
@@ -103,7 +103,7 @@ class ShowSignalSoundHelp extends Action2 {
103
103
  );
104
104
  }));
105
105
  disposables.add(qp.onDidHide(() => disposables.dispose()));
106
- qp.placeholder = ( localize(4528, "Select a sound to play and configure"));
106
+ qp.placeholder = ( localize(4538, "Select a sound to play and configure"));
107
107
  qp.canSelectMany = true;
108
108
  await qp.show();
109
109
  }
@@ -118,11 +118,11 @@ class ShowAccessibilityAnnouncementHelp extends Action2 {
118
118
  constructor() {
119
119
  super({
120
120
  id: ShowAccessibilityAnnouncementHelp.ID,
121
- title: ( localize2(4529, "Help: List Signal Announcements")),
121
+ title: ( localize2(4539, "Help: List Signal Announcements")),
122
122
  f1: true,
123
123
  metadata: {
124
124
  description: ( localize(
125
- 4530,
125
+ 4540,
126
126
  "List all accessibility announcements, alerts, braille messages, and configure their settings"
127
127
  ))
128
128
  }
@@ -140,7 +140,7 @@ class ShowAccessibilityAnnouncementHelp extends Action2 {
140
140
  signal,
141
141
  buttons: userGestureSignals.includes(signal) ? [{
142
142
  iconClass: ThemeIcon.asClassName(Codicon.settingsGear),
143
- tooltip: ( localize(4531, "Configure Announcement")),
143
+ tooltip: ( localize(4541, "Configure Announcement")),
144
144
  alwaysVisible: true
145
145
  }] : []
146
146
  }))).sort((a, b) => a.label.localeCompare(b.label));
@@ -194,8 +194,8 @@ class ShowAccessibilityAnnouncementHelp extends Action2 {
194
194
  });
195
195
  }));
196
196
  disposables.add(qp.onDidHide(() => disposables.dispose()));
197
- qp.placeholder = screenReaderOptimized ? ( localize(4532, "Select an announcement to configure")) : ( localize(
198
- 4533,
197
+ qp.placeholder = screenReaderOptimized ? ( localize(4542, "Select an announcement to configure")) : ( localize(
198
+ 4543,
199
199
  "Screen reader is not active, announcements are disabled by default."
200
200
  ));
201
201
  qp.canSelectMany = true;
@@ -14,11 +14,11 @@ import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/
14
14
  import { IMarkerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers.service';
15
15
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
16
16
  import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
17
- import { wasEventTriggeredRecently, observableFromPromise } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/utils/utils';
18
17
  import { derived } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/observables/derived';
19
18
  import { observableFromValueWithChangeEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/utils/valueWithChangeEvent';
20
19
  import { observableFromEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/observables/observableFromEvent';
21
20
  import { autorunWithStore, autorun } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/reactions/autorun';
21
+ import { wasEventTriggeredRecently, observableFromPromise } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/utils/utils';
22
22
  import { observableSignalFromEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/observables/observableSignalFromEvent';
23
23
 
24
24
  let EditorTextPropertySignalsContribution = class EditorTextPropertySignalsContribution extends Disposable {
@@ -41,7 +41,7 @@ let DiffEditorActiveAnnouncementContribution = class DiffEditorActiveAnnouncemen
41
41
  }
42
42
  this._onDidActiveEditorChangeListener = this._register(this._editorService.onDidActiveEditorChange(() => {
43
43
  if (isDiffEditor(this._editorService.activeTextEditorControl)) {
44
- this._accessibilityService.alert(( localize(4534, "Diff editor")));
44
+ this._accessibilityService.alert(( localize(4544, "Diff editor")));
45
45
  }
46
46
  }));
47
47
  }
@@ -22,10 +22,10 @@ class ToggleScreenReaderMode extends Action2 {
22
22
  constructor() {
23
23
  super({
24
24
  id: "editor.action.toggleScreenReaderAccessibilityMode",
25
- title: ( localize2(7435, "Toggle Screen Reader Accessibility Mode")),
25
+ title: ( localize2(7661, "Toggle Screen Reader Accessibility Mode")),
26
26
  metadata: {
27
27
  description: ( localize2(
28
- 7436,
28
+ 7662,
29
29
  "Toggles an optimized mode for usage with screen readers, braille devices, and other assistive technologies."
30
30
  ))
31
31
  },
@@ -62,11 +62,11 @@ class AnnounceCursorPosition extends Action2 {
62
62
  constructor() {
63
63
  super({
64
64
  id: "editor.action.announceCursorPosition",
65
- title: ( localize2(7437, "Announce Cursor Position")),
65
+ title: ( localize2(7663, "Announce Cursor Position")),
66
66
  f1: true,
67
67
  metadata: {
68
68
  description: ( localize2(
69
- 7438,
69
+ 7664,
70
70
  "Announce the current cursor position (line and column) via screen reader."
71
71
  ))
72
72
  },
@@ -91,7 +91,7 @@ class AnnounceCursorPosition extends Action2 {
91
91
  const tabSize = model.getOptions().tabSize;
92
92
  const lineContent = model.getLineContent(position.lineNumber);
93
93
  const visibleColumn = CursorColumns.visibleColumnFromColumn(lineContent, position.column, tabSize) + 1;
94
- alert(( localize(7439, "Line {0}, Column {1}", position.lineNumber, visibleColumn)));
94
+ alert(( localize(7665, "Line {0}, Column {1}", position.lineNumber, visibleColumn)));
95
95
  }
96
96
  }
97
97
  registerAction2(AnnounceCursorPosition);