├── .gitignore ├── LICENSE ├── README.md ├── data ├── .gitignore ├── media │ ├── gallery │ │ └── gallery_goes_here │ ├── input │ │ ├── example-face-001.png │ │ ├── example-face-002.png │ │ ├── example-face-003.png │ │ ├── example.png │ │ └── input_goes_here │ ├── output │ │ └── output_goes_here │ ├── templates │ │ └── template_goes_here │ └── workflows │ │ ├── sdfx-featured.json │ │ ├── sdfx-frog-sdxl.json │ │ ├── sdfx-hello-world.json │ │ └── workflow_goes_here └── models │ ├── checkpoints │ └── put_checkpoints_here │ ├── clip │ └── put_clip_or_text_encoder_models_here │ ├── clip_vision │ └── put_clip_vision_models_here │ ├── configs │ └── put_config_yamls_here │ ├── controlnet │ └── put_controlnets_and_t2i_here │ ├── diffusers │ └── put_diffusers_models_here │ ├── embeddings │ └── put_embeddings_or_textual_inversion_concepts_here │ ├── facedetection │ └── put_detection_Resnet50_and_parsing_parsenet_here │ ├── facerestore │ └── put_GFPGAN_and_Codeformer_here │ ├── gligen │ └── put_gligen_models_here │ ├── hypernetworks │ └── put_hypernetworks_here │ ├── insightface │ └── put_insightface_models_here │ ├── ipadapter │ └── put_ipadapter_models_here.txt │ ├── loras │ └── put_loras_here │ ├── onnx │ └── put_onnx_models_here │ ├── sams │ └── put_sam_models_here │ ├── style_models │ └── put_t2i_style_models_here │ ├── ultralytics │ └── put_ultralytics_here │ ├── unet │ └── put_unet_files_here │ ├── upscale_models │ └── put_esrgan_and_other_upscale_models_here │ ├── vae │ └── put_vae_here │ └── vae_approx │ └── put_taesd_encoder_pth_and_taesd_decoder_pth_here ├── docs ├── .gitignore ├── README.md ├── sdfx_standalone.md └── static │ ├── install-python-env.png │ ├── screen-app-view.png │ ├── screen-app-view2.png │ ├── screen-bookmarks-tab.png │ ├── screen-bookmarks.png │ ├── screen-graph-view.png │ ├── screen-install.png │ ├── screen-interface.png │ ├── screen-node-manager.png │ ├── screen-sdfx.png │ └── screen-timeline.png ├── run.bat ├── run.sh ├── sdfx.config.json.example ├── setup.bat ├── setup.py ├── setup.sh └── src ├── .env.example ├── .eslintrc.cjs ├── .vscode ├── .debug.script.mjs ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── components.d.ts ├── electron-builder.json5 ├── electron ├── electron-env.d.ts ├── main │ └── index.ts └── preload │ ├── index.ts │ └── utils │ └── index.ts ├── index.html ├── package.json ├── postcss.config.js ├── public ├── img │ ├── app.png │ ├── bg.jpg │ ├── creator.png │ ├── draw.png │ ├── edit.png │ ├── files.png │ ├── gallery.png │ ├── graph.png │ ├── lorastack.png │ ├── nodes.png │ ├── set.png │ ├── settings.png │ ├── sliders.png │ ├── store.png │ ├── target.png │ ├── templates.png │ ├── transform.png │ ├── upscale.png │ └── viewer.png └── set.png ├── src ├── App.vue ├── Setup.vue ├── api.ts ├── apis │ ├── PubSub.js │ ├── index.ts │ ├── node-api.ts │ └── sdfx-api.ts ├── assets │ ├── electron.svg │ ├── icons │ │ ├── add.svg │ │ ├── aperture.svg │ │ ├── blur.svg │ │ ├── brush.svg │ │ ├── capture.svg │ │ ├── colorpicker.svg │ │ ├── crop.svg │ │ ├── design.svg │ │ ├── download1.svg │ │ ├── download2.svg │ │ ├── draw.svg │ │ ├── eraser1.svg │ │ ├── eraser2.svg │ │ ├── export-image.svg │ │ ├── fill.svg │ │ ├── flip-h.svg │ │ ├── flip-v.svg │ │ ├── heart.svg │ │ ├── image-download.svg │ │ ├── image.svg │ │ ├── line-width.svg │ │ ├── line.svg │ │ ├── m1.svg │ │ ├── m2.svg │ │ ├── magic.svg │ │ ├── move.svg │ │ ├── movie.svg │ │ ├── object.svg │ │ ├── palette.svg │ │ ├── pen.svg │ │ ├── pencil.svg │ │ ├── percent.svg │ │ ├── playlist.svg │ │ ├── popup-link.svg │ │ ├── rotate-left.svg │ │ ├── rotate-right.svg │ │ ├── rotate.svg │ │ ├── select1.svg │ │ ├── select2.svg │ │ ├── selection.svg │ │ ├── share.svg │ │ ├── star.svg │ │ ├── text.svg │ │ ├── undo.svg │ │ ├── upscale2x.svg │ │ ├── upscale4x.svg │ │ ├── upscale6x.svg │ │ ├── zoom-in-icon.svg │ │ └── zoom-out-icon.svg │ ├── noise.jpg │ ├── style.css │ ├── vite.svg │ └── vue.svg ├── components │ ├── AppList.vue │ ├── AppMeta.vue │ ├── CheckpointManager.vue │ ├── CheckpointSelector.vue │ ├── ComfyPlugin │ │ ├── ComfyPlugin.vue │ │ ├── ComfySDK.ts │ │ └── index.ts │ ├── DroppableSection.vue │ ├── ImageCarousel.vue │ ├── ImageComparator.vue │ ├── ImageCropper.vue │ ├── ImageGallery.vue │ ├── ImageInputDimensions.vue │ ├── ImageLoader.vue │ ├── ImageManager.vue │ ├── ImageMetadata.vue │ ├── LiteGraph │ │ ├── ContextActions.ts │ │ ├── ContextMenu.ts │ │ ├── CurveEditor.ts │ │ ├── DragAndScale.ts │ │ ├── LCanvas.js │ │ ├── LGraph.ts │ │ ├── LGroup.ts │ │ ├── LLink.ts │ │ ├── LNode.ts │ │ ├── LiteGraph.css │ │ ├── LiteGraph.ts │ │ ├── LiteTheme.ts │ │ ├── canvas │ │ │ ├── CanvasContextMenu.ts │ │ │ ├── CanvasEvents.ts │ │ │ └── dialogs │ │ │ │ ├── ConnectionMenu.ts │ │ │ │ ├── DefaultNodePanel.ts │ │ │ │ ├── Dialog.ts │ │ │ │ ├── EditProperty.ts │ │ │ │ ├── GraphOptionsPanel.ts │ │ │ │ ├── Panel.ts │ │ │ │ ├── Prompt.ts │ │ │ │ ├── Search.ts │ │ │ │ └── SubgraphProperties.ts │ │ ├── helpers │ │ │ ├── Intersect.ts │ │ │ └── Utils.ts │ │ ├── index.ts │ │ ├── polyfills │ │ │ └── CanvasRenderingContext2D.ts │ │ └── themes │ │ │ └── colors.ts │ ├── ModaInput.vue │ ├── ModalAppLoader.vue │ ├── ModalDependencies.vue │ ├── ModalLocalPrompt.vue │ ├── ModalPictureUploader.vue │ ├── ModalRebooting.vue │ ├── ModalSettings.vue │ ├── ModalTextPrompt.vue │ ├── ModelCard.vue │ ├── PromptTimeline.vue │ ├── ScrollableSection.vue │ ├── UI │ │ ├── BlockUI.vue │ │ ├── Box.vue │ │ ├── BurgerButton.vue │ │ ├── InputTags │ │ │ ├── InputTags.vue │ │ │ └── composables │ │ │ │ ├── useOptions.js │ │ │ │ └── usePointerAction.js │ │ ├── LazyImage │ │ │ ├── core │ │ │ │ ├── imageManager.ts │ │ │ │ └── lazy.ts │ │ │ ├── helpers │ │ │ │ ├── debug.ts │ │ │ │ ├── dom.ts │ │ │ │ ├── loadImage.ts │ │ │ │ └── util.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ └── index.ts │ │ ├── Loader.vue │ │ ├── Modal.vue │ │ ├── SlideDrawer.vue │ │ ├── SpinLoader.vue │ │ ├── Spinner.vue │ │ ├── TWDragWin.vue │ │ ├── TWDropMenu.vue │ │ ├── TWGauge.vue │ │ ├── TWInput.vue │ │ ├── TWInputDrag.vue │ │ ├── TWInputNumber.vue │ │ ├── TWModal.vue │ │ ├── TWPad.vue │ │ ├── TWPrompt.vue │ │ ├── TWSearch.vue │ │ ├── TWSelector.vue │ │ ├── TWSlider.vue │ │ ├── TWTabs.vue │ │ ├── TWTextarea.vue │ │ ├── TWToggle.vue │ │ ├── VueConfirm │ │ │ ├── Confirm.vue │ │ │ ├── Store.ts │ │ │ └── VueConfirm.ts │ │ ├── VuePrompt │ │ │ ├── Prompt.vue │ │ │ ├── Store.ts │ │ │ └── VuePrompt.ts │ │ └── VueToast │ │ │ ├── Item.vue │ │ │ ├── Store.ts │ │ │ ├── Toast.vue │ │ │ └── VueToast.ts │ ├── UploadZone.vue │ ├── boxes │ │ ├── BoxGenerate.vue │ │ ├── BoxHistoryManager.vue │ │ ├── BoxPreview.vue │ │ ├── BoxPreviewEditor.vue │ │ ├── BoxQueueManager.vue │ │ ├── ButtonActionsMenu.vue │ │ └── ButtonGenerate.vue │ ├── controls │ │ ├── ControllerBox.vue │ │ ├── ControllerNodeAction.vue │ │ ├── ControllerWidget.vue │ │ ├── HTMLComp.vue │ │ ├── HTMLComponent.vue │ │ ├── SDFXWidget.vue │ │ ├── actionners │ │ │ └── NodeToggle.vue │ │ ├── boxes │ │ │ ├── BoxDimensions.vue │ │ │ └── BoxSeed.vue │ │ ├── custom │ │ │ ├── SplitH.vue │ │ │ ├── SplitPane.vue │ │ │ ├── SplitV.vue │ │ │ ├── Tab.vue │ │ │ ├── TabBar.vue │ │ │ ├── TabBox.vue │ │ │ └── ToggleSettings.vue │ │ └── widgets │ │ │ ├── SDFXButton.vue │ │ │ ├── SDFXDragNumber.vue │ │ │ ├── SDFXImageLoader.vue │ │ │ ├── SDFXInput.vue │ │ │ ├── SDFXModelPicker.vue │ │ │ ├── SDFXNumber.vue │ │ │ ├── SDFXPreview.vue │ │ │ ├── SDFXPrompt.vue │ │ │ ├── SDFXPromptTimeline.vue │ │ │ ├── SDFXSelector.vue │ │ │ ├── SDFXSlider.vue │ │ │ ├── SDFXTextArea.vue │ │ │ └── SDFXToggle.vue │ ├── imgBox.vue │ ├── imgz.vue │ ├── mediumZoomCustom │ │ ├── index.js │ │ ├── medium-zoom.css │ │ ├── medium-zoom.d.ts │ │ ├── medium-zoom.js │ │ └── utils.js │ ├── settings │ │ ├── InterfaceTab.vue │ │ └── NetworkTab.vue │ └── timeline │ │ ├── TimeBlock.vue │ │ ├── TimeTrack.vue │ │ └── Timeline.vue ├── env.d.ts ├── i18n.ts ├── layout │ ├── AppBar.vue │ ├── Footer.vue │ ├── Header.vue │ ├── Layout.vue │ ├── LayoutEditor.vue │ ├── LayoutEmbed.vue │ ├── LayoutGraph.vue │ ├── LeftPane.vue │ ├── Pane.vue │ ├── RightPane.vue │ ├── SideBar.vue │ ├── TopMenu.vue │ ├── WorkspaceBar.vue │ ├── leftpanes │ │ ├── LeftPaneApp.vue │ │ ├── LeftPaneCreator.vue │ │ ├── LeftPaneGeneric.vue │ │ └── LeftPaneGraph.vue │ └── rightpanes │ │ ├── RightPaneApp.vue │ │ ├── RightPaneCreator.vue │ │ ├── RightPaneGeneric.vue │ │ └── RightPaneGraph.vue ├── libs │ ├── editor │ │ ├── core │ │ │ ├── initAligningGuidelines.ts │ │ │ └── initCenterAlign.ts │ │ └── ruler │ │ │ ├── guideline.ts │ │ │ ├── index.ts │ │ │ ├── ruler.ts │ │ │ ├── type.d.ts │ │ │ └── utils.ts │ └── sdfx │ │ ├── canvas.js │ │ ├── clipspace.js │ │ ├── domWidget.js │ │ ├── extensions │ │ ├── core │ │ │ ├── contextMenuFilter.js │ │ │ ├── dynamicPrompts.js │ │ │ ├── editAttention.js │ │ │ ├── groupNode.js │ │ │ ├── groupOptions.js │ │ │ ├── noteNode.js │ │ │ ├── rerouteNode.js │ │ │ ├── saveImageExtraOutput.js │ │ │ ├── slotDefaults.js │ │ │ ├── snapToGrid.js │ │ │ ├── uploadImage.js │ │ │ └── widgetInputs.js │ │ ├── kj │ │ │ └── setgetnodes.js │ │ ├── manager │ │ │ └── manager.js │ │ ├── painter │ │ │ └── painterNode.js │ │ └── vhs │ │ │ ├── vhs.js │ │ │ └── videoinfo.js │ │ ├── imagePreview.js │ │ ├── node.js │ │ ├── sdfx.js │ │ ├── stateManager.js │ │ ├── templateManager.ts │ │ ├── utils.js │ │ └── widgets.js ├── locales │ ├── en.json │ ├── fr.json │ └── index.ts ├── main.ts ├── router.ts ├── signalbus.ts ├── stores │ ├── editorStore.ts │ ├── graphStore.ts │ ├── index.ts │ ├── mainStore.ts │ ├── maps │ │ ├── allowedExtensions.ts │ │ ├── samplers.ts │ │ └── widgetDefaults.ts │ └── modelStore.ts ├── utils │ ├── app.config.ts │ ├── brushes.ts │ ├── clipboard.js │ ├── errors.ts │ ├── eventHub.ts │ ├── graph.ts │ ├── image.ts │ ├── index.ts │ ├── makeDroppable.js │ ├── prompt.ts │ └── screenfull.js └── views │ ├── Embed.vue │ ├── Home.vue │ ├── ImageEditor │ ├── Cropper.vue │ ├── EditorToolbar.vue │ └── Index.vue │ ├── ImageGallery │ └── Index.vue │ ├── OpenGraph │ ├── AppView.vue │ ├── GraphView.vue │ └── components │ │ ├── BottomPanel.vue │ │ ├── ComponentItem.vue │ │ ├── ComponentTree.vue │ │ ├── DevToolsTabs │ │ ├── AppDetails.vue │ │ ├── Bookmarks.vue │ │ ├── MappingInspector.vue │ │ ├── NodeManager.vue │ │ └── Performance.vue │ │ ├── GraphPad.vue │ │ ├── NavigatorPanel.vue │ │ ├── NodeDetails.vue │ │ ├── NodeGraph.vue │ │ ├── NodeList.vue │ │ ├── NodeSearch.vue │ │ └── TemplateList.vue │ └── TestPlugin.vue ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.app.ts └── vite.config.web.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/media/gallery/gallery_goes_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/media/input/example-face-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/data/media/input/example-face-001.png -------------------------------------------------------------------------------- /data/media/input/example-face-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/data/media/input/example-face-002.png -------------------------------------------------------------------------------- /data/media/input/example-face-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/data/media/input/example-face-003.png -------------------------------------------------------------------------------- /data/media/input/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/data/media/input/example.png -------------------------------------------------------------------------------- /data/media/input/input_goes_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/media/output/output_goes_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/media/templates/template_goes_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/media/workflows/sdfx-featured.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/data/media/workflows/sdfx-featured.json -------------------------------------------------------------------------------- /data/media/workflows/sdfx-frog-sdxl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/data/media/workflows/sdfx-frog-sdxl.json -------------------------------------------------------------------------------- /data/media/workflows/sdfx-hello-world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/data/media/workflows/sdfx-hello-world.json -------------------------------------------------------------------------------- /data/media/workflows/workflow_goes_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/checkpoints/put_checkpoints_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/clip/put_clip_or_text_encoder_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/clip_vision/put_clip_vision_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/configs/put_config_yamls_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/controlnet/put_controlnets_and_t2i_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/diffusers/put_diffusers_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/embeddings/put_embeddings_or_textual_inversion_concepts_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/facedetection/put_detection_Resnet50_and_parsing_parsenet_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/facerestore/put_GFPGAN_and_Codeformer_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/gligen/put_gligen_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/hypernetworks/put_hypernetworks_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/insightface/put_insightface_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/ipadapter/put_ipadapter_models_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/loras/put_loras_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/onnx/put_onnx_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/sams/put_sam_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/style_models/put_t2i_style_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/ultralytics/put_ultralytics_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/unet/put_unet_files_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/upscale_models/put_esrgan_and_other_upscale_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/vae/put_vae_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/vae_approx/put_taesd_encoder_pth_and_taesd_decoder_pth_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # SDFX Documentation 2 | -------------------------------------------------------------------------------- /docs/sdfx_standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/sdfx_standalone.md -------------------------------------------------------------------------------- /docs/static/install-python-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/install-python-env.png -------------------------------------------------------------------------------- /docs/static/screen-app-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-app-view.png -------------------------------------------------------------------------------- /docs/static/screen-app-view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-app-view2.png -------------------------------------------------------------------------------- /docs/static/screen-bookmarks-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-bookmarks-tab.png -------------------------------------------------------------------------------- /docs/static/screen-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-bookmarks.png -------------------------------------------------------------------------------- /docs/static/screen-graph-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-graph-view.png -------------------------------------------------------------------------------- /docs/static/screen-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-install.png -------------------------------------------------------------------------------- /docs/static/screen-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-interface.png -------------------------------------------------------------------------------- /docs/static/screen-node-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-node-manager.png -------------------------------------------------------------------------------- /docs/static/screen-sdfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-sdfx.png -------------------------------------------------------------------------------- /docs/static/screen-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/docs/static/screen-timeline.png -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/run.sh -------------------------------------------------------------------------------- /sdfx.config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/sdfx.config.json.example -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/setup.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/setup.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/setup.sh -------------------------------------------------------------------------------- /src/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/.env.example -------------------------------------------------------------------------------- /src/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/.eslintrc.cjs -------------------------------------------------------------------------------- /src/.vscode/.debug.script.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/.vscode/.debug.script.mjs -------------------------------------------------------------------------------- /src/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [] 3 | } -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/.vscode/settings.json -------------------------------------------------------------------------------- /src/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/.vscode/tasks.json -------------------------------------------------------------------------------- /src/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | # SDFX 2 | 3 | The Studio Grade UI for Image Synthesis. 4 | 5 | -------------------------------------------------------------------------------- /src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/components.d.ts -------------------------------------------------------------------------------- /src/electron-builder.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/electron-builder.json5 -------------------------------------------------------------------------------- /src/electron/electron-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/electron/electron-env.d.ts -------------------------------------------------------------------------------- /src/electron/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/electron/main/index.ts -------------------------------------------------------------------------------- /src/electron/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/electron/preload/index.ts -------------------------------------------------------------------------------- /src/electron/preload/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/electron/preload/utils/index.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/index.html -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/package.json -------------------------------------------------------------------------------- /src/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/postcss.config.js -------------------------------------------------------------------------------- /src/public/img/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/app.png -------------------------------------------------------------------------------- /src/public/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/bg.jpg -------------------------------------------------------------------------------- /src/public/img/creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/creator.png -------------------------------------------------------------------------------- /src/public/img/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/draw.png -------------------------------------------------------------------------------- /src/public/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/edit.png -------------------------------------------------------------------------------- /src/public/img/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/files.png -------------------------------------------------------------------------------- /src/public/img/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/gallery.png -------------------------------------------------------------------------------- /src/public/img/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/graph.png -------------------------------------------------------------------------------- /src/public/img/lorastack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/lorastack.png -------------------------------------------------------------------------------- /src/public/img/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/nodes.png -------------------------------------------------------------------------------- /src/public/img/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/set.png -------------------------------------------------------------------------------- /src/public/img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/settings.png -------------------------------------------------------------------------------- /src/public/img/sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/sliders.png -------------------------------------------------------------------------------- /src/public/img/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/store.png -------------------------------------------------------------------------------- /src/public/img/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/target.png -------------------------------------------------------------------------------- /src/public/img/templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/templates.png -------------------------------------------------------------------------------- /src/public/img/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/transform.png -------------------------------------------------------------------------------- /src/public/img/upscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/upscale.png -------------------------------------------------------------------------------- /src/public/img/viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/img/viewer.png -------------------------------------------------------------------------------- /src/public/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/public/set.png -------------------------------------------------------------------------------- /src/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/App.vue -------------------------------------------------------------------------------- /src/src/Setup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/Setup.vue -------------------------------------------------------------------------------- /src/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/api.ts -------------------------------------------------------------------------------- /src/src/apis/PubSub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/apis/PubSub.js -------------------------------------------------------------------------------- /src/src/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/apis/index.ts -------------------------------------------------------------------------------- /src/src/apis/node-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/apis/node-api.ts -------------------------------------------------------------------------------- /src/src/apis/sdfx-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/apis/sdfx-api.ts -------------------------------------------------------------------------------- /src/src/assets/electron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/electron.svg -------------------------------------------------------------------------------- /src/src/assets/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/add.svg -------------------------------------------------------------------------------- /src/src/assets/icons/aperture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/aperture.svg -------------------------------------------------------------------------------- /src/src/assets/icons/blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/blur.svg -------------------------------------------------------------------------------- /src/src/assets/icons/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/brush.svg -------------------------------------------------------------------------------- /src/src/assets/icons/capture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/capture.svg -------------------------------------------------------------------------------- /src/src/assets/icons/colorpicker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/colorpicker.svg -------------------------------------------------------------------------------- /src/src/assets/icons/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/crop.svg -------------------------------------------------------------------------------- /src/src/assets/icons/design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/design.svg -------------------------------------------------------------------------------- /src/src/assets/icons/download1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/download1.svg -------------------------------------------------------------------------------- /src/src/assets/icons/download2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/download2.svg -------------------------------------------------------------------------------- /src/src/assets/icons/draw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/draw.svg -------------------------------------------------------------------------------- /src/src/assets/icons/eraser1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/eraser1.svg -------------------------------------------------------------------------------- /src/src/assets/icons/eraser2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/eraser2.svg -------------------------------------------------------------------------------- /src/src/assets/icons/export-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/export-image.svg -------------------------------------------------------------------------------- /src/src/assets/icons/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/fill.svg -------------------------------------------------------------------------------- /src/src/assets/icons/flip-h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/flip-h.svg -------------------------------------------------------------------------------- /src/src/assets/icons/flip-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/flip-v.svg -------------------------------------------------------------------------------- /src/src/assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/heart.svg -------------------------------------------------------------------------------- /src/src/assets/icons/image-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/image-download.svg -------------------------------------------------------------------------------- /src/src/assets/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/image.svg -------------------------------------------------------------------------------- /src/src/assets/icons/line-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/line-width.svg -------------------------------------------------------------------------------- /src/src/assets/icons/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/line.svg -------------------------------------------------------------------------------- /src/src/assets/icons/m1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/m1.svg -------------------------------------------------------------------------------- /src/src/assets/icons/m2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/m2.svg -------------------------------------------------------------------------------- /src/src/assets/icons/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/magic.svg -------------------------------------------------------------------------------- /src/src/assets/icons/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/move.svg -------------------------------------------------------------------------------- /src/src/assets/icons/movie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/movie.svg -------------------------------------------------------------------------------- /src/src/assets/icons/object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/object.svg -------------------------------------------------------------------------------- /src/src/assets/icons/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/palette.svg -------------------------------------------------------------------------------- /src/src/assets/icons/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/pen.svg -------------------------------------------------------------------------------- /src/src/assets/icons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/pencil.svg -------------------------------------------------------------------------------- /src/src/assets/icons/percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/percent.svg -------------------------------------------------------------------------------- /src/src/assets/icons/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/playlist.svg -------------------------------------------------------------------------------- /src/src/assets/icons/popup-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/popup-link.svg -------------------------------------------------------------------------------- /src/src/assets/icons/rotate-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/rotate-left.svg -------------------------------------------------------------------------------- /src/src/assets/icons/rotate-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/rotate-right.svg -------------------------------------------------------------------------------- /src/src/assets/icons/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/rotate.svg -------------------------------------------------------------------------------- /src/src/assets/icons/select1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/select1.svg -------------------------------------------------------------------------------- /src/src/assets/icons/select2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/select2.svg -------------------------------------------------------------------------------- /src/src/assets/icons/selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/selection.svg -------------------------------------------------------------------------------- /src/src/assets/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/share.svg -------------------------------------------------------------------------------- /src/src/assets/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/star.svg -------------------------------------------------------------------------------- /src/src/assets/icons/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/text.svg -------------------------------------------------------------------------------- /src/src/assets/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/undo.svg -------------------------------------------------------------------------------- /src/src/assets/icons/upscale2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/upscale2x.svg -------------------------------------------------------------------------------- /src/src/assets/icons/upscale4x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/upscale4x.svg -------------------------------------------------------------------------------- /src/src/assets/icons/upscale6x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/upscale6x.svg -------------------------------------------------------------------------------- /src/src/assets/icons/zoom-in-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/zoom-in-icon.svg -------------------------------------------------------------------------------- /src/src/assets/icons/zoom-out-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/icons/zoom-out-icon.svg -------------------------------------------------------------------------------- /src/src/assets/noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/noise.jpg -------------------------------------------------------------------------------- /src/src/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/style.css -------------------------------------------------------------------------------- /src/src/assets/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/vite.svg -------------------------------------------------------------------------------- /src/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/assets/vue.svg -------------------------------------------------------------------------------- /src/src/components/AppList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/AppList.vue -------------------------------------------------------------------------------- /src/src/components/AppMeta.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/AppMeta.vue -------------------------------------------------------------------------------- /src/src/components/CheckpointManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/CheckpointManager.vue -------------------------------------------------------------------------------- /src/src/components/CheckpointSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/CheckpointSelector.vue -------------------------------------------------------------------------------- /src/src/components/ComfyPlugin/ComfyPlugin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ComfyPlugin/ComfyPlugin.vue -------------------------------------------------------------------------------- /src/src/components/ComfyPlugin/ComfySDK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ComfyPlugin/ComfySDK.ts -------------------------------------------------------------------------------- /src/src/components/ComfyPlugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ComfyPlugin/index.ts -------------------------------------------------------------------------------- /src/src/components/DroppableSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/DroppableSection.vue -------------------------------------------------------------------------------- /src/src/components/ImageCarousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ImageCarousel.vue -------------------------------------------------------------------------------- /src/src/components/ImageComparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ImageComparator.vue -------------------------------------------------------------------------------- /src/src/components/ImageCropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ImageCropper.vue -------------------------------------------------------------------------------- /src/src/components/ImageGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ImageGallery.vue -------------------------------------------------------------------------------- /src/src/components/ImageInputDimensions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ImageInputDimensions.vue -------------------------------------------------------------------------------- /src/src/components/ImageLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ImageLoader.vue -------------------------------------------------------------------------------- /src/src/components/ImageManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ImageManager.vue -------------------------------------------------------------------------------- /src/src/components/ImageMetadata.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ImageMetadata.vue -------------------------------------------------------------------------------- /src/src/components/LiteGraph/ContextActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/ContextActions.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/ContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/ContextMenu.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/CurveEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/CurveEditor.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/DragAndScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/DragAndScale.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/LCanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/LCanvas.js -------------------------------------------------------------------------------- /src/src/components/LiteGraph/LGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/LGraph.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/LGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/LGroup.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/LLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/LLink.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/LNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/LNode.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/LiteGraph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/LiteGraph.css -------------------------------------------------------------------------------- /src/src/components/LiteGraph/LiteGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/LiteGraph.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/LiteTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/LiteTheme.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/CanvasContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/CanvasContextMenu.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/CanvasEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/CanvasEvents.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/ConnectionMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/ConnectionMenu.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/DefaultNodePanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/DefaultNodePanel.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/Dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/Dialog.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/EditProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/EditProperty.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/GraphOptionsPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/GraphOptionsPanel.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/Panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/Panel.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/Prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/Prompt.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/Search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/Search.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/canvas/dialogs/SubgraphProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/canvas/dialogs/SubgraphProperties.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/helpers/Intersect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/helpers/Intersect.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/helpers/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/helpers/Utils.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/index.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/polyfills/CanvasRenderingContext2D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/polyfills/CanvasRenderingContext2D.ts -------------------------------------------------------------------------------- /src/src/components/LiteGraph/themes/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/LiteGraph/themes/colors.ts -------------------------------------------------------------------------------- /src/src/components/ModaInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModaInput.vue -------------------------------------------------------------------------------- /src/src/components/ModalAppLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModalAppLoader.vue -------------------------------------------------------------------------------- /src/src/components/ModalDependencies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModalDependencies.vue -------------------------------------------------------------------------------- /src/src/components/ModalLocalPrompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModalLocalPrompt.vue -------------------------------------------------------------------------------- /src/src/components/ModalPictureUploader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModalPictureUploader.vue -------------------------------------------------------------------------------- /src/src/components/ModalRebooting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModalRebooting.vue -------------------------------------------------------------------------------- /src/src/components/ModalSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModalSettings.vue -------------------------------------------------------------------------------- /src/src/components/ModalTextPrompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModalTextPrompt.vue -------------------------------------------------------------------------------- /src/src/components/ModelCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ModelCard.vue -------------------------------------------------------------------------------- /src/src/components/PromptTimeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/PromptTimeline.vue -------------------------------------------------------------------------------- /src/src/components/ScrollableSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/ScrollableSection.vue -------------------------------------------------------------------------------- /src/src/components/UI/BlockUI.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/BlockUI.vue -------------------------------------------------------------------------------- /src/src/components/UI/Box.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/Box.vue -------------------------------------------------------------------------------- /src/src/components/UI/BurgerButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/BurgerButton.vue -------------------------------------------------------------------------------- /src/src/components/UI/InputTags/InputTags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/InputTags/InputTags.vue -------------------------------------------------------------------------------- /src/src/components/UI/InputTags/composables/useOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/InputTags/composables/useOptions.js -------------------------------------------------------------------------------- /src/src/components/UI/InputTags/composables/usePointerAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/InputTags/composables/usePointerAction.js -------------------------------------------------------------------------------- /src/src/components/UI/LazyImage/core/imageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/LazyImage/core/imageManager.ts -------------------------------------------------------------------------------- /src/src/components/UI/LazyImage/core/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/LazyImage/core/lazy.ts -------------------------------------------------------------------------------- /src/src/components/UI/LazyImage/helpers/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/LazyImage/helpers/debug.ts -------------------------------------------------------------------------------- /src/src/components/UI/LazyImage/helpers/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/LazyImage/helpers/dom.ts -------------------------------------------------------------------------------- /src/src/components/UI/LazyImage/helpers/loadImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/LazyImage/helpers/loadImage.ts -------------------------------------------------------------------------------- /src/src/components/UI/LazyImage/helpers/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/LazyImage/helpers/util.ts -------------------------------------------------------------------------------- /src/src/components/UI/LazyImage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/LazyImage/index.ts -------------------------------------------------------------------------------- /src/src/components/UI/LazyImage/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/LazyImage/types/index.ts -------------------------------------------------------------------------------- /src/src/components/UI/Loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/Loader.vue -------------------------------------------------------------------------------- /src/src/components/UI/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/Modal.vue -------------------------------------------------------------------------------- /src/src/components/UI/SlideDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/SlideDrawer.vue -------------------------------------------------------------------------------- /src/src/components/UI/SpinLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/SpinLoader.vue -------------------------------------------------------------------------------- /src/src/components/UI/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/Spinner.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWDragWin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWDragWin.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWDropMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWDropMenu.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWGauge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWGauge.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWInput.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWInputDrag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWInputDrag.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWInputNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWInputNumber.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWModal.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWPad.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWPad.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWPrompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWPrompt.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWSearch.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWSelector.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWSlider.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWTabs.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWTextarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWTextarea.vue -------------------------------------------------------------------------------- /src/src/components/UI/TWToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/TWToggle.vue -------------------------------------------------------------------------------- /src/src/components/UI/VueConfirm/Confirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VueConfirm/Confirm.vue -------------------------------------------------------------------------------- /src/src/components/UI/VueConfirm/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VueConfirm/Store.ts -------------------------------------------------------------------------------- /src/src/components/UI/VueConfirm/VueConfirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VueConfirm/VueConfirm.ts -------------------------------------------------------------------------------- /src/src/components/UI/VuePrompt/Prompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VuePrompt/Prompt.vue -------------------------------------------------------------------------------- /src/src/components/UI/VuePrompt/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VuePrompt/Store.ts -------------------------------------------------------------------------------- /src/src/components/UI/VuePrompt/VuePrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VuePrompt/VuePrompt.ts -------------------------------------------------------------------------------- /src/src/components/UI/VueToast/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VueToast/Item.vue -------------------------------------------------------------------------------- /src/src/components/UI/VueToast/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VueToast/Store.ts -------------------------------------------------------------------------------- /src/src/components/UI/VueToast/Toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VueToast/Toast.vue -------------------------------------------------------------------------------- /src/src/components/UI/VueToast/VueToast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UI/VueToast/VueToast.ts -------------------------------------------------------------------------------- /src/src/components/UploadZone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/UploadZone.vue -------------------------------------------------------------------------------- /src/src/components/boxes/BoxGenerate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/boxes/BoxGenerate.vue -------------------------------------------------------------------------------- /src/src/components/boxes/BoxHistoryManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/boxes/BoxHistoryManager.vue -------------------------------------------------------------------------------- /src/src/components/boxes/BoxPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/boxes/BoxPreview.vue -------------------------------------------------------------------------------- /src/src/components/boxes/BoxPreviewEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/boxes/BoxPreviewEditor.vue -------------------------------------------------------------------------------- /src/src/components/boxes/BoxQueueManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/boxes/BoxQueueManager.vue -------------------------------------------------------------------------------- /src/src/components/boxes/ButtonActionsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/boxes/ButtonActionsMenu.vue -------------------------------------------------------------------------------- /src/src/components/boxes/ButtonGenerate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/boxes/ButtonGenerate.vue -------------------------------------------------------------------------------- /src/src/components/controls/ControllerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/ControllerBox.vue -------------------------------------------------------------------------------- /src/src/components/controls/ControllerNodeAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/ControllerNodeAction.vue -------------------------------------------------------------------------------- /src/src/components/controls/ControllerWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/ControllerWidget.vue -------------------------------------------------------------------------------- /src/src/components/controls/HTMLComp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/HTMLComp.vue -------------------------------------------------------------------------------- /src/src/components/controls/HTMLComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/HTMLComponent.vue -------------------------------------------------------------------------------- /src/src/components/controls/SDFXWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/SDFXWidget.vue -------------------------------------------------------------------------------- /src/src/components/controls/actionners/NodeToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/actionners/NodeToggle.vue -------------------------------------------------------------------------------- /src/src/components/controls/boxes/BoxDimensions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/boxes/BoxDimensions.vue -------------------------------------------------------------------------------- /src/src/components/controls/boxes/BoxSeed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/boxes/BoxSeed.vue -------------------------------------------------------------------------------- /src/src/components/controls/custom/SplitH.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/custom/SplitH.vue -------------------------------------------------------------------------------- /src/src/components/controls/custom/SplitPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/custom/SplitPane.vue -------------------------------------------------------------------------------- /src/src/components/controls/custom/SplitV.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/custom/SplitV.vue -------------------------------------------------------------------------------- /src/src/components/controls/custom/Tab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/custom/Tab.vue -------------------------------------------------------------------------------- /src/src/components/controls/custom/TabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/custom/TabBar.vue -------------------------------------------------------------------------------- /src/src/components/controls/custom/TabBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/custom/TabBox.vue -------------------------------------------------------------------------------- /src/src/components/controls/custom/ToggleSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/custom/ToggleSettings.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXButton.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXDragNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXDragNumber.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXImageLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXImageLoader.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXInput.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXModelPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXModelPicker.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXNumber.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXPreview.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXPrompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXPrompt.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXPromptTimeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXPromptTimeline.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXSelector.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXSlider.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXTextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXTextArea.vue -------------------------------------------------------------------------------- /src/src/components/controls/widgets/SDFXToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/controls/widgets/SDFXToggle.vue -------------------------------------------------------------------------------- /src/src/components/imgBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/imgBox.vue -------------------------------------------------------------------------------- /src/src/components/imgz.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/imgz.vue -------------------------------------------------------------------------------- /src/src/components/mediumZoomCustom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/mediumZoomCustom/index.js -------------------------------------------------------------------------------- /src/src/components/mediumZoomCustom/medium-zoom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/mediumZoomCustom/medium-zoom.css -------------------------------------------------------------------------------- /src/src/components/mediumZoomCustom/medium-zoom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/mediumZoomCustom/medium-zoom.d.ts -------------------------------------------------------------------------------- /src/src/components/mediumZoomCustom/medium-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/mediumZoomCustom/medium-zoom.js -------------------------------------------------------------------------------- /src/src/components/mediumZoomCustom/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/mediumZoomCustom/utils.js -------------------------------------------------------------------------------- /src/src/components/settings/InterfaceTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/settings/InterfaceTab.vue -------------------------------------------------------------------------------- /src/src/components/settings/NetworkTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/settings/NetworkTab.vue -------------------------------------------------------------------------------- /src/src/components/timeline/TimeBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/timeline/TimeBlock.vue -------------------------------------------------------------------------------- /src/src/components/timeline/TimeTrack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/timeline/TimeTrack.vue -------------------------------------------------------------------------------- /src/src/components/timeline/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/components/timeline/Timeline.vue -------------------------------------------------------------------------------- /src/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/env.d.ts -------------------------------------------------------------------------------- /src/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/i18n.ts -------------------------------------------------------------------------------- /src/src/layout/AppBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/AppBar.vue -------------------------------------------------------------------------------- /src/src/layout/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/Footer.vue -------------------------------------------------------------------------------- /src/src/layout/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/Header.vue -------------------------------------------------------------------------------- /src/src/layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/Layout.vue -------------------------------------------------------------------------------- /src/src/layout/LayoutEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/LayoutEditor.vue -------------------------------------------------------------------------------- /src/src/layout/LayoutEmbed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/LayoutEmbed.vue -------------------------------------------------------------------------------- /src/src/layout/LayoutGraph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/LayoutGraph.vue -------------------------------------------------------------------------------- /src/src/layout/LeftPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/LeftPane.vue -------------------------------------------------------------------------------- /src/src/layout/Pane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/Pane.vue -------------------------------------------------------------------------------- /src/src/layout/RightPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/RightPane.vue -------------------------------------------------------------------------------- /src/src/layout/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/SideBar.vue -------------------------------------------------------------------------------- /src/src/layout/TopMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/TopMenu.vue -------------------------------------------------------------------------------- /src/src/layout/WorkspaceBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/WorkspaceBar.vue -------------------------------------------------------------------------------- /src/src/layout/leftpanes/LeftPaneApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/leftpanes/LeftPaneApp.vue -------------------------------------------------------------------------------- /src/src/layout/leftpanes/LeftPaneCreator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/leftpanes/LeftPaneCreator.vue -------------------------------------------------------------------------------- /src/src/layout/leftpanes/LeftPaneGeneric.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/leftpanes/LeftPaneGeneric.vue -------------------------------------------------------------------------------- /src/src/layout/leftpanes/LeftPaneGraph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/leftpanes/LeftPaneGraph.vue -------------------------------------------------------------------------------- /src/src/layout/rightpanes/RightPaneApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/rightpanes/RightPaneApp.vue -------------------------------------------------------------------------------- /src/src/layout/rightpanes/RightPaneCreator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/rightpanes/RightPaneCreator.vue -------------------------------------------------------------------------------- /src/src/layout/rightpanes/RightPaneGeneric.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/rightpanes/RightPaneGeneric.vue -------------------------------------------------------------------------------- /src/src/layout/rightpanes/RightPaneGraph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/layout/rightpanes/RightPaneGraph.vue -------------------------------------------------------------------------------- /src/src/libs/editor/core/initAligningGuidelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/editor/core/initAligningGuidelines.ts -------------------------------------------------------------------------------- /src/src/libs/editor/core/initCenterAlign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/editor/core/initCenterAlign.ts -------------------------------------------------------------------------------- /src/src/libs/editor/ruler/guideline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/editor/ruler/guideline.ts -------------------------------------------------------------------------------- /src/src/libs/editor/ruler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/editor/ruler/index.ts -------------------------------------------------------------------------------- /src/src/libs/editor/ruler/ruler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/editor/ruler/ruler.ts -------------------------------------------------------------------------------- /src/src/libs/editor/ruler/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/editor/ruler/type.d.ts -------------------------------------------------------------------------------- /src/src/libs/editor/ruler/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/editor/ruler/utils.ts -------------------------------------------------------------------------------- /src/src/libs/sdfx/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/canvas.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/clipspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/clipspace.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/domWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/domWidget.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/contextMenuFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/contextMenuFilter.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/dynamicPrompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/dynamicPrompts.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/editAttention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/editAttention.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/groupNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/groupNode.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/groupOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/groupOptions.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/noteNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/noteNode.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/rerouteNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/rerouteNode.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/saveImageExtraOutput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/saveImageExtraOutput.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/slotDefaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/slotDefaults.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/snapToGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/snapToGrid.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/uploadImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/uploadImage.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/core/widgetInputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/core/widgetInputs.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/kj/setgetnodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/kj/setgetnodes.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/manager/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/manager/manager.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/painter/painterNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/painter/painterNode.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/vhs/vhs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/vhs/vhs.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/extensions/vhs/videoinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/extensions/vhs/videoinfo.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/imagePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/imagePreview.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/node.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/sdfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/sdfx.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/stateManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/stateManager.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/templateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/templateManager.ts -------------------------------------------------------------------------------- /src/src/libs/sdfx/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/utils.js -------------------------------------------------------------------------------- /src/src/libs/sdfx/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/libs/sdfx/widgets.js -------------------------------------------------------------------------------- /src/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/locales/en.json -------------------------------------------------------------------------------- /src/src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/locales/fr.json -------------------------------------------------------------------------------- /src/src/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/locales/index.ts -------------------------------------------------------------------------------- /src/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/main.ts -------------------------------------------------------------------------------- /src/src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/router.ts -------------------------------------------------------------------------------- /src/src/signalbus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/signalbus.ts -------------------------------------------------------------------------------- /src/src/stores/editorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/stores/editorStore.ts -------------------------------------------------------------------------------- /src/src/stores/graphStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/stores/graphStore.ts -------------------------------------------------------------------------------- /src/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/stores/index.ts -------------------------------------------------------------------------------- /src/src/stores/mainStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/stores/mainStore.ts -------------------------------------------------------------------------------- /src/src/stores/maps/allowedExtensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/stores/maps/allowedExtensions.ts -------------------------------------------------------------------------------- /src/src/stores/maps/samplers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/stores/maps/samplers.ts -------------------------------------------------------------------------------- /src/src/stores/maps/widgetDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/stores/maps/widgetDefaults.ts -------------------------------------------------------------------------------- /src/src/stores/modelStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/stores/modelStore.ts -------------------------------------------------------------------------------- /src/src/utils/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/app.config.ts -------------------------------------------------------------------------------- /src/src/utils/brushes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/brushes.ts -------------------------------------------------------------------------------- /src/src/utils/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/clipboard.js -------------------------------------------------------------------------------- /src/src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/errors.ts -------------------------------------------------------------------------------- /src/src/utils/eventHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/eventHub.ts -------------------------------------------------------------------------------- /src/src/utils/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/graph.ts -------------------------------------------------------------------------------- /src/src/utils/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/image.ts -------------------------------------------------------------------------------- /src/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/index.ts -------------------------------------------------------------------------------- /src/src/utils/makeDroppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/makeDroppable.js -------------------------------------------------------------------------------- /src/src/utils/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/prompt.ts -------------------------------------------------------------------------------- /src/src/utils/screenfull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/utils/screenfull.js -------------------------------------------------------------------------------- /src/src/views/Embed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/Embed.vue -------------------------------------------------------------------------------- /src/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/Home.vue -------------------------------------------------------------------------------- /src/src/views/ImageEditor/Cropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/ImageEditor/Cropper.vue -------------------------------------------------------------------------------- /src/src/views/ImageEditor/EditorToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/ImageEditor/EditorToolbar.vue -------------------------------------------------------------------------------- /src/src/views/ImageEditor/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/ImageEditor/Index.vue -------------------------------------------------------------------------------- /src/src/views/ImageGallery/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/ImageGallery/Index.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/AppView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/AppView.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/GraphView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/GraphView.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/BottomPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/BottomPanel.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/ComponentItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/ComponentItem.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/ComponentTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/ComponentTree.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/DevToolsTabs/AppDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/DevToolsTabs/AppDetails.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/DevToolsTabs/Bookmarks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/DevToolsTabs/Bookmarks.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/DevToolsTabs/MappingInspector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/DevToolsTabs/MappingInspector.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/DevToolsTabs/NodeManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/DevToolsTabs/NodeManager.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/DevToolsTabs/Performance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/DevToolsTabs/Performance.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/GraphPad.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/GraphPad.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/NavigatorPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/NavigatorPanel.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/NodeDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/NodeDetails.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/NodeGraph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/NodeGraph.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/NodeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/NodeList.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/NodeSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/NodeSearch.vue -------------------------------------------------------------------------------- /src/src/views/OpenGraph/components/TemplateList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/OpenGraph/components/TemplateList.vue -------------------------------------------------------------------------------- /src/src/views/TestPlugin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/src/views/TestPlugin.vue -------------------------------------------------------------------------------- /src/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/tailwind.config.js -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/tsconfig.node.json -------------------------------------------------------------------------------- /src/vite.config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/vite.config.app.ts -------------------------------------------------------------------------------- /src/vite.config.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfxai/sdfx/HEAD/src/vite.config.web.ts --------------------------------------------------------------------------------