poe-svelte-ui-lib 1.7.6 → 1.7.7
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/Map/Map.svelte +16 -0
- package/dist/Map/Map.svelte.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -2
- package/package.json +4 -4
package/dist/Map/Map.svelte
CHANGED
|
@@ -216,3 +216,19 @@
|
|
|
216
216
|
{/each}
|
|
217
217
|
</MapLibre>
|
|
218
218
|
</div> -->
|
|
219
|
+
|
|
220
|
+
<script lang="ts">
|
|
221
|
+
import { Map, TileLayer, Marker, Popup } from "sveaflet"
|
|
222
|
+
</script>
|
|
223
|
+
|
|
224
|
+
<div style="width:100%;height:500px;">
|
|
225
|
+
<Map
|
|
226
|
+
options={{
|
|
227
|
+
center: [51.505, -0.09],
|
|
228
|
+
zoom: 13,
|
|
229
|
+
}}
|
|
230
|
+
>
|
|
231
|
+
<TileLayer url={"https://tile.openstreetmap.org/{z}/{x}/{y}.png"} />
|
|
232
|
+
<Marker latLng={[51.505, -0.09]} />
|
|
233
|
+
</Map>
|
|
234
|
+
</div>
|
package/dist/Map/Map.svelte.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Map } from "sveaflet";
|
|
1
2
|
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
2
3
|
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
|
|
3
4
|
$$bindings?: Bindings;
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export { default as InputProps } from "./Input/InputProps.svelte";
|
|
|
14
14
|
export { default as Joystick } from "./Joystick/Joystick.svelte";
|
|
15
15
|
export { default as JoystickProps } from "./Joystick/JoystickProps.svelte";
|
|
16
16
|
export { default as Modal } from "./Modal.svelte";
|
|
17
|
+
export { default as Map } from "./Map/Map.svelte";
|
|
18
|
+
export { default as MapProps } from "./Map/MapProps.svelte";
|
|
17
19
|
export { default as ProgressBar } from "./ProgressBar/ProgressBar.svelte";
|
|
18
20
|
export { default as ProgressBarProps } from "./ProgressBar/ProgressBarProps.svelte";
|
|
19
21
|
export { default as Select } from "./Select/Select.svelte";
|
package/dist/index.js
CHANGED
|
@@ -15,8 +15,8 @@ export { default as InputProps } from "./Input/InputProps.svelte";
|
|
|
15
15
|
export { default as Joystick } from "./Joystick/Joystick.svelte";
|
|
16
16
|
export { default as JoystickProps } from "./Joystick/JoystickProps.svelte";
|
|
17
17
|
export { default as Modal } from "./Modal.svelte";
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
export { default as Map } from "./Map/Map.svelte";
|
|
19
|
+
export { default as MapProps } from "./Map/MapProps.svelte";
|
|
20
20
|
export { default as ProgressBar } from "./ProgressBar/ProgressBar.svelte";
|
|
21
21
|
export { default as ProgressBarProps } from "./ProgressBar/ProgressBarProps.svelte";
|
|
22
22
|
export { default as Select } from "./Select/Select.svelte";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "poe-svelte-ui-lib",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"svelte": "^5.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"sveaflet": "^0.1.4"
|
|
36
|
+
"sveaflet": "^0.1.4",
|
|
37
|
+
"tailwind-merge": "^3.4.0"
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
40
|
"@sveltejs/adapter-static": "^3.0.10",
|
|
@@ -51,7 +52,6 @@
|
|
|
51
52
|
"tsx": "^4.21.0",
|
|
52
53
|
"typescript": "^5.9.3",
|
|
53
54
|
"vite": "^7.3.1",
|
|
54
|
-
"vite-plugin-compression": "^0.5.1"
|
|
55
|
-
"tailwind-merge": "^3.4.0"
|
|
55
|
+
"vite-plugin-compression": "^0.5.1"
|
|
56
56
|
}
|
|
57
57
|
}
|