mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 15:15:44 -03:00
feat: auto-focus search bar in LoRA pool modals
This commit is contained in:
@@ -11,6 +11,7 @@
|
|||||||
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
|
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
|
||||||
</svg>
|
</svg>
|
||||||
<input
|
<input
|
||||||
|
ref="searchInputRef"
|
||||||
v-model="searchQuery"
|
v-model="searchQuery"
|
||||||
type="text"
|
type="text"
|
||||||
class="search-input"
|
class="search-input"
|
||||||
@@ -48,7 +49,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, computed } from 'vue'
|
import { ref, computed, watch, nextTick } from 'vue'
|
||||||
import ModalWrapper from './ModalWrapper.vue'
|
import ModalWrapper from './ModalWrapper.vue'
|
||||||
import type { BaseModelOption } from '../../../composables/types'
|
import type { BaseModelOption } from '../../../composables/types'
|
||||||
|
|
||||||
@@ -64,6 +65,7 @@ const emit = defineEmits<{
|
|||||||
}>()
|
}>()
|
||||||
|
|
||||||
const searchQuery = ref('')
|
const searchQuery = ref('')
|
||||||
|
const searchInputRef = ref<HTMLInputElement | null>(null)
|
||||||
|
|
||||||
const filteredModels = computed(() => {
|
const filteredModels = computed(() => {
|
||||||
if (!searchQuery.value) {
|
if (!searchQuery.value) {
|
||||||
@@ -87,6 +89,14 @@ const toggleModel = (name: string) => {
|
|||||||
const onSearch = () => {
|
const onSearch = () => {
|
||||||
// Debounce handled by v-model reactivity
|
// Debounce handled by v-model reactivity
|
||||||
}
|
}
|
||||||
|
|
||||||
|
watch(() => props.visible, (isVisible) => {
|
||||||
|
if (isVisible) {
|
||||||
|
nextTick(() => {
|
||||||
|
searchInputRef.value?.focus()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
|
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
|
||||||
</svg>
|
</svg>
|
||||||
<input
|
<input
|
||||||
|
ref="searchInputRef"
|
||||||
v-model="searchQuery"
|
v-model="searchQuery"
|
||||||
type="text"
|
type="text"
|
||||||
class="search-input"
|
class="search-input"
|
||||||
@@ -39,7 +40,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, computed } from 'vue'
|
import { ref, computed, watch, nextTick } from 'vue'
|
||||||
import ModalWrapper from './ModalWrapper.vue'
|
import ModalWrapper from './ModalWrapper.vue'
|
||||||
import type { TagOption } from '../../../composables/types'
|
import type { TagOption } from '../../../composables/types'
|
||||||
|
|
||||||
@@ -66,6 +67,7 @@ const subtitle = computed(() =>
|
|||||||
)
|
)
|
||||||
|
|
||||||
const searchQuery = ref('')
|
const searchQuery = ref('')
|
||||||
|
const searchInputRef = ref<HTMLInputElement | null>(null)
|
||||||
|
|
||||||
const filteredTags = computed(() => {
|
const filteredTags = computed(() => {
|
||||||
if (!searchQuery.value) {
|
if (!searchQuery.value) {
|
||||||
@@ -85,6 +87,14 @@ const toggleTag = (tag: string) => {
|
|||||||
: [...props.selected, tag]
|
: [...props.selected, tag]
|
||||||
emit('update:selected', newSelected)
|
emit('update:selected', newSelected)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
watch(() => props.visible, (isVisible) => {
|
||||||
|
if (isVisible) {
|
||||||
|
nextTick(() => {
|
||||||
|
searchInputRef.value?.focus()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|||||||
@@ -589,10 +589,10 @@ to { transform: rotate(360deg);
|
|||||||
transform: scale(0.95);
|
transform: scale(0.95);
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-container[data-v-7d08882c] {
|
.search-container[data-v-519e1488] {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.search-icon[data-v-7d08882c] {
|
.search-icon[data-v-519e1488] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
@@ -602,7 +602,7 @@ to { transform: rotate(360deg);
|
|||||||
color: var(--fg-color, #fff);
|
color: var(--fg-color, #fff);
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
.search-input[data-v-7d08882c] {
|
.search-input[data-v-519e1488] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 8px 12px 8px 32px;
|
padding: 8px 12px 8px 32px;
|
||||||
background: var(--comfy-input-bg, #333);
|
background: var(--comfy-input-bg, #333);
|
||||||
@@ -612,19 +612,19 @@ to { transform: rotate(360deg);
|
|||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
.search-input[data-v-7d08882c]:focus {
|
.search-input[data-v-519e1488]:focus {
|
||||||
border-color: var(--fg-color, #fff);
|
border-color: var(--fg-color, #fff);
|
||||||
}
|
}
|
||||||
.search-input[data-v-7d08882c]::placeholder {
|
.search-input[data-v-519e1488]::placeholder {
|
||||||
color: var(--fg-color, #fff);
|
color: var(--fg-color, #fff);
|
||||||
opacity: 0.4;
|
opacity: 0.4;
|
||||||
}
|
}
|
||||||
.model-list[data-v-7d08882c] {
|
.model-list[data-v-519e1488] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 2px;
|
gap: 2px;
|
||||||
}
|
}
|
||||||
.model-item[data-v-7d08882c] {
|
.model-item[data-v-519e1488] {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
@@ -633,15 +633,15 @@ to { transform: rotate(360deg);
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background 0.15s;
|
transition: background 0.15s;
|
||||||
}
|
}
|
||||||
.model-item[data-v-7d08882c]:hover {
|
.model-item[data-v-519e1488]:hover {
|
||||||
background: var(--comfy-input-bg, #333);
|
background: var(--comfy-input-bg, #333);
|
||||||
}
|
}
|
||||||
.model-checkbox[data-v-7d08882c] {
|
.model-checkbox[data-v-519e1488] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
.model-checkbox-visual[data-v-7d08882c] {
|
.model-checkbox-visual[data-v-519e1488] {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@@ -653,29 +653,29 @@ to { transform: rotate(360deg);
|
|||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
transition: all 0.15s;
|
transition: all 0.15s;
|
||||||
}
|
}
|
||||||
.model-item:hover .model-checkbox-visual[data-v-7d08882c] {
|
.model-item:hover .model-checkbox-visual[data-v-519e1488] {
|
||||||
border-color: var(--fg-color, #fff);
|
border-color: var(--fg-color, #fff);
|
||||||
}
|
}
|
||||||
.model-checkbox:checked + .model-checkbox-visual[data-v-7d08882c] {
|
.model-checkbox:checked + .model-checkbox-visual[data-v-519e1488] {
|
||||||
background: var(--fg-color, #fff);
|
background: var(--fg-color, #fff);
|
||||||
border-color: var(--fg-color, #fff);
|
border-color: var(--fg-color, #fff);
|
||||||
}
|
}
|
||||||
.check-icon[data-v-7d08882c] {
|
.check-icon[data-v-519e1488] {
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
color: var(--comfy-menu-bg, #1a1a1a);
|
color: var(--comfy-menu-bg, #1a1a1a);
|
||||||
}
|
}
|
||||||
.model-name[data-v-7d08882c] {
|
.model-name[data-v-519e1488] {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: var(--fg-color, #fff);
|
color: var(--fg-color, #fff);
|
||||||
}
|
}
|
||||||
.model-count[data-v-7d08882c] {
|
.model-count[data-v-519e1488] {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: var(--fg-color, #fff);
|
color: var(--fg-color, #fff);
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
.no-results[data-v-7d08882c] {
|
.no-results[data-v-519e1488] {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: var(--fg-color, #fff);
|
color: var(--fg-color, #fff);
|
||||||
@@ -683,10 +683,10 @@ to { transform: rotate(360deg);
|
|||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-container[data-v-8857206b] {
|
.search-container[data-v-22ab2729] {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.search-icon[data-v-8857206b] {
|
.search-icon[data-v-22ab2729] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
@@ -696,7 +696,7 @@ to { transform: rotate(360deg);
|
|||||||
color: var(--fg-color, #fff);
|
color: var(--fg-color, #fff);
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
.search-input[data-v-8857206b] {
|
.search-input[data-v-22ab2729] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 8px 12px 8px 32px;
|
padding: 8px 12px 8px 32px;
|
||||||
background: var(--comfy-input-bg, #333);
|
background: var(--comfy-input-bg, #333);
|
||||||
@@ -706,19 +706,19 @@ to { transform: rotate(360deg);
|
|||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
.search-input[data-v-8857206b]:focus {
|
.search-input[data-v-22ab2729]:focus {
|
||||||
border-color: var(--fg-color, #fff);
|
border-color: var(--fg-color, #fff);
|
||||||
}
|
}
|
||||||
.search-input[data-v-8857206b]::placeholder {
|
.search-input[data-v-22ab2729]::placeholder {
|
||||||
color: var(--fg-color, #fff);
|
color: var(--fg-color, #fff);
|
||||||
opacity: 0.4;
|
opacity: 0.4;
|
||||||
}
|
}
|
||||||
.tags-container[data-v-8857206b] {
|
.tags-container[data-v-22ab2729] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
}
|
}
|
||||||
.tag-chip[data-v-8857206b] {
|
.tag-chip[data-v-22ab2729] {
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
background: var(--comfy-input-bg, #333);
|
background: var(--comfy-input-bg, #333);
|
||||||
border: 1px solid var(--border-color, #555);
|
border: 1px solid var(--border-color, #555);
|
||||||
@@ -730,48 +730,48 @@ to { transform: rotate(360deg);
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Default hover (gray for neutral) */
|
/* Default hover (gray for neutral) */
|
||||||
.tag-chip[data-v-8857206b]:hover:not(.tag-chip--selected) {
|
.tag-chip[data-v-22ab2729]:hover:not(.tag-chip--selected) {
|
||||||
border-color: rgba(226, 232, 240, 0.5);
|
border-color: rgba(226, 232, 240, 0.5);
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: rgba(255, 255, 255, 0.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Include variant hover - blue tint */
|
/* Include variant hover - blue tint */
|
||||||
.tags-modal--include .tag-chip[data-v-8857206b]:hover:not(.tag-chip--selected) {
|
.tags-modal--include .tag-chip[data-v-22ab2729]:hover:not(.tag-chip--selected) {
|
||||||
border-color: rgba(66, 153, 225, 0.4);
|
border-color: rgba(66, 153, 225, 0.4);
|
||||||
background: rgba(66, 153, 225, 0.08);
|
background: rgba(66, 153, 225, 0.08);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Exclude variant hover - red tint */
|
/* Exclude variant hover - red tint */
|
||||||
.tags-modal--exclude .tag-chip[data-v-8857206b]:hover:not(.tag-chip--selected) {
|
.tags-modal--exclude .tag-chip[data-v-22ab2729]:hover:not(.tag-chip--selected) {
|
||||||
border-color: rgba(239, 68, 68, 0.4);
|
border-color: rgba(239, 68, 68, 0.4);
|
||||||
background: rgba(239, 68, 68, 0.08);
|
background: rgba(239, 68, 68, 0.08);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Selected chips hover - slightly deepen the color */
|
/* Selected chips hover - slightly deepen the color */
|
||||||
.tags-modal--include .tag-chip--selected[data-v-8857206b]:hover {
|
.tags-modal--include .tag-chip--selected[data-v-22ab2729]:hover {
|
||||||
background: rgba(66, 153, 225, 0.25);
|
background: rgba(66, 153, 225, 0.25);
|
||||||
border-color: rgba(66, 153, 225, 0.7);
|
border-color: rgba(66, 153, 225, 0.7);
|
||||||
}
|
}
|
||||||
.tags-modal--exclude .tag-chip--selected[data-v-8857206b]:hover {
|
.tags-modal--exclude .tag-chip--selected[data-v-22ab2729]:hover {
|
||||||
background: rgba(239, 68, 68, 0.25);
|
background: rgba(239, 68, 68, 0.25);
|
||||||
border-color: rgba(239, 68, 68, 0.7);
|
border-color: rgba(239, 68, 68, 0.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Include variant - blue when selected */
|
/* Include variant - blue when selected */
|
||||||
.tags-modal--include .tag-chip--selected[data-v-8857206b],
|
.tags-modal--include .tag-chip--selected[data-v-22ab2729],
|
||||||
.tag-chip--selected[data-v-8857206b] {
|
.tag-chip--selected[data-v-22ab2729] {
|
||||||
background: rgba(66, 153, 225, 0.2);
|
background: rgba(66, 153, 225, 0.2);
|
||||||
border-color: rgba(66, 153, 225, 0.6);
|
border-color: rgba(66, 153, 225, 0.6);
|
||||||
color: #4299e1;
|
color: #4299e1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Exclude variant - red when selected */
|
/* Exclude variant - red when selected */
|
||||||
.tags-modal--exclude .tag-chip--selected[data-v-8857206b] {
|
.tags-modal--exclude .tag-chip--selected[data-v-22ab2729] {
|
||||||
background: rgba(239, 68, 68, 0.2);
|
background: rgba(239, 68, 68, 0.2);
|
||||||
border-color: rgba(239, 68, 68, 0.6);
|
border-color: rgba(239, 68, 68, 0.6);
|
||||||
color: #ef4444;
|
color: #ef4444;
|
||||||
}
|
}
|
||||||
.no-results[data-v-8857206b] {
|
.no-results[data-v-22ab2729] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -10453,6 +10453,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|||||||
const props = __props;
|
const props = __props;
|
||||||
const emit2 = __emit;
|
const emit2 = __emit;
|
||||||
const searchQuery = ref("");
|
const searchQuery = ref("");
|
||||||
|
const searchInputRef = ref(null);
|
||||||
const filteredModels = computed(() => {
|
const filteredModels = computed(() => {
|
||||||
if (!searchQuery.value) {
|
if (!searchQuery.value) {
|
||||||
return props.models;
|
return props.models;
|
||||||
@@ -10469,6 +10470,14 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|||||||
};
|
};
|
||||||
const onSearch = () => {
|
const onSearch = () => {
|
||||||
};
|
};
|
||||||
|
watch(() => props.visible, (isVisible) => {
|
||||||
|
if (isVisible) {
|
||||||
|
nextTick(() => {
|
||||||
|
var _a;
|
||||||
|
(_a = searchInputRef.value) == null ? void 0 : _a.focus();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
return (_ctx, _cache) => {
|
return (_ctx, _cache) => {
|
||||||
return openBlock(), createBlock(ModalWrapper, {
|
return openBlock(), createBlock(ModalWrapper, {
|
||||||
visible: __props.visible,
|
visible: __props.visible,
|
||||||
@@ -10486,6 +10495,8 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|||||||
createBaseVNode("path", { d: "M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" })
|
createBaseVNode("path", { d: "M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" })
|
||||||
], -1)),
|
], -1)),
|
||||||
withDirectives(createBaseVNode("input", {
|
withDirectives(createBaseVNode("input", {
|
||||||
|
ref_key: "searchInputRef",
|
||||||
|
ref: searchInputRef,
|
||||||
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => searchQuery.value = $event),
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => searchQuery.value = $event),
|
||||||
type: "text",
|
type: "text",
|
||||||
class: "search-input",
|
class: "search-input",
|
||||||
@@ -10526,7 +10537,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const BaseModelModal = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-7d08882c"]]);
|
const BaseModelModal = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-519e1488"]]);
|
||||||
const _hoisted_1$8 = { class: "search-container" };
|
const _hoisted_1$8 = { class: "search-container" };
|
||||||
const _hoisted_2$5 = { class: "tags-container" };
|
const _hoisted_2$5 = { class: "tags-container" };
|
||||||
const _hoisted_3$4 = ["onClick"];
|
const _hoisted_3$4 = ["onClick"];
|
||||||
@@ -10553,6 +10564,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|||||||
() => props.variant === "include" ? "Select tags that items must have" : "Select tags that items must NOT have"
|
() => props.variant === "include" ? "Select tags that items must have" : "Select tags that items must NOT have"
|
||||||
);
|
);
|
||||||
const searchQuery = ref("");
|
const searchQuery = ref("");
|
||||||
|
const searchInputRef = ref(null);
|
||||||
const filteredTags = computed(() => {
|
const filteredTags = computed(() => {
|
||||||
if (!searchQuery.value) {
|
if (!searchQuery.value) {
|
||||||
return props.tags;
|
return props.tags;
|
||||||
@@ -10567,6 +10579,14 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|||||||
const newSelected = isSelected(tag) ? props.selected.filter((t) => t !== tag) : [...props.selected, tag];
|
const newSelected = isSelected(tag) ? props.selected.filter((t) => t !== tag) : [...props.selected, tag];
|
||||||
emit2("update:selected", newSelected);
|
emit2("update:selected", newSelected);
|
||||||
};
|
};
|
||||||
|
watch(() => props.visible, (isVisible) => {
|
||||||
|
if (isVisible) {
|
||||||
|
nextTick(() => {
|
||||||
|
var _a;
|
||||||
|
(_a = searchInputRef.value) == null ? void 0 : _a.focus();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
return (_ctx, _cache) => {
|
return (_ctx, _cache) => {
|
||||||
return openBlock(), createBlock(ModalWrapper, {
|
return openBlock(), createBlock(ModalWrapper, {
|
||||||
visible: __props.visible,
|
visible: __props.visible,
|
||||||
@@ -10585,6 +10605,8 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|||||||
createBaseVNode("path", { d: "M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" })
|
createBaseVNode("path", { d: "M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" })
|
||||||
], -1)),
|
], -1)),
|
||||||
withDirectives(createBaseVNode("input", {
|
withDirectives(createBaseVNode("input", {
|
||||||
|
ref_key: "searchInputRef",
|
||||||
|
ref: searchInputRef,
|
||||||
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => searchQuery.value = $event),
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => searchQuery.value = $event),
|
||||||
type: "text",
|
type: "text",
|
||||||
class: "search-input",
|
class: "search-input",
|
||||||
@@ -10612,7 +10634,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const TagsModal = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-8857206b"]]);
|
const TagsModal = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-22ab2729"]]);
|
||||||
const _hoisted_1$7 = { class: "tree-node" };
|
const _hoisted_1$7 = { class: "tree-node" };
|
||||||
const _hoisted_2$4 = {
|
const _hoisted_2$4 = {
|
||||||
key: 1,
|
key: 1,
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user