@kispace-io/gs-lib 1.2.4 → 1.3.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.
- package/dist/gs-litns.d.ts +1 -1
- package/dist/gs-litns.d.ts.map +1 -1
- package/dist/index.js +97 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/gs-litns.ts +2 -2
- package/src/gs-model.ts +1 -1
- package/src/ml/gs-gs2ml.ts +2 -2
- package/src/ml/gs-ml-adapters.ts +1 -1
- package/src/ol/gs-gs2ol.ts +2 -2
- package/src/ol/gs-ol-adapters.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kispace-io/gs-lib",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "EPL-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"uuid": "^11.1.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@
|
|
42
|
+
"@eclipse-lyra/core": "*",
|
|
43
43
|
"esbuild": "^0.27.0"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
package/src/gs-litns.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Re-export all Lit APIs from appspace's externals/lit module - single source of truth
|
|
2
|
-
export * as lit from "@
|
|
2
|
+
export * as lit from "@eclipse-lyra/core/externals/lit";
|
|
3
3
|
|
|
4
|
-
import "@
|
|
4
|
+
import "@eclipse-lyra/core/externals/webawesome";
|
|
5
5
|
|
package/src/gs-model.ts
CHANGED
package/src/ml/gs-gs2ml.ts
CHANGED
|
@@ -10,8 +10,8 @@ import {
|
|
|
10
10
|
LayerSpecification,
|
|
11
11
|
SourceSpecification
|
|
12
12
|
} from 'maplibre-gl';
|
|
13
|
-
import { v4 as uuidv4 } from '@
|
|
14
|
-
import { subscribe, publish } from '@
|
|
13
|
+
import { v4 as uuidv4 } from '@eclipse-lyra/core/externals/third-party';
|
|
14
|
+
import { subscribe, publish } from '@eclipse-lyra/core/core/events';
|
|
15
15
|
import { GsMlControl, GsMlControlAdapter, GsMlOverlayAdapter } from './gs-ml-adapters';
|
|
16
16
|
|
|
17
17
|
import {
|
package/src/ml/gs-ml-adapters.ts
CHANGED
package/src/ol/gs-gs2ol.ts
CHANGED
|
@@ -52,8 +52,8 @@ import LayerGroup from "ol/layer/Group";
|
|
|
52
52
|
import {Control} from "ol/control";
|
|
53
53
|
import * as ol from "./gs-olns"
|
|
54
54
|
import {lit} from "../gs-litns";
|
|
55
|
-
import {v4 as uuidv4} from '@
|
|
56
|
-
import {subscribe, publish, unsubscribe} from '@
|
|
55
|
+
import {v4 as uuidv4} from '@eclipse-lyra/core/externals/third-party'
|
|
56
|
+
import {subscribe, publish, unsubscribe} from '@eclipse-lyra/core/core/events'
|
|
57
57
|
import {GsControlAdapter, GsOverlayAdapter} from "./gs-ol-adapters";
|
|
58
58
|
import {rtUtils} from "../index";
|
|
59
59
|
import Layer from "ol/layer/Layer";
|
package/src/ol/gs-ol-adapters.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {Map} from "ol";
|
|
2
2
|
import {GsOlControl, GsOlOverlay} from "./gs-gs2ol";
|
|
3
|
-
import {render as litRender} from "@
|
|
3
|
+
import {render as litRender} from "@eclipse-lyra/core/externals/lit";
|
|
4
4
|
|
|
5
5
|
export class GsOlAdapter<T extends GsOlControl | GsOlOverlay> {
|
|
6
6
|
protected map: Map;
|