mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-01 13:59:54 +00:00
* Basic side tool bar skeleton + Theme toggle (#164) * Side bar skeleton * Fix grid layout * nit * Add theme toggle logic * Change primevue color theme to blue to match beta menu UI * Add litegraph canvas splitter overlay (#177) * Add vue wrapper * Splitter overlay * Move teleport to side bar comp * Toolbar placeholder * Move settings button from top menu to side bar (#178) * Reverse relationship between splitter overlay and sidebar component (#180) * Reverse relationship between splitter overlay and sidebar component * nit * Remove border on splitter * Fix canvas shift (#186) * Move queue/history display to side bar (#185) * Side bar placeholder * Pinia store for queue items * Flatten task item * Fix schema * computed * Switch running / pending order * Use class-transformer * nit * Show display status * Add tag severity style * Add execution time * nit * Rename to execution success * Add time display * Sort queue desc order * nit * Add remove item feature * Load workflow * Add confirmation popup * Add empty table placeholder * Remove beta menu UI's queue button/list * Add tests on litegraph widget text truncate (#191) * Add tests on litegraph widget text truncate * Updated screenshots * Revert port change * Remove screenshots * Update test expectations [skip ci] * Add back menu.settingsGroup for compatibility (#192) * Close side bar on menu location set as disabled (#194) * Remove placeholder side bar tabs (#196) --------- Co-authored-by: bymyself <abolkonsky.rem@gmail.com> Co-authored-by: github-actions <github-actions@github.com>
55 lines
2.0 KiB
HTML
55 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>ComfyUI</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
<!-- Browser Test Fonts -->
|
|
<!-- <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
|
|
<style>
|
|
* {
|
|
font-family: 'Roboto Mono', 'Noto Color Emoji';
|
|
}
|
|
</style> -->
|
|
<script src="node_modules/reflect-metadata/Reflect.js"></script>
|
|
<script type="module">
|
|
window["__COMFYUI_FRONTEND_VERSION__"] = __COMFYUI_FRONTEND_VERSION__;
|
|
console.log("ComfyUI Front-end version:", __COMFYUI_FRONTEND_VERSION__);
|
|
</script>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<link rel="stylesheet" type="text/css" href="/user.css" />
|
|
<link rel="stylesheet" type="text/css" href="/materialdesignicons.min.css" />
|
|
</head>
|
|
<body class="litegraph">
|
|
<div id="vue-app"></div>
|
|
<div id="comfy-user-selection" class="comfy-user-selection" style="display: none;">
|
|
<main class="comfy-user-selection-inner">
|
|
<h1>ComfyUI</h1>
|
|
<form>
|
|
<section>
|
|
<label>New user:
|
|
<input placeholder="Enter a username" />
|
|
</label>
|
|
</section>
|
|
<div class="comfy-user-existing">
|
|
<span class="or-separator">OR</span>
|
|
<section>
|
|
<label>
|
|
Existing user:
|
|
<select>
|
|
<option hidden disabled selected value> Select a user </option>
|
|
</select>
|
|
</label>
|
|
</section>
|
|
</div>
|
|
<footer>
|
|
<span class="comfy-user-error"> </span>
|
|
<button class="comfy-btn comfy-user-button-next">Next</button>
|
|
</footer>
|
|
</form>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|