@codingame/monaco-vscode-view-common-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.
Files changed (48) hide show
  1. package/package.json +43 -55
  2. package/vscode/src/vs/workbench/api/browser/viewsExtensionPoint.js +58 -58
  3. package/vscode/src/vs/workbench/browser/actions/listCommands.js +3 -3
  4. package/vscode/src/vs/workbench/browser/actions/navigationActions.js +7 -7
  5. package/vscode/src/vs/workbench/browser/parts/editor/editor.contribution.js +159 -159
  6. package/vscode/src/vs/workbench/browser/parts/editor/editorConfiguration.js +8 -8
  7. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchy.contribution.js +12 -12
  8. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyPeek.js +5 -5
  9. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyTree.js +3 -3
  10. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInputFactory.js +1 -1
  11. package/vscode/src/vs/workbench/contrib/customEditor/common/contributedCustomEditors.js +1 -1
  12. package/vscode/src/vs/workbench/contrib/customEditor/common/customEditor.js +1 -1
  13. package/vscode/src/vs/workbench/contrib/customEditor/common/extensionPoint.js +12 -12
  14. package/vscode/src/vs/workbench/contrib/languageStatus/browser/languageStatus.js +7 -7
  15. package/vscode/src/vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution.js +8 -8
  16. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.js +27 -27
  17. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.js +14 -14
  18. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution.js +3 -3
  19. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/colors.js +13 -13
  20. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView.js +3 -3
  21. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView.js +11 -11
  22. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView.js +5 -5
  23. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/mergeEditor.js +1 -1
  24. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/viewModel.js +1 -1
  25. package/vscode/src/vs/workbench/contrib/preferences/browser/keyboardLayoutPicker.js +12 -12
  26. package/vscode/src/vs/workbench/contrib/sash/browser/sash.contribution.js +2 -2
  27. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution.js +10 -10
  28. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyPeek.js +5 -5
  29. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyTree.js +3 -3
  30. package/vscode/src/vs/workbench/contrib/webview/browser/overlayWebview.d.ts +1 -1
  31. package/vscode/src/vs/workbench/contrib/webview/browser/overlayWebview.js +1 -1
  32. package/vscode/src/vs/workbench/contrib/webview/browser/themeing.d.ts +2 -2
  33. package/vscode/src/vs/workbench/contrib/webview/browser/themeing.js +1 -1
  34. package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.d.ts +1 -1
  35. package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.js +2 -2
  36. package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindWidget.js +1 -1
  37. package/vscode/src/vs/workbench/contrib/webview/browser/webviewService.d.ts +1 -1
  38. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewCommands.js +7 -7
  39. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInputSerializer.d.ts +2 -2
  40. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInputSerializer.js +1 -1
  41. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution.js +2 -2
  42. package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewPane.js +2 -2
  43. package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewService.d.ts +1 -1
  44. package/vscode/src/vs/workbench/services/editor/browser/editorResolverService.js +9 -9
  45. package/vscode/src/vs/workbench/services/history/browser/historyService.js +9 -9
  46. package/vscode/src/vs/workbench/services/progress/browser/progressService.js +8 -8
  47. package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.js +5 -5
  48. package/vscode/src/vs/workbench/services/views/common/viewContainerModel.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-view-common-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 - view-common service-override",
6
6
  "keywords": [],
