+
-
@@ -44,6 +37,8 @@ import { getSlotColor } from '@/constants/slotColors'
import type { INodeSlot, LGraphNode } from '@/lib/litegraph/src/litegraph'
import { COMFY_VUE_NODE_DIMENSIONS } from '@/lib/litegraph/src/litegraph'
+import SlotConnectionDot from './SlotConnectionDot.vue'
+
interface OutputSlotProps {
node?: LGraphNode
slotData: INodeSlot
diff --git a/src/renderer/extensions/vueNodes/components/SlotConnectionDot.vue b/src/renderer/extensions/vueNodes/components/SlotConnectionDot.vue
new file mode 100644
index 000000000..6e5379e86
--- /dev/null
+++ b/src/renderer/extensions/vueNodes/components/SlotConnectionDot.vue
@@ -0,0 +1,29 @@
+
+
+
+
+
diff --git a/src/utils/tailwindUtil.ts b/src/utils/tailwindUtil.ts
index bec3707ca..39124c768 100644
--- a/src/utils/tailwindUtil.ts
+++ b/src/utils/tailwindUtil.ts
@@ -1,6 +1,8 @@
import clsx, { type ClassArray } from 'clsx'
import { twMerge } from 'tailwind-merge'
+export type { ClassValue, ClassArray, ClassDictionary } from 'clsx'
+
export function cn(...inputs: ClassArray) {
return twMerge(clsx(inputs))
}