forked from intel/AI-Playground
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#58 - change infoParam output in StableDiffusion to a mapping table, …
…allow for infoParam in ComfyUi Signed-off-by: julianbollig <[email protected]>
- Loading branch information
1 parent
e60ac3f
commit 131f78b
Showing
10 changed files
with
120 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<template> | ||
<div v-if="props.params" class="info-params absolute px-5 pt-8 pb-5 text-white"> | ||
<button | ||
class="w-5 h-5 svg-icon i-close absolute right-2 top-2" | ||
@click="emits('close')" | ||
></button> | ||
<div class="params-list"> | ||
<ul class="border border-color-spilter"> | ||
<li | ||
v-for="(value, key) in props.params" | ||
class="last:border-none border-b border-color-spilter flex items-start" | ||
> | ||
<span class="text-base font-bold px-4 items-stretch w-36 flex-none">{{ key }}</span> | ||
<span class="px-4 flex-auto break-word">{{ value }}</span> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</template> | ||
<script setup lang="ts"> | ||
const props = defineProps<{ | ||
params: KVObject | undefined | ||
}>() | ||
const emits = defineEmits<{ | ||
(e: 'close'): void | ||
}>() | ||
</script> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters