searchsmartly-ui 1.0.32 → 1.0.34

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
@@ -624,6 +624,7 @@ type MapProps = {
624
624
  areaTagIndex?: number | null;
625
625
  onChangeAreaTags?: (val: Record<string, string[] | unknown>, index: number, isAdd: boolean) => void;
626
626
  updateAreaTagIndex?: (val: null | number) => void;
627
+ onDeleteTag?: (index: number) => void;
627
628
  onViewportChange?: (viewport: MapViewport) => void;
628
629
  getViewState?: () => ViewState;
629
630
  };
@@ -658,6 +659,7 @@ type MapTagsInterface = {
658
659
  updateTagIndex: (val: null | number) => void;
659
660
  updateAreaTagIndex?: (val: null | number) => void;
660
661
  onChangeAreaTags?: (val: Record<string, string[] | unknown>, index: number, isAdd: boolean) => void;
662
+ onDeleteTag?: (index: number) => void;
661
663
  };
662
664
  declare const MapTags: FC<MapTagsInterface>;
663
665