@teamflojo/floimg-studio-ui 0.12.0 → 0.14.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.
- package/dist/components/ImageLightbox.d.ts +5 -0
- package/dist/components/Toolbar.d.ts +5 -1
- package/dist/editor/WarningEdge.d.ts +7 -0
- package/dist/index.js +3051 -2663
- package/dist/index.js.map +1 -1
- package/dist/stores/aiChatStore.d.ts +2 -0
- package/dist/stores/workflowStore.d.ts +11 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -17,5 +17,9 @@ export interface ToolbarProps {
|
|
|
17
17
|
hideAttribution?: boolean;
|
|
18
18
|
/** Hide the "My Workflows" library toggle button (for wrappers providing custom workflow management) */
|
|
19
19
|
hideWorkflowLibrary?: boolean;
|
|
20
|
+
/** Callback when AI Generate button is clicked */
|
|
21
|
+
onToggleAI?: () => void;
|
|
22
|
+
/** Whether the AI panel is currently open (for visual feedback) */
|
|
23
|
+
isAIPanelOpen?: boolean;
|
|
20
24
|
}
|
|
21
|
-
export declare function Toolbar({ brandingSlot, beforeActionsSlot, afterActionsSlot, remixInfoSlot, hideAttribution, hideWorkflowLibrary, }?: ToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export declare function Toolbar({ brandingSlot, beforeActionsSlot, afterActionsSlot, remixInfoSlot, hideAttribution, hideWorkflowLibrary, onToggleAI, isAIPanelOpen, }?: ToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { EdgeProps } from 'reactflow';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Custom edge component that displays warning tooltip for ambiguous connections.
|
|
5
|
+
* Used when an image output is connected to a text input when references handle is available.
|
|
6
|
+
*/
|
|
7
|
+
export declare const WarningEdge: import('react').NamedExoticComponent<EdgeProps>;
|