@equinor/videx-3d
    Preparing search index...

    Function useOutputPanel

    • Internal

      Allow interaction with the OutputPanel component. The OutputPanel is mainly used as an example of the Panel component. It is used in storybooks as a debug/info panel. Not recommended to use for production.

      Returns {
          add: (id: string, group: OutputPanelGroup) => void;
          has: (id: string) => boolean;
          remove: (id: string) => void;
          removeAll: () => void;
          update: (
              id: string,
              value: string | number,
              details?: Record<string, string | number> | null,
          ) => void;
      }