@arenarium/maps 1.0.112 → 1.0.113

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/index.d.ts CHANGED
@@ -777,6 +777,10 @@ export interface MapComponent {
777
777
  setConfiguration: (configuration: MapConfiguration) => void;
778
778
  updatePopups: (popups: MapPopup[]) => Promise<void>;
779
779
  removePopups: () => void;
780
+ togglePopups: (states: {
781
+ id: string;
782
+ toggled: boolean;
783
+ }[]) => void;
780
784
  revealPopup: (id: string) => MapPopup | undefined;
781
785
  on: <E extends EventId>(eventId: E, handler: EventHandler<E>) => void;
782
786
  off: <E extends EventId>(eventId: E, handler: EventHandler<E>) => void;