@camstack/ui-library 1.1.6 → 1.1.8

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.
@@ -1,5 +1,16 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { DeviceControlProps } from './control-registry';
3
+ /**
4
+ * ImageDetailModal — a full-view image dialog with zoom in/out/reset and pan
5
+ * (scroll when zoomed). Generous padding frames the image. Opened by clicking
6
+ * the inline thumbnail or the hero image. Controlled via `open`/`onOpenChange`.
7
+ */
8
+ export declare function ImageDetailModal({ url, alt, open, onOpenChange, }: {
9
+ readonly url: string;
10
+ readonly alt: string;
11
+ readonly open: boolean;
12
+ readonly onOpenChange: (open: boolean) => void;
13
+ }): ReactNode;
3
14
  /**
4
15
  * ImageInlineControl — compact thumbnail for a device-list row that expands
5
16
  * into a floating preview on hover/focus (shared `HoverZoomImage`). Shows a
@@ -481,6 +481,8 @@ export declare const useDeviceManagerAdoptionRefresh: typeof trpc.deviceManager.
481
481
  export declare const useDeviceManagerAdoptionAdopt: typeof trpc.deviceManager.adoptionAdopt.useMutation;
482
482
  /** Generated alias around `trpc.deviceManager.adoptionRelease.useMutation`. */
483
483
  export declare const useDeviceManagerAdoptionRelease: typeof trpc.deviceManager.adoptionRelease.useMutation;
484
+ /** Generated alias around `trpc.deviceManager.adoptionResync.useMutation`. */
485
+ export declare const useDeviceManagerAdoptionResync: typeof trpc.deviceManager.adoptionResync.useMutation;
484
486
  /** Generated alias around `trpc.deviceManager.testField.useMutation`. */
485
487
  export declare const useDeviceManagerTestField: typeof trpc.deviceManager.testField.useMutation;
486
488
  /** Generated alias around `trpc.deviceManager.getDeviceStatusAggregate.useQuery`. */