This library, which is a part of Sisense Compose SDK,
contains React UI components including charts, widgets, filters, and queries.

## Modular imports

Starting with the current release, Leaflet based charting helpers are published from `@sisense/sdk-ui/maps`.
Importing from `@sisense/sdk-ui` no longer pulls Leaflet dependencies by default, which prevents
version conflicts for applications that do not render Compose SDK map charts.

```ts
// core widgets, dashboards, standard charts
import { WidgetById, ChartWidget } from '@sisense/sdk-ui/core';

// map charts and utilities
import { ScattermapChart, registerMaps } from '@sisense/sdk-ui/maps';

registerMaps(); // optional; automatically runs when `@sisense/sdk-ui/maps` is imported
```

If you rely on `ScattermapChart`, `AreamapChart`, or map specific helpers, ensure that
`@sisense/sdk-ui/maps` is imported before rendering those components so that Leaflet renderers
and translators are registered. When you need the legacy all-in-one bundle, continue importing
from `@sisense/sdk-ui` (it re-exports everything from `@sisense/sdk-ui/core` plus any optional packs).
