mudlet-map-editor 0.4.0 → 0.5.0

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.
@@ -0,0 +1,3 @@
1
+ export declare function SearchPanel({ onClose }: {
2
+ onClose: () => void;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,7 @@
1
- export declare function Toolbar({ title, onHelpClick, onLoadFromUrl, onSave }: {
1
+ export declare function Toolbar({ title, onHelpClick, onLoadFromUrl, onSave, onSearchClick }: {
2
2
  title?: string;
3
3
  onHelpClick: () => void;
4
4
  onLoadFromUrl: () => void;
5
5
  onSave?: (bytes: Uint8Array) => void;
6
+ onSearchClick?: () => void;
6
7
  }): import("react/jsx-runtime").JSX.Element;
@@ -225,7 +225,8 @@ export type PendingMarquee = {
225
225
  currentX: number;
226
226
  currentY: number;
227
227
  ctrlHeld: boolean;
228
- /** Room IDs that were selected before the drag began; used for Ctrl toggle. */
228
+ shiftHeld: boolean;
229
+ /** Room IDs that were selected before the drag began; used for Ctrl toggle / Shift add. */
229
230
  preExistingIds: number[];
230
231
  };
231
232
  export type PendingPaint = {