@hydranium/glsp-client-theia 1.0.0-next.45 → 1.0.0-next.49

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.
@@ -17,4 +17,5 @@ export * from './glsp-message-service';
17
17
  export * from './glsp-theia-frontend-module';
18
18
  export * from './hidden-bounds-updater';
19
19
  export * from './hydranium-glsp-diagram-configuration';
20
+ export type { GLSPDiagramLanguage } from '@eclipse-glsp/theia-integration/lib/common';
20
21
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/browser/index.ts"],"names":[],"mappings":"AAAA;;;;;;;kFAOkF;AAIlF,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,wCAAwC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/browser/index.ts"],"names":[],"mappings":"AAAA;;;;;;;kFAOkF;AAIlF,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,wCAAwC,CAAC;AAKvD,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hydranium/glsp-client-theia",
3
- "version": "1.0.0-next.45",
3
+ "version": "1.0.0-next.49",
4
4
  "description": "Theia-coupled client primitives for GLSP heads built on @hydranium/glsp-server. Provides the action dispatcher, channel logger, and connection-handler bases that Theia-based adopters extend; companion of @hydranium/glsp-server.",
5
5
  "keywords": [
6
6
  "hydranium",
@@ -78,8 +78,8 @@
78
78
  "devDependencies": {
79
79
  "@eclipse-glsp/client": "2.7.0",
80
80
  "@eclipse-glsp/theia-integration": "2.7.0",
81
- "@hydranium/client-theia": "1.0.0-next.45",
82
- "@hydranium/protocol": "1.0.0-next.45",
81
+ "@hydranium/client-theia": "1.0.0-next.49",
82
+ "@hydranium/protocol": "1.0.0-next.49",
83
83
  "@theia/core": "^1.70.0",
84
84
  "@theia/output": "^1.70.0",
85
85
  "@theia/process": "^1.70.0",
@@ -93,8 +93,8 @@
93
93
  "peerDependencies": {
94
94
  "@eclipse-glsp/client": "^2.6.0",
95
95
  "@eclipse-glsp/theia-integration": "^2.6.0",
96
- "@hydranium/client-theia": "1.0.0-next.45",
97
- "@hydranium/protocol": "1.0.0-next.45",
96
+ "@hydranium/client-theia": "1.0.0-next.49",
97
+ "@hydranium/protocol": "1.0.0-next.49",
98
98
  "@theia/core": "^1.70.0",
99
99
  "@theia/output": "^1.70.0",
100
100
  "@theia/process": "^1.70.0",
@@ -20,3 +20,8 @@ export * from './glsp-message-service';
20
20
  export * from './glsp-theia-frontend-module';
21
21
  export * from './hidden-bounds-updater';
22
22
  export * from './hydranium-glsp-diagram-configuration';
23
+
24
+ // Upstream's root entry is its browser tier and re-exports no `lib/common`, so the
25
+ // type our abstract `diagramLanguage` members are declared with has no bare-specifier
26
+ // path — without this line every adopter implementing one deep-imports it.
27
+ export type { GLSPDiagramLanguage } from '@eclipse-glsp/theia-integration/lib/common';