@smartnet360/svelte-components 0.0.67 → 0.0.69
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 +270 -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 +2 -2
- package/dist/map-v2/index.js +2 -2
- package/package.json +1 -1
package/dist/map-v2/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* A decoupled, feature-based architecture for Mapbox cellular network visualization.
|
|
5
5
|
* Each feature (sites, cells) is completely independent with its own store, layers, and controls.
|
|
6
6
|
*/
|
|
7
|
-
export { type MapStore, MAP_CONTEXT_KEY, MapboxProvider, ViewportSync, MapStyleControl, createMapStore, createViewportStore, type ViewportStore, type ViewportState, useMapbox, tryUseMapbox } from './core';
|
|
7
|
+
export { type MapStore, MAP_CONTEXT_KEY, MapboxProvider, ViewportSync, MapStoreBridge, MapStyleControl, createMapStore, createViewportStore, type ViewportStore, type ViewportState, useMapbox, tryUseMapbox } from './core';
|
|
8
8
|
export { MapControl, addSourceIfMissing, removeSourceIfExists, addLayerIfMissing, removeLayerIfExists, updateGeoJSONSource, removeLayerAndSource, isStyleLoaded, waitForStyleLoad, setFeatureState, removeFeatureState, generateLayerId, generateSourceId } from './shared';
|
|
9
9
|
export { type Site, type SiteStoreValue, type SiteStoreContext, createSiteStore, createSiteStoreContext, SitesLayer, SiteFilterControl, SiteSelectionControl, SiteSizeSlider, sitesToGeoJSON, siteToFeature, buildSiteTree, getFilteredSites } from './features/sites';
|
|
10
|
-
export { type Cell, type CellStatus, type CellStatusStyle, type CellGroupingField, type CellTreeConfig, type TechnologyBandKey, type CellStoreValue, type CellStoreContext, 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';
|
|
10
|
+
export { type Cell, type CellStatus, type CellStatusStyle, type CellGroupingField, type CellGroupingLabels, type CellTreeConfig, type TechnologyBandKey, type CellStoreValue, type CellStoreContext, 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';
|
|
11
11
|
export { DemoMap, demoSites, demoCells } from './demo';
|
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
|
// ============================================================================
|
|
@@ -19,7 +19,7 @@ export { createSiteStore, createSiteStoreContext, SitesLayer, SiteFilterControl,
|
|
|
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
|
// ============================================================================
|