@@ -15,60 +15,48 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common": "13.0.0",
19
- "@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common": "13.0.0",
20
- "@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common": "13.0.0",
21
- "@codingame/monaco-vscode-0f5ced28-abde-558b-8652-db8e7d4d64aa-common": "13.0.0",
22
- "@codingame/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common": "13.0.0",
23
- "@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common": "13.0.0",
24
- "@codingame/monaco-vscode-22790577-4553-50b6-978d-0acc75c394cc-common": "13.0.0",
25
- "@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common": "13.0.0",
26
- "@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common": "13.0.0",
27
- "@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common": "13.0.0",
28
- "@codingame/monaco-vscode-44b92f80-48ea-5562-a8d0-18a015f8d845-common": "13.0.0",
29
- "@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common": "13.0.0",
30
- "@codingame/monaco-vscode-4a316137-39d1-5d77-8b53-112db3547c1e-common": "13.0.0",
31
- "@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common": "13.0.0",
32
- "@codingame/monaco-vscode-523730aa-81e6-55d7-9916-87ad537fe087-common": "13.0.0",
33
- "@codingame/monaco-vscode-55ed5668-e8ca-5335-a587-790bcf1200c0-common": "13.0.0",
34
- "@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common": "13.0.0",
35
- "@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common": "13.0.0",
36
- "@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.0.0",
37
- "@codingame/monaco-vscode-6980eeab-47bb-5a48-8e15-32caf0785565-common": "13.0.0",
38
- "@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common": "13.0.0",
39
- "@codingame/monaco-vscode-897bebad-39df-57cb-8a57-36a271d038be-common": "13.0.0",
40
- "@codingame/monaco-vscode-89a82baf-8ded-5b2f-b8af-e5fbd72dc5ad-common": "13.0.0",
41
- "@codingame/monaco-vscode-8ccb7637-50ea-5359-97bf-00015d7fe567-common": "13.0.0",
42
- "@codingame/monaco-vscode-9c84f943-bcb5-5bcf-92a6-91f66a732f26-common": "13.0.0",
43
- "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.0.0",
44
- "@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "13.0.0",
45
- "@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "13.0.0",
46
- "@codingame/monaco-vscode-b1e8558d-1726-5299-bc75-e43ee6d1a124-common": "13.0.0",
47
- "@codingame/monaco-vscode-b8988f79-16c1-5bff-b0e7-699bab3431da-common": "13.0.0",
48
- "@codingame/monaco-vscode-bd6ad8b7-9db3-51a8-9895-0046508c029d-common": "13.0.0",
49
- "@codingame/monaco-vscode-bulk-edit-service-override": "13.0.0",
50
- "@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common": "13.0.0",
51
- "@codingame/monaco-vscode-cc2b8dc7-d125-518e-bf7e-99a1db5babd1-common": "13.0.0",
52
- "@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.0.0",
53
- "@codingame/monaco-vscode-d481a59e-259c-524e-bee1-76483d75d3a1-common": "13.0.0",
54
- "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "13.0.0",
55
- "@codingame/monaco-vscode-e59ecb8c-db32-5324-8fe4-cf9921fd92b8-common": "13.0.0",
56
- "@codingame/monaco-vscode-e72c94ca-257a-5b75-8b68-5a5fa3c18255-common": "13.0.0",
57
- "@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common": "13.0.0",
58
- "@codingame/monaco-vscode-ff9fa663-eae3-5274-8573-c2b918871e4b-common": "13.0.0"
59
- },
60
- "peerDependencies": {
61
- "@codingame/monaco-vscode-api": "13.0.0",
62
- "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": "13.0.0",
63
- "@codingame/monaco-vscode-working-copy-service-override": "13.0.0"
64
- },
65
- "peerDependenciesMeta": {
66
- "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": {
67
- "optional": true
68
- },
69
- "@codingame/monaco-vscode-working-copy-service-override": {
70
- "optional": true
71
- }
18
+ "@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common": "13.1.0",
19
+ "@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common": "13.1.0",
20
+ "@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common": "13.1.0",
21
+ "@codingame/monaco-vscode-0f5ced28-abde-558b-8652-db8e7d4d64aa-common": "13.1.0",
22
+ "@codingame/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common": "13.1.0",
23
+ "@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common": "13.1.0",
24
+ "@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common": "13.1.0",
25
+ "@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common": "13.1.0",
26
+ "@codingame/monaco-vscode-44b92f80-48ea-5562-a8d0-18a015f8d845-common": "13.1.0",
27
+ "@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common": "13.1.0",
28
+ "@codingame/monaco-vscode-4a316137-39d1-5d77-8b53-112db3547c1e-common": "13.1.0",
29
+ "@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common": "13.1.0",
30
+ "@codingame/monaco-vscode-523730aa-81e6-55d7-9916-87ad537fe087-common": "13.1.0",
31
+ "@codingame/monaco-vscode-55ed5668-e8ca-5335-a587-790bcf1200c0-common": "13.1.0",
32
+ "@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common": "13.1.0",
33
+ "@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common": "13.1.0",
34
+ "@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.1.0",
35
+ "@codingame/monaco-vscode-6980eeab-47bb-5a48-8e15-32caf0785565-common": "13.1.0",
36
+ "@codingame/monaco-vscode-7443a901-21f6-577a-9674-42893b997ee0-common": "13.1.0",
37
+ "@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common": "13.1.0",
38
+ "@codingame/monaco-vscode-897bebad-39df-57cb-8a57-36a271d038be-common": "13.1.0",
39
+ "@codingame/monaco-vscode-89a82baf-8ded-5b2f-b8af-e5fbd72dc5ad-common": "13.1.0",
40
+ "@codingame/monaco-vscode-8ccb7637-50ea-5359-97bf-00015d7fe567-common": "13.1.0",
41
+ "@codingame/monaco-vscode-972e8507-3a64-566d-8bc0-b78993998562-common": "13.1.0",
42
+ "@codingame/monaco-vscode-9c84f943-bcb5-5bcf-92a6-91f66a732f26-common": "13.1.0",
43
+ "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.0",
44
+ "@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "13.1.0",
45
+ "@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "13.1.0",
46
+ "@codingame/monaco-vscode-api": "13.1.0",
47
+ "@codingame/monaco-vscode-b1e8558d-1726-5299-bc75-e43ee6d1a124-common": "13.1.0",
48
+ "@codingame/monaco-vscode-b8988f79-16c1-5bff-b0e7-699bab3431da-common": "13.1.0",
49
+ "@codingame/monaco-vscode-bd6ad8b7-9db3-51a8-9895-0046508c029d-common": "13.1.0",
50
+ "@codingame/monaco-vscode-bulk-edit-service-override": "13.1.0",
51
+ "@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common": "13.1.0",
52
+ "@codingame/monaco-vscode-cc2b8dc7-d125-518e-bf7e-99a1db5babd1-common": "13.1.0",
53
+ "@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.1.0",
54
+ "@codingame/monaco-vscode-d481a59e-259c-524e-bee1-76483d75d3a1-common": "13.1.0",
55
+ "@codingame/monaco-vscode-e59ecb8c-db32-5324-8fe4-cf9921fd92b8-common": "13.1.0",
56
+ "@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.0",
57
+ "@codingame/monaco-vscode-e72c94ca-257a-5b75-8b68-5a5fa3c18255-common": "13.1.0",
58
+ "@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common": "13.1.0",
59
+ "@codingame/monaco-vscode-ff9fa663-eae3-5274-8573-c2b918871e4b-common": "13.1.0"
72
60
  },
