mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-03 04:31:58 +00:00
Backport of #8951 to `cloud/1.40`. Cherry-pick of merge commit `1bac5d9bddd2106b04f330733a45094df379b592` with conflict resolution. ## Conflict Resolution - **TopMenuSection.vue**: Kept both queue context menu (from target) and share tooltip/button (from PR) - **StatusBadge.vue**: Accepted PR version (adds `class` prop, `badgeClass` computed with `cn()`) - **WorkflowTab.vue**: Kept target branch version — PR's context menu additions depend on `WorkflowActionsList.vue` and `types/workflowMenuItem` which don't exist on `cloud/1.40` - **composables/README.md**: Merged both — kept `useValueTransform` from target, used `useWorkflowPersistenceV2` from PR - **Textarea.vue**: Accepted PR version (new file, deleted in target) - **Binary snapshot**: Accepted PR version - **pnpm-lock.yaml**: Regenerated with `pnpm install` ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9454-backport-cloud-1-40-feat-workflow-sharing-and-ComfyHub-publish-flow-31b6d73d3650813ebd55e0d2a24860ec) by [Unito](https://www.unito.io) --------- Co-authored-by: Amp <amp@ampcode.com> Co-authored-by: GitHub Action <action@github.com> Co-authored-by: github-actions <github-actions@github.com>
33 lines
892 B
Vue
33 lines
892 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { useTemplateRef } from 'vue'
|
|
|
|
import { cn } from '@/utils/tailwindUtil'
|
|
|
|
const { class: className } = defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
}>()
|
|
|
|
const modelValue = defineModel<string | number>()
|
|
|
|
const inputRef = useTemplateRef<HTMLInputElement>('inputEl')
|
|
|
|
defineExpose({
|
|
focus: () => inputRef.value?.focus(),
|
|
select: () => inputRef.value?.select()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<input
|
|
ref="inputEl"
|
|
v-model="modelValue"
|
|
:class="
|
|
cn(
|
|
'flex h-10 w-full min-w-0 appearance-none rounded-lg border-none bg-secondary-background px-4 py-2 text-sm text-base-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-border-default disabled:pointer-events-none disabled:opacity-50',
|
|
className
|
|
)
|
|
"
|
|
/>
|
|
</template>
|