@teamflojo/floimg-studio-ui 0.1.2 → 0.1.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.
package/dist/index.d.ts CHANGED
@@ -15,6 +15,7 @@ export { Gallery } from './components/Gallery';
15
15
  export { TemplateGallery } from './components/TemplateGallery';
16
16
  export { WorkflowLibrary } from './components/WorkflowLibrary';
17
17
  export { AISettings } from './components/AISettings';
18
+ export { UploadGallery } from './components/UploadGallery';
18
19
  export { useWorkflowStore } from './stores/workflowStore';
19
20
  export { templates, getCategories, getTemplatesByCategory, getTemplateById, searchTemplates, } from './templates';
20
21
  export type * from '@teamflojo/floimg-studio-shared';
package/dist/index.js CHANGED
@@ -3024,6 +3024,7 @@ export {
3024
3024
  Be as NodePalette,
3025
3025
  st as TemplateGallery,
3026
3026
  _e as Toolbar,
3027
+ Oe as UploadGallery,
3027
3028
  Ee as WorkflowEditor,
3028
3029
  lt as WorkflowLibrary,
3029
3030
  nt as getCategories,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamflojo/floimg-studio-ui",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "FloImg Studio React components for building visual workflow editors",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -66,8 +66,8 @@
66
66
  },
67
67
  "scripts": {
68
68
  "dev": "vite 2>&1 | tee ../../logs/frontend.log",
69
- "build": "tsc && vite build",
70
- "build:lib": "vite build --mode lib",
69
+ "build": "vite build --mode lib",
70
+ "build:app": "tsc && vite build",
71
71
  "preview": "vite preview",
72
72
  "typecheck": "tsc --noEmit"
73
73
  }