@insforge/dashboard 0.0.0-dev.2 → 0.0.0-dev.3

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.
@@ -11,6 +11,8 @@ interface DashboardModalContextValue {
11
11
  export declare function useDashboardModal(): DashboardModalContextValue;
12
12
  interface DashboardModalProviderProps {
13
13
  children: ReactNode;
14
+ connectDialogOpen?: boolean;
15
+ onConnectDialogOpenChange?: (open: boolean) => void;
14
16
  }
15
- export declare function DashboardModalProvider({ children }: DashboardModalProviderProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare function DashboardModalProvider({ children, connectDialogOpen, onConnectDialogOpenChange, }: DashboardModalProviderProps): import("react/jsx-runtime").JSX.Element;
16
18
  export {};
@@ -50,8 +50,11 @@ export interface DashboardInstanceInfo {
50
50
  export interface DashboardSharedProps {
51
51
  backendUrl: string;
52
52
  initialPath?: string;
53
+ showNavbar?: boolean;
53
54
  project?: DashboardProjectInfo;
54
55
  capabilities?: DashboardCapabilities;
56
+ connectDialogOpen?: boolean;
57
+ onConnectDialogOpenChange?: (open: boolean) => void;
55
58
  onRouteChange?: (route: DashboardRoute) => void;
56
59
  onOpenSettings?: () => void;
57
60
  onNavigateToUsage?: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insforge/dashboard",
3
- "version": "0.0.0-dev.2",
3
+ "version": "0.0.0-dev.3",
4
4
  "description": "Shared InsForge dashboard package for self-hosting and cloud-hosting hosts",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",