[manager] Update UI components for new manager interface

Updated manager dialog components, pack cards, version selectors, and action buttons to work with the new manager API and state management structure.
This commit is contained in:
bymyself
2025-06-13 13:57:35 -07:00
parent 327869a621
commit 9d028a4c53
11 changed files with 124 additions and 97 deletions

View File

@@ -18,13 +18,15 @@
<script setup lang="ts">
import TabMenu from 'primevue/tabmenu'
import { ref } from 'vue'
import { computed } from 'vue'
import { useI18n } from 'vue-i18n'
import { useManagerProgressDialogStore } from '@/stores/comfyManagerStore'
const progressDialogContent = useManagerProgressDialogStore()
const activeTabIndex = ref(0)
const activeTabIndex = computed(() => {
return progressDialogContent.getActiveTabIndex()
})
const { t } = useI18n()
const tabs = [
{ label: t('manager.installationQueue') },