You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: localize('text','The text to show for the entry. You can embed icons in the text by leveraging the `$(<name>)`-syntax, like \'Hello $(globe)!\'')
186
192
},
193
+
tooltip: {
194
+
type: 'string',
195
+
description: localize('tooltip','The tooltip text for the entry.')
196
+
},
187
197
command: {
188
198
type: 'string',
189
199
description: localize('command','The command to execute when the status bar entry is clicked.')
description: localize('priority','The priority of the status bar entry. Higher value means the item should be shown more to the left.')
209
+
},
210
+
accessibilityInformation: {
211
+
type: 'object',
212
+
description: localize('accessibilityInformation','Defines the role and aria label to be used when the status bar entry is focused.'),
213
+
properties: {
214
+
role: {
215
+
type: 'string',
216
+
description: localize('accessibilityInformation.role','The role of the status bar entry which defines how a screen reader interacts with it. More about aria roles can be found here https://w3c.github.io/aria/#widget_roles')
217
+
},
218
+
label: {
219
+
type: 'string',
220
+
description: localize('accessibilityInformation.label','The aria label of the status bar entry. Defaults to the entry\'s text.')
221
+
}
222
+
}
199
223
}
200
224
}
201
225
};
@@ -249,12 +273,12 @@ export class StatusBarItemsExtensionPoint {
0 commit comments