73
61
  "main": "index.js",
74
62
  "module": "index.js",
@@ -31,19 +31,19 @@ const viewsContainerSchema = {
31
31
  properties: {
32
32
  id: {
33
33
  description: ( localize(
34
- 2322,
34
+ 2340,
35
35
  "Unique id used to identify the container in which views can be contributed using 'views' contribution point"
36
36
  )),
37
37
  type: 'string',
38
38
  pattern: '^[a-zA-Z0-9_-]+$'
39
39
  },
40
40
  title: {
41
- description: ( localize(2323, 'Human readable string used to render the container')),
41
+ description: ( localize(2341, 'Human readable string used to render the container')),
42
42
  type: 'string'
43
43
  },
44
44
  icon: {
45
45
  description: ( localize(
46
- 2324,
46
+ 2342,
47
47
  "Path to the container icon. Icons are 24x24 centered on a 50x40 block and have a fill color of 'rgb(215, 218, 224)' or '#d7dae0'. It is recommended that icons be in SVG, though any image file type is accepted."
48
48
  )),
49
49
  type: 'string'
@@ -52,16 +52,16 @@ const viewsContainerSchema = {
52
52
  required: ['id', 'title', 'icon']
53
53
  };
54
54
  const viewsContainersContribution = {
55
- description: ( localize(2325, 'Contributes views containers to the editor')),
55
+ description: ( localize(2343, 'Contributes views containers to the editor')),
56
56
  type: 'object',
57
57
  properties: {
58
58
  'activitybar': {
59
- description: ( localize(2326, "Contribute views containers to Activity Bar")),
59
+ description: ( localize(2344, "Contribute views containers to Activity Bar")),
60
60
  type: 'array',
61
61
  items: viewsContainerSchema
62
62
  },
63
63
  'panel': {
64
- description: ( localize(2327, "Contribute views containers to Panel")),
64
+ description: ( localize(2345, "Contribute views containers to Panel")),
65
65
  type: 'array',
66
66
  items: viewsContainerSchema
67
67
  }
@@ -85,7 +85,7 @@ const viewDescriptor = {
85
85
  properties: {
86
86
  type: {
87
87
  markdownDescription: ( localize(
88
- 2328,
88
+ 2346,
89
89
  "Type of the view. This can either be `tree` for a tree view based view or `webview` for a webview based view. The default is `tree`."
90
90
  )),
91
91
  type: 'string',
@@ -94,45 +94,45 @@ const viewDescriptor = {
94
94
  'webview',
95
95
  ],
96
96
  markdownEnumDescriptions: [
97
- ( localize(2329, "The view is backed by a `TreeView` created by `createTreeView`.")),
97
+ ( localize(2347, "The view is backed by a `TreeView` created by `createTreeView`.")),
98
98
  ( localize(
99
- 2330,
99
+ 2348,
100
100
  "The view is backed by a `WebviewView` registered by `registerWebviewViewProvider`."
101
101
  )),
102
102
  ]
103
103
  },
104
104
  id: {
105
105
  markdownDescription: ( localize(
106
- 2331,
106
+ 2349,
107
107
  'Identifier of the view. This should be unique across all views. It is recommended to include your extension id as part of the view id. Use this to register a data provider through `vscode.window.registerTreeDataProviderForView` API. Also to trigger activating your extension by registering `onView:${id}` event to `activationEvents`.'
108
108
  )),
109
109
  type: 'string'
110
110
  },
111
111
  name: {
112
- description: ( localize(2332, 'The human-readable name of the view. Will be shown')),
112
+ description: ( localize(2350, 'The human-readable name of the view. Will be shown')),
113
113
  type: 'string'
114
114
  },
115
115
  when: {
116
- description: ( localize(2333, 'Condition which must be true to show this view')),
116
+ description: ( localize(2351, 'Condition which must be true to show this view')),
117
117
  type: 'string'
118
118
  },
119
119
  icon: {
120
120
  description: ( localize(
121
- 2334,
121
+ 2352,
122
122
  "Path to the view icon. View icons are displayed when the name of the view cannot be shown. It is recommended that icons be in SVG, though any image file type is accepted."
123
123
  )),
124
124
  type: 'string'
125
125
  },
126
126
  contextualTitle: {
127
127
  description: ( localize(
128
- 2335,
128
+ 2353,
129
129
  "Human-readable context for when the view is moved out of its original location. By default, the view's container name will be used."
130
130
  )),
131
131
  type: 'string'
132
132
  },
133
133
  visibility: {
134
134
  description: ( localize(
135
- 2336,
135
+ 2354,
136
136
  "Initial state of the view when the extension is first installed. Once the user has changed the view state by collapsing, moving, or hiding the view, the initial state will not be used again."
137
137
  )),
138
138
  type: 'string',
@@ -144,27 +144,27 @@ const viewDescriptor = {
144
144
  default: 'visible',
145
145
  enumDescriptions: [
146
146
  ( localize(
147
- 2337,
147
+ 2355,
148
148
  "The default initial state for the view. In most containers the view will be expanded, however; some built-in containers (explorer, scm, and debug) show all contributed views collapsed regardless of the `visibility`."
149
149
  )),
150
150
  ( localize(
151
- 2338,
151
+ 2356,
152
152
  "The view will not be shown in the view container, but will be discoverable through the views menu and other view entry points and can be un-hidden by the user."
153
153
  )),
154
- ( localize(2339, "The view will show in the view container, but will be collapsed."))
154
+ ( localize(2357, "The view will show in the view container, but will be collapsed."))
155
155
  ]
156
156
  },
157
157
  initialSize: {
158
158
  type: 'number',
159
159
  description: ( localize(
160
- 2340,
160
+ 2358,
161
161
  "The initial size of the view. The size will behave like the css 'flex' property, and will set the initial size when the view is first shown. In the side bar, this is the height of the view. This value is only respected when the same extension owns both the view and the view container."
162
162
  )),
163
163
  },
164
164
  accessibilityHelpContent: {
165
165
  type: 'string',
166
166
  markdownDescription: ( localize(
167
- 2341,
167
+ 2359,
168
168
  "When the accessibility help dialog is invoked in this view, this content will be presented to the user as a markdown string. Keybindings will be resolved when provided in the format of <keybinding:commandId>. If there is no keybinding, that will be indicated and this command will be included in a quickpick for easy configuration."
169
169
  ))
170
170
  }
@@ -176,25 +176,25 @@ const remoteViewDescriptor = {
176
176
  properties: {
177
177
  id: {
178
178
  description: ( localize(
179
- 2331,
179
+ 2349,
180
180
  'Identifier of the view. This should be unique across all views. It is recommended to include your extension id as part of the view id. Use this to register a data provider through `vscode.window.registerTreeDataProviderForView` API. Also to trigger activating your extension by registering `onView:${id}` event to `activationEvents`.'
181
181
  )),
182
182
  type: 'string'
183
183
  },
184
184
  name: {
185
- description: ( localize(2332, 'The human-readable name of the view. Will be shown')),
185
+ description: ( localize(2350, 'The human-readable name of the view. Will be shown')),
186
186
  type: 'string'
187
187
  },
188
188
  when: {
189
- description: ( localize(2333, 'Condition which must be true to show this view')),
189
+ description: ( localize(2351, 'Condition which must be true to show this view')),
190
190
  type: 'string'
191
191
  },
192
192
  group: {
193
- description: ( localize(2342, 'Nested group in the viewlet')),
193
+ description: ( localize(2360, 'Nested group in the viewlet')),
194
194
  type: 'string'
195
195
  },
196
196
  remoteName: {
197
- description: ( localize(2343, 'The name of the remote type associated with this view')),
197
+ description: ( localize(2361, 'The name of the remote type associated with this view')),
198
198
  type: ['string', 'array'],
199
199
  items: {
200
200
  type: 'string'
@@ -203,36 +203,36 @@ const remoteViewDescriptor = {
203
203
  }
204
204
  };
205
205
  const viewsContribution = {
206
- description: ( localize(2344, "Contributes views to the editor")),
206
+ description: ( localize(2362, "Contributes views to the editor")),
207
207
  type: 'object',
208
208
  properties: {
209
209
  'explorer': {
210
- description: ( localize(2345, "Contributes views to Explorer container in the Activity bar")),
210
+ description: ( localize(2363, "Contributes views to Explorer container in the Activity bar")),
211
211
  type: 'array',
212
212
  items: viewDescriptor,
213
213
  default: []
214
214
  },
215
215
  'debug': {
216
- description: ( localize(2346, "Contributes views to Debug container in the Activity bar")),
216
+ description: ( localize(2364, "Contributes views to Debug container in the Activity bar")),
217
217
  type: 'array',
218
218
  items: viewDescriptor,
219
219
  default: []
220
220
  },
221
221
  'scm': {
222
- description: ( localize(2347, "Contributes views to SCM container in the Activity bar")),
222
+ description: ( localize(2365, "Contributes views to SCM container in the Activity bar")),
223
223
  type: 'array',
224
224
  items: viewDescriptor,
225
225
  default: []
226
226
  },
227
227
  'test': {
228
- description: ( localize(2348, "Contributes views to Test container in the Activity bar")),
228
+ description: ( localize(2366, "Contributes views to Test container in the Activity bar")),
229
229
  type: 'array',
230
230
  items: viewDescriptor,
231
231
  default: []
232
232
  },
233
233
  'remote': {
234
234
  description: ( localize(
235
- 2349,
235
+ 2367,
236
236
  "Contributes views to Remote container in the Activity bar. To contribute to this container, enableProposedApi needs to be turned on"
237
237
  )),
238
238
  type: 'array',
@@ -241,7 +241,7 @@ const viewsContribution = {
241
241
  }
242
242
  },
243
243
  additionalProperties: {
244
- description: ( localize(2350, "Contributes views to contributed views container")),
244
+ description: ( localize(2368, "Contributes views to contributed views container")),
245
245
  type: 'array',
246
246
  items: viewDescriptor,
247
247
  default: []
@@ -323,13 +323,13 @@ let ViewsExtensionHandler = class ViewsExtensionHandler {
323
323
  }
324
324
  isValidViewsContainer(viewsContainersDescriptors, collector) {
325
325
  if (!Array.isArray(viewsContainersDescriptors)) {
326
- collector.error(( localize(2351, "views containers must be an array")));
326
+ collector.error(( localize(2369, "views containers must be an array")));
327
327
  return false;
328
328
  }
329
329
  for (const descriptor of viewsContainersDescriptors) {
330
330
  if (typeof descriptor.id !== 'string' && isFalsyOrWhitespace(descriptor.id)) {
331
331
  collector.error(( localize(
332
- 2352,
332
+ 2370,
333
333
  "property `{0}` is mandatory and must be of type `string` with non-empty value. Only alphanumeric characters, '_', and '-' are allowed.",
334
334
  'id'
335
335
  )));
@@ -337,23 +337,23 @@ let ViewsExtensionHandler = class ViewsExtensionHandler {
337
337
  }
338
338
  if (!(/^[a-z0-9_-]+$/i.test(descriptor.id))) {
339
339
  collector.error(( localize(
340
- 2352,
340
+ 2370,
341
341
  "property `{0}` is mandatory and must be of type `string` with non-empty value. Only alphanumeric characters, '_', and '-' are allowed.",
342
342
  'id'
343
343
  )));
344
344
  return false;
345
345
  }
346
346
  if (typeof descriptor.title !== 'string') {
347
- collector.error(( localize(2353, "property `{0}` is mandatory and must be of type `string`", 'title')));
347
+ collector.error(( localize(2371, "property `{0}` is mandatory and must be of type `string`", 'title')));
348
348
  return false;
349
349
  }
350
350
  if (typeof descriptor.icon !== 'string') {
351
- collector.error(( localize(2353, "property `{0}` is mandatory and must be of type `string`", 'icon')));
351
+ collector.error(( localize(2371, "property `{0}` is mandatory and must be of type `string`", 'icon')));
352
352
  return false;
353
353
  }
354
354
  if (isFalsyOrWhitespace(descriptor.title)) {
355
355
  collector.warn(( localize(
356
- 2354,
356
+ 2372,
357
357
  "property `{0}` is mandatory and must be of type `string` with non-empty value",
358
358
  'title'
359
359
  )));
@@ -423,7 +423,7 @@ let ViewsExtensionHandler = class ViewsExtensionHandler {
423
423
  }
424
424
  if (key === 'remote' && !isProposedApiEnabled(extension.description, 'contribViewsRemote')) {
425
425
  collector.warn(( localize(
426
- 2355,
426
+ 2373,
427
427
  "View container '{0}' requires 'enabledApiProposals: [\"contribViewsRemote\"]' to be added to 'Remote'.",
428
428
  key
429
429
  )));
@@ -432,7 +432,7 @@ let ViewsExtensionHandler = class ViewsExtensionHandler {
432
432
  const viewContainer = this.getViewContainer(key);
433
433
  if (!viewContainer) {
434
434
  collector.warn(( localize(
435
- 2356,
435
+ 2374,
436
436
  "View container '{0}' does not exist and all views registered to it will be added to 'Explorer'.",
437
437
  key
438
438
  )));
@@ -442,11 +442,11 @@ let ViewsExtensionHandler = class ViewsExtensionHandler {
442
442
  for (let index = 0; index < value.length; index++) {
443
443
  const item = value[index];
444
444
  if (( viewIds.has(item.id))) {
445
- collector.error(( localize(2357, "Cannot register multiple views with same id `{0}`", item.id)));
445
+ collector.error(( localize(2375, "Cannot register multiple views with same id `{0}`", item.id)));
446
446
  continue;
447
447
  }
448
448
  if (this.viewsRegistry.getView(item.id) !== null) {
449
- collector.error(( localize(2358, "A view with id `{0}` is already registered.", item.id)));
449
+ collector.error(( localize(2376, "A view with id `{0}` is already registered.", item.id)));
450
450
  continue;
451
451
  }
452
452
  const order = ExtensionIdentifier.equals(extension.description.identifier, container.extensionId)
@@ -461,7 +461,7 @@ let ViewsExtensionHandler = class ViewsExtensionHandler {
461
461
  const initialVisibility = this.convertInitialVisibility(item.visibility);
462
462
  const type = this.getViewType(item.type);
463
463
  if (!type) {
464
- collector.error(( localize(2359, "Unknown view type `{0}`.", item.type)));
464
+ collector.error(( localize(2377, "Unknown view type `{0}`.", item.type)));
465
465
  continue;
466
466
  }
467
467
  let weight = undefined;
@@ -543,29 +543,29 @@ let ViewsExtensionHandler = class ViewsExtensionHandler {
543
543
  }
544
544
  isValidViewDescriptors(viewDescriptors, collector) {
545
545
  if (!Array.isArray(viewDescriptors)) {
546
- collector.error(( localize(2360, "views must be an array")));
546
+ collector.error(( localize(2378, "views must be an array")));
547
547
  return false;
548
548
  }
549
549
  for (const descriptor of viewDescriptors) {
550
550
  if (typeof descriptor.id !== 'string') {
551
- collector.error(( localize(2353, "property `{0}` is mandatory and must be of type `string`", 'id')));
551
+ collector.error(( localize(2371, "property `{0}` is mandatory and must be of type `string`", 'id')));
552
552
  return false;
553
553
  }
554
554
  if (typeof descriptor.name !== 'string') {
555
- collector.error(( localize(2353, "property `{0}` is mandatory and must be of type `string`", 'name')));
555
+ collector.error(( localize(2371, "property `{0}` is mandatory and must be of type `string`", 'name')));
556
556
  return false;
557
557
  }
558
558
  if (descriptor.when && typeof descriptor.when !== 'string') {
559
- collector.error(( localize(2361, "property `{0}` can be omitted or must be of type `string`", 'when')));
559
+ collector.error(( localize(2379, "property `{0}` can be omitted or must be of type `string`", 'when')));
560
560
  return false;
561
561
  }
562
562
  if (descriptor.icon && typeof descriptor.icon !== 'string') {
563
- collector.error(( localize(2361, "property `{0}` can be omitted or must be of type `string`", 'icon')));
563
+ collector.error(( localize(2379, "property `{0}` can be omitted or must be of type `string`", 'icon')));
564
564
  return false;
565
565
  }
566
566
  if (descriptor.contextualTitle && typeof descriptor.contextualTitle !== 'string') {
567
567
  collector.error(( localize(
568
- 2361,
568
+ 2379,
569
569
  "property `{0}` can be omitted or must be of type `string`",
570
570
  'contextualTitle'
571
571
  )));
@@ -573,7 +573,7 @@ let ViewsExtensionHandler = class ViewsExtensionHandler {
573
573
  }
574
574
  if (descriptor.visibility && !this.convertInitialVisibility(descriptor.visibility)) {
575
575
  collector.error(( localize(
576
- 2362,
576
+ 2380,
577
577
  "property `{0}` can be omitted or must be one of {1}",
578
578
  'visibility',
579
579
  ( Object.values(InitialVisibility)).join(', ')
@@ -625,9 +625,9 @@ class ViewContainersDataRenderer extends Disposable {
625
625
  return { data: { headers: [], rows: [] }, dispose: () => { } };
626
626
  }
627
627
  const headers = [
628
- ( localize(2363, "ID")),
629
- ( localize(2364, "Title")),
630
- ( localize(2365, "Where")),
628
+ ( localize(2381, "ID")),
629
+ ( localize(2382, "Title")),
630
+ ( localize(2383, "Where")),
631
631
  ];
632
632
  const rows = ( viewContainers
633
633
  .sort((a, b) => a.id.localeCompare(b.id))
@@ -666,9 +666,9 @@ class ViewsDataRenderer extends Disposable {
666
666
  return { data: { headers: [], rows: [] }, dispose: () => { } };
667
667
  }
668
668
  const headers = [
669
- ( localize(2366, "ID")),
670
- ( localize(2367, "Name")),
671
- ( localize(2365, "Where")),
669
+ ( localize(2384, "ID")),
670
+ ( localize(2385, "Name")),
671
+ ( localize(2383, "Where")),
672
672
  ];
673
673
  const rows = ( views
674
674
  .sort((a, b) => a.id.localeCompare(b.id))
@@ -690,7 +690,7 @@ class ViewsDataRenderer extends Disposable {
690
690
  }
691
691
  ( Registry.as(Extensions$2.ExtensionFeaturesRegistry)).registerExtensionFeature({
692
692
  id: 'viewsContainers',
693
- label: ( localize(2368, "View Containers")),
693
+ label: ( localize(2386, "View Containers")),
694
694
  access: {
695
695
  canToggle: false
696
696
  },
@@ -698,7 +698,7 @@ class ViewsDataRenderer extends Disposable {
698
698
  });
699
699
  ( Registry.as(Extensions$2.ExtensionFeaturesRegistry)).registerExtensionFeature({
700
700
  id: 'views',
701
- label: ( localize(2369, "Views")),
701
+ label: ( localize(2387, "Views")),
702
702
  access: {
703
703
  canToggle: false
704
704
  },
@@ -782,12 +782,12 @@ registerAction2(class ToggleStickyScroll extends Action2 {
782
782
  super({
783
783
  id: 'tree.toggleStickyScroll',
784
784
  title: {
785
- ...( localize2(2602, "Toggle Tree Sticky Scroll")),
786
- mnemonicTitle: ( localize(2603, "&&Toggle Tree Sticky Scroll")),
785
+ ...( localize2(2620, "Toggle Tree Sticky Scroll")),
786
+ mnemonicTitle: ( localize(2621, "&&Toggle Tree Sticky Scroll")),
787
787
  },
788
788
  category: 'View',
789
789
  metadata: { description: ( localize(
790
- 2604,
790
+ 2622,
791
791
  "Toggles Sticky Scroll widget at the top of tree structures such as the File Explorer and Debug variables View."
792
792
  )) },
793
793
  f1: true
@@ -2,7 +2,7 @@
2
2
  import { localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
3
3
  import { GroupLocation, GroupDirection } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService';
4
4
  import { IEditorGroupsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
5
- import { Parts } from '@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/services/layout/browser/layoutService';
5
+ import { Parts } from '@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common/vscode/vs/workbench/services/layout/browser/layoutService';
6
6
  import { IWorkbenchLayoutService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service';
7
7
  import { Action2, registerAction2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
8
8
  import { Categories } from '@codingame/monaco-vscode-api/vscode/vs/platform/action/common/actionCommonCategories';
@@ -149,7 +149,7 @@ registerAction2(class extends BaseNavigationAction {
149
149
  constructor() {
150
150
  super({
151
151
  id: 'workbench.action.navigateLeft',
152
- title: ( localize2(2605, 'Navigate to the View on the Left')),
152
+ title: ( localize2(2623, 'Navigate to the View on the Left')),
153
153
  category: Categories.View,
154
154
  f1: true
155
155
  }, Direction.Left);
@@ -159,7 +159,7 @@ registerAction2(class extends BaseNavigationAction {
159
159
  constructor() {
160
160
  super({
161
161
  id: 'workbench.action.navigateRight',
162
- title: ( localize2(2606, 'Navigate to the View on the Right')),
162
+ title: ( localize2(2624, 'Navigate to the View on the Right')),
163
163
  category: Categories.View,
164
164
  f1: true
165
165
  }, Direction.Right);
@@ -169,7 +169,7 @@ registerAction2(class extends BaseNavigationAction {
169
169
  constructor() {
170
170
  super({
171
171
  id: 'workbench.action.navigateUp',
172
- title: ( localize2(2607, 'Navigate to the View Above')),
172
+ title: ( localize2(2625, 'Navigate to the View Above')),
173
173
  category: Categories.View,
174
174
  f1: true
175
175
  }, Direction.Up);
@@ -179,7 +179,7 @@ registerAction2(class extends BaseNavigationAction {
179
179
  constructor() {
180
180
  super({
181
181
  id: 'workbench.action.navigateDown',
182
- title: ( localize2(2608, 'Navigate to the View Below')),
182
+ title: ( localize2(2626, 'Navigate to the View Below')),
183
183
  category: Categories.View,
184
184
  f1: true
185
185
  }, Direction.Down);
@@ -264,7 +264,7 @@ registerAction2(class extends BaseFocusAction {
264
264
  constructor() {
265
265
  super({
266
266
  id: 'workbench.action.focusNextPart',
267
- title: ( localize2(2609, 'Focus Next Part')),
267
+ title: ( localize2(2627, 'Focus Next Part')),
268
268
  category: Categories.View,
269
269
  f1: true,
270
270
  keybinding: {
@@ -278,7 +278,7 @@ registerAction2(class extends BaseFocusAction {
278
278
  constructor() {
279
279
  super({
280
280
  id: 'workbench.action.focusPreviousPart',
281
- title: ( localize2(2610, 'Focus Previous Part')),
281
+ title: ( localize2(2628, 'Focus Previous Part')),
282
282
  category: Categories.View,
283
283
  f1: true,
284
284
  keybinding: {