@teamflojo/floimg-studio-ui 0.5.3 → 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/README.md +1 -1
- package/dist/components/Toolbar.d.ts +3 -1
- package/dist/index.js +2364 -2099
- package/dist/index.js.map +1 -1
- package/dist/stores/workflowStore.d.ts +18 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -104,7 +104,7 @@ import {
|
|
|
104
104
|
For a complete self-hosted solution, use the Docker image instead:
|
|
105
105
|
|
|
106
106
|
```bash
|
|
107
|
-
docker run -d -p 5100:5100 ghcr.io/
|
|
107
|
+
docker run -d -p 5100:5100 ghcr.io/flojoinc/floimg-studio
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
## Related Packages
|
|
@@ -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;
|