@smartnet360/svelte-components 0.0.66 → 0.0.68
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-v2/core/components/MapStoreBridge.svelte +26 -0
- package/dist/map-v2/core/components/MapStoreBridge.svelte.d.ts +8 -0
- package/dist/map-v2/core/index.d.ts +1 -0
- package/dist/map-v2/core/index.js +1 -0
- package/dist/map-v2/demo/DemoMap.svelte +74 -3
- package/dist/map-v2/features/cells/controls/CellFilterControl.svelte +20 -31
- package/dist/map-v2/features/cells/controls/CellFilterControl.svelte.d.ts +7 -0
- package/dist/map-v2/features/cells/controls/CellStyleControl.svelte +246 -0
- package/dist/map-v2/features/cells/controls/CellStyleControl.svelte.d.ts +7 -0
- package/dist/map-v2/features/cells/index.d.ts +2 -1
- package/dist/map-v2/features/cells/index.js +1 -0
- package/dist/map-v2/features/cells/layers/CellLabelsLayer.svelte +237 -0
- package/dist/map-v2/features/cells/layers/CellLabelsLayer.svelte.d.ts +10 -0
- package/dist/map-v2/features/cells/stores/cellStoreContext.svelte.d.ts +36 -0
- package/dist/map-v2/features/cells/stores/cellStoreContext.svelte.js +78 -2
- package/dist/map-v2/features/cells/types.d.ts +8 -2
- package/dist/map-v2/features/cells/types.js +1 -1
- package/dist/map-v2/features/cells/utils/cellTree.d.ts +4 -3
- package/dist/map-v2/features/cells/utils/cellTree.js +54 -54
- package/dist/map-v2/index.d.ts +3 -3
- package/dist/map-v2/index.js +3 -3
- package/package.json +1 -1
package/dist/map-v2/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
// ============================================================================
|
|
8
8
|
// CORE INFRASTRUCTURE
|
|
9
9
|
// ============================================================================
|
|
10
|
-
export { MAP_CONTEXT_KEY, MapboxProvider, ViewportSync, MapStyleControl, createMapStore, createViewportStore, useMapbox, tryUseMapbox } from './core';
|
|
10
|
+
export { MAP_CONTEXT_KEY, MapboxProvider, ViewportSync, MapStoreBridge, MapStyleControl, createMapStore, createViewportStore, useMapbox, tryUseMapbox } from './core';
|
|
11
11
|
// ============================================================================
|
|
12
12
|
// SHARED UTILITIES
|
|
13
13
|
// ============================================================================
|
|
@@ -15,11 +15,11 @@ export { MapControl, addSourceIfMissing, removeSourceIfExists, addLayerIfMissing
|
|
|
15
15
|
// ============================================================================
|
|
16
16
|
// SITE FEATURE
|
|
17
17
|
// ============================================================================
|
|
18
|
-
export { createSiteStore, createSiteStoreContext, SitesLayer, SiteFilterControl, SiteSizeSlider, sitesToGeoJSON, siteToFeature, buildSiteTree, getFilteredSites } from './features/sites';
|
|
18
|
+
export { createSiteStore, createSiteStoreContext, SitesLayer, SiteFilterControl, SiteSelectionControl, SiteSizeSlider, sitesToGeoJSON, siteToFeature, buildSiteTree, getFilteredSites } from './features/sites';
|
|
19
19
|
// ============================================================================
|
|
20
20
|
// CELL FEATURE
|
|
21
21
|
// ============================================================================
|
|
22
|
-
export { createCellStoreContext, CellsLayer, CellFilterControl, CellStyleControl, cellsToGeoJSON, buildCellTree, getFilteredCells, calculateRadius, getZoomFactor, createArcPolygon, DEFAULT_CELL_TREE_CONFIG, TECHNOLOGY_BAND_COLORS, DEFAULT_STATUS_STYLES, RADIUS_MULTIPLIER } from './features/cells';
|
|
22
|
+
export { createCellStoreContext, CellsLayer, CellLabelsLayer, CellFilterControl, CellStyleControl, cellsToGeoJSON, buildCellTree, getFilteredCells, calculateRadius, getZoomFactor, createArcPolygon, DEFAULT_CELL_TREE_CONFIG, TECHNOLOGY_BAND_COLORS, DEFAULT_STATUS_STYLES, RADIUS_MULTIPLIER } from './features/cells';
|
|
23
23
|
// ============================================================================
|
|
24
24
|
// DEMO
|
|
25
25
|
// ============================================================================
|