@swr-data-lab/components 2.4.1 → 2.4.2

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.
@@ -3,7 +3,6 @@ import { onMount, onDestroy, getContext, hasContext } from 'svelte';
3
3
  import { createMapContext, MapContext } from '../context.svelte.js';
4
4
  import {} from '../types';
5
5
  import FallbackStyle from './FallbackStyle';
6
- import { derived } from 'svelte/store';
7
6
  let { children, options, style = FallbackStyle, minZoom = 0, maxZoom = 14.99, zoom = $bindable(), center = $bindable(), pitch = $bindable(0), bearing = $bindable(0), loading = $bindable(true), projection = { type: 'mercator' }, allowRotation = false, allowZoom = true, showDebug = false, initialLocation: receivedInitialLocation,
8
7
  // Future: This should become bindable.readonly when that becomes
9
8
  // available, see: https://github.com/sveltejs/svelte/issues/7712
@@ -127,6 +126,9 @@ const handleDebugCopyLocationClick = (e) => {
127
126
  padding: 2px;
128
127
  font-family: monospace;
129
128
  }
129
+ .debug li {
130
+ list-style: none;
131
+ }
130
132
  .debug button {
131
133
  appearance: none;
132
134
  background: transparent;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@swr-data-lab/components",
3
3
  "description": "SWR Data Lab component library",
4
- "version": "2.4.1",
4
+ "version": "2.4.2",
5
5
  "author": "SWR Data Lab",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",