@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kispace-io/gs-lib",
3
- "version": "1.2.4",
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
- "@kispace-io/core": "*",
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 "@kispace-io/core/externals/lit";
2
+ export * as lit from "@eclipse-lyra/core/externals/lit";
3
3
 
4
- import "@kispace-io/core/externals/webawesome";
4
+ import "@eclipse-lyra/core/externals/webawesome";
5
5
 
package/src/gs-model.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { v4 as uuidv4 } from '@kispace-io/core/externals/third-party'
1
+ import { v4 as uuidv4 } from '@eclipse-lyra/core/externals/third-party'
2
2
 
3
3
  export const KEY_LABEL = "label";
4
4
  export const KEY_NAME = "name";
@@ -10,8 +10,8 @@ import {
10
10
  LayerSpecification,
11
11
  SourceSpecification
12
12
  } from 'maplibre-gl';
13
- import { v4 as uuidv4 } from '@kispace-io/core/externals/third-party';
14
- import { subscribe, publish } from '@kispace-io/core/core/events';
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 {
@@ -1,5 +1,5 @@
1
1
  import { Map, Popup, IControl, LngLatLike } from 'maplibre-gl';
2
- import { render as litRender } from "@kispace-io/core/externals/lit";
2
+ import { render as litRender } from "@eclipse-lyra/core/externals/lit";
3
3
 
4
4
  /**
5
5
  * MapLibre Control adapter for user modules
@@ -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 '@kispace-io/core/externals/third-party'
56
- import {subscribe, publish, unsubscribe} from '@kispace-io/core/core/events'
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";
@@ -1,6 +1,6 @@
1
1
  import {Map} from "ol";
2
2
  import {GsOlControl, GsOlOverlay} from "./gs-gs2ol";
3
- import {render as litRender} from "@kispace-io/core/externals/lit";
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;