@teamflojo/floimg-studio-ui 0.5.4 → 0.6.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/Toolbar.d.ts +3 -1
- package/dist/index.js +2340 -2106
- package/dist/index.js.map +1 -1
- package/dist/stores/workflowStore.d.ts +9 -0
- package/package.json +2 -2
|
@@ -11,9 +11,11 @@ export interface ToolbarProps {
|
|
|
11
11
|
beforeActionsSlot?: ReactNode;
|
|
12
12
|
/** Slot rendered after all action buttons (e.g., auth/user menu) */
|
|
13
13
|
afterActionsSlot?: ReactNode;
|
|
14
|
+
/** Slot rendered below the toolbar for remix/fork attribution banners */
|
|
15
|
+
remixInfoSlot?: ReactNode;
|
|
14
16
|
/** Hide the "by Flojo" attribution link */
|
|
15
17
|
hideAttribution?: boolean;
|
|
16
18
|
/** Hide the "My Workflows" library toggle button (for wrappers providing custom workflow management) */
|
|
17
19
|
hideWorkflowLibrary?: boolean;
|
|
18
20
|
}
|
|
19
|
-
export declare function Toolbar({ brandingSlot, beforeActionsSlot, afterActionsSlot, hideAttribution, hideWorkflowLibrary, }?: ToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export declare function Toolbar({ brandingSlot, beforeActionsSlot, afterActionsSlot, remixInfoSlot, hideAttribution, hideWorkflowLibrary, }?: ToolbarProps): import("react/jsx-runtime").JSX.Element;
|