@mcp-b/geo-openlayers 0.3.12 → 0.4.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/components/circle/circle.d.ts +2 -4
- package/dist/components/circle/circle.js +3 -2
- package/dist/components/control/control.d.ts +2 -4
- package/dist/components/control/control.js +1 -1
- package/dist/components/geojson/geojson.d.ts +2 -4
- package/dist/components/geojson/geojson.js +1 -1
- package/dist/components/map/map.d.ts +2 -4
- package/dist/components/map/map.js +1 -1
- package/dist/components/marker/marker.d.ts +2 -4
- package/dist/components/marker/marker.js +1 -1
- package/dist/components/overlay/overlay.d.ts +2 -4
- package/dist/components/overlay/overlay.js +1 -1
- package/dist/components/polygon/polygon.d.ts +2 -4
- package/dist/components/polygon/polygon.js +1 -1
- package/dist/components/polyline/polyline.d.ts +2 -4
- package/dist/components/polyline/polyline.js +1 -1
- package/dist/components/popup/popup.d.ts +2 -4
- package/dist/components/popup/popup.js +1 -1
- package/dist/components/scale-control/scale-control.d.ts +2 -4
- package/dist/components/scale-control/scale-control.js +1 -1
- package/dist/components/tilelayer/tilelayer.d.ts +2 -4
- package/dist/components/tilelayer/tilelayer.js +1 -1
- package/dist/{decorate-DcF3lt7P.js → decorate-BkO8ArQg.js} +1 -1
- package/dist/docs/custom-elements.json +1 -1
- package/dist/hex-to-rgba.d.ts +2 -3
- package/package.json +14 -14
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from "lit";
|
|
2
|
-
|
|
3
2
|
//#region src/components/circle/circle.d.ts
|
|
4
3
|
/**
|
|
5
4
|
* A circle overlay on an OpenLayers map. Must be a child of `<sigvelo-ol-map>`.
|
|
6
5
|
*
|
|
7
6
|
* @tag sigvelo-ol-circle
|
|
8
7
|
*/
|
|
9
|
-
declare class SigveloOlCircle extends LitElement {
|
|
8
|
+
export declare class SigveloOlCircle extends LitElement {
|
|
10
9
|
/** @internal */
|
|
11
10
|
static styles: import("lit").CSSResult[];
|
|
12
11
|
/** Center latitude. */
|
|
@@ -41,5 +40,4 @@ declare global {
|
|
|
41
40
|
"sigvelo-ol-circle": SigveloOlCircle;
|
|
42
41
|
}
|
|
43
42
|
}
|
|
44
|
-
//#endregion
|
|
45
|
-
export { SigveloOlCircle };
|
|
43
|
+
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { hexToRgba } from "../../hex-to-rgba.js";
|
|
2
|
-
import { t as __decorate } from "../../decorate-
|
|
2
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
3
3
|
import { LitElement, html } from "lit";
|
|
4
4
|
import { customElement, property } from "lit/decorators.js";
|
|
5
5
|
import { fromLonLat } from "ol/proj.js";
|
|
@@ -42,7 +42,8 @@ let SigveloOlCircle = class SigveloOlCircle extends LitElement {
|
|
|
42
42
|
/** @internal */
|
|
43
43
|
_addCircle() {
|
|
44
44
|
if (!this._mapEl?.map) return;
|
|
45
|
-
const
|
|
45
|
+
const center = fromLonLat([this.longitude, this.latitude]);
|
|
46
|
+
const geometry = new Circle$1(center, this.radius);
|
|
46
47
|
this._feature = new Feature({ geometry });
|
|
47
48
|
const style = new Style({
|
|
48
49
|
fill: new Fill({ color: hexToRgba(this.fillColor, this.fillOpacity) }),
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from "lit";
|
|
2
2
|
import { ControlPosition } from "@mcp-b/geo-support/types";
|
|
3
|
-
|
|
4
3
|
//#region src/components/control/control.d.ts
|
|
5
4
|
/**
|
|
6
5
|
* A generic control container for an OpenLayers map. Wraps arbitrary content
|
|
@@ -19,7 +18,7 @@ import { ControlPosition } from "@mcp-b/geo-support/types";
|
|
|
19
18
|
* </sigvelo-ol-map>
|
|
20
19
|
* ```
|
|
21
20
|
*/
|
|
22
|
-
declare class SigveloOlControl extends LitElement {
|
|
21
|
+
export declare class SigveloOlControl extends LitElement {
|
|
23
22
|
/** @internal */
|
|
24
23
|
static styles: import("lit").CSSResult[];
|
|
25
24
|
/** Position of the control on the map. */
|
|
@@ -42,5 +41,4 @@ declare global {
|
|
|
42
41
|
"sigvelo-ol-control": SigveloOlControl;
|
|
43
42
|
}
|
|
44
43
|
}
|
|
45
|
-
//#endregion
|
|
46
|
-
export { SigveloOlControl };
|
|
44
|
+
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as __decorate } from "../../decorate-
|
|
1
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
2
2
|
import { LitElement, html } from "lit";
|
|
3
3
|
import { customElement, property } from "lit/decorators.js";
|
|
4
4
|
import { findMapElement } from "@mcp-b/geo-support/base/find-map-element";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from "lit";
|
|
2
2
|
import { GeoJsonData, StyleFunction } from "@mcp-b/geo-support/types";
|
|
3
|
-
|
|
4
3
|
//#region src/components/geojson/geojson.d.ts
|
|
5
4
|
/**
|
|
6
5
|
* Renders GeoJSON data on an OpenLayers map. Must be a child of `<sigvelo-ol-map>`.
|
|
@@ -9,7 +8,7 @@ import { GeoJsonData, StyleFunction } from "@mcp-b/geo-support/types";
|
|
|
9
8
|
*
|
|
10
9
|
* @event sigvelo-feature-click - Fired when a GeoJSON feature is clicked.
|
|
11
10
|
*/
|
|
12
|
-
declare class SigveloOlGeojson extends LitElement {
|
|
11
|
+
export declare class SigveloOlGeojson extends LitElement {
|
|
13
12
|
/** @internal */
|
|
14
13
|
static styles: import("lit").CSSResult[];
|
|
15
14
|
/** GeoJSON data. Set via property. */
|
|
@@ -65,5 +64,4 @@ declare global {
|
|
|
65
64
|
"sigvelo-ol-geojson": SigveloOlGeojson;
|
|
66
65
|
}
|
|
67
66
|
}
|
|
68
|
-
//#endregion
|
|
69
|
-
export { SigveloOlGeojson };
|
|
67
|
+
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { hexToRgba } from "../../hex-to-rgba.js";
|
|
2
|
-
import { t as __decorate } from "../../decorate-
|
|
2
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
3
3
|
import { LitElement, html } from "lit";
|
|
4
4
|
import { customElement, property } from "lit/decorators.js";
|
|
5
5
|
import { SigveloFeatureClickEvent } from "@mcp-b/geo-support/events";
|
|
@@ -3,7 +3,6 @@ import { GeoMapElement } from "@mcp-b/geo-support/base/geo-map-element";
|
|
|
3
3
|
import OlMap from "ol/Map.js";
|
|
4
4
|
import View from "ol/View.js";
|
|
5
5
|
import { FitBoundsOptions, FlyToOptions } from "@mcp-b/geo-support/types";
|
|
6
|
-
|
|
7
6
|
//#region src/components/map/map.d.ts
|
|
8
7
|
/**
|
|
9
8
|
* An OpenLayers map component. Add tile layers, vector layers, and overlays
|
|
@@ -18,7 +17,7 @@ import { FitBoundsOptions, FlyToOptions } from "@mcp-b/geo-support/types";
|
|
|
18
17
|
* @event sigvelo-map-zoomend - Fired when zooming ends.
|
|
19
18
|
* @event sigvelo-map-load - Fired when the map finishes loading.
|
|
20
19
|
*/
|
|
21
|
-
declare class SigveloOlMap extends GeoMapElement {
|
|
20
|
+
export declare class SigveloOlMap extends GeoMapElement {
|
|
22
21
|
/** @internal */
|
|
23
22
|
static styles: import("lit").CSSResult[];
|
|
24
23
|
/** @internal */
|
|
@@ -41,5 +40,4 @@ declare global {
|
|
|
41
40
|
"sigvelo-ol-map": SigveloOlMap;
|
|
42
41
|
}
|
|
43
42
|
}
|
|
44
|
-
//#endregion
|
|
45
|
-
export { SigveloOlMap };
|
|
43
|
+
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as __decorate } from "../../decorate-
|
|
1
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
2
2
|
import { unsafeCSS } from "lit";
|
|
3
3
|
import { customElement } from "lit/decorators.js";
|
|
4
4
|
import { GeoMapElement } from "@mcp-b/geo-support/base/geo-map-element";
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { LitElement } from "lit";
|
|
2
|
-
|
|
3
2
|
//#region src/components/marker/marker.d.ts
|
|
4
3
|
/**
|
|
5
4
|
* A marker on an OpenLayers map. Must be a child of `<sigvelo-ol-map>`.
|
|
@@ -9,7 +8,7 @@ import { LitElement } from "lit";
|
|
|
9
8
|
* @tag sigvelo-ol-marker
|
|
10
9
|
* @slot - Optional popup content.
|
|
11
10
|
*/
|
|
12
|
-
declare class SigveloOlMarker extends LitElement {
|
|
11
|
+
export declare class SigveloOlMarker extends LitElement {
|
|
13
12
|
/** @internal */
|
|
14
13
|
static styles: import("lit").CSSResult[];
|
|
15
14
|
/** Center latitude. */
|
|
@@ -42,5 +41,4 @@ declare global {
|
|
|
42
41
|
"sigvelo-ol-marker": SigveloOlMarker;
|
|
43
42
|
}
|
|
44
43
|
}
|
|
45
|
-
//#endregion
|
|
46
|
-
export { SigveloOlMarker };
|
|
44
|
+
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as __decorate } from "../../decorate-
|
|
1
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
2
2
|
import { LitElement, html } from "lit";
|
|
3
3
|
import { customElement, property } from "lit/decorators.js";
|
|
4
4
|
import { fromLonLat } from "ol/proj.js";
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { LitElement } from "lit";
|
|
2
|
-
|
|
3
2
|
//#region src/components/overlay/overlay.d.ts
|
|
4
3
|
/**
|
|
5
4
|
* An overlay (marker/popup anchor) on an OpenLayers map.
|
|
@@ -9,7 +8,7 @@ import { LitElement } from "lit";
|
|
|
9
8
|
* @tag sigvelo-ol-overlay
|
|
10
9
|
* @slot - Overlay content (marker icon, popup, etc.).
|
|
11
10
|
*/
|
|
12
|
-
declare class SigveloOlOverlay extends LitElement {
|
|
11
|
+
export declare class SigveloOlOverlay extends LitElement {
|
|
13
12
|
/** @internal */
|
|
14
13
|
static styles: import("lit").CSSResult[];
|
|
15
14
|
/** Center latitude. */
|
|
@@ -36,5 +35,4 @@ declare global {
|
|
|
36
35
|
"sigvelo-ol-overlay": SigveloOlOverlay;
|
|
37
36
|
}
|
|
38
37
|
}
|
|
39
|
-
//#endregion
|
|
40
|
-
export { SigveloOlOverlay };
|
|
38
|
+
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as __decorate } from "../../decorate-
|
|
1
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
2
2
|
import { LitElement, html } from "lit";
|
|
3
3
|
import { customElement, property } from "lit/decorators.js";
|
|
4
4
|
import { fromLonLat } from "ol/proj.js";
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from "lit";
|
|
2
|
-
|
|
3
2
|
//#region src/components/polygon/polygon.d.ts
|
|
4
3
|
/**
|
|
5
4
|
* A polygon overlay on an OpenLayers map. Must be a child of `<sigvelo-ol-map>`.
|
|
6
5
|
*
|
|
7
6
|
* @tag sigvelo-ol-polygon
|
|
8
7
|
*/
|
|
9
|
-
declare class SigveloOlPolygon extends LitElement {
|
|
8
|
+
export declare class SigveloOlPolygon extends LitElement {
|
|
10
9
|
/** @internal */
|
|
11
10
|
static styles: import("lit").CSSResult[];
|
|
12
11
|
/** Array of [lat, lng] coordinate pairs forming the polygon. Set via property. */
|
|
@@ -39,5 +38,4 @@ declare global {
|
|
|
39
38
|
"sigvelo-ol-polygon": SigveloOlPolygon;
|
|
40
39
|
}
|
|
41
40
|
}
|
|
42
|
-
//#endregion
|
|
43
|
-
export { SigveloOlPolygon };
|
|
41
|
+
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { hexToRgba } from "../../hex-to-rgba.js";
|
|
2
|
-
import { t as __decorate } from "../../decorate-
|
|
2
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
3
3
|
import { LitElement, html } from "lit";
|
|
4
4
|
import { customElement, property } from "lit/decorators.js";
|
|
5
5
|
import { fromLonLat } from "ol/proj.js";
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from "lit";
|
|
2
|
-
|
|
3
2
|
//#region src/components/polyline/polyline.d.ts
|
|
4
3
|
/**
|
|
5
4
|
* A polyline on an OpenLayers map. Must be a child of `<sigvelo-ol-map>`.
|
|
6
5
|
*
|
|
7
6
|
* @tag sigvelo-ol-polyline
|
|
8
7
|
*/
|
|
9
|
-
declare class SigveloOlPolyline extends LitElement {
|
|
8
|
+
export declare class SigveloOlPolyline extends LitElement {
|
|
10
9
|
/** @internal */
|
|
11
10
|
static styles: import("lit").CSSResult[];
|
|
12
11
|
/** Array of [lat, lng] coordinate pairs. Set via property. */
|
|
@@ -39,5 +38,4 @@ declare global {
|
|
|
39
38
|
"sigvelo-ol-polyline": SigveloOlPolyline;
|
|
40
39
|
}
|
|
41
40
|
}
|
|
42
|
-
//#endregion
|
|
43
|
-
export { SigveloOlPolyline };
|
|
41
|
+
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { hexToRgba } from "../../hex-to-rgba.js";
|
|
2
|
-
import { t as __decorate } from "../../decorate-
|
|
2
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
3
3
|
import { LitElement, html } from "lit";
|
|
4
4
|
import { customElement, property } from "lit/decorators.js";
|
|
5
5
|
import { fromLonLat } from "ol/proj.js";
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { LitElement } from "lit";
|
|
2
|
-
|
|
3
2
|
//#region src/components/popup/popup.d.ts
|
|
4
3
|
/**
|
|
5
4
|
* Popup content for an OpenLayers marker. Nest inside a
|
|
@@ -11,7 +10,7 @@ import { LitElement } from "lit";
|
|
|
11
10
|
* @tag sigvelo-ol-popup
|
|
12
11
|
* @slot - Popup content.
|
|
13
12
|
*/
|
|
14
|
-
declare class SigveloOlPopup extends LitElement {
|
|
13
|
+
export declare class SigveloOlPopup extends LitElement {
|
|
15
14
|
/** @internal */
|
|
16
15
|
static styles: import("lit").CSSResult[];
|
|
17
16
|
/** Maximum width of the popup in pixels. */
|
|
@@ -23,5 +22,4 @@ declare global {
|
|
|
23
22
|
"sigvelo-ol-popup": SigveloOlPopup;
|
|
24
23
|
}
|
|
25
24
|
}
|
|
26
|
-
//#endregion
|
|
27
|
-
export { SigveloOlPopup };
|
|
25
|
+
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as __decorate } from "../../decorate-
|
|
1
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
2
2
|
import { LitElement, html } from "lit";
|
|
3
3
|
import { customElement, property } from "lit/decorators.js";
|
|
4
4
|
import styles from "@mcp-b/geo-support/styles/map-child.styles";
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { LitElement } from "lit";
|
|
2
|
-
|
|
3
2
|
//#region src/components/scale-control/scale-control.d.ts
|
|
4
3
|
/**
|
|
5
4
|
* A scale line control for an OpenLayers map. Must be a child of `<sigvelo-ol-map>`.
|
|
6
5
|
*
|
|
7
6
|
* @tag sigvelo-ol-scale-control
|
|
8
7
|
*/
|
|
9
|
-
declare class SigveloOlScaleControl extends LitElement {
|
|
8
|
+
export declare class SigveloOlScaleControl extends LitElement {
|
|
10
9
|
/** @internal */
|
|
11
10
|
static styles: import("lit").CSSResult[];
|
|
12
11
|
/** Unit system for the scale bar. */
|
|
@@ -28,5 +27,4 @@ declare global {
|
|
|
28
27
|
"sigvelo-ol-scale-control": SigveloOlScaleControl;
|
|
29
28
|
}
|
|
30
29
|
}
|
|
31
|
-
//#endregion
|
|
32
|
-
export { SigveloOlScaleControl };
|
|
30
|
+
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as __decorate } from "../../decorate-
|
|
1
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
2
2
|
import { LitElement, html } from "lit";
|
|
3
3
|
import { customElement, property } from "lit/decorators.js";
|
|
4
4
|
import { findMapElement } from "@mcp-b/geo-support/base/find-map-element";
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from "lit";
|
|
2
|
-
|
|
3
2
|
//#region src/components/tilelayer/tilelayer.d.ts
|
|
4
3
|
/**
|
|
5
4
|
* A tile layer for an OpenLayers map. Must be a child of `<sigvelo-ol-map>`.
|
|
@@ -7,7 +6,7 @@ import { LitElement, PropertyValues } from "lit";
|
|
|
7
6
|
*
|
|
8
7
|
* @tag sigvelo-ol-tilelayer
|
|
9
8
|
*/
|
|
10
|
-
declare class SigveloOlTilelayer extends LitElement {
|
|
9
|
+
export declare class SigveloOlTilelayer extends LitElement {
|
|
11
10
|
/** @internal */
|
|
12
11
|
static styles: import("lit").CSSResult[];
|
|
13
12
|
/** URL template for tiles. Leave empty for OpenStreetMap default. */
|
|
@@ -34,5 +33,4 @@ declare global {
|
|
|
34
33
|
"sigvelo-ol-tilelayer": SigveloOlTilelayer;
|
|
35
34
|
}
|
|
36
35
|
}
|
|
37
|
-
//#endregion
|
|
38
|
-
export { SigveloOlTilelayer };
|
|
36
|
+
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as __decorate } from "../../decorate-
|
|
1
|
+
import { t as __decorate } from "../../decorate-BkO8ArQg.js";
|
|
2
2
|
import { LitElement, html } from "lit";
|
|
3
3
|
import { customElement, property } from "lit/decorators.js";
|
|
4
4
|
import TileLayer from "ol/layer/Tile.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region \0@oxc-project+runtime@0.
|
|
1
|
+
//#region \0@oxc-project+runtime@0.148.0/helpers/esm/decorate.js
|
|
2
2
|
function __decorate(decorators, target, key, desc) {
|
|
3
3
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
4
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
package/dist/hex-to-rgba.d.ts
CHANGED
|
@@ -8,6 +8,5 @@
|
|
|
8
8
|
* Six-digit hex only, matching the `fill-color` / `stroke-color` defaults these
|
|
9
9
|
* components ship.
|
|
10
10
|
*/
|
|
11
|
-
declare function hexToRgba(hex: string, opacity: number): string;
|
|
12
|
-
//#endregion
|
|
13
|
-
export { hexToRgba };
|
|
11
|
+
export declare function hexToRgba(hex: string, opacity: number): string;
|
|
12
|
+
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-b/geo-openlayers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "OpenLayers web components for Sigvelo, built with Lit.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"custom-elements",
|
|
@@ -35,28 +35,28 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@mcp-b/geo-support": "0.3.
|
|
39
|
-
"@mcp-b/wc-support": "0.3.
|
|
38
|
+
"@mcp-b/geo-support": "0.3.13",
|
|
39
|
+
"@mcp-b/wc-support": "0.3.13"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@custom-elements-manifest/analyzer": "^0.
|
|
43
|
-
"@storybook/addon-a11y": "
|
|
44
|
-
"@storybook/addon-docs": "
|
|
45
|
-
"@storybook/addon-vitest": "
|
|
42
|
+
"@custom-elements-manifest/analyzer": "^0.11.0",
|
|
43
|
+
"@storybook/addon-a11y": "10.5.7",
|
|
44
|
+
"@storybook/addon-docs": "10.5.7",
|
|
45
|
+
"@storybook/addon-vitest": "10.5.7",
|
|
46
46
|
"@storybook/web-components-vite": "10.5.7",
|
|
47
|
-
"@vitest/browser-playwright": "^4.1.
|
|
48
|
-
"@vitest/coverage-v8": "^4.1.
|
|
47
|
+
"@vitest/browser-playwright": "^4.1.11",
|
|
48
|
+
"@vitest/coverage-v8": "^4.1.11",
|
|
49
49
|
"@wc-toolkit/cem-inheritance": "^1.2.5",
|
|
50
50
|
"@wc-toolkit/cem-sorter": "^1.0.1",
|
|
51
51
|
"@wc-toolkit/type-parser": "^1.3.1",
|
|
52
52
|
"ol": "^10.10.0",
|
|
53
|
-
"playwright": "
|
|
54
|
-
"storybook": "
|
|
53
|
+
"playwright": "1.61.1",
|
|
54
|
+
"storybook": "10.5.7",
|
|
55
55
|
"tinyglobby": "^0.2.17",
|
|
56
56
|
"typescript": "^6.0.3",
|
|
57
|
-
"vite": "npm:@voidzero-dev/vite-plus-core@0.
|
|
58
|
-
"vite-plugin-static-copy": "^
|
|
59
|
-
"vitest": "^4.1.
|
|
57
|
+
"vite": "npm:@voidzero-dev/vite-plus-core@0.3.1",
|
|
58
|
+
"vite-plugin-static-copy": "^4.1.1",
|
|
59
|
+
"vitest": "^4.1.11"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"lit": "^3.0.0",
|