@eclipse-glsp/client 2.9.0-next.3 → 2.9.0-next.9

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.
@@ -46,8 +46,8 @@ export interface AutoCompleteWidgetOptions {
46
46
  * The `AutoCompleteWidget` is a reusable UI element that provides a text input supporting auto-completion,
47
47
  * validation, validation messages, etc.
48
48
  *
49
- * An example for using it is available in the workflow diagram:
50
- * https://github.com/eclipse-glsp/glsp-client/blob/master/examples/workflow-glsp/src/direct-task-editing/direct-task-editor.ts
49
+ * An example for using it is available in the workflow diagram example of this repository:
50
+ * `examples/workflow-glsp/src/direct-task-editing/direct-task-editor.ts`
51
51
  */
52
52
  export declare class AutoCompleteWidget {
53
53
  autoSuggestionSettings: AutoCompleteSettings;
@@ -26,8 +26,8 @@ const configureAutocomplete = require('autocompleter');
26
26
  * The `AutoCompleteWidget` is a reusable UI element that provides a text input supporting auto-completion,
27
27
  * validation, validation messages, etc.
28
28
  *
29
- * An example for using it is available in the workflow diagram:
30
- * https://github.com/eclipse-glsp/glsp-client/blob/master/examples/workflow-glsp/src/direct-task-editing/direct-task-editor.ts
29
+ * An example for using it is available in the workflow diagram example of this repository:
30
+ * `examples/workflow-glsp/src/direct-task-editing/direct-task-editor.ts`
31
31
  */
32
32
  class AutoCompleteWidget {
33
33
  constructor(autoSuggestionSettings, suggestionProvider, suggestionSubmitHandler, notifyClose = () => { }, logger, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/client",
3
- "version": "2.9.0-next.3",
3
+ "version": "2.9.0-next.9",
4
4
  "description": "A sprotty-based client for GLSP",
5
5
  "keywords": [
6
6
  "diagram",
@@ -26,7 +26,8 @@
26
26
  ],
27
27
  "repository": {
28
28
  "type": "git",
29
- "url": "https://github.com/eclipse-glsp/glsp-core.git"
29
+ "url": "https://github.com/eclipse-glsp/glsp-core.git",
30
+ "directory": "packages/client/client"
30
31
  },
31
32
  "files": [
32
33
  "lib",
@@ -41,7 +42,7 @@
41
42
  "access": "public"
42
43
  },
43
44
  "dependencies": {
44
- "@eclipse-glsp/sprotty": "2.9.0-next.3",
45
+ "@eclipse-glsp/sprotty": "2.9.0-next.9",
45
46
  "@vscode/codicons": "^0.0.44",
46
47
  "autocompleter": "^9.1.2",
47
48
  "file-saver": "^2.0.5",
@@ -68,8 +68,8 @@ const configureAutocomplete: (settings: AutocompleteSettings<LabeledAction>) =>
68
68
  * The `AutoCompleteWidget` is a reusable UI element that provides a text input supporting auto-completion,
69
69
  * validation, validation messages, etc.
70
70
  *
71
- * An example for using it is available in the workflow diagram:
72
- * https://github.com/eclipse-glsp/glsp-client/blob/master/examples/workflow-glsp/src/direct-task-editing/direct-task-editor.ts
71
+ * An example for using it is available in the workflow diagram example of this repository:
72
+ * `examples/workflow-glsp/src/direct-task-editing/direct-task-editor.ts`
73
73
  */
74
74
  export class AutoCompleteWidget {
75
75
  loadingIndicatorClasses = codiconCSSClasses('loading', false, true, ['loading']);