mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
Update web content to release v1.3.44 (#5620)
* Update web content to release v1.3.44 * nit
This commit is contained in:
parent
5fb59c8475
commit
4ac401af2b
8
web/assets/ExtensionPanel-BmKi_NKS.js → web/assets/ExtensionPanel-CfMfcLgI.js
generated
vendored
8
web/assets/ExtensionPanel-BmKi_NKS.js → web/assets/ExtensionPanel-CfMfcLgI.js
generated
vendored
@ -1,8 +1,8 @@
|
|||||||
var __defProp = Object.defineProperty;
|
var __defProp = Object.defineProperty;
|
||||||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||||
import { d as defineComponent, bQ as useExtensionStore, u as useSettingStore, r as ref, o as onMounted, q as computed, g as openBlock, h as createElementBlock, i as createVNode, y as withCtx, z as unref, bR as script$1, A as createBaseVNode, x as createBlock, N as Fragment, O as renderList, a6 as toDisplayString, aw as createTextVNode, j as createCommentVNode, D as script$4 } from "./index-BHayQCxv.js";
|
import { d as defineComponent, c6 as useExtensionStore, u as useSettingStore, r as ref, o as onMounted, q as computed, g as openBlock, h as createElementBlock, i as createVNode, y as withCtx, z as unref, bT as script$1, A as createBaseVNode, x as createBlock, N as Fragment, O as renderList, a6 as toDisplayString, aw as createTextVNode, bR as script$3, j as createCommentVNode, D as script$4 } from "./index-B6dYHNhg.js";
|
||||||
import { s as script, a as script$2, b as script$3 } from "./index-CwRXxFdA.js";
|
import { s as script, a as script$2 } from "./index-CjwCGacA.js";
|
||||||
import "./index-C_wOqB0f.js";
|
import "./index-MX9DEi8Q.js";
|
||||||
const _hoisted_1 = { class: "extension-panel" };
|
const _hoisted_1 = { class: "extension-panel" };
|
||||||
const _hoisted_2 = { class: "mt-4" };
|
const _hoisted_2 = { class: "mt-4" };
|
||||||
const _sfc_main = /* @__PURE__ */ defineComponent({
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
||||||
@ -100,4 +100,4 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|||||||
export {
|
export {
|
||||||
_sfc_main as default
|
_sfc_main as default
|
||||||
};
|
};
|
||||||
//# sourceMappingURL=ExtensionPanel-BmKi_NKS.js.map
|
//# sourceMappingURL=ExtensionPanel-CfMfcLgI.js.map
|
@ -1 +1 @@
|
|||||||
{"version":3,"file":"ExtensionPanel-BmKi_NKS.js","sources":["../../src/components/dialog/content/setting/ExtensionPanel.vue"],"sourcesContent":["<template>\n <div class=\"extension-panel\">\n <DataTable :value=\"extensionStore.extensions\" stripedRows size=\"small\">\n <Column field=\"name\" :header=\"$t('extensionName')\" sortable></Column>\n <Column\n :pt=\"{\n bodyCell: 'flex items-center justify-end'\n }\"\n >\n <template #body=\"slotProps\">\n <ToggleSwitch\n v-model=\"editingEnabledExtensions[slotProps.data.name]\"\n @change=\"updateExtensionStatus\"\n />\n </template>\n </Column>\n </DataTable>\n <div class=\"mt-4\">\n <Message v-if=\"hasChanges\" severity=\"info\">\n <ul>\n <li v-for=\"ext in changedExtensions\" :key=\"ext.name\">\n <span>\n {{ extensionStore.isExtensionEnabled(ext.name) ? '[-]' : '[+]' }}\n </span>\n {{ ext.name }}\n </li>\n </ul>\n </Message>\n <Button\n :label=\"$t('reloadToApplyChanges')\"\n icon=\"pi pi-refresh\"\n @click=\"applyChanges\"\n :disabled=\"!hasChanges\"\n text\n fluid\n severity=\"danger\"\n />\n </div>\n </div>\n</template>\n\n<script setup lang=\"ts\">\nimport { ref, computed, onMounted } from 'vue'\nimport { useExtensionStore } from '@/stores/extensionStore'\nimport { useSettingStore } from '@/stores/settingStore'\nimport DataTable from 'primevue/datatable'\nimport Column from 'primevue/column'\nimport ToggleSwitch from 'primevue/toggleswitch'\nimport Button from 'primevue/button'\nimport Message from 'primevue/message'\n\nconst extensionStore = useExtensionStore()\nconst settingStore = useSettingStore()\n\nconst editingEnabledExtensions = ref<Record<string, boolean>>({})\n\nonMounted(() => {\n extensionStore.extensions.forEach((ext) => {\n editingEnabledExtensions.value[ext.name] =\n extensionStore.isExtensionEnabled(ext.name)\n })\n})\n\nconst changedExtensions = computed(() => {\n return extensionStore.extensions.filter(\n (ext) =>\n editingEnabledExtensions.value[ext.name] !==\n extensionStore.isExtensionEnabled(ext.name)\n )\n})\n\nconst hasChanges = computed(() => {\n return changedExtensions.value.length > 0\n})\n\nconst updateExtensionStatus = () => {\n const editingDisabledExtensionNames = Object.entries(\n editingEnabledExtensions.value\n )\n .filter(([_, enabled]) => !enabled)\n .map(([name]) => name)\n\n settingStore.set('Comfy.Extension.Disabled', [\n ...extensionStore.inactiveDisabledExtensionNames,\n ...editingDisabledExtensionNames\n ])\n}\n\nconst applyChanges = () => {\n // Refresh the page to apply changes\n window.location.reload()\n}\n</script>\n"],"names":[],"mappings":";;;;;;;;;;AAmDA,UAAM,iBAAiB;AACvB,UAAM,eAAe;AAEf,UAAA,2BAA2B,IAA6B,CAAA,CAAE;AAEhE,cAAU,MAAM;AACC,qBAAA,WAAW,QAAQ,CAAC,QAAQ;AACzC,iCAAyB,MAAM,IAAI,IAAI,IACrC,eAAe,mBAAmB,IAAI,IAAI;AAAA,MAAA,CAC7C;AAAA,IAAA,CACF;AAEK,UAAA,oBAAoB,SAAS,MAAM;AACvC,aAAO,eAAe,WAAW;AAAA,QAC/B,CAAC,QACC,yBAAyB,MAAM,IAAI,IAAI,MACvC,eAAe,mBAAmB,IAAI,IAAI;AAAA,MAAA;AAAA,IAC9C,CACD;AAEK,UAAA,aAAa,SAAS,MAAM;AACzB,aAAA,kBAAkB,MAAM,SAAS;AAAA,IAAA,CACzC;AAED,UAAM,wBAAwB,6BAAM;AAClC,YAAM,gCAAgC,OAAO;AAAA,QAC3C,yBAAyB;AAAA,MAExB,EAAA,OAAO,CAAC,CAAC,GAAG,OAAO,MAAM,CAAC,OAAO,EACjC,IAAI,CAAC,CAAC,IAAI,MAAM,IAAI;AAEvB,mBAAa,IAAI,4BAA4B;AAAA,QAC3C,GAAG,eAAe;AAAA,QAClB,GAAG;AAAA,MAAA,CACJ;AAAA,IAAA,GAV2B;AAa9B,UAAM,eAAe,6BAAM;AAEzB,aAAO,SAAS;IAAO,GAFJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
{"version":3,"file":"ExtensionPanel-CfMfcLgI.js","sources":["../../src/components/dialog/content/setting/ExtensionPanel.vue"],"sourcesContent":["<template>\n <div class=\"extension-panel\">\n <DataTable :value=\"extensionStore.extensions\" stripedRows size=\"small\">\n <Column field=\"name\" :header=\"$t('extensionName')\" sortable></Column>\n <Column\n :pt=\"{\n bodyCell: 'flex items-center justify-end'\n }\"\n >\n <template #body=\"slotProps\">\n <ToggleSwitch\n v-model=\"editingEnabledExtensions[slotProps.data.name]\"\n @change=\"updateExtensionStatus\"\n />\n </template>\n </Column>\n </DataTable>\n <div class=\"mt-4\">\n <Message v-if=\"hasChanges\" severity=\"info\">\n <ul>\n <li v-for=\"ext in changedExtensions\" :key=\"ext.name\">\n <span>\n {{ extensionStore.isExtensionEnabled(ext.name) ? '[-]' : '[+]' }}\n </span>\n {{ ext.name }}\n </li>\n </ul>\n </Message>\n <Button\n :label=\"$t('reloadToApplyChanges')\"\n icon=\"pi pi-refresh\"\n @click=\"applyChanges\"\n :disabled=\"!hasChanges\"\n text\n fluid\n severity=\"danger\"\n />\n </div>\n </div>\n</template>\n\n<script setup lang=\"ts\">\nimport { ref, computed, onMounted } from 'vue'\nimport { useExtensionStore } from '@/stores/extensionStore'\nimport { useSettingStore } from '@/stores/settingStore'\nimport DataTable from 'primevue/datatable'\nimport Column from 'primevue/column'\nimport ToggleSwitch from 'primevue/toggleswitch'\nimport Button from 'primevue/button'\nimport Message from 'primevue/message'\n\nconst extensionStore = useExtensionStore()\nconst settingStore = useSettingStore()\n\nconst editingEnabledExtensions = ref<Record<string, boolean>>({})\n\nonMounted(() => {\n extensionStore.extensions.forEach((ext) => {\n editingEnabledExtensions.value[ext.name] =\n extensionStore.isExtensionEnabled(ext.name)\n })\n})\n\nconst changedExtensions = computed(() => {\n return extensionStore.extensions.filter(\n (ext) =>\n editingEnabledExtensions.value[ext.name] !==\n extensionStore.isExtensionEnabled(ext.name)\n )\n})\n\nconst hasChanges = computed(() => {\n return changedExtensions.value.length > 0\n})\n\nconst updateExtensionStatus = () => {\n const editingDisabledExtensionNames = Object.entries(\n editingEnabledExtensions.value\n )\n .filter(([_, enabled]) => !enabled)\n .map(([name]) => name)\n\n settingStore.set('Comfy.Extension.Disabled', [\n ...extensionStore.inactiveDisabledExtensionNames,\n ...editingDisabledExtensionNames\n ])\n}\n\nconst applyChanges = () => {\n // Refresh the page to apply changes\n window.location.reload()\n}\n</script>\n"],"names":[],"mappings":";;;;;;;;;;AAmDA,UAAM,iBAAiB;AACvB,UAAM,eAAe;AAEf,UAAA,2BAA2B,IAA6B,CAAA,CAAE;AAEhE,cAAU,MAAM;AACC,qBAAA,WAAW,QAAQ,CAAC,QAAQ;AACzC,iCAAyB,MAAM,IAAI,IAAI,IACrC,eAAe,mBAAmB,IAAI,IAAI;AAAA,MAAA,CAC7C;AAAA,IAAA,CACF;AAEK,UAAA,oBAAoB,SAAS,MAAM;AACvC,aAAO,eAAe,WAAW;AAAA,QAC/B,CAAC,QACC,yBAAyB,MAAM,IAAI,IAAI,MACvC,eAAe,mBAAmB,IAAI,IAAI;AAAA,MAAA;AAAA,IAC9C,CACD;AAEK,UAAA,aAAa,SAAS,MAAM;AACzB,aAAA,kBAAkB,MAAM,SAAS;AAAA,IAAA,CACzC;AAED,UAAM,wBAAwB,6BAAM;AAClC,YAAM,gCAAgC,OAAO;AAAA,QAC3C,yBAAyB;AAAA,MAExB,EAAA,OAAO,CAAC,CAAC,GAAG,OAAO,MAAM,CAAC,OAAO,EACjC,IAAI,CAAC,CAAC,IAAI,MAAM,IAAI;AAEvB,mBAAa,IAAI,4BAA4B;AAAA,QAC3C,GAAG,eAAe;AAAA,QAClB,GAAG;AAAA,MAAA,CACJ;AAAA,IAAA,GAV2B;AAa9B,UAAM,eAAe,6BAAM;AAEzB,aAAO,SAAS;IAAO,GAFJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
627
web/assets/GraphView-C4blCugc.js → web/assets/GraphView-BCOd0Zle.js
generated
vendored
627
web/assets/GraphView-C4blCugc.js → web/assets/GraphView-BCOd0Zle.js
generated
vendored
File diff suppressed because one or more lines are too long
1
web/assets/GraphView-BCOd0Zle.js.map
generated
vendored
Normal file
1
web/assets/GraphView-BCOd0Zle.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
web/assets/GraphView-C4blCugc.js.map
generated
vendored
1
web/assets/GraphView-C4blCugc.js.map
generated
vendored
File diff suppressed because one or more lines are too long
64
web/assets/GraphView-Cf7ubG48.css → web/assets/GraphView-CghYAxkP.css
generated
vendored
64
web/assets/GraphView-Cf7ubG48.css → web/assets/GraphView-CghYAxkP.css
generated
vendored
@ -45,7 +45,7 @@
|
|||||||
--sidebar-icon-size: 1rem;
|
--sidebar-icon-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-tool-bar-container[data-v-37fd2fa4] {
|
.side-tool-bar-container[data-v-e0812a25] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -58,28 +58,32 @@
|
|||||||
background-color: var(--comfy-menu-bg);
|
background-color: var(--comfy-menu-bg);
|
||||||
color: var(--fg-color);
|
color: var(--fg-color);
|
||||||
}
|
}
|
||||||
.side-tool-bar-end[data-v-37fd2fa4] {
|
.side-tool-bar-end[data-v-e0812a25] {
|
||||||
align-self: flex-end;
|
align-self: flex-end;
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-v-b49f20b1] .p-splitter-gutter {
|
[data-v-7c3279c1] .p-splitter-gutter {
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
.side-bar-panel[data-v-b49f20b1] {
|
[data-v-7c3279c1] .p-splitter-gutter:hover,[data-v-7c3279c1] .p-splitter-gutter[data-p-gutter-resizing='true'] {
|
||||||
|
transition: background-color 0.2s ease 300ms;
|
||||||
|
background-color: var(--p-primary-color);
|
||||||
|
}
|
||||||
|
.side-bar-panel[data-v-7c3279c1] {
|
||||||
background-color: var(--bg-color);
|
background-color: var(--bg-color);
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
.bottom-panel[data-v-b49f20b1] {
|
.bottom-panel[data-v-7c3279c1] {
|
||||||
background-color: var(--bg-color);
|
background-color: var(--bg-color);
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
.splitter-overlay[data-v-b49f20b1] {
|
.splitter-overlay[data-v-7c3279c1] {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
.splitter-overlay-root[data-v-b49f20b1] {
|
.splitter-overlay-root[data-v-7c3279c1] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
@ -146,7 +150,7 @@
|
|||||||
align-items: flex-start !important;
|
align-items: flex-start !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.node-tooltip[data-v-79ec8c53] {
|
.node-tooltip[data-v-c2e0098f] {
|
||||||
background: var(--comfy-input-bg);
|
background: var(--comfy-input-bg);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
|
||||||
@ -162,22 +166,28 @@
|
|||||||
z-index: 99999;
|
z-index: 99999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-buttongroup-vertical[data-v-444d3768] {
|
.p-buttongroup-vertical[data-v-94481f39] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
border-radius: var(--p-button-border-radius);
|
border-radius: var(--p-button-border-radius);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: 1px solid var(--p-panel-border-color);
|
border: 1px solid var(--p-panel-border-color);
|
||||||
}
|
}
|
||||||
.p-buttongroup-vertical .p-button[data-v-444d3768] {
|
.p-buttongroup-vertical .p-button[data-v-94481f39] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-v-84e785b8] .p-togglebutton::before {
|
.comfy-menu-hamburger[data-v-2ddd26e8] {
|
||||||
|
pointer-events: auto;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 9999;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-v-9eb975c3] .p-togglebutton::before {
|
||||||
display: none
|
display: none
|
||||||
}
|
}
|
||||||
[data-v-84e785b8] .p-togglebutton {
|
[data-v-9eb975c3] .p-togglebutton {
|
||||||
position: relative;
|
position: relative;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
@ -185,14 +195,14 @@
|
|||||||
padding-left: 0.5rem;
|
padding-left: 0.5rem;
|
||||||
padding-right: 0.5rem
|
padding-right: 0.5rem
|
||||||
}
|
}
|
||||||
[data-v-84e785b8] .p-togglebutton.p-togglebutton-checked {
|
[data-v-9eb975c3] .p-togglebutton.p-togglebutton-checked {
|
||||||
border-bottom-width: 2px;
|
border-bottom-width: 2px;
|
||||||
border-bottom-color: var(--p-button-text-primary-color)
|
border-bottom-color: var(--p-button-text-primary-color)
|
||||||
}
|
}
|
||||||
[data-v-84e785b8] .p-togglebutton-checked .close-button,[data-v-84e785b8] .p-togglebutton:hover .close-button {
|
[data-v-9eb975c3] .p-togglebutton-checked .close-button,[data-v-9eb975c3] .p-togglebutton:hover .close-button {
|
||||||
visibility: visible
|
visibility: visible
|
||||||
}
|
}
|
||||||
.status-indicator[data-v-84e785b8] {
|
.status-indicator[data-v-9eb975c3] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
@ -200,10 +210,10 @@
|
|||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translate(-50%, -50%)
|
transform: translate(-50%, -50%)
|
||||||
}
|
}
|
||||||
[data-v-84e785b8] .p-togglebutton:hover .status-indicator {
|
[data-v-9eb975c3] .p-togglebutton:hover .status-indicator {
|
||||||
display: none
|
display: none
|
||||||
}
|
}
|
||||||
[data-v-84e785b8] .p-togglebutton .close-button {
|
[data-v-9eb975c3] .p-togglebutton .close-button {
|
||||||
visibility: hidden
|
visibility: hidden
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -226,35 +236,35 @@
|
|||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.comfyui-queue-button[data-v-2b80bf74] .p-splitbutton-dropdown {
|
.comfyui-queue-button[data-v-95bc9be0] .p-splitbutton-dropdown {
|
||||||
border-top-right-radius: 0;
|
border-top-right-radius: 0;
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.actionbar[data-v-2e54db00] {
|
.actionbar[data-v-eb6e9acf] {
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
}
|
}
|
||||||
.actionbar.is-docked[data-v-2e54db00] {
|
.actionbar.is-docked[data-v-eb6e9acf] {
|
||||||
position: static;
|
position: static;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
.actionbar.is-dragging[data-v-2e54db00] {
|
.actionbar.is-dragging[data-v-eb6e9acf] {
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
[data-v-2e54db00] .p-panel-content {
|
[data-v-eb6e9acf] .p-panel-content {
|
||||||
padding: 0.25rem;
|
padding: 0.25rem;
|
||||||
}
|
}
|
||||||
[data-v-2e54db00] .p-panel-header {
|
[data-v-eb6e9acf] .p-panel-header {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.comfyui-menu[data-v-ad2c662b] {
|
.comfyui-menu[data-v-d84a704d] {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
background: var(--comfy-menu-bg);
|
background: var(--comfy-menu-bg);
|
||||||
color: var(--fg-color);
|
color: var(--fg-color);
|
||||||
@ -266,13 +276,13 @@
|
|||||||
grid-column: 1/-1;
|
grid-column: 1/-1;
|
||||||
max-height: 90vh;
|
max-height: 90vh;
|
||||||
}
|
}
|
||||||
.comfyui-menu.dropzone[data-v-ad2c662b] {
|
.comfyui-menu.dropzone[data-v-d84a704d] {
|
||||||
background: var(--p-highlight-background);
|
background: var(--p-highlight-background);
|
||||||
}
|
}
|
||||||
.comfyui-menu.dropzone-active[data-v-ad2c662b] {
|
.comfyui-menu.dropzone-active[data-v-d84a704d] {
|
||||||
background: var(--p-highlight-background-focus);
|
background: var(--p-highlight-background-focus);
|
||||||
}
|
}
|
||||||
.comfyui-logo[data-v-ad2c662b] {
|
.comfyui-logo[data-v-d84a704d] {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
4
web/assets/InstallView-CN3CA9Fk.css
generated
vendored
Normal file
4
web/assets/InstallView-CN3CA9Fk.css
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
[data-v-53e62b05] .p-steppanel {
|
||||||
|
background-color: transparent
|
||||||
|
}
|
1048
web/assets/InstallView-D9ueAxrz.js
generated
vendored
Normal file
1048
web/assets/InstallView-D9ueAxrz.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
web/assets/InstallView-D9ueAxrz.js.map
generated
vendored
Normal file
1
web/assets/InstallView-D9ueAxrz.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
8
web/assets/KeybindingPanel-BNYKhW1k.css
generated
vendored
8
web/assets/KeybindingPanel-BNYKhW1k.css
generated
vendored
@ -1,8 +0,0 @@
|
|||||||
|
|
||||||
[data-v-e5724e4d] .p-datatable-tbody > tr > td {
|
|
||||||
padding: 1px;
|
|
||||||
min-height: 2rem;
|
|
||||||
}
|
|
||||||
[data-v-e5724e4d] .p-datatable-row-selected .actions,[data-v-e5724e4d] .p-datatable-selectable-row:hover .actions {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
8
web/assets/KeybindingPanel-CB_wEOHl.css
generated
vendored
Normal file
8
web/assets/KeybindingPanel-CB_wEOHl.css
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
[data-v-2d8b3a76] .p-datatable-tbody > tr > td {
|
||||||
|
padding: 0.25rem;
|
||||||
|
min-height: 2rem
|
||||||
|
}
|
||||||
|
[data-v-2d8b3a76] .p-datatable-row-selected .actions,[data-v-2d8b3a76] .p-datatable-selectable-row:hover .actions {
|
||||||
|
visibility: visible
|
||||||
|
}
|
30
web/assets/KeybindingPanel-Dm_3sBT5.js → web/assets/KeybindingPanel-DcEfyPZZ.js
generated
vendored
30
web/assets/KeybindingPanel-Dm_3sBT5.js → web/assets/KeybindingPanel-DcEfyPZZ.js
generated
vendored
@ -1,8 +1,8 @@
|
|||||||
var __defProp = Object.defineProperty;
|
var __defProp = Object.defineProperty;
|
||||||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||||
import { d as defineComponent, q as computed, g as openBlock, h as createElementBlock, N as Fragment, O as renderList, i as createVNode, y as withCtx, aw as createTextVNode, a6 as toDisplayString, z as unref, aA as script, j as createCommentVNode, r as ref, bN as FilterMatchMode, M as useKeybindingStore, F as useCommandStore, aJ as watchEffect, b9 as useToast, t as resolveDirective, bO as SearchBox, A as createBaseVNode, D as script$2, x as createBlock, ao as script$4, be as withModifiers, aH as script$6, v as withDirectives, P as pushScopeId, Q as popScopeId, bJ as KeyComboImpl, bP as KeybindingImpl, _ as _export_sfc } from "./index-BHayQCxv.js";
|
import { d as defineComponent, q as computed, g as openBlock, h as createElementBlock, N as Fragment, O as renderList, i as createVNode, y as withCtx, aw as createTextVNode, a6 as toDisplayString, z as unref, aA as script, j as createCommentVNode, r as ref, c3 as FilterMatchMode, M as useKeybindingStore, F as useCommandStore, aJ as watchEffect, be as useToast, t as resolveDirective, c4 as SearchBox, A as createBaseVNode, D as script$2, x as createBlock, ao as script$4, bi as withModifiers, bR as script$5, aH as script$6, v as withDirectives, P as pushScopeId, Q as popScopeId, b$ as KeyComboImpl, c5 as KeybindingImpl, _ as _export_sfc } from "./index-B6dYHNhg.js";
|
||||||
import { s as script$1, a as script$3, b as script$5 } from "./index-CwRXxFdA.js";
|
import { s as script$1, a as script$3 } from "./index-CjwCGacA.js";
|
||||||
import "./index-C_wOqB0f.js";
|
import "./index-MX9DEi8Q.js";
|
||||||
const _hoisted_1$1 = {
|
const _hoisted_1$1 = {
|
||||||
key: 0,
|
key: 0,
|
||||||
class: "px-2"
|
class: "px-2"
|
||||||
@ -35,10 +35,11 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const _withScopeId = /* @__PURE__ */ __name((n) => (pushScopeId("data-v-e5724e4d"), n = n(), popScopeId(), n), "_withScopeId");
|
const _withScopeId = /* @__PURE__ */ __name((n) => (pushScopeId("data-v-2d8b3a76"), n = n(), popScopeId(), n), "_withScopeId");
|
||||||
const _hoisted_1 = { class: "keybinding-panel" };
|
const _hoisted_1 = { class: "keybinding-panel" };
|
||||||
const _hoisted_2 = { class: "actions invisible" };
|
const _hoisted_2 = { class: "actions invisible flex flex-row" };
|
||||||
const _hoisted_3 = { key: 1 };
|
const _hoisted_3 = ["title"];
|
||||||
|
const _hoisted_4 = { key: 1 };
|
||||||
const _sfc_main = /* @__PURE__ */ defineComponent({
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
||||||
__name: "KeybindingPanel",
|
__name: "KeybindingPanel",
|
||||||
setup(__props) {
|
setup(__props) {
|
||||||
@ -177,7 +178,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|||||||
createVNode(unref(script$1), {
|
createVNode(unref(script$1), {
|
||||||
field: "id",
|
field: "id",
|
||||||
header: "Command ID",
|
header: "Command ID",
|
||||||
sortable: ""
|
sortable: "",
|
||||||
|
class: "max-w-64 2xl:max-w-full"
|
||||||
|
}, {
|
||||||
|
body: withCtx((slotProps) => [
|
||||||
|
createBaseVNode("div", {
|
||||||
|
class: "overflow-hidden text-ellipsis whitespace-nowrap",
|
||||||
|
title: slotProps.data.id
|
||||||
|
}, toDisplayString(slotProps.data.id), 9, _hoisted_3)
|
||||||
|
]),
|
||||||
|
_: 1
|
||||||
}),
|
}),
|
||||||
createVNode(unref(script$1), {
|
createVNode(unref(script$1), {
|
||||||
field: "keybinding",
|
field: "keybinding",
|
||||||
@ -188,7 +198,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|||||||
key: 0,
|
key: 0,
|
||||||
keyCombo: slotProps.data.keybinding.combo,
|
keyCombo: slotProps.data.keybinding.combo,
|
||||||
isModified: unref(keybindingStore).isCommandKeybindingModified(slotProps.data.id)
|
isModified: unref(keybindingStore).isCommandKeybindingModified(slotProps.data.id)
|
||||||
}, null, 8, ["keyCombo", "isModified"])) : (openBlock(), createElementBlock("span", _hoisted_3, "-"))
|
}, null, 8, ["keyCombo", "isModified"])) : (openBlock(), createElementBlock("span", _hoisted_4, "-"))
|
||||||
]),
|
]),
|
||||||
_: 1
|
_: 1
|
||||||
})
|
})
|
||||||
@ -257,8 +267,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const KeybindingPanel = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-e5724e4d"]]);
|
const KeybindingPanel = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2d8b3a76"]]);
|
||||||
export {
|
export {
|
||||||
KeybindingPanel as default
|
KeybindingPanel as default
|
||||||
};
|
};
|
||||||
//# sourceMappingURL=KeybindingPanel-Dm_3sBT5.js.map
|
//# sourceMappingURL=KeybindingPanel-DcEfyPZZ.js.map
|
1
web/assets/KeybindingPanel-DcEfyPZZ.js.map
generated
vendored
Normal file
1
web/assets/KeybindingPanel-DcEfyPZZ.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
web/assets/KeybindingPanel-Dm_3sBT5.js.map
generated
vendored
1
web/assets/KeybindingPanel-Dm_3sBT5.js.map
generated
vendored
File diff suppressed because one or more lines are too long
102
web/assets/ServerStartView-e57oVZ6V.js
generated
vendored
Normal file
102
web/assets/ServerStartView-e57oVZ6V.js
generated
vendored
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
var __defProp = Object.defineProperty;
|
||||||
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||||
|
import { d as defineComponent, r as ref, o as onMounted, w as watch, I as onBeforeUnmount, g as openBlock, h as createElementBlock, i as createVNode, y as withCtx, A as createBaseVNode, a6 as toDisplayString, z as unref, bK as script, bL as electronAPI } from "./index-B6dYHNhg.js";
|
||||||
|
import { t, s } from "./index-B4gmhi99.js";
|
||||||
|
const _hoisted_1$1 = { class: "p-terminal rounded-none h-full w-full" };
|
||||||
|
const _hoisted_2$1 = { class: "px-4 whitespace-pre-wrap" };
|
||||||
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
||||||
|
__name: "LogTerminal",
|
||||||
|
props: {
|
||||||
|
fetchLogs: { type: Function },
|
||||||
|
fetchInterval: {}
|
||||||
|
},
|
||||||
|
setup(__props) {
|
||||||
|
const props = __props;
|
||||||
|
const log = ref("");
|
||||||
|
const scrollPanelRef = ref(null);
|
||||||
|
const scrolledToBottom = ref(false);
|
||||||
|
let intervalId = 0;
|
||||||
|
onMounted(async () => {
|
||||||
|
const element = scrollPanelRef.value?.$el;
|
||||||
|
const scrollContainer = element?.querySelector(".p-scrollpanel-content");
|
||||||
|
if (scrollContainer) {
|
||||||
|
scrollContainer.addEventListener("scroll", () => {
|
||||||
|
scrolledToBottom.value = scrollContainer.scrollTop + scrollContainer.clientHeight === scrollContainer.scrollHeight;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const scrollToBottom = /* @__PURE__ */ __name(() => {
|
||||||
|
if (scrollContainer) {
|
||||||
|
scrollContainer.scrollTop = scrollContainer.scrollHeight;
|
||||||
|
}
|
||||||
|
}, "scrollToBottom");
|
||||||
|
watch(log, () => {
|
||||||
|
if (scrolledToBottom.value) {
|
||||||
|
scrollToBottom();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const fetchLogs = /* @__PURE__ */ __name(async () => {
|
||||||
|
log.value = await props.fetchLogs();
|
||||||
|
}, "fetchLogs");
|
||||||
|
await fetchLogs();
|
||||||
|
scrollToBottom();
|
||||||
|
intervalId = window.setInterval(fetchLogs, props.fetchInterval);
|
||||||
|
});
|
||||||
|
onBeforeUnmount(() => {
|
||||||
|
window.clearInterval(intervalId);
|
||||||
|
});
|
||||||
|
return (_ctx, _cache) => {
|
||||||
|
return openBlock(), createElementBlock("div", _hoisted_1$1, [
|
||||||
|
createVNode(unref(script), {
|
||||||
|
class: "h-full w-full",
|
||||||
|
ref_key: "scrollPanelRef",
|
||||||
|
ref: scrollPanelRef
|
||||||
|
}, {
|
||||||
|
default: withCtx(() => [
|
||||||
|
createBaseVNode("pre", _hoisted_2$1, toDisplayString(log.value), 1)
|
||||||
|
]),
|
||||||
|
_: 1
|
||||||
|
}, 512)
|
||||||
|
]);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const _hoisted_1 = { class: "font-sans flex flex-col justify-center items-center h-screen m-0 text-neutral-300 bg-neutral-900 dark-theme pointer-events-auto" };
|
||||||
|
const _hoisted_2 = { class: "text-2xl font-bold" };
|
||||||
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
||||||
|
__name: "ServerStartView",
|
||||||
|
setup(__props) {
|
||||||
|
const electron = electronAPI();
|
||||||
|
const status = ref(t.INITIAL_STATE);
|
||||||
|
const logs = ref([]);
|
||||||
|
const updateProgress = /* @__PURE__ */ __name(({ status: newStatus }) => {
|
||||||
|
status.value = newStatus;
|
||||||
|
logs.value = [];
|
||||||
|
}, "updateProgress");
|
||||||
|
const addLogMessage = /* @__PURE__ */ __name((message) => {
|
||||||
|
logs.value = [...logs.value, message];
|
||||||
|
}, "addLogMessage");
|
||||||
|
const fetchLogs = /* @__PURE__ */ __name(async () => {
|
||||||
|
return logs.value.join("\n");
|
||||||
|
}, "fetchLogs");
|
||||||
|
onMounted(() => {
|
||||||
|
electron.sendReady();
|
||||||
|
electron.onProgressUpdate(updateProgress);
|
||||||
|
electron.onLogMessage((message) => {
|
||||||
|
addLogMessage(message);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return (_ctx, _cache) => {
|
||||||
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
||||||
|
createBaseVNode("h2", _hoisted_2, toDisplayString(unref(s)[status.value]), 1),
|
||||||
|
createVNode(_sfc_main$1, {
|
||||||
|
"fetch-logs": fetchLogs,
|
||||||
|
"fetch-interval": 500
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
export {
|
||||||
|
_sfc_main as default
|
||||||
|
};
|
||||||
|
//# sourceMappingURL=ServerStartView-e57oVZ6V.js.map
|
1
web/assets/ServerStartView-e57oVZ6V.js.map
generated
vendored
Normal file
1
web/assets/ServerStartView-e57oVZ6V.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"ServerStartView-e57oVZ6V.js","sources":["../../src/components/common/LogTerminal.vue","../../src/views/ServerStartView.vue"],"sourcesContent":["<!-- A simple read-only terminal component that displays logs. -->\n<template>\n <div class=\"p-terminal rounded-none h-full w-full\">\n <ScrollPanel class=\"h-full w-full\" ref=\"scrollPanelRef\">\n <pre class=\"px-4 whitespace-pre-wrap\">{{ log }}</pre>\n </ScrollPanel>\n </div>\n</template>\n\n<script setup lang=\"ts\">\nimport ScrollPanel from 'primevue/scrollpanel'\nimport { onBeforeUnmount, onMounted, ref, watch } from 'vue'\n\nconst props = defineProps<{\n fetchLogs: () => Promise<string>\n fetchInterval: number\n}>()\n\nconst log = ref<string>('')\nconst scrollPanelRef = ref<InstanceType<typeof ScrollPanel> | null>(null)\n/**\n * Whether the user has scrolled to the bottom of the terminal.\n * This is used to prevent the terminal from scrolling to the bottom\n * when new logs are fetched.\n */\nconst scrolledToBottom = ref(false)\n\nlet intervalId: number = 0\n\nonMounted(async () => {\n const element = scrollPanelRef.value?.$el\n const scrollContainer = element?.querySelector('.p-scrollpanel-content')\n\n if (scrollContainer) {\n scrollContainer.addEventListener('scroll', () => {\n scrolledToBottom.value =\n scrollContainer.scrollTop + scrollContainer.clientHeight ===\n scrollContainer.scrollHeight\n })\n }\n\n const scrollToBottom = () => {\n if (scrollContainer) {\n scrollContainer.scrollTop = scrollContainer.scrollHeight\n }\n }\n\n watch(log, () => {\n if (scrolledToBottom.value) {\n scrollToBottom()\n }\n })\n\n const fetchLogs = async () => {\n log.value = await props.fetchLogs()\n }\n\n await fetchLogs()\n scrollToBottom()\n intervalId = window.setInterval(fetchLogs, props.fetchInterval)\n})\n\nonBeforeUnmount(() => {\n window.clearInterval(intervalId)\n})\n</script>\n","<template>\n <div\n class=\"font-sans flex flex-col justify-center items-center h-screen m-0 text-neutral-300 bg-neutral-900 dark-theme pointer-events-auto\"\n >\n <h2 class=\"text-2xl font-bold\">{{ ProgressMessages[status] }}</h2>\n <LogTerminal :fetch-logs=\"fetchLogs\" :fetch-interval=\"500\" />\n </div>\n</template>\n\n<script setup lang=\"ts\">\nimport { ref, onMounted } from 'vue'\nimport LogTerminal from '@/components/common/LogTerminal.vue'\nimport {\n ProgressStatus,\n ProgressMessages\n} from '@comfyorg/comfyui-electron-types'\nimport { electronAPI } from '@/utils/envUtil'\n\nconst electron = electronAPI()\n\nconst status = ref<ProgressStatus>(ProgressStatus.INITIAL_STATE)\nconst logs = ref<string[]>([])\n\nconst updateProgress = ({ status: newStatus }: { status: ProgressStatus }) => {\n status.value = newStatus\n logs.value = [] // Clear logs when status changes\n}\n\nconst addLogMessage = (message: string) => {\n logs.value = [...logs.value, message]\n}\n\nconst fetchLogs = async () => {\n return logs.value.join('\\n')\n}\n\nonMounted(() => {\n electron.sendReady()\n electron.onProgressUpdate(updateProgress)\n electron.onLogMessage((message: string) => {\n addLogMessage(message)\n })\n})\n</script>\n"],"names":["ProgressStatus"],"mappings":";;;;;;;;;;;;;AAaA,UAAM,QAAQ;AAKR,UAAA,MAAM,IAAY,EAAE;AACpB,UAAA,iBAAiB,IAA6C,IAAI;AAMlE,UAAA,mBAAmB,IAAI,KAAK;AAElC,QAAI,aAAqB;AAEzB,cAAU,YAAY;AACd,YAAA,UAAU,eAAe,OAAO;AAChC,YAAA,kBAAkB,SAAS,cAAc,wBAAwB;AAEvE,UAAI,iBAAiB;AACH,wBAAA,iBAAiB,UAAU,MAAM;AAC/C,2BAAiB,QACf,gBAAgB,YAAY,gBAAgB,iBAC5C,gBAAgB;AAAA,QAAA,CACnB;AAAA,MACH;AAEA,YAAM,iBAAiB,6BAAM;AAC3B,YAAI,iBAAiB;AACnB,0BAAgB,YAAY,gBAAgB;AAAA,QAC9C;AAAA,MAAA,GAHqB;AAMvB,YAAM,KAAK,MAAM;AACf,YAAI,iBAAiB,OAAO;AACX;QACjB;AAAA,MAAA,CACD;AAED,YAAM,YAAY,mCAAY;AACxB,YAAA,QAAQ,MAAM,MAAM,UAAU;AAAA,MAAA,GADlB;AAIlB,YAAM,UAAU;AACD;AACf,mBAAa,OAAO,YAAY,WAAW,MAAM,aAAa;AAAA,IAAA,CAC/D;AAED,oBAAgB,MAAM;AACpB,aAAO,cAAc,UAAU;AAAA,IAAA,CAChC;;;;;;;;;;;;;;;;;;;;;;AC9CD,UAAM,WAAW;AAEX,UAAA,SAAS,IAAoBA,EAAe,aAAa;AACzD,UAAA,OAAO,IAAc,CAAA,CAAE;AAE7B,UAAM,iBAAiB,wBAAC,EAAE,QAAQ,gBAA4C;AAC5E,aAAO,QAAQ;AACf,WAAK,QAAQ;IAAC,GAFO;AAKjB,UAAA,gBAAgB,wBAAC,YAAoB;AACzC,WAAK,QAAQ,CAAC,GAAG,KAAK,OAAO,OAAO;AAAA,IAAA,GADhB;AAItB,UAAM,YAAY,mCAAY;AACrB,aAAA,KAAK,MAAM,KAAK,IAAI;AAAA,IAAA,GADX;AAIlB,cAAU,MAAM;AACd,eAAS,UAAU;AACnB,eAAS,iBAAiB,cAAc;AAC/B,eAAA,aAAa,CAAC,YAAoB;AACzC,sBAAc,OAAO;AAAA,MAAA,CACtB;AAAA,IAAA,CACF;;;;;;;;;;;;"}
|
36
web/assets/WelcomeView-DQQgHnsr.css
generated
vendored
Normal file
36
web/assets/WelcomeView-DQQgHnsr.css
generated
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
|
||||||
|
.animated-gradient-text[data-v-12b8b11b] {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: clamp(2rem, 8vw, 4rem);
|
||||||
|
background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59, #12c2e9);
|
||||||
|
background-size: 300% auto;
|
||||||
|
background-clip: text;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
animation: gradient-12b8b11b 8s linear infinite;
|
||||||
|
}
|
||||||
|
.text-glow[data-v-12b8b11b] {
|
||||||
|
filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
|
||||||
|
}
|
||||||
|
@keyframes gradient-12b8b11b {
|
||||||
|
0% {
|
||||||
|
background-position: 0% center;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
background-position: 300% center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.fade-in-up[data-v-12b8b11b] {
|
||||||
|
animation: fadeInUp-12b8b11b 1.5s ease-out;
|
||||||
|
animation-fill-mode: both;
|
||||||
|
}
|
||||||
|
@keyframes fadeInUp-12b8b11b {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(20px);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
}
|
33
web/assets/WelcomeView-DT4bj-QV.js
generated
vendored
Normal file
33
web/assets/WelcomeView-DT4bj-QV.js
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
var __defProp = Object.defineProperty;
|
||||||
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||||
|
import { d as defineComponent, g as openBlock, h as createElementBlock, A as createBaseVNode, a6 as toDisplayString, i as createVNode, z as unref, D as script, P as pushScopeId, Q as popScopeId, _ as _export_sfc } from "./index-B6dYHNhg.js";
|
||||||
|
const _withScopeId = /* @__PURE__ */ __name((n) => (pushScopeId("data-v-12b8b11b"), n = n(), popScopeId(), n), "_withScopeId");
|
||||||
|
const _hoisted_1 = { class: "font-sans flex flex-col justify-center items-center h-screen m-0 text-neutral-300 bg-neutral-900 dark-theme pointer-events-auto" };
|
||||||
|
const _hoisted_2 = { class: "flex flex-col items-center justify-center gap-8 p-8" };
|
||||||
|
const _hoisted_3 = { class: "animated-gradient-text text-glow select-none" };
|
||||||
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
||||||
|
__name: "WelcomeView",
|
||||||
|
setup(__props) {
|
||||||
|
return (_ctx, _cache) => {
|
||||||
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
||||||
|
createBaseVNode("div", _hoisted_2, [
|
||||||
|
createBaseVNode("h1", _hoisted_3, toDisplayString(_ctx.$t("welcome.title")), 1),
|
||||||
|
createVNode(unref(script), {
|
||||||
|
label: _ctx.$t("welcome.getStarted"),
|
||||||
|
icon: "pi pi-arrow-right",
|
||||||
|
iconPos: "right",
|
||||||
|
size: "large",
|
||||||
|
rounded: "",
|
||||||
|
onClick: _cache[0] || (_cache[0] = ($event) => _ctx.$router.push("/install")),
|
||||||
|
class: "p-4 text-lg fade-in-up"
|
||||||
|
}, null, 8, ["label"])
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const WelcomeView = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-12b8b11b"]]);
|
||||||
|
export {
|
||||||
|
WelcomeView as default
|
||||||
|
};
|
||||||
|
//# sourceMappingURL=WelcomeView-DT4bj-QV.js.map
|
1
web/assets/WelcomeView-DT4bj-QV.js.map
generated
vendored
Normal file
1
web/assets/WelcomeView-DT4bj-QV.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"WelcomeView-DT4bj-QV.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
230
web/assets/index-BReiUkk9.js → web/assets/index-B1vRdV2i.js
generated
vendored
230
web/assets/index-BReiUkk9.js → web/assets/index-B1vRdV2i.js
generated
vendored
@ -1,7 +1,7 @@
|
|||||||
var __defProp = Object.defineProperty;
|
var __defProp = Object.defineProperty;
|
||||||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||||
import { bF as ComfyDialog, bG as $el, bH as ComfyApp, c as app, k as LiteGraph, b0 as LGraphCanvas, bI as DraggableList, ba as useToastStore, aE as useNodeDefStore, bC as api, L as LGraphGroup, bJ as KeyComboImpl, M as useKeybindingStore, F as useCommandStore, e as LGraphNode, bK as ComfyWidgets, bL as applyTextReplacements } from "./index-BHayQCxv.js";
|
import { bV as ComfyDialog, bW as $el, bX as ComfyApp, c as app, k as LiteGraph, b2 as LGraphCanvas, bY as DraggableList, bf as useToastStore, bZ as serialise, aE as useNodeDefStore, b_ as deserialiseAndCreate, bH as api, L as LGraphGroup, b$ as KeyComboImpl, M as useKeybindingStore, F as useCommandStore, e as LGraphNode, c0 as ComfyWidgets, c1 as applyTextReplacements } from "./index-B6dYHNhg.js";
|
||||||
import { mergeIfValid, getWidgetConfig, setWidgetConfig } from "./widgetInputs-DdecKYqd.js";
|
import { mergeIfValid, getWidgetConfig, setWidgetConfig } from "./widgetInputs-BJ21PG7d.js";
|
||||||
class ClipspaceDialog extends ComfyDialog {
|
class ClipspaceDialog extends ComfyDialog {
|
||||||
static {
|
static {
|
||||||
__name(this, "ClipspaceDialog");
|
__name(this, "ClipspaceDialog");
|
||||||
@ -160,7 +160,7 @@ app.registerExtension({
|
|||||||
window.comfyAPI = window.comfyAPI || {};
|
window.comfyAPI = window.comfyAPI || {};
|
||||||
window.comfyAPI.clipspace = window.comfyAPI.clipspace || {};
|
window.comfyAPI.clipspace = window.comfyAPI.clipspace || {};
|
||||||
window.comfyAPI.clipspace.ClipspaceDialog = ClipspaceDialog;
|
window.comfyAPI.clipspace.ClipspaceDialog = ClipspaceDialog;
|
||||||
const ext$2 = {
|
const ext$1 = {
|
||||||
name: "Comfy.ContextMenuFilter",
|
name: "Comfy.ContextMenuFilter",
|
||||||
init() {
|
init() {
|
||||||
const ctxMenu = LiteGraph.ContextMenu;
|
const ctxMenu = LiteGraph.ContextMenu;
|
||||||
@ -178,7 +178,7 @@ const ext$2 = {
|
|||||||
let itemCount = displayedItems.length;
|
let itemCount = displayedItems.length;
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
const currentNode = LGraphCanvas.active_canvas.current_node;
|
const currentNode = LGraphCanvas.active_canvas.current_node;
|
||||||
const clickedComboValue = currentNode.widgets?.filter(
|
const clickedComboValue = currentNode?.widgets?.filter(
|
||||||
(w) => w.type === "combo" && w.options.values?.length === values.length
|
(w) => w.type === "combo" && w.options.values?.length === values.length
|
||||||
).find(
|
).find(
|
||||||
(w) => w.options.values?.every((v, i) => v === values[i])
|
(w) => w.options.values?.every((v, i) => v === values[i])
|
||||||
@ -284,7 +284,7 @@ const ext$2 = {
|
|||||||
LiteGraph.ContextMenu.prototype = ctxMenu.prototype;
|
LiteGraph.ContextMenu.prototype = ctxMenu.prototype;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
app.registerExtension(ext$2);
|
app.registerExtension(ext$1);
|
||||||
function stripComments(str) {
|
function stripComments(str) {
|
||||||
return str.replace(/\/\*[\s\S]*?\*\/|\/\/.*/g, "");
|
return str.replace(/\/\*[\s\S]*?\*\/|\/\/.*/g, "");
|
||||||
}
|
}
|
||||||
@ -966,17 +966,13 @@ class GroupNodeBuilder {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, "storeExternalLinks");
|
}, "storeExternalLinks");
|
||||||
const backup = localStorage.getItem("litegrapheditor_clipboard");
|
|
||||||
try {
|
try {
|
||||||
app.canvas.copyToClipboard(this.nodes);
|
const serialised = serialise(this.nodes, app.canvas.graph);
|
||||||
const config = JSON.parse(
|
const config = JSON.parse(serialised);
|
||||||
localStorage.getItem("litegrapheditor_clipboard")
|
|
||||||
);
|
|
||||||
storeLinkTypes(config);
|
storeLinkTypes(config);
|
||||||
storeExternalLinks(config);
|
storeExternalLinks(config);
|
||||||
return config;
|
return config;
|
||||||
} finally {
|
} finally {
|
||||||
localStorage.setItem("litegrapheditor_clipboard", backup);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1517,7 +1513,6 @@ class GroupNodeHandler {
|
|||||||
};
|
};
|
||||||
this.node.convertToNodes = () => {
|
this.node.convertToNodes = () => {
|
||||||
const addInnerNodes = /* @__PURE__ */ __name(() => {
|
const addInnerNodes = /* @__PURE__ */ __name(() => {
|
||||||
const backup = localStorage.getItem("litegrapheditor_clipboard");
|
|
||||||
const c = { ...this.groupData.nodeData };
|
const c = { ...this.groupData.nodeData };
|
||||||
c.nodes = [...c.nodes];
|
c.nodes = [...c.nodes];
|
||||||
const innerNodes = this.node.getInnerNodes();
|
const innerNodes = this.node.getInnerNodes();
|
||||||
@ -1531,9 +1526,7 @@ class GroupNodeHandler {
|
|||||||
}
|
}
|
||||||
c.nodes[i] = { ...c.nodes[i], id: id2 };
|
c.nodes[i] = { ...c.nodes[i], id: id2 };
|
||||||
}
|
}
|
||||||
localStorage.setItem("litegrapheditor_clipboard", JSON.stringify(c));
|
deserialiseAndCreate(JSON.stringify(c), app.canvas);
|
||||||
app.canvas.pasteFromClipboard();
|
|
||||||
localStorage.setItem("litegrapheditor_clipboard", backup);
|
|
||||||
const [x, y] = this.node.pos;
|
const [x, y] = this.node.pos;
|
||||||
let top;
|
let top;
|
||||||
let left;
|
let left;
|
||||||
@ -1580,10 +1573,8 @@ class GroupNodeHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (const newNode of newNodes2) {
|
for (const newNode of newNodes2) {
|
||||||
newNode.pos = [
|
newNode.pos[0] -= left - x;
|
||||||
newNode.pos[0] - (left - x),
|
newNode.pos[1] -= top - y;
|
||||||
newNode.pos[1] - (top - y)
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
return { newNodes: newNodes2, selectedIds: selectedIds2 };
|
return { newNodes: newNodes2, selectedIds: selectedIds2 };
|
||||||
}, "addInnerNodes");
|
}, "addInnerNodes");
|
||||||
@ -1618,10 +1609,12 @@ class GroupNodeHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, "reconnectOutputs");
|
}, "reconnectOutputs");
|
||||||
|
app.canvas.emitBeforeChange();
|
||||||
const { newNodes, selectedIds } = addInnerNodes();
|
const { newNodes, selectedIds } = addInnerNodes();
|
||||||
reconnectInputs(selectedIds);
|
reconnectInputs(selectedIds);
|
||||||
reconnectOutputs(selectedIds);
|
reconnectOutputs(selectedIds);
|
||||||
app.graph.remove(this.node);
|
app.graph.remove(this.node);
|
||||||
|
app.canvas.emitAfterChange();
|
||||||
return newNodes;
|
return newNodes;
|
||||||
};
|
};
|
||||||
const getExtraMenuOptions = this.node.getExtraMenuOptions;
|
const getExtraMenuOptions = this.node.getExtraMenuOptions;
|
||||||
@ -2030,10 +2023,10 @@ function manageGroupNodes() {
|
|||||||
new ManageGroupDialog(app).show();
|
new ManageGroupDialog(app).show();
|
||||||
}
|
}
|
||||||
__name(manageGroupNodes, "manageGroupNodes");
|
__name(manageGroupNodes, "manageGroupNodes");
|
||||||
const id$3 = "Comfy.GroupNode";
|
const id$2 = "Comfy.GroupNode";
|
||||||
let globalDefs;
|
let globalDefs;
|
||||||
const ext$1 = {
|
const ext = {
|
||||||
name: id$3,
|
name: id$2,
|
||||||
commands: [
|
commands: [
|
||||||
{
|
{
|
||||||
id: "Comfy.GroupNode.ConvertSelectedNodesToGroupNode",
|
id: "Comfy.GroupNode.ConvertSelectedNodesToGroupNode",
|
||||||
@ -2103,56 +2096,18 @@ const ext$1 = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
app.registerExtension(ext$1);
|
app.registerExtension(ext);
|
||||||
window.comfyAPI = window.comfyAPI || {};
|
window.comfyAPI = window.comfyAPI || {};
|
||||||
window.comfyAPI.groupNode = window.comfyAPI.groupNode || {};
|
window.comfyAPI.groupNode = window.comfyAPI.groupNode || {};
|
||||||
window.comfyAPI.groupNode.GroupNodeConfig = GroupNodeConfig;
|
window.comfyAPI.groupNode.GroupNodeConfig = GroupNodeConfig;
|
||||||
window.comfyAPI.groupNode.GroupNodeHandler = GroupNodeHandler;
|
window.comfyAPI.groupNode.GroupNodeHandler = GroupNodeHandler;
|
||||||
function setNodeMode(node, mode) {
|
function setNodeMode(node, mode) {
|
||||||
node.mode = mode;
|
node.mode = mode;
|
||||||
node.graph.change();
|
node.graph?.change();
|
||||||
}
|
}
|
||||||
__name(setNodeMode, "setNodeMode");
|
__name(setNodeMode, "setNodeMode");
|
||||||
function addNodesToGroup(group, nodes = []) {
|
function addNodesToGroup(group, items) {
|
||||||
var x1, y1, x2, y2;
|
group.resizeTo([...group.children, ...items]);
|
||||||
var nx1, ny1, nx2, ny2;
|
|
||||||
var node;
|
|
||||||
x1 = y1 = x2 = y2 = -1;
|
|
||||||
nx1 = ny1 = nx2 = ny2 = -1;
|
|
||||||
for (var n of [group.nodes, nodes]) {
|
|
||||||
for (var i in n) {
|
|
||||||
node = n[i];
|
|
||||||
nx1 = node.pos[0];
|
|
||||||
ny1 = node.pos[1];
|
|
||||||
nx2 = node.pos[0] + node.size[0];
|
|
||||||
ny2 = node.pos[1] + node.size[1];
|
|
||||||
if (node.type != "Reroute") {
|
|
||||||
ny1 -= LiteGraph.NODE_TITLE_HEIGHT;
|
|
||||||
}
|
|
||||||
if (node.flags?.collapsed) {
|
|
||||||
ny2 = ny1 + LiteGraph.NODE_TITLE_HEIGHT;
|
|
||||||
if (node?._collapsed_width) {
|
|
||||||
nx2 = nx1 + Math.round(node._collapsed_width);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (x1 == -1 || nx1 < x1) {
|
|
||||||
x1 = nx1;
|
|
||||||
}
|
|
||||||
if (y1 == -1 || ny1 < y1) {
|
|
||||||
y1 = ny1;
|
|
||||||
}
|
|
||||||
if (x2 == -1 || nx2 > x2) {
|
|
||||||
x2 = nx2;
|
|
||||||
}
|
|
||||||
if (y2 == -1 || ny2 > y2) {
|
|
||||||
y2 = ny2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var padding = 10;
|
|
||||||
y1 = y1 - Math.round(group.font_size * 1.4);
|
|
||||||
group.pos = [x1 - padding, y1 - padding];
|
|
||||||
group.size = [x2 - x1 + padding * 2, y2 - y1 + padding * 2];
|
|
||||||
}
|
}
|
||||||
__name(addNodesToGroup, "addNodesToGroup");
|
__name(addNodesToGroup, "addNodesToGroup");
|
||||||
app.registerExtension({
|
app.registerExtension({
|
||||||
@ -2168,11 +2123,11 @@ app.registerExtension({
|
|||||||
if (!group) {
|
if (!group) {
|
||||||
options.push({
|
options.push({
|
||||||
content: "Add Group For Selected Nodes",
|
content: "Add Group For Selected Nodes",
|
||||||
disabled: !Object.keys(app.canvas.selected_nodes || {}).length,
|
disabled: !this.selectedItems?.size,
|
||||||
callback: /* @__PURE__ */ __name(() => {
|
callback: /* @__PURE__ */ __name(() => {
|
||||||
const group2 = new LGraphGroup();
|
const group2 = new LGraphGroup();
|
||||||
addNodesToGroup(group2, this.selected_nodes);
|
addNodesToGroup(group2, this.selectedItems);
|
||||||
app.canvas.graph.add(group2);
|
this.graph.add(group2);
|
||||||
this.graph.change();
|
this.graph.change();
|
||||||
}, "callback")
|
}, "callback")
|
||||||
});
|
});
|
||||||
@ -2182,9 +2137,9 @@ app.registerExtension({
|
|||||||
const nodesInGroup = group.nodes;
|
const nodesInGroup = group.nodes;
|
||||||
options.push({
|
options.push({
|
||||||
content: "Add Selected Nodes To Group",
|
content: "Add Selected Nodes To Group",
|
||||||
disabled: !Object.keys(app.canvas.selected_nodes || {}).length,
|
disabled: !this.selectedItems?.size,
|
||||||
callback: /* @__PURE__ */ __name(() => {
|
callback: /* @__PURE__ */ __name(() => {
|
||||||
addNodesToGroup(group, this.selected_nodes);
|
addNodesToGroup(group, this.selectedItems);
|
||||||
this.graph.change();
|
this.graph.change();
|
||||||
}, "callback")
|
}, "callback")
|
||||||
});
|
});
|
||||||
@ -2203,7 +2158,8 @@ app.registerExtension({
|
|||||||
options.push({
|
options.push({
|
||||||
content: "Fit Group To Nodes",
|
content: "Fit Group To Nodes",
|
||||||
callback: /* @__PURE__ */ __name(() => {
|
callback: /* @__PURE__ */ __name(() => {
|
||||||
addNodesToGroup(group);
|
group.recomputeInsideNodes();
|
||||||
|
group.resizeTo(group.children);
|
||||||
this.graph.change();
|
this.graph.change();
|
||||||
}, "callback")
|
}, "callback")
|
||||||
});
|
});
|
||||||
@ -2329,9 +2285,9 @@ app.registerExtension({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const id$2 = "Comfy.InvertMenuScrolling";
|
const id$1 = "Comfy.InvertMenuScrolling";
|
||||||
app.registerExtension({
|
app.registerExtension({
|
||||||
name: id$2,
|
name: id$1,
|
||||||
init() {
|
init() {
|
||||||
const ctxMenu = LiteGraph.ContextMenu;
|
const ctxMenu = LiteGraph.ContextMenu;
|
||||||
const replace = /* @__PURE__ */ __name(() => {
|
const replace = /* @__PURE__ */ __name(() => {
|
||||||
@ -2347,7 +2303,7 @@ app.registerExtension({
|
|||||||
LiteGraph.ContextMenu.prototype = ctxMenu.prototype;
|
LiteGraph.ContextMenu.prototype = ctxMenu.prototype;
|
||||||
}, "replace");
|
}, "replace");
|
||||||
app.ui.settings.addSetting({
|
app.ui.settings.addSetting({
|
||||||
id: id$2,
|
id: id$1,
|
||||||
category: ["Comfy", "Graph", "InvertMenuScrolling"],
|
category: ["Comfy", "Graph", "InvertMenuScrolling"],
|
||||||
name: "Invert Context Menu Scrolling",
|
name: "Invert Context Menu Scrolling",
|
||||||
type: "boolean",
|
type: "boolean",
|
||||||
@ -2379,8 +2335,8 @@ app.registerExtension({
|
|||||||
const commandStore = useCommandStore();
|
const commandStore = useCommandStore();
|
||||||
const keybinding = keybindingStore.getKeybinding(keyCombo);
|
const keybinding = keybindingStore.getKeybinding(keyCombo);
|
||||||
if (keybinding && keybinding.targetSelector !== "#graph-canvas") {
|
if (keybinding && keybinding.targetSelector !== "#graph-canvas") {
|
||||||
await commandStore.execute(keybinding.commandId);
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
await commandStore.execute(keybinding.commandId);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (event.ctrlKey || event.altKey || event.metaKey) {
|
if (event.ctrlKey || event.altKey || event.metaKey) {
|
||||||
@ -2403,35 +2359,6 @@ app.registerExtension({
|
|||||||
window.addEventListener("keydown", keybindListener);
|
window.addEventListener("keydown", keybindListener);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const id$1 = "Comfy.LinkRenderMode";
|
|
||||||
const ext = {
|
|
||||||
name: id$1,
|
|
||||||
async setup(app2) {
|
|
||||||
app2.ui.settings.addSetting({
|
|
||||||
id: id$1,
|
|
||||||
category: ["Comfy", "Graph", "LinkRenderMode"],
|
|
||||||
name: "Link Render Mode",
|
|
||||||
defaultValue: 2,
|
|
||||||
type: "combo",
|
|
||||||
options: [
|
|
||||||
{ value: LiteGraph.STRAIGHT_LINK.toString(), text: "Straight" },
|
|
||||||
{ value: LiteGraph.LINEAR_LINK.toString(), text: "Linear" },
|
|
||||||
{ value: LiteGraph.SPLINE_LINK.toString(), text: "Spline" },
|
|
||||||
{ value: LiteGraph.HIDDEN_LINK.toString(), text: "Hidden" }
|
|
||||||
],
|
|
||||||
onChange(value) {
|
|
||||||
app2.canvas.links_render_mode = +value;
|
|
||||||
app2.canvas.setDirty(
|
|
||||||
/* fg */
|
|
||||||
false,
|
|
||||||
/* bg */
|
|
||||||
true
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
app.registerExtension(ext);
|
|
||||||
function dataURLToBlob(dataURL) {
|
function dataURLToBlob(dataURL) {
|
||||||
const parts = dataURL.split(";base64,");
|
const parts = dataURL.split(";base64,");
|
||||||
const contentType = parts[0].split(":")[1];
|
const contentType = parts[0].split(":")[1];
|
||||||
@ -3714,8 +3641,12 @@ app.registerExtension({
|
|||||||
clipboardAction(async () => {
|
clipboardAction(async () => {
|
||||||
const data = JSON.parse(t.data);
|
const data = JSON.parse(t.data);
|
||||||
await GroupNodeConfig.registerFromWorkflow(data.groupNodes, {});
|
await GroupNodeConfig.registerFromWorkflow(data.groupNodes, {});
|
||||||
localStorage.setItem("litegrapheditor_clipboard", t.data);
|
if (!data.reroutes) {
|
||||||
app.canvas.pasteFromClipboard();
|
deserialiseAndCreate(t.data, app.canvas);
|
||||||
|
} else {
|
||||||
|
localStorage.setItem("litegrapheditor_clipboard", t.data);
|
||||||
|
app.canvas.pasteFromClipboard();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}, "callback")
|
}, "callback")
|
||||||
};
|
};
|
||||||
@ -4049,9 +3980,10 @@ let touchCount = 0;
|
|||||||
app.registerExtension({
|
app.registerExtension({
|
||||||
name: "Comfy.SimpleTouchSupport",
|
name: "Comfy.SimpleTouchSupport",
|
||||||
setup() {
|
setup() {
|
||||||
let zoomPos;
|
let touchDist;
|
||||||
let touchTime;
|
let touchTime;
|
||||||
let lastTouch;
|
let lastTouch;
|
||||||
|
let lastScale;
|
||||||
function getMultiTouchPos(e) {
|
function getMultiTouchPos(e) {
|
||||||
return Math.hypot(
|
return Math.hypot(
|
||||||
e.touches[0].clientX - e.touches[1].clientX,
|
e.touches[0].clientX - e.touches[1].clientX,
|
||||||
@ -4059,63 +3991,90 @@ app.registerExtension({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
__name(getMultiTouchPos, "getMultiTouchPos");
|
__name(getMultiTouchPos, "getMultiTouchPos");
|
||||||
app.canvasEl.addEventListener(
|
function getMultiTouchCenter(e) {
|
||||||
|
return {
|
||||||
|
clientX: (e.touches[0].clientX + e.touches[1].clientX) / 2,
|
||||||
|
clientY: (e.touches[0].clientY + e.touches[1].clientY) / 2
|
||||||
|
};
|
||||||
|
}
|
||||||
|
__name(getMultiTouchCenter, "getMultiTouchCenter");
|
||||||
|
app.canvasEl.parentElement.addEventListener(
|
||||||
"touchstart",
|
"touchstart",
|
||||||
(e) => {
|
(e) => {
|
||||||
touchCount++;
|
touchCount++;
|
||||||
lastTouch = null;
|
lastTouch = null;
|
||||||
|
lastScale = null;
|
||||||
if (e.touches?.length === 1) {
|
if (e.touches?.length === 1) {
|
||||||
touchTime = /* @__PURE__ */ new Date();
|
touchTime = /* @__PURE__ */ new Date();
|
||||||
lastTouch = e.touches[0];
|
lastTouch = e.touches[0];
|
||||||
} else {
|
} else {
|
||||||
touchTime = null;
|
touchTime = null;
|
||||||
if (e.touches?.length === 2) {
|
if (e.touches?.length === 2) {
|
||||||
zoomPos = getMultiTouchPos(e);
|
lastScale = app.canvas.ds.scale;
|
||||||
|
lastTouch = getMultiTouchCenter(e);
|
||||||
|
touchDist = getMultiTouchPos(e);
|
||||||
app.canvas.pointer_is_down = false;
|
app.canvas.pointer_is_down = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
app.canvasEl.addEventListener("touchend", (e) => {
|
app.canvasEl.parentElement.addEventListener("touchend", (e) => {
|
||||||
touchZooming = false;
|
touchCount--;
|
||||||
touchCount = e.touches?.length ?? touchCount - 1;
|
if (e.touches?.length !== 1) touchZooming = false;
|
||||||
if (touchTime && !e.touches?.length) {
|
if (touchTime && !e.touches?.length) {
|
||||||
if ((/* @__PURE__ */ new Date()).getTime() - touchTime > 600) {
|
if ((/* @__PURE__ */ new Date()).getTime() - touchTime > 600) {
|
||||||
try {
|
if (e.target === app.canvasEl) {
|
||||||
e.constructor = CustomEvent;
|
app.canvasEl.dispatchEvent(
|
||||||
} catch (error) {
|
new PointerEvent("pointerdown", {
|
||||||
|
button: 2,
|
||||||
|
clientX: e.changedTouches[0].clientX,
|
||||||
|
clientY: e.changedTouches[0].clientY
|
||||||
|
})
|
||||||
|
);
|
||||||
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
e.clientX = lastTouch.clientX;
|
|
||||||
e.clientY = lastTouch.clientY;
|
|
||||||
app.canvas.pointer_is_down = true;
|
|
||||||
app.canvas._mousedown_callback(e);
|
|
||||||
}
|
}
|
||||||
touchTime = null;
|
touchTime = null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
app.canvasEl.addEventListener(
|
app.canvasEl.parentElement.addEventListener(
|
||||||
"touchmove",
|
"touchmove",
|
||||||
(e) => {
|
(e) => {
|
||||||
touchTime = null;
|
touchTime = null;
|
||||||
if (e.touches?.length === 2) {
|
if (e.touches?.length === 2 && lastTouch && !e.ctrlKey && !e.shiftKey) {
|
||||||
|
e.preventDefault();
|
||||||
app.canvas.pointer_is_down = false;
|
app.canvas.pointer_is_down = false;
|
||||||
touchZooming = true;
|
touchZooming = true;
|
||||||
LiteGraph.closeAllContextMenus();
|
LiteGraph.closeAllContextMenus(window);
|
||||||
app.canvas.search_box?.close();
|
app.canvas.search_box?.close();
|
||||||
const newZoomPos = getMultiTouchPos(e);
|
const newTouchDist = getMultiTouchPos(e);
|
||||||
const midX = (e.touches[0].clientX + e.touches[1].clientX) / 2;
|
const center = getMultiTouchCenter(e);
|
||||||
const midY = (e.touches[0].clientY + e.touches[1].clientY) / 2;
|
let scale = lastScale * newTouchDist / touchDist;
|
||||||
let scale = app.canvas.ds.scale;
|
const newX = (center.clientX - lastTouch.clientX) / scale;
|
||||||
const diff = zoomPos - newZoomPos;
|
const newY = (center.clientY - lastTouch.clientY) / scale;
|
||||||
if (diff > 0.5) {
|
if (scale < app.canvas.ds.min_scale) {
|
||||||
scale *= 1 / 1.07;
|
scale = app.canvas.ds.min_scale;
|
||||||
} else if (diff < -0.5) {
|
} else if (scale > app.canvas.ds.max_scale) {
|
||||||
scale *= 1.07;
|
scale = app.canvas.ds.max_scale;
|
||||||
}
|
}
|
||||||
app.canvas.ds.changeScale(scale, [midX, midY]);
|
const oldScale = app.canvas.ds.scale;
|
||||||
|
app.canvas.ds.scale = scale;
|
||||||
|
if (Math.abs(app.canvas.ds.scale - 1) < 0.01) {
|
||||||
|
app.canvas.ds.scale = 1;
|
||||||
|
}
|
||||||
|
const newScale = app.canvas.ds.scale;
|
||||||
|
const convertScaleToOffset = /* @__PURE__ */ __name((scale2) => [
|
||||||
|
center.clientX / scale2 - app.canvas.ds.offset[0],
|
||||||
|
center.clientY / scale2 - app.canvas.ds.offset[1]
|
||||||
|
], "convertScaleToOffset");
|
||||||
|
var oldCenter = convertScaleToOffset(oldScale);
|
||||||
|
var newCenter = convertScaleToOffset(newScale);
|
||||||
|
app.canvas.ds.offset[0] += newX + newCenter[0] - oldCenter[0];
|
||||||
|
app.canvas.ds.offset[1] += newY + newCenter[1] - oldCenter[1];
|
||||||
|
lastTouch.clientX = center.clientX;
|
||||||
|
lastTouch.clientY = center.clientY;
|
||||||
app.canvas.setDirty(true, true);
|
app.canvas.setDirty(true, true);
|
||||||
zoomPos = newZoomPos;
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
true
|
true
|
||||||
@ -4127,6 +4086,7 @@ LGraphCanvas.prototype.processMouseDown = function(e) {
|
|||||||
if (touchZooming || touchCount) {
|
if (touchZooming || touchCount) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
app.canvas.pointer_is_down = false;
|
||||||
return processMouseDown.apply(this, arguments);
|
return processMouseDown.apply(this, arguments);
|
||||||
};
|
};
|
||||||
const processMouseMove = LGraphCanvas.prototype.processMouseMove;
|
const processMouseMove = LGraphCanvas.prototype.processMouseMove;
|
||||||
@ -4539,7 +4499,9 @@ app.registerExtension({
|
|||||||
/* name=*/
|
/* name=*/
|
||||||
"audioUI",
|
"audioUI",
|
||||||
audio,
|
audio,
|
||||||
{ serialize: false }
|
{
|
||||||
|
serialize: false
|
||||||
|
}
|
||||||
);
|
);
|
||||||
const isOutputNode = node.constructor.nodeData.output_node;
|
const isOutputNode = node.constructor.nodeData.output_node;
|
||||||
if (isOutputNode) {
|
if (isOutputNode) {
|
||||||
@ -4633,4 +4595,4 @@ app.registerExtension({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
//# sourceMappingURL=index-BReiUkk9.js.map
|
//# sourceMappingURL=index-B1vRdV2i.js.map
|
1
web/assets/index-B1vRdV2i.js.map
generated
vendored
Normal file
1
web/assets/index-B1vRdV2i.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
62
web/assets/index-B4gmhi99.js
generated
vendored
Normal file
62
web/assets/index-B4gmhi99.js
generated
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
const o = {
|
||||||
|
LOADING_PROGRESS: "loading-progress",
|
||||||
|
IS_PACKAGED: "is-packaged",
|
||||||
|
RENDERER_READY: "renderer-ready",
|
||||||
|
RESTART_APP: "restart-app",
|
||||||
|
REINSTALL: "reinstall",
|
||||||
|
LOG_MESSAGE: "log-message",
|
||||||
|
OPEN_DIALOG: "open-dialog",
|
||||||
|
DOWNLOAD_PROGRESS: "download-progress",
|
||||||
|
START_DOWNLOAD: "start-download",
|
||||||
|
PAUSE_DOWNLOAD: "pause-download",
|
||||||
|
RESUME_DOWNLOAD: "resume-download",
|
||||||
|
CANCEL_DOWNLOAD: "cancel-download",
|
||||||
|
DELETE_MODEL: "delete-model",
|
||||||
|
GET_ALL_DOWNLOADS: "get-all-downloads",
|
||||||
|
GET_ELECTRON_VERSION: "get-electron-version",
|
||||||
|
SEND_ERROR_TO_SENTRY: "send-error-to-sentry",
|
||||||
|
GET_BASE_PATH: "get-base-path",
|
||||||
|
GET_MODEL_CONFIG_PATH: "get-model-config-path",
|
||||||
|
OPEN_PATH: "open-path",
|
||||||
|
OPEN_LOGS_PATH: "open-logs-path",
|
||||||
|
OPEN_DEV_TOOLS: "open-dev-tools",
|
||||||
|
IS_FIRST_TIME_SETUP: "is-first-time-setup",
|
||||||
|
GET_SYSTEM_PATHS: "get-system-paths",
|
||||||
|
VALIDATE_INSTALL_PATH: "validate-install-path",
|
||||||
|
VALIDATE_COMFYUI_SOURCE: "validate-comfyui-source",
|
||||||
|
SHOW_DIRECTORY_PICKER: "show-directory-picker",
|
||||||
|
INSTALL_COMFYUI: "install-comfyui"
|
||||||
|
};
|
||||||
|
var t = /* @__PURE__ */ ((e) => (e.INITIAL_STATE = "initial-state", e.PYTHON_SETUP = "python-setup", e.STARTING_SERVER = "starting-server", e.READY = "ready", e.ERROR = "error", e.ERROR_INSTALL_PATH = "error-install-path", e))(t || {});
|
||||||
|
const s = {
|
||||||
|
"initial-state": "Loading...",
|
||||||
|
"python-setup": "Setting up Python Environment...",
|
||||||
|
"starting-server": "Starting ComfyUI server...",
|
||||||
|
ready: "Finishing...",
|
||||||
|
error: "Was not able to start ComfyUI. Please check the logs for more details. You can open it from the Help menu. Please report issues to: https://forum.comfy.org",
|
||||||
|
"error-install-path": "Installation path does not exist. Please reset the installation location."
|
||||||
|
}, a = "electronAPI", n = "https://942cadba58d247c9cab96f45221aa813@o4507954455314432.ingest.us.sentry.io/4508007940685824", r = [
|
||||||
|
{
|
||||||
|
id: "user_files",
|
||||||
|
label: "User Files",
|
||||||
|
description: "Settings and user-created workflows"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "models",
|
||||||
|
label: "Models",
|
||||||
|
description: "Reference model files from existing ComfyUI installations. (No copy)"
|
||||||
|
}
|
||||||
|
// TODO: Decide whether we want to auto-migrate custom nodes, and install their dependencies.
|
||||||
|
// huchenlei: This is a very essential thing for migration experience.
|
||||||
|
// {
|
||||||
|
// id: 'custom_nodes',
|
||||||
|
// label: 'Custom Nodes',
|
||||||
|
// description: 'Reference custom node files from existing ComfyUI installations. (No copy)',
|
||||||
|
// },
|
||||||
|
];
|
||||||
|
export {
|
||||||
|
r,
|
||||||
|
s,
|
||||||
|
t
|
||||||
|
};
|
||||||
|
//# sourceMappingURL=index-B4gmhi99.js.map
|
1
web/assets/index-B4gmhi99.js.map
generated
vendored
Normal file
1
web/assets/index-B4gmhi99.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"index-B4gmhi99.js","sources":["../../node_modules/@comfyorg/comfyui-electron-types/index.mjs"],"sourcesContent":["const o = {\n LOADING_PROGRESS: \"loading-progress\",\n IS_PACKAGED: \"is-packaged\",\n RENDERER_READY: \"renderer-ready\",\n RESTART_APP: \"restart-app\",\n REINSTALL: \"reinstall\",\n LOG_MESSAGE: \"log-message\",\n OPEN_DIALOG: \"open-dialog\",\n DOWNLOAD_PROGRESS: \"download-progress\",\n START_DOWNLOAD: \"start-download\",\n PAUSE_DOWNLOAD: \"pause-download\",\n RESUME_DOWNLOAD: \"resume-download\",\n CANCEL_DOWNLOAD: \"cancel-download\",\n DELETE_MODEL: \"delete-model\",\n GET_ALL_DOWNLOADS: \"get-all-downloads\",\n GET_ELECTRON_VERSION: \"get-electron-version\",\n SEND_ERROR_TO_SENTRY: \"send-error-to-sentry\",\n GET_BASE_PATH: \"get-base-path\",\n GET_MODEL_CONFIG_PATH: \"get-model-config-path\",\n OPEN_PATH: \"open-path\",\n OPEN_LOGS_PATH: \"open-logs-path\",\n OPEN_DEV_TOOLS: \"open-dev-tools\",\n IS_FIRST_TIME_SETUP: \"is-first-time-setup\",\n GET_SYSTEM_PATHS: \"get-system-paths\",\n VALIDATE_INSTALL_PATH: \"validate-install-path\",\n VALIDATE_COMFYUI_SOURCE: \"validate-comfyui-source\",\n SHOW_DIRECTORY_PICKER: \"show-directory-picker\",\n INSTALL_COMFYUI: \"install-comfyui\"\n};\nvar t = /* @__PURE__ */ ((e) => (e.INITIAL_STATE = \"initial-state\", e.PYTHON_SETUP = \"python-setup\", e.STARTING_SERVER = \"starting-server\", e.READY = \"ready\", e.ERROR = \"error\", e.ERROR_INSTALL_PATH = \"error-install-path\", e))(t || {});\nconst s = {\n \"initial-state\": \"Loading...\",\n \"python-setup\": \"Setting up Python Environment...\",\n \"starting-server\": \"Starting ComfyUI server...\",\n ready: \"Finishing...\",\n error: \"Was not able to start ComfyUI. Please check the logs for more details. You can open it from the Help menu. Please report issues to: https://forum.comfy.org\",\n \"error-install-path\": \"Installation path does not exist. Please reset the installation location.\"\n}, a = \"electronAPI\", n = \"https://942cadba58d247c9cab96f45221aa813@o4507954455314432.ingest.us.sentry.io/4508007940685824\", r = [\n {\n id: \"user_files\",\n label: \"User Files\",\n description: \"Settings and user-created workflows\"\n },\n {\n id: \"models\",\n label: \"Models\",\n description: \"Reference model files from existing ComfyUI installations. (No copy)\"\n }\n // TODO: Decide whether we want to auto-migrate custom nodes, and install their dependencies.\n // huchenlei: This is a very essential thing for migration experience.\n // {\n // id: 'custom_nodes',\n // label: 'Custom Nodes',\n // description: 'Reference custom node files from existing ComfyUI installations. (No copy)',\n // },\n];\nexport {\n a as ELECTRON_BRIDGE_API,\n o as IPC_CHANNELS,\n r as MigrationItems,\n s as ProgressMessages,\n t as ProgressStatus,\n n as SENTRY_URL_ENDPOINT\n};\n"],"names":[],"mappings":"AAAA,MAAM,IAAI;AAAA,EACR,kBAAkB;AAAA,EAClB,aAAa;AAAA,EACb,gBAAgB;AAAA,EAChB,aAAa;AAAA,EACb,WAAW;AAAA,EACX,aAAa;AAAA,EACb,aAAa;AAAA,EACb,mBAAmB;AAAA,EACnB,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,iBAAiB;AAAA,EACjB,iBAAiB;AAAA,EACjB,cAAc;AAAA,EACd,mBAAmB;AAAA,EACnB,sBAAsB;AAAA,EACtB,sBAAsB;AAAA,EACtB,eAAe;AAAA,EACf,uBAAuB;AAAA,EACvB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,qBAAqB;AAAA,EACrB,kBAAkB;AAAA,EAClB,uBAAuB;AAAA,EACvB,yBAAyB;AAAA,EACzB,uBAAuB;AAAA,EACvB,iBAAiB;AACnB;AACG,IAAC,IAAqB,kBAAC,OAAO,EAAE,gBAAgB,iBAAiB,EAAE,eAAe,gBAAgB,EAAE,kBAAkB,mBAAmB,EAAE,QAAQ,SAAS,EAAE,QAAQ,SAAS,EAAE,qBAAqB,sBAAsB,IAAI,KAAK,CAAA,CAAE;AACrO,MAAC,IAAI;AAAA,EACR,iBAAiB;AAAA,EACjB,gBAAgB;AAAA,EAChB,mBAAmB;AAAA,EACnB,OAAO;AAAA,EACP,OAAO;AAAA,EACP,sBAAsB;AACxB,GAAG,IAAI,eAAe,IAAI,mGAAmG,IAAI;AAAA,EAC/H;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,EACd;AAAA,EACD;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,EACd;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQH;","x_google_ignoreList":[0]}
|
72808
web/assets/index-BHayQCxv.js → web/assets/index-B6dYHNhg.js
generated
vendored
72808
web/assets/index-BHayQCxv.js → web/assets/index-B6dYHNhg.js
generated
vendored
File diff suppressed because one or more lines are too long
1
web/assets/index-B6dYHNhg.js.map
generated
vendored
Normal file
1
web/assets/index-B6dYHNhg.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
685
web/assets/index-BitceZ14.css → web/assets/index-BCoLUtIt.css
generated
vendored
685
web/assets/index-BitceZ14.css → web/assets/index-BCoLUtIt.css
generated
vendored
File diff suppressed because it is too large
Load Diff
1
web/assets/index-BHayQCxv.js.map
generated
vendored
1
web/assets/index-BHayQCxv.js.map
generated
vendored
File diff suppressed because one or more lines are too long
1
web/assets/index-BReiUkk9.js.map
generated
vendored
1
web/assets/index-BReiUkk9.js.map
generated
vendored
File diff suppressed because one or more lines are too long
102
web/assets/index-C_wOqB0f.js
generated
vendored
102
web/assets/index-C_wOqB0f.js
generated
vendored
@ -1,102 +0,0 @@
|
|||||||
var __defProp = Object.defineProperty;
|
|
||||||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
||||||
import { bS as script$4, A as createBaseVNode, g as openBlock, h as createElementBlock, m as mergeProps } from "./index-BHayQCxv.js";
|
|
||||||
var script$3 = {
|
|
||||||
name: "BarsIcon",
|
|
||||||
"extends": script$4
|
|
||||||
};
|
|
||||||
var _hoisted_1$3 = /* @__PURE__ */ createBaseVNode("path", {
|
|
||||||
"fill-rule": "evenodd",
|
|
||||||
"clip-rule": "evenodd",
|
|
||||||
d: "M13.3226 3.6129H0.677419C0.497757 3.6129 0.325452 3.54152 0.198411 3.41448C0.0713707 3.28744 0 3.11514 0 2.93548C0 2.75581 0.0713707 2.58351 0.198411 2.45647C0.325452 2.32943 0.497757 2.25806 0.677419 2.25806H13.3226C13.5022 2.25806 13.6745 2.32943 13.8016 2.45647C13.9286 2.58351 14 2.75581 14 2.93548C14 3.11514 13.9286 3.28744 13.8016 3.41448C13.6745 3.54152 13.5022 3.6129 13.3226 3.6129ZM13.3226 7.67741H0.677419C0.497757 7.67741 0.325452 7.60604 0.198411 7.479C0.0713707 7.35196 0 7.17965 0 6.99999C0 6.82033 0.0713707 6.64802 0.198411 6.52098C0.325452 6.39394 0.497757 6.32257 0.677419 6.32257H13.3226C13.5022 6.32257 13.6745 6.39394 13.8016 6.52098C13.9286 6.64802 14 6.82033 14 6.99999C14 7.17965 13.9286 7.35196 13.8016 7.479C13.6745 7.60604 13.5022 7.67741 13.3226 7.67741ZM0.677419 11.7419H13.3226C13.5022 11.7419 13.6745 11.6706 13.8016 11.5435C13.9286 11.4165 14 11.2442 14 11.0645C14 10.8848 13.9286 10.7125 13.8016 10.5855C13.6745 10.4585 13.5022 10.3871 13.3226 10.3871H0.677419C0.497757 10.3871 0.325452 10.4585 0.198411 10.5855C0.0713707 10.7125 0 10.8848 0 11.0645C0 11.2442 0.0713707 11.4165 0.198411 11.5435C0.325452 11.6706 0.497757 11.7419 0.677419 11.7419Z",
|
|
||||||
fill: "currentColor"
|
|
||||||
}, null, -1);
|
|
||||||
var _hoisted_2$3 = [_hoisted_1$3];
|
|
||||||
function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
||||||
return openBlock(), createElementBlock("svg", mergeProps({
|
|
||||||
width: "14",
|
|
||||||
height: "14",
|
|
||||||
viewBox: "0 0 14 14",
|
|
||||||
fill: "none",
|
|
||||||
xmlns: "http://www.w3.org/2000/svg"
|
|
||||||
}, _ctx.pti()), _hoisted_2$3, 16);
|
|
||||||
}
|
|
||||||
__name(render$3, "render$3");
|
|
||||||
script$3.render = render$3;
|
|
||||||
var script$2 = {
|
|
||||||
name: "PlusIcon",
|
|
||||||
"extends": script$4
|
|
||||||
};
|
|
||||||
var _hoisted_1$2 = /* @__PURE__ */ createBaseVNode("path", {
|
|
||||||
d: "M7.67742 6.32258V0.677419C7.67742 0.497757 7.60605 0.325452 7.47901 0.198411C7.35197 0.0713707 7.17966 0 7 0C6.82034 0 6.64803 0.0713707 6.52099 0.198411C6.39395 0.325452 6.32258 0.497757 6.32258 0.677419V6.32258H0.677419C0.497757 6.32258 0.325452 6.39395 0.198411 6.52099C0.0713707 6.64803 0 6.82034 0 7C0 7.17966 0.0713707 7.35197 0.198411 7.47901C0.325452 7.60605 0.497757 7.67742 0.677419 7.67742H6.32258V13.3226C6.32492 13.5015 6.39704 13.6725 6.52358 13.799C6.65012 13.9255 6.82106 13.9977 7 14C7.17966 14 7.35197 13.9286 7.47901 13.8016C7.60605 13.6745 7.67742 13.5022 7.67742 13.3226V7.67742H13.3226C13.5022 7.67742 13.6745 7.60605 13.8016 7.47901C13.9286 7.35197 14 7.17966 14 7C13.9977 6.82106 13.9255 6.65012 13.799 6.52358C13.6725 6.39704 13.5015 6.32492 13.3226 6.32258H7.67742Z",
|
|
||||||
fill: "currentColor"
|
|
||||||
}, null, -1);
|
|
||||||
var _hoisted_2$2 = [_hoisted_1$2];
|
|
||||||
function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
||||||
return openBlock(), createElementBlock("svg", mergeProps({
|
|
||||||
width: "14",
|
|
||||||
height: "14",
|
|
||||||
viewBox: "0 0 14 14",
|
|
||||||
fill: "none",
|
|
||||||
xmlns: "http://www.w3.org/2000/svg"
|
|
||||||
}, _ctx.pti()), _hoisted_2$2, 16);
|
|
||||||
}
|
|
||||||
__name(render$2, "render$2");
|
|
||||||
script$2.render = render$2;
|
|
||||||
var script$1 = {
|
|
||||||
name: "ExclamationTriangleIcon",
|
|
||||||
"extends": script$4
|
|
||||||
};
|
|
||||||
var _hoisted_1$1 = /* @__PURE__ */ createBaseVNode("path", {
|
|
||||||
d: "M13.4018 13.1893H0.598161C0.49329 13.189 0.390283 13.1615 0.299143 13.1097C0.208003 13.0578 0.131826 12.9832 0.0780112 12.8932C0.0268539 12.8015 0 12.6982 0 12.5931C0 12.4881 0.0268539 12.3848 0.0780112 12.293L6.47985 1.08982C6.53679 1.00399 6.61408 0.933574 6.70484 0.884867C6.7956 0.836159 6.897 0.810669 7 0.810669C7.103 0.810669 7.2044 0.836159 7.29516 0.884867C7.38592 0.933574 7.46321 1.00399 7.52015 1.08982L13.922 12.293C13.9731 12.3848 14 12.4881 14 12.5931C14 12.6982 13.9731 12.8015 13.922 12.8932C13.8682 12.9832 13.792 13.0578 13.7009 13.1097C13.6097 13.1615 13.5067 13.189 13.4018 13.1893ZM1.63046 11.989H12.3695L7 2.59425L1.63046 11.989Z",
|
|
||||||
fill: "currentColor"
|
|
||||||
}, null, -1);
|
|
||||||
var _hoisted_2$1 = /* @__PURE__ */ createBaseVNode("path", {
|
|
||||||
d: "M6.99996 8.78801C6.84143 8.78594 6.68997 8.72204 6.57787 8.60993C6.46576 8.49782 6.40186 8.34637 6.39979 8.18784V5.38703C6.39979 5.22786 6.46302 5.0752 6.57557 4.96265C6.68813 4.85009 6.84078 4.78686 6.99996 4.78686C7.15914 4.78686 7.31179 4.85009 7.42435 4.96265C7.5369 5.0752 7.60013 5.22786 7.60013 5.38703V8.18784C7.59806 8.34637 7.53416 8.49782 7.42205 8.60993C7.30995 8.72204 7.15849 8.78594 6.99996 8.78801Z",
|
|
||||||
fill: "currentColor"
|
|
||||||
}, null, -1);
|
|
||||||
var _hoisted_3 = /* @__PURE__ */ createBaseVNode("path", {
|
|
||||||
d: "M6.99996 11.1887C6.84143 11.1866 6.68997 11.1227 6.57787 11.0106C6.46576 10.8985 6.40186 10.7471 6.39979 10.5885V10.1884C6.39979 10.0292 6.46302 9.87658 6.57557 9.76403C6.68813 9.65147 6.84078 9.58824 6.99996 9.58824C7.15914 9.58824 7.31179 9.65147 7.42435 9.76403C7.5369 9.87658 7.60013 10.0292 7.60013 10.1884V10.5885C7.59806 10.7471 7.53416 10.8985 7.42205 11.0106C7.30995 11.1227 7.15849 11.1866 6.99996 11.1887Z",
|
|
||||||
fill: "currentColor"
|
|
||||||
}, null, -1);
|
|
||||||
var _hoisted_4 = [_hoisted_1$1, _hoisted_2$1, _hoisted_3];
|
|
||||||
function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
||||||
return openBlock(), createElementBlock("svg", mergeProps({
|
|
||||||
width: "14",
|
|
||||||
height: "14",
|
|
||||||
viewBox: "0 0 14 14",
|
|
||||||
fill: "none",
|
|
||||||
xmlns: "http://www.w3.org/2000/svg"
|
|
||||||
}, _ctx.pti()), _hoisted_4, 16);
|
|
||||||
}
|
|
||||||
__name(render$1, "render$1");
|
|
||||||
script$1.render = render$1;
|
|
||||||
var script = {
|
|
||||||
name: "InfoCircleIcon",
|
|
||||||
"extends": script$4
|
|
||||||
};
|
|
||||||
var _hoisted_1 = /* @__PURE__ */ createBaseVNode("path", {
|
|
||||||
"fill-rule": "evenodd",
|
|
||||||
"clip-rule": "evenodd",
|
|
||||||
d: "M3.11101 12.8203C4.26215 13.5895 5.61553 14 7 14C8.85652 14 10.637 13.2625 11.9497 11.9497C13.2625 10.637 14 8.85652 14 7C14 5.61553 13.5895 4.26215 12.8203 3.11101C12.0511 1.95987 10.9579 1.06266 9.67879 0.532846C8.3997 0.00303296 6.99224 -0.13559 5.63437 0.134506C4.2765 0.404603 3.02922 1.07129 2.05026 2.05026C1.07129 3.02922 0.404603 4.2765 0.134506 5.63437C-0.13559 6.99224 0.00303296 8.3997 0.532846 9.67879C1.06266 10.9579 1.95987 12.0511 3.11101 12.8203ZM3.75918 2.14976C4.71846 1.50879 5.84628 1.16667 7 1.16667C8.5471 1.16667 10.0308 1.78125 11.1248 2.87521C12.2188 3.96918 12.8333 5.45291 12.8333 7C12.8333 8.15373 12.4912 9.28154 11.8502 10.2408C11.2093 11.2001 10.2982 11.9478 9.23232 12.3893C8.16642 12.8308 6.99353 12.9463 5.86198 12.7212C4.73042 12.4962 3.69102 11.9406 2.87521 11.1248C2.05941 10.309 1.50384 9.26958 1.27876 8.13803C1.05367 7.00647 1.16919 5.83358 1.61071 4.76768C2.05222 3.70178 2.79989 2.79074 3.75918 2.14976ZM7.00002 4.8611C6.84594 4.85908 6.69873 4.79698 6.58977 4.68801C6.48081 4.57905 6.4187 4.43185 6.41669 4.27776V3.88888C6.41669 3.73417 6.47815 3.58579 6.58754 3.4764C6.69694 3.367 6.84531 3.30554 7.00002 3.30554C7.15473 3.30554 7.3031 3.367 7.4125 3.4764C7.52189 3.58579 7.58335 3.73417 7.58335 3.88888V4.27776C7.58134 4.43185 7.51923 4.57905 7.41027 4.68801C7.30131 4.79698 7.1541 4.85908 7.00002 4.8611ZM7.00002 10.6945C6.84594 10.6925 6.69873 10.6304 6.58977 10.5214C6.48081 10.4124 6.4187 10.2652 6.41669 10.1111V6.22225C6.41669 6.06754 6.47815 5.91917 6.58754 5.80977C6.69694 5.70037 6.84531 5.63892 7.00002 5.63892C7.15473 5.63892 7.3031 5.70037 7.4125 5.80977C7.52189 5.91917 7.58335 6.06754 7.58335 6.22225V10.1111C7.58134 10.2652 7.51923 10.4124 7.41027 10.5214C7.30131 10.6304 7.1541 10.6925 7.00002 10.6945Z",
|
|
||||||
fill: "currentColor"
|
|
||||||
}, null, -1);
|
|
||||||
var _hoisted_2 = [_hoisted_1];
|
|
||||||
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
||||||
return openBlock(), createElementBlock("svg", mergeProps({
|
|
||||||
width: "14",
|
|
||||||
height: "14",
|
|
||||||
viewBox: "0 0 14 14",
|
|
||||||
fill: "none",
|
|
||||||
xmlns: "http://www.w3.org/2000/svg"
|
|
||||||
}, _ctx.pti()), _hoisted_2, 16);
|
|
||||||
}
|
|
||||||
__name(render, "render");
|
|
||||||
script.render = render;
|
|
||||||
export {
|
|
||||||
script$1 as a,
|
|
||||||
script$3 as b,
|
|
||||||
script$2 as c,
|
|
||||||
script as s
|
|
||||||
};
|
|
||||||
//# sourceMappingURL=index-C_wOqB0f.js.map
|
|
1
web/assets/index-C_wOqB0f.js.map
generated
vendored
1
web/assets/index-C_wOqB0f.js.map
generated
vendored
File diff suppressed because one or more lines are too long
644
web/assets/index-CwRXxFdA.js → web/assets/index-CjwCGacA.js
generated
vendored
644
web/assets/index-CwRXxFdA.js → web/assets/index-CjwCGacA.js
generated
vendored
File diff suppressed because one or more lines are too long
1
web/assets/index-CjwCGacA.js.map
generated
vendored
Normal file
1
web/assets/index-CjwCGacA.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
web/assets/index-CwRXxFdA.js.map
generated
vendored
1
web/assets/index-CwRXxFdA.js.map
generated
vendored
File diff suppressed because one or more lines are too long
50
web/assets/index-MX9DEi8Q.js
generated
vendored
Normal file
50
web/assets/index-MX9DEi8Q.js
generated
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
var __defProp = Object.defineProperty;
|
||||||
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||||
|
import { c7 as script$2, A as createBaseVNode, g as openBlock, h as createElementBlock, m as mergeProps } from "./index-B6dYHNhg.js";
|
||||||
|
var script$1 = {
|
||||||
|
name: "BarsIcon",
|
||||||
|
"extends": script$2
|
||||||
|
};
|
||||||
|
var _hoisted_1$1 = /* @__PURE__ */ createBaseVNode("path", {
|
||||||
|
"fill-rule": "evenodd",
|
||||||
|
"clip-rule": "evenodd",
|
||||||
|
d: "M13.3226 3.6129H0.677419C0.497757 3.6129 0.325452 3.54152 0.198411 3.41448C0.0713707 3.28744 0 3.11514 0 2.93548C0 2.75581 0.0713707 2.58351 0.198411 2.45647C0.325452 2.32943 0.497757 2.25806 0.677419 2.25806H13.3226C13.5022 2.25806 13.6745 2.32943 13.8016 2.45647C13.9286 2.58351 14 2.75581 14 2.93548C14 3.11514 13.9286 3.28744 13.8016 3.41448C13.6745 3.54152 13.5022 3.6129 13.3226 3.6129ZM13.3226 7.67741H0.677419C0.497757 7.67741 0.325452 7.60604 0.198411 7.479C0.0713707 7.35196 0 7.17965 0 6.99999C0 6.82033 0.0713707 6.64802 0.198411 6.52098C0.325452 6.39394 0.497757 6.32257 0.677419 6.32257H13.3226C13.5022 6.32257 13.6745 6.39394 13.8016 6.52098C13.9286 6.64802 14 6.82033 14 6.99999C14 7.17965 13.9286 7.35196 13.8016 7.479C13.6745 7.60604 13.5022 7.67741 13.3226 7.67741ZM0.677419 11.7419H13.3226C13.5022 11.7419 13.6745 11.6706 13.8016 11.5435C13.9286 11.4165 14 11.2442 14 11.0645C14 10.8848 13.9286 10.7125 13.8016 10.5855C13.6745 10.4585 13.5022 10.3871 13.3226 10.3871H0.677419C0.497757 10.3871 0.325452 10.4585 0.198411 10.5855C0.0713707 10.7125 0 10.8848 0 11.0645C0 11.2442 0.0713707 11.4165 0.198411 11.5435C0.325452 11.6706 0.497757 11.7419 0.677419 11.7419Z",
|
||||||
|
fill: "currentColor"
|
||||||
|
}, null, -1);
|
||||||
|
var _hoisted_2$1 = [_hoisted_1$1];
|
||||||
|
function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
||||||
|
return openBlock(), createElementBlock("svg", mergeProps({
|
||||||
|
width: "14",
|
||||||
|
height: "14",
|
||||||
|
viewBox: "0 0 14 14",
|
||||||
|
fill: "none",
|
||||||
|
xmlns: "http://www.w3.org/2000/svg"
|
||||||
|
}, _ctx.pti()), _hoisted_2$1, 16);
|
||||||
|
}
|
||||||
|
__name(render$1, "render$1");
|
||||||
|
script$1.render = render$1;
|
||||||
|
var script = {
|
||||||
|
name: "PlusIcon",
|
||||||
|
"extends": script$2
|
||||||
|
};
|
||||||
|
var _hoisted_1 = /* @__PURE__ */ createBaseVNode("path", {
|
||||||
|
d: "M7.67742 6.32258V0.677419C7.67742 0.497757 7.60605 0.325452 7.47901 0.198411C7.35197 0.0713707 7.17966 0 7 0C6.82034 0 6.64803 0.0713707 6.52099 0.198411C6.39395 0.325452 6.32258 0.497757 6.32258 0.677419V6.32258H0.677419C0.497757 6.32258 0.325452 6.39395 0.198411 6.52099C0.0713707 6.64803 0 6.82034 0 7C0 7.17966 0.0713707 7.35197 0.198411 7.47901C0.325452 7.60605 0.497757 7.67742 0.677419 7.67742H6.32258V13.3226C6.32492 13.5015 6.39704 13.6725 6.52358 13.799C6.65012 13.9255 6.82106 13.9977 7 14C7.17966 14 7.35197 13.9286 7.47901 13.8016C7.60605 13.6745 7.67742 13.5022 7.67742 13.3226V7.67742H13.3226C13.5022 7.67742 13.6745 7.60605 13.8016 7.47901C13.9286 7.35197 14 7.17966 14 7C13.9977 6.82106 13.9255 6.65012 13.799 6.52358C13.6725 6.39704 13.5015 6.32492 13.3226 6.32258H7.67742Z",
|
||||||
|
fill: "currentColor"
|
||||||
|
}, null, -1);
|
||||||
|
var _hoisted_2 = [_hoisted_1];
|
||||||
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||||
|
return openBlock(), createElementBlock("svg", mergeProps({
|
||||||
|
width: "14",
|
||||||
|
height: "14",
|
||||||
|
viewBox: "0 0 14 14",
|
||||||
|
fill: "none",
|
||||||
|
xmlns: "http://www.w3.org/2000/svg"
|
||||||
|
}, _ctx.pti()), _hoisted_2, 16);
|
||||||
|
}
|
||||||
|
__name(render, "render");
|
||||||
|
script.render = render;
|
||||||
|
export {
|
||||||
|
script as a,
|
||||||
|
script$1 as s
|
||||||
|
};
|
||||||
|
//# sourceMappingURL=index-MX9DEi8Q.js.map
|
1
web/assets/index-MX9DEi8Q.js.map
generated
vendored
Normal file
1
web/assets/index-MX9DEi8Q.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"index-MX9DEi8Q.js","sources":["../../node_modules/@primevue/icons/bars/index.mjs","../../node_modules/@primevue/icons/plus/index.mjs"],"sourcesContent":["import BaseIcon from '@primevue/icons/baseicon';\nimport { openBlock, createElementBlock, mergeProps, createElementVNode } from 'vue';\n\nvar script = {\n name: 'BarsIcon',\n \"extends\": BaseIcon\n};\n\nvar _hoisted_1 = /*#__PURE__*/createElementVNode(\"path\", {\n \"fill-rule\": \"evenodd\",\n \"clip-rule\": \"evenodd\",\n d: \"M13.3226 3.6129H0.677419C0.497757 3.6129 0.325452 3.54152 0.198411 3.41448C0.0713707 3.28744 0 3.11514 0 2.93548C0 2.75581 0.0713707 2.58351 0.198411 2.45647C0.325452 2.32943 0.497757 2.25806 0.677419 2.25806H13.3226C13.5022 2.25806 13.6745 2.32943 13.8016 2.45647C13.9286 2.58351 14 2.75581 14 2.93548C14 3.11514 13.9286 3.28744 13.8016 3.41448C13.6745 3.54152 13.5022 3.6129 13.3226 3.6129ZM13.3226 7.67741H0.677419C0.497757 7.67741 0.325452 7.60604 0.198411 7.479C0.0713707 7.35196 0 7.17965 0 6.99999C0 6.82033 0.0713707 6.64802 0.198411 6.52098C0.325452 6.39394 0.497757 6.32257 0.677419 6.32257H13.3226C13.5022 6.32257 13.6745 6.39394 13.8016 6.52098C13.9286 6.64802 14 6.82033 14 6.99999C14 7.17965 13.9286 7.35196 13.8016 7.479C13.6745 7.60604 13.5022 7.67741 13.3226 7.67741ZM0.677419 11.7419H13.3226C13.5022 11.7419 13.6745 11.6706 13.8016 11.5435C13.9286 11.4165 14 11.2442 14 11.0645C14 10.8848 13.9286 10.7125 13.8016 10.5855C13.6745 10.4585 13.5022 10.3871 13.3226 10.3871H0.677419C0.497757 10.3871 0.325452 10.4585 0.198411 10.5855C0.0713707 10.7125 0 10.8848 0 11.0645C0 11.2442 0.0713707 11.4165 0.198411 11.5435C0.325452 11.6706 0.497757 11.7419 0.677419 11.7419Z\",\n fill: \"currentColor\"\n}, null, -1);\nvar _hoisted_2 = [_hoisted_1];\nfunction render(_ctx, _cache, $props, $setup, $data, $options) {\n return openBlock(), createElementBlock(\"svg\", mergeProps({\n width: \"14\",\n height: \"14\",\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\"\n }, _ctx.pti()), _hoisted_2, 16);\n}\n\nscript.render = render;\n\nexport { script as default };\n//# sourceMappingURL=index.mjs.map\n","import BaseIcon from '@primevue/icons/baseicon';\nimport { openBlock, createElementBlock, mergeProps, createElementVNode } from 'vue';\n\nvar script = {\n name: 'PlusIcon',\n \"extends\": BaseIcon\n};\n\nvar _hoisted_1 = /*#__PURE__*/createElementVNode(\"path\", {\n d: \"M7.67742 6.32258V0.677419C7.67742 0.497757 7.60605 0.325452 7.47901 0.198411C7.35197 0.0713707 7.17966 0 7 0C6.82034 0 6.64803 0.0713707 6.52099 0.198411C6.39395 0.325452 6.32258 0.497757 6.32258 0.677419V6.32258H0.677419C0.497757 6.32258 0.325452 6.39395 0.198411 6.52099C0.0713707 6.64803 0 6.82034 0 7C0 7.17966 0.0713707 7.35197 0.198411 7.47901C0.325452 7.60605 0.497757 7.67742 0.677419 7.67742H6.32258V13.3226C6.32492 13.5015 6.39704 13.6725 6.52358 13.799C6.65012 13.9255 6.82106 13.9977 7 14C7.17966 14 7.35197 13.9286 7.47901 13.8016C7.60605 13.6745 7.67742 13.5022 7.67742 13.3226V7.67742H13.3226C13.5022 7.67742 13.6745 7.60605 13.8016 7.47901C13.9286 7.35197 14 7.17966 14 7C13.9977 6.82106 13.9255 6.65012 13.799 6.52358C13.6725 6.39704 13.5015 6.32492 13.3226 6.32258H7.67742Z\",\n fill: \"currentColor\"\n}, null, -1);\nvar _hoisted_2 = [_hoisted_1];\nfunction render(_ctx, _cache, $props, $setup, $data, $options) {\n return openBlock(), createElementBlock(\"svg\", mergeProps({\n width: \"14\",\n height: \"14\",\n viewBox: \"0 0 14 14\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\"\n }, _ctx.pti()), _hoisted_2, 16);\n}\n\nscript.render = render;\n\nexport { script as default };\n//# sourceMappingURL=index.mjs.map\n"],"names":["script","BaseIcon","_hoisted_1","createElementVNode","_hoisted_2","render"],"mappings":";;;AAGG,IAACA,WAAS;AAAA,EACX,MAAM;AAAA,EACN,WAAWC;AACb;AAEA,IAAIC,eAA0BC,gCAAmB,QAAQ;AAAA,EACvD,aAAa;AAAA,EACb,aAAa;AAAA,EACb,GAAG;AAAA,EACH,MAAM;AACR,GAAG,MAAM,EAAE;AACX,IAAIC,eAAa,CAACF,YAAU;AAC5B,SAASG,SAAO,MAAM,QAAQ,QAAQ,QAAQ,OAAO,UAAU;AAC7D,SAAO,UAAW,GAAE,mBAAmB,OAAO,WAAW;AAAA,IACvD,OAAO;AAAA,IACP,QAAQ;AAAA,IACR,SAAS;AAAA,IACT,MAAM;AAAA,IACN,OAAO;AAAA,EACR,GAAE,KAAK,IAAG,CAAE,GAAGD,cAAY,EAAE;AAChC;AARSC;AAUTL,SAAO,SAASK;ACtBb,IAAC,SAAS;AAAA,EACX,MAAM;AAAA,EACN,WAAWJ;AACb;AAEA,IAAI,aAA0BE,gCAAmB,QAAQ;AAAA,EACvD,GAAG;AAAA,EACH,MAAM;AACR,GAAG,MAAM,EAAE;AACX,IAAI,aAAa,CAAC,UAAU;AAC5B,SAAS,OAAO,MAAM,QAAQ,QAAQ,QAAQ,OAAO,UAAU;AAC7D,SAAO,UAAW,GAAE,mBAAmB,OAAO,WAAW;AAAA,IACvD,OAAO;AAAA,IACP,QAAQ;AAAA,IACR,SAAS;AAAA,IACT,MAAM;AAAA,IACN,OAAO;AAAA,EACR,GAAE,KAAK,IAAG,CAAE,GAAG,YAAY,EAAE;AAChC;AARS;AAUT,OAAO,SAAS;","x_google_ignoreList":[0,1]}
|
4
web/assets/userSelection-DITGVoWz.js → web/assets/userSelection-BSkuSZyR.js
generated
vendored
4
web/assets/userSelection-DITGVoWz.js → web/assets/userSelection-BSkuSZyR.js
generated
vendored
@ -1,6 +1,6 @@
|
|||||||
var __defProp = Object.defineProperty;
|
var __defProp = Object.defineProperty;
|
||||||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||||
import { bC as api, bG as $el } from "./index-BHayQCxv.js";
|
import { bH as api, bW as $el } from "./index-B6dYHNhg.js";
|
||||||
function createSpinner() {
|
function createSpinner() {
|
||||||
const div = document.createElement("div");
|
const div = document.createElement("div");
|
||||||
div.innerHTML = `<div class="lds-ring"><div></div><div></div><div></div><div></div></div>`;
|
div.innerHTML = `<div class="lds-ring"><div></div><div></div><div></div><div></div></div>`;
|
||||||
@ -126,4 +126,4 @@ window.comfyAPI.userSelection.UserSelectionScreen = UserSelectionScreen;
|
|||||||
export {
|
export {
|
||||||
UserSelectionScreen
|
UserSelectionScreen
|
||||||
};
|
};
|
||||||
//# sourceMappingURL=userSelection-DITGVoWz.js.map
|
//# sourceMappingURL=userSelection-BSkuSZyR.js.map
|
2
web/assets/userSelection-DITGVoWz.js.map → web/assets/userSelection-BSkuSZyR.js.map
generated
vendored
2
web/assets/userSelection-DITGVoWz.js.map → web/assets/userSelection-BSkuSZyR.js.map
generated
vendored
File diff suppressed because one or more lines are too long
28
web/assets/widgetInputs-DdecKYqd.js → web/assets/widgetInputs-BJ21PG7d.js
generated
vendored
28
web/assets/widgetInputs-DdecKYqd.js → web/assets/widgetInputs-BJ21PG7d.js
generated
vendored
@ -1,6 +1,6 @@
|
|||||||
var __defProp = Object.defineProperty;
|
var __defProp = Object.defineProperty;
|
||||||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||||
import { e as LGraphNode, c as app, bL as applyTextReplacements, bK as ComfyWidgets, bM as addValueControlWidgets, k as LiteGraph } from "./index-BHayQCxv.js";
|
import { e as LGraphNode, c as app, c1 as applyTextReplacements, c0 as ComfyWidgets, c2 as addValueControlWidgets, k as LiteGraph } from "./index-B6dYHNhg.js";
|
||||||
const CONVERTED_TYPE = "converted-widget";
|
const CONVERTED_TYPE = "converted-widget";
|
||||||
const VALID_TYPES = [
|
const VALID_TYPES = [
|
||||||
"STRING",
|
"STRING",
|
||||||
@ -171,7 +171,7 @@ class PrimitiveNode extends LGraphNode {
|
|||||||
if (type instanceof Array) {
|
if (type instanceof Array) {
|
||||||
type = "COMBO";
|
type = "COMBO";
|
||||||
}
|
}
|
||||||
const size = this.size;
|
const [oldWidth, oldHeight] = this.size;
|
||||||
let widget;
|
let widget;
|
||||||
if (type in ComfyWidgets) {
|
if (type in ComfyWidgets) {
|
||||||
widget = (ComfyWidgets[type](this, "value", inputData, app) || {}).widget;
|
widget = (ComfyWidgets[type](this, "value", inputData, app) || {}).widget;
|
||||||
@ -218,8 +218,8 @@ class PrimitiveNode extends LGraphNode {
|
|||||||
return r;
|
return r;
|
||||||
};
|
};
|
||||||
this.size = [
|
this.size = [
|
||||||
Math.max(this.size[0], size[0]),
|
Math.max(this.size[0], oldWidth),
|
||||||
Math.max(this.size[1], size[1])
|
Math.max(this.size[1], oldHeight)
|
||||||
];
|
];
|
||||||
if (!recreating) {
|
if (!recreating) {
|
||||||
const sz = this.computeSize();
|
const sz = this.computeSize();
|
||||||
@ -320,7 +320,7 @@ class PrimitiveNode extends LGraphNode {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
function getWidgetConfig(slot) {
|
function getWidgetConfig(slot) {
|
||||||
return slot.widget[CONFIG] ?? slot.widget[GET_CONFIG]();
|
return slot.widget[CONFIG] ?? slot.widget[GET_CONFIG]?.() ?? ["*", {}];
|
||||||
}
|
}
|
||||||
__name(getWidgetConfig, "getWidgetConfig");
|
__name(getWidgetConfig, "getWidgetConfig");
|
||||||
function getConfig(widgetName) {
|
function getConfig(widgetName) {
|
||||||
@ -373,7 +373,7 @@ __name(showWidget, "showWidget");
|
|||||||
function convertToInput(node, widget, config) {
|
function convertToInput(node, widget, config) {
|
||||||
hideWidget(node, widget);
|
hideWidget(node, widget);
|
||||||
const { type } = getWidgetType(config);
|
const { type } = getWidgetType(config);
|
||||||
const sz = node.size;
|
const [oldWidth, oldHeight] = node.size;
|
||||||
const inputIsOptional = !!widget.options?.inputIsOptional;
|
const inputIsOptional = !!widget.options?.inputIsOptional;
|
||||||
const input = node.addInput(widget.name, type, {
|
const input = node.addInput(widget.name, type, {
|
||||||
widget: { name: widget.name, [GET_CONFIG]: () => config },
|
widget: { name: widget.name, [GET_CONFIG]: () => config },
|
||||||
@ -382,18 +382,24 @@ function convertToInput(node, widget, config) {
|
|||||||
for (const widget2 of node.widgets) {
|
for (const widget2 of node.widgets) {
|
||||||
widget2.last_y += LiteGraph.NODE_SLOT_HEIGHT;
|
widget2.last_y += LiteGraph.NODE_SLOT_HEIGHT;
|
||||||
}
|
}
|
||||||
node.setSize([Math.max(sz[0], node.size[0]), Math.max(sz[1], node.size[1])]);
|
node.setSize([
|
||||||
|
Math.max(oldWidth, node.size[0]),
|
||||||
|
Math.max(oldHeight, node.size[1])
|
||||||
|
]);
|
||||||
return input;
|
return input;
|
||||||
}
|
}
|
||||||
__name(convertToInput, "convertToInput");
|
__name(convertToInput, "convertToInput");
|
||||||
function convertToWidget(node, widget) {
|
function convertToWidget(node, widget) {
|
||||||
showWidget(widget);
|
showWidget(widget);
|
||||||
const sz = node.size;
|
const [oldWidth, oldHeight] = node.size;
|
||||||
node.removeInput(node.inputs.findIndex((i) => i.widget?.name === widget.name));
|
node.removeInput(node.inputs.findIndex((i) => i.widget?.name === widget.name));
|
||||||
for (const widget2 of node.widgets) {
|
for (const widget2 of node.widgets) {
|
||||||
widget2.last_y -= LiteGraph.NODE_SLOT_HEIGHT;
|
widget2.last_y -= LiteGraph.NODE_SLOT_HEIGHT;
|
||||||
}
|
}
|
||||||
node.setSize([Math.max(sz[0], node.size[0]), Math.max(sz[1], node.size[1])]);
|
node.setSize([
|
||||||
|
Math.max(oldWidth, node.size[0]),
|
||||||
|
Math.max(oldHeight, node.size[1])
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
__name(convertToWidget, "convertToWidget");
|
__name(convertToWidget, "convertToWidget");
|
||||||
function getWidgetType(config) {
|
function getWidgetType(config) {
|
||||||
@ -450,7 +456,7 @@ function setWidgetConfig(slot, config, target) {
|
|||||||
__name(setWidgetConfig, "setWidgetConfig");
|
__name(setWidgetConfig, "setWidgetConfig");
|
||||||
function mergeIfValid(output, config2, forceUpdate, recreateWidget, config1) {
|
function mergeIfValid(output, config2, forceUpdate, recreateWidget, config1) {
|
||||||
if (!config1) {
|
if (!config1) {
|
||||||
config1 = output.widget[CONFIG] ?? output.widget[GET_CONFIG]();
|
config1 = getWidgetConfig(output);
|
||||||
}
|
}
|
||||||
if (config1[0] instanceof Array) {
|
if (config1[0] instanceof Array) {
|
||||||
if (!isValidCombo(config1[0], config2[0])) return;
|
if (!isValidCombo(config1[0], config2[0])) return;
|
||||||
@ -753,4 +759,4 @@ export {
|
|||||||
mergeIfValid,
|
mergeIfValid,
|
||||||
setWidgetConfig
|
setWidgetConfig
|
||||||
};
|
};
|
||||||
//# sourceMappingURL=widgetInputs-DdecKYqd.js.map
|
//# sourceMappingURL=widgetInputs-BJ21PG7d.js.map
|
1
web/assets/widgetInputs-BJ21PG7d.js.map
generated
vendored
Normal file
1
web/assets/widgetInputs-BJ21PG7d.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
web/assets/widgetInputs-DdecKYqd.js.map
generated
vendored
1
web/assets/widgetInputs-DdecKYqd.js.map
generated
vendored
File diff suppressed because one or more lines are too long
3
web/extensions/core/vintageClipboard.js
vendored
Normal file
3
web/extensions/core/vintageClipboard.js
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
// Shim for extensions/core/vintageClipboard.ts
|
||||||
|
export const serialise = window.comfyAPI.vintageClipboard.serialise;
|
||||||
|
export const deserialiseAndCreate = window.comfyAPI.vintageClipboard.deserialiseAndCreate;
|
4
web/index.html
vendored
4
web/index.html
vendored
@ -6,8 +6,8 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||||||
<link rel="stylesheet" type="text/css" href="user.css" />
|
<link rel="stylesheet" type="text/css" href="user.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="materialdesignicons.min.css" />
|
<link rel="stylesheet" type="text/css" href="materialdesignicons.min.css" />
|
||||||
<script type="module" crossorigin src="./assets/index-BHayQCxv.js"></script>
|
<script type="module" crossorigin src="./assets/index-B6dYHNhg.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="./assets/index-BitceZ14.css">
|
<link rel="stylesheet" crossorigin href="./assets/index-BCoLUtIt.css">
|
||||||
</head>
|
</head>
|
||||||
<body class="litegraph grid">
|
<body class="litegraph grid">
|
||||||
<div id="vue-app"></div>
|
<div id="vue-app"></div>
|
||||||
|
1
web/scripts/changeTracker.js
vendored
1
web/scripts/changeTracker.js
vendored
@ -1,3 +1,2 @@
|
|||||||
// Shim for scripts/changeTracker.ts
|
// Shim for scripts/changeTracker.ts
|
||||||
export const ChangeTracker = window.comfyAPI.changeTracker.ChangeTracker;
|
export const ChangeTracker = window.comfyAPI.changeTracker.ChangeTracker;
|
||||||
export const globalTracker = window.comfyAPI.changeTracker.globalTracker;
|
|
||||||
|
2
web/scripts/defaultGraph.js
vendored
2
web/scripts/defaultGraph.js
vendored
@ -1,2 +1,4 @@
|
|||||||
// Shim for scripts/defaultGraph.ts
|
// Shim for scripts/defaultGraph.ts
|
||||||
export const defaultGraph = window.comfyAPI.defaultGraph.defaultGraph;
|
export const defaultGraph = window.comfyAPI.defaultGraph.defaultGraph;
|
||||||
|
export const defaultGraphJSON = window.comfyAPI.defaultGraph.defaultGraphJSON;
|
||||||
|
export const blankGraph = window.comfyAPI.defaultGraph.blankGraph;
|
||||||
|
2
web/scripts/domWidget.js
vendored
2
web/scripts/domWidget.js
vendored
@ -1,2 +0,0 @@
|
|||||||
// Shim for scripts/domWidget.ts
|
|
||||||
export const addDomClippingSetting = window.comfyAPI.domWidget.addDomClippingSetting;
|
|
3
web/scripts/workflows.js
vendored
3
web/scripts/workflows.js
vendored
@ -1,3 +0,0 @@
|
|||||||
// Shim for scripts/workflows.ts
|
|
||||||
export const ComfyWorkflowManager = window.comfyAPI.workflows.ComfyWorkflowManager;
|
|
||||||
export const ComfyWorkflow = window.comfyAPI.workflows.ComfyWorkflow;
|
|
Loading…
Reference in New Issue
Block a user