├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── pyproject.toml ├── sliderData ├── flux.json ├── other.json ├── pony.json ├── sd15.json ├── sdxl.json └── version.json └── web └── slider_sidebar.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sliderData/flux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/sliderData/flux.json -------------------------------------------------------------------------------- /sliderData/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/sliderData/other.json -------------------------------------------------------------------------------- /sliderData/pony.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/sliderData/pony.json -------------------------------------------------------------------------------- /sliderData/sd15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/sliderData/sd15.json -------------------------------------------------------------------------------- /sliderData/sdxl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/sliderData/sdxl.json -------------------------------------------------------------------------------- /sliderData/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.01 3 | } -------------------------------------------------------------------------------- /web/slider_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinglord/ComfyUI_Slider_Sidebar/HEAD/web/slider_sidebar.js --------------------------------------------------------------------------------