bbl-mapbox-react 0.0.31 → 0.0.33
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/Mapbox.d.ts +2 -0
- package/dist/components/AttackDirectionRenderer.d.ts +47 -0
- package/dist/index.cjs +7 -7
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +928 -551
- package/dist/types.d.ts +30 -1
- package/dist/utils/measure.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { Mapbox } from './Mapbox';
|
|
2
|
-
export type { MapboxProps, MapboxRef, MapEntity, BaseEntity, RadarEntity, ImageEntity, MarkerEntity, BaseMarkerEntity, UnitEntity, PolygonEntity, PolylineEntity, CircleEntity, SquareEntity, RectangleEntity, EntityId, Location, PopupConfig, PopupDefaults, PopupTrigger, PopupAnimation, PopupPosition, PopupState, LayerConfig, RasterLayerConfig, StyleLayerConfig, TileJSONLayerConfig, LayerType, TileScheme, CoordinateDisplayConfig, ScaleControlConfig, ResetViewControlConfig, RoadHighlightControlConfig, RoadClass, RoadTypeOption, InteractionOptions, EditHandleType, EditHandle, MapMode, DrawMode, DrawingOptions, MarkerStyleOptions, RectangleStyleOptions, CircleStyleOptions, PolygonStyleOptions, PolylineStyleOptions, SquareStyleOptions, PickerResult, PickerModeConfig, StartPickingOptions, EditModeConfig, MarkerTemplate, RenderContext, ColorScheme, CircleFillType, CircleGradientAnimation, NameConfig, RoadHighlightControlRef, } from './types';
|
|
2
|
+
export type { MapboxProps, MapboxRef, MapEntity, BaseEntity, RadarEntity, ImageEntity, MarkerEntity, BaseMarkerEntity, UnitEntity, PolygonEntity, PolylineEntity, CircleEntity, SquareEntity, RectangleEntity, AttackDirectionEntity, EntityId, Location, PopupConfig, PopupDefaults, PopupTrigger, PopupAnimation, PopupPosition, PopupState, LayerConfig, RasterLayerConfig, StyleLayerConfig, TileJSONLayerConfig, LayerType, TileScheme, CoordinateDisplayConfig, ScaleControlConfig, ResetViewControlConfig, RoadHighlightControlConfig, RoadClass, RoadTypeOption, InteractionOptions, EditHandleType, EditHandle, MapMode, DrawMode, DrawingOptions, MarkerStyleOptions, RectangleStyleOptions, CircleStyleOptions, PolygonStyleOptions, PolylineStyleOptions, SquareStyleOptions, PickerResult, PickerModeConfig, StartPickingOptions, EditModeConfig, MarkerTemplate, RenderContext, ColorScheme, CircleFillType, CircleGradientAnimation, NameConfig, RoadHighlightControlRef, } from './types';
|
|
3
3
|
export { COLOR_SCHEMES, RADAR_DEFAULTS, POPUP_DEFAULTS, ROAD_TYPE_OPTIONS, DEFAULT_NAME_CONFIG, DEFAULT_SELECT_NAME_CONFIG, resolveNameConfig } from './types';
|
|
4
4
|
export { EntityPopup } from './components/EntityPopup';
|
|
5
5
|
export { CoordinateDisplay } from './components/CoordinateDisplay';
|
|
@@ -16,6 +16,7 @@ export { UnitRenderer } from './components/UnitRenderer';
|
|
|
16
16
|
export { CircleRenderer } from './components/CircleRenderer';
|
|
17
17
|
export { PolygonRenderer } from './components/PolygonRenderer';
|
|
18
18
|
export { PolylineRenderer } from './components/PolylineRenderer';
|
|
19
|
+
export { AttackDirectionRenderer } from './components/AttackDirectionRenderer';
|
|
19
20
|
export { SquareRenderer } from './components/SquareRenderer';
|
|
20
21
|
export { RectangleRenderer } from './components/RectangleRenderer';
|
|
21
22
|
export { BaseCanvasRenderer, confidenceToOpacity } from './components/BaseCanvasRenderer';
|