@eclipse-glsp/client 2.2.0-next.349 → 2.2.0-next.350
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/********************************************************************************
|
|
2
|
-
* Copyright (c) 2020-
|
|
2
|
+
* Copyright (c) 2020-2024 EclipseSource and others.
|
|
3
3
|
*
|
|
4
4
|
* This program and the accompanying materials are made available under the
|
|
5
5
|
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.toActionArray = exports.AutoCompleteWidget = void 0;
|
|
4
4
|
/********************************************************************************
|
|
5
|
-
* Copyright (c) 2020-
|
|
5
|
+
* Copyright (c) 2020-2024 EclipseSource and others.
|
|
6
6
|
*
|
|
7
7
|
* This program and the accompanying materials are made available under the
|
|
8
8
|
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
@@ -204,7 +204,7 @@ class AutoCompleteWidget {
|
|
|
204
204
|
if (auto_complete_actions_1.AutoCompleteValue.is(item)) {
|
|
205
205
|
this.inputElement.value = item.text;
|
|
206
206
|
// trigger update of suggestions with an keyup event
|
|
207
|
-
window.setTimeout(() => this.inputElement.dispatchEvent(new Event('
|
|
207
|
+
window.setTimeout(() => this.inputElement.dispatchEvent(new Event('input')));
|
|
208
208
|
}
|
|
209
209
|
else {
|
|
210
210
|
this.executeFromSuggestion(item);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp/client",
|
|
3
|
-
"version": "2.2.0-next.
|
|
3
|
+
"version": "2.2.0-next.350+1570f91",
|
|
4
4
|
"description": "A sprotty-based client for GLSP",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eclipse",
|
|
@@ -46,20 +46,22 @@
|
|
|
46
46
|
"watch": "tsc -w"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@eclipse-glsp/sprotty": "2.2.0-next.
|
|
50
|
-
"autocompleter": "^9.1.
|
|
49
|
+
"@eclipse-glsp/sprotty": "2.2.0-next.350+1570f91",
|
|
50
|
+
"autocompleter": "^9.1.2",
|
|
51
51
|
"file-saver": "^2.0.5",
|
|
52
|
-
"lodash": "4.17.21"
|
|
52
|
+
"lodash": "4.17.21",
|
|
53
|
+
"snabbdom": "~3.5.1",
|
|
54
|
+
"vscode-jsonrpc": "8.2.0"
|
|
53
55
|
},
|
|
54
56
|
"devDependencies": {
|
|
55
57
|
"@types/file-saver": "^2.0.5",
|
|
56
58
|
"@types/lodash": "4.14.191"
|
|
57
59
|
},
|
|
58
60
|
"peerDependencies": {
|
|
59
|
-
"inversify": "
|
|
61
|
+
"inversify": "~6.0.2"
|
|
60
62
|
},
|
|
61
63
|
"publishConfig": {
|
|
62
64
|
"access": "public"
|
|
63
65
|
},
|
|
64
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "1570f917a3724867f08f5a1b690dabf718a5a796"
|
|
65
67
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/********************************************************************************
|
|
2
|
-
* Copyright (c) 2020-
|
|
2
|
+
* Copyright (c) 2020-2024 EclipseSource and others.
|
|
3
3
|
*
|
|
4
4
|
* This program and the accompanying materials are made available under the
|
|
5
5
|
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
@@ -290,7 +290,7 @@ export class AutoCompleteWidget {
|
|
|
290
290
|
if (AutoCompleteValue.is(item)) {
|
|
291
291
|
this.inputElement.value = item.text;
|
|
292
292
|
// trigger update of suggestions with an keyup event
|
|
293
|
-
window.setTimeout(() => this.inputElement.dispatchEvent(new Event('
|
|
293
|
+
window.setTimeout(() => this.inputElement.dispatchEvent(new Event('input')));
|
|
294
294
|
} else {
|
|
295
295
|
this.executeFromSuggestion(item);
|
|
296
296
|
this.notifyClose('submission');
|