@codingame/monaco-vscode-accessibility-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 +2 -2
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityStatus.js +6 -6
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleView.js +27 -27
- package/vscode/src/vs/workbench/contrib/accessibilitySignals/browser/commands.js +9 -9
- package/vscode/src/vs/workbench/contrib/accessibilitySignals/browser/openDiffEditorAnnouncement.js +1 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/accessibility/accessibility.css +1 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/accessibility/accessibility.js +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-accessibility-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "28.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": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "28.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
|
-
|
|
56
|
+
4478,
|
|
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(
|
|
60
|
+
label: ( localize(4479, "Yes")),
|
|
61
61
|
run: () => {
|
|
62
62
|
this.configurationService.updateValue("editor.accessibilitySupport", "on", ConfigurationTarget.USER);
|
|
63
63
|
}
|
|
64
64
|
}, {
|
|
65
|
-
label: ( localize(
|
|
65
|
+
label: ( localize(4480, "No")),
|
|
66
66
|
run: () => {
|
|
67
67
|
this.configurationService.updateValue("editor.accessibilitySupport", "off", ConfigurationTarget.USER);
|
|
68
68
|
}
|
|
69
69
|
}, {
|
|
70
|
-
label: ( localize(
|
|
70
|
+
label: ( localize(4481, "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(
|
|
83
|
+
const text = ( localize(4482, "Screen Reader Optimized"));
|
|
84
84
|
this.screenReaderModeElement.value = this.statusbarService.addEntry({
|
|
85
|
-
name: ( localize(
|
|
85
|
+
name: ( localize(4483, "Screen Reader Mode")),
|
|
86
86
|
text,
|
|
87
87
|
ariaLabel: text,
|
|
88
88
|
command: "showEditorScreenReaderNotification",
|
|
@@ -463,8 +463,8 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
463
463
|
const disposables = this._register(( new DisposableStore()));
|
|
464
464
|
const quickPick = disposables.add(this._quickInputService.createQuickPick());
|
|
465
465
|
quickPick.items = items;
|
|
466
|
-
quickPick.title = ( localize(
|
|
467
|
-
quickPick.placeholder = ( localize(
|
|
466
|
+
quickPick.title = ( localize(4484, "Configure keybindings"));
|
|
467
|
+
quickPick.placeholder = ( localize(4485, "Select a command ID to configure a keybinding for it"));
|
|
468
468
|
quickPick.show();
|
|
469
469
|
disposables.add(quickPick.onDidAccept(async () => {
|
|
470
470
|
const item = quickPick.selectedItems[0];
|
|
@@ -507,8 +507,8 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
507
507
|
if (label) {
|
|
508
508
|
symbols.push({
|
|
509
509
|
markdownToParse: label,
|
|
510
|
-
label: ( localize(
|
|
511
|
-
ariaLabel: ( localize(
|
|
510
|
+
label: ( localize(4486, "({0}) {1}", token.type, label)),
|
|
511
|
+
ariaLabel: ( localize(4487, "({0}) {1}", token.type, label)),
|
|
512
512
|
firstListItem
|
|
513
513
|
});
|
|
514
514
|
firstListItem = undefined;
|
|
@@ -548,7 +548,7 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
548
548
|
}
|
|
549
549
|
this._configurationService.updateValue(this._currentProvider?.verbositySettingKey, false);
|
|
550
550
|
alert(( localize(
|
|
551
|
-
|
|
551
|
+
4488,
|
|
552
552
|
"{0} accessibility verbosity is now disabled",
|
|
553
553
|
this._currentProvider.verbositySettingKey
|
|
554
554
|
)));
|
|
@@ -642,16 +642,16 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
642
642
|
const hasActions = this._accessibleViewSupportsNavigation.get() || this._accessibleViewVerbosityEnabled.get() || this._accessibleViewGoToSymbolSupported.get() || provider.actions?.length;
|
|
643
643
|
if (verbose && !showAccessibleViewHelp && hasActions) {
|
|
644
644
|
actionsHint = provider.options.position ? ( localize(
|
|
645
|
-
|
|
645
|
+
4489,
|
|
646
646
|
"Explore actions such as disabling this hint (Shift+Tab), use Escape to exit this dialog."
|
|
647
|
-
)) : ( localize(
|
|
647
|
+
)) : ( localize(4490, "Explore actions such as disabling this hint (Shift+Tab)."));
|
|
648
648
|
}
|
|
649
|
-
let ariaLabel = provider.options.type === AccessibleViewType.Help ? ( localize(
|
|
649
|
+
let ariaLabel = provider.options.type === AccessibleViewType.Help ? ( localize(4491, "Accessibility Help")) : ( localize(4492, "Accessible View"));
|
|
650
650
|
this._title.textContent = ariaLabel;
|
|
651
651
|
if (actionsHint && provider.options.type === AccessibleViewType.View) {
|
|
652
|
-
ariaLabel = ( localize(
|
|
652
|
+
ariaLabel = ( localize(4493, "Accessible View, {0}", actionsHint));
|
|
653
653
|
} else if (actionsHint) {
|
|
654
|
-
ariaLabel = ( localize(
|
|
654
|
+
ariaLabel = ( localize(4494, "Accessibility Help, {0}", actionsHint));
|
|
655
655
|
}
|
|
656
656
|
if (isWindows && widgetIsFocused) {
|
|
657
657
|
ariaLabel = "";
|
|
@@ -745,7 +745,7 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
745
745
|
return disposableStore;
|
|
746
746
|
}
|
|
747
747
|
_updateToolbar(providedActions, type) {
|
|
748
|
-
this._toolbar.setAriaLabel(type === AccessibleViewType.Help ? ( localize(
|
|
748
|
+
this._toolbar.setAriaLabel(type === AccessibleViewType.Help ? ( localize(4495, "Accessibility Help")) : ( localize(4496, "Accessible View")));
|
|
749
749
|
const toolbarMenu = this._register(
|
|
750
750
|
this._menuService.createMenu(MenuId.AccessibleView, this._contextKeyService)
|
|
751
751
|
);
|
|
@@ -843,9 +843,9 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
843
843
|
_accessibleViewHelpDialogContent(providerHasSymbols) {
|
|
844
844
|
const navigationHint = this._navigationHint();
|
|
845
845
|
const goToSymbolHint = this._goToSymbolHint(providerHasSymbols);
|
|
846
|
-
const toolbarHint = ( localize(
|
|
846
|
+
const toolbarHint = ( localize(4497, "Navigate to the toolbar (Shift+Tab)."));
|
|
847
847
|
const chatHints = this._getChatHints();
|
|
848
|
-
let hint = ( localize(
|
|
848
|
+
let hint = ( localize(4498, "In the accessible view, you can:\n"));
|
|
849
849
|
if (navigationHint) {
|
|
850
850
|
hint += " - " + navigationHint + "\n";
|
|
851
851
|
}
|
|
@@ -865,22 +865,22 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
865
865
|
return;
|
|
866
866
|
}
|
|
867
867
|
return [( localize(
|
|
868
|
-
|
|
868
|
+
4499,
|
|
869
869
|
" - Insert the code block at the cursor{0}.",
|
|
870
870
|
"<keybinding:workbench.action.chat.insertCodeBlock>"
|
|
871
871
|
)), ( localize(
|
|
872
|
-
|
|
872
|
+
4500,
|
|
873
873
|
" - Insert the code block into a new file{0}.",
|
|
874
874
|
"<keybinding:workbench.action.chat.insertIntoNewFile>"
|
|
875
875
|
)), ( localize(
|
|
876
|
-
|
|
876
|
+
4501,
|
|
877
877
|
" - Run the code block in the terminal{0}.\n",
|
|
878
878
|
"<keybinding:workbench.action.chat.runInTerminal>"
|
|
879
879
|
))].join("\n");
|
|
880
880
|
}
|
|
881
881
|
_navigationHint() {
|
|
882
882
|
return localize(
|
|
883
|
-
|
|
883
|
+
4502,
|
|
884
884
|
"Show the next item{0} or previous item{1}.",
|
|
885
885
|
`<keybinding:${AccessibilityCommandId.ShowNext}>`,
|
|
886
886
|
`<keybinding:${AccessibilityCommandId.ShowPrevious}>`
|
|
@@ -889,7 +889,7 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
889
889
|
_disableVerbosityHint(provider) {
|
|
890
890
|
if (provider.options.type === AccessibleViewType.Help && this._verbosityEnabled()) {
|
|
891
891
|
return localize(
|
|
892
|
-
|
|
892
|
+
4503,
|
|
893
893
|
"\nDisable accessibility verbosity for this feature{0}.",
|
|
894
894
|
`<keybinding:${AccessibilityCommandId.DisableVerbosityHint}>`
|
|
895
895
|
);
|
|
@@ -901,7 +901,7 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
901
901
|
return;
|
|
902
902
|
}
|
|
903
903
|
return localize(
|
|
904
|
-
|
|
904
|
+
4504,
|
|
905
905
|
"Go to a symbol{0}.",
|
|
906
906
|
`<keybinding:${AccessibilityCommandId.GoToSymbol}>`
|
|
907
907
|
);
|
|
@@ -910,7 +910,7 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
910
910
|
const configureKb = this._keybindingService.lookupKeybinding(AccessibilityCommandId.AccessibilityHelpConfigureKeybindings)?.getAriaLabel();
|
|
911
911
|
const keybindingToConfigureQuickPick = configureKb ? "(" + configureKb + ")" : "by assigning a keybinding to the command Accessibility Help Configure Unassigned Keybindings.";
|
|
912
912
|
return localize(
|
|
913
|
-
|
|
913
|
+
4505,
|
|
914
914
|
"\nConfigure keybindings for commands that lack them {0}.",
|
|
915
915
|
keybindingToConfigureQuickPick
|
|
916
916
|
);
|
|
@@ -919,7 +919,7 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
919
919
|
const configureKb = this._keybindingService.lookupKeybinding(AccessibilityCommandId.AccessibilityHelpConfigureAssignedKeybindings)?.getAriaLabel();
|
|
920
920
|
const keybindingToConfigureQuickPick = configureKb ? "(" + configureKb + ")" : "by assigning a keybinding to the command Accessibility Help Configure Assigned Keybindings.";
|
|
921
921
|
return localize(
|
|
922
|
-
|
|
922
|
+
4506,
|
|
923
923
|
"\nConfigure keybindings for commands that already have assignments {0}.",
|
|
924
924
|
keybindingToConfigureQuickPick
|
|
925
925
|
);
|
|
@@ -938,11 +938,11 @@ let AccessibleView = class AccessibleView extends Disposable {
|
|
|
938
938
|
return screenReaderModeHint;
|
|
939
939
|
}
|
|
940
940
|
_exitDialogHint(provider) {
|
|
941
|
-
return this._verbosityEnabled() && !provider.options.position ? ( localize(
|
|
941
|
+
return this._verbosityEnabled() && !provider.options.position ? ( localize(4507, "\nExit this dialog (Escape).")) : "";
|
|
942
942
|
}
|
|
943
943
|
_readMoreHint(provider) {
|
|
944
944
|
return provider.options.readMoreUrl ? ( localize(
|
|
945
|
-
|
|
945
|
+
4508,
|
|
946
946
|
"\nOpen a browser window with more information related to accessibility{0}.",
|
|
947
947
|
`<keybinding:${AccessibilityCommandId.AccessibilityHelpOpenHelpLink}>`
|
|
948
948
|
)) : "";
|
|
@@ -987,10 +987,10 @@ let AccessibleViewService = class AccessibleViewService extends Disposable {
|
|
|
987
987
|
const keybinding = this._keybindingService.lookupKeybinding(AccessibilityCommandId.OpenAccessibleView)?.getAriaLabel();
|
|
988
988
|
let hint = null;
|
|
989
989
|
if (keybinding) {
|
|
990
|
-
hint = ( localize(
|
|
990
|
+
hint = ( localize(4509, "Inspect this in the accessible view with {0}", keybinding));
|
|
991
991
|
} else {
|
|
992
992
|
hint = ( localize(
|
|
993
|
-
|
|
993
|
+
4510,
|
|
994
994
|
"Inspect this in the accessible view via the command Open Accessible View which is currently not triggerable via keybinding."
|
|
995
995
|
));
|
|
996
996
|
}
|
|
@@ -1028,8 +1028,8 @@ let AccessibleViewSymbolQuickPick = class AccessibleViewSymbolQuickPick {
|
|
|
1028
1028
|
show(provider) {
|
|
1029
1029
|
const disposables = ( new DisposableStore());
|
|
1030
1030
|
const quickPick = disposables.add(this._quickInputService.createQuickPick());
|
|
1031
|
-
quickPick.placeholder = ( localize(
|
|
1032
|
-
quickPick.title = ( localize(
|
|
1031
|
+
quickPick.placeholder = ( localize(4511, "Type to search symbols"));
|
|
1032
|
+
quickPick.title = ( localize(4512, "Go to Symbol Accessible View"));
|
|
1033
1033
|
const picks = [];
|
|
1034
1034
|
const symbols = this._accessibleView.getSymbols();
|
|
1035
1035
|
if (!symbols) {
|
|
@@ -18,11 +18,11 @@ class ShowSignalSoundHelp extends Action2 {
|
|
|
18
18
|
constructor() {
|
|
19
19
|
super({
|
|
20
20
|
id: ShowSignalSoundHelp.ID,
|
|
21
|
-
title: ( localize2(
|
|
21
|
+
title: ( localize2(4525, "Help: List Signal Sounds")),
|
|
22
22
|
f1: true,
|
|
23
23
|
metadata: {
|
|
24
24
|
description: ( localize(
|
|
25
|
-
|
|
25
|
+
4526,
|
|
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(
|
|
43
|
+
tooltip: ( localize(4527, "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(
|
|
106
|
+
qp.placeholder = ( localize(4528, "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(
|
|
121
|
+
title: ( localize2(4529, "Help: List Signal Announcements")),
|
|
122
122
|
f1: true,
|
|
123
123
|
metadata: {
|
|
124
124
|
description: ( localize(
|
|
125
|
-
|
|
125
|
+
4530,
|
|
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(
|
|
143
|
+
tooltip: ( localize(4531, "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(
|
|
198
|
-
|
|
197
|
+
qp.placeholder = screenReaderOptimized ? ( localize(4532, "Select an announcement to configure")) : ( localize(
|
|
198
|
+
4533,
|
|
199
199
|
"Screen reader is not active, announcements are disabled by default."
|
|
200
200
|
));
|
|
201
201
|
qp.canSelectMany = true;
|
package/vscode/src/vs/workbench/contrib/accessibilitySignals/browser/openDiffEditorAnnouncement.js
CHANGED
|
@@ -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(
|
|
44
|
+
this._accessibilityService.alert(( localize(4534, "Diff editor")));
|
|
45
45
|
}
|
|
46
46
|
}));
|
|
47
47
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
position: absolute;
|
|
8
8
|
background-color: var(--vscode-editorWidget-background);
|
|
9
9
|
color: var(--vscode-editorWidget-foreground);
|
|
10
|
-
box-shadow:
|
|
10
|
+
box-shadow: var(--vscode-shadow-lg);
|
|
11
11
|
border: 2px solid var(--vscode-focusBorder);
|
|
12
12
|
border-radius: 6px;
|
|
13
13
|
margin-top: -1px;
|
|
@@ -22,10 +22,10 @@ class ToggleScreenReaderMode extends Action2 {
|
|
|
22
22
|
constructor() {
|
|
23
23
|
super({
|
|
24
24
|
id: "editor.action.toggleScreenReaderAccessibilityMode",
|
|
25
|
-
title: ( localize2(
|
|
25
|
+
title: ( localize2(7435, "Toggle Screen Reader Accessibility Mode")),
|
|
26
26
|
metadata: {
|
|
27
27
|
description: ( localize2(
|
|
28
|
-
|
|
28
|
+
7436,
|
|
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(
|
|
65
|
+
title: ( localize2(7437, "Announce Cursor Position")),
|
|
66
66
|
f1: true,
|
|
67
67
|
metadata: {
|
|
68
68
|
description: ( localize2(
|
|
69
|
-
|
|
69
|
+
7438,
|
|
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(
|
|
94
|
+
alert(( localize(7439, "Line {0}, Column {1}", position.lineNumber, visibleColumn)));
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
registerAction2(AnnounceCursorPosition);
|