mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
Merge branch 'develop' into command-redesign
This commit is contained in:
commit
20b976db0d
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kksh/desktop",
|
||||
"version": "0.1.31",
|
||||
"version": "0.1.32",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -51,7 +51,6 @@
|
||||
import Inspect from "svelte-inspect-value"
|
||||
import { type CommandEvent } from "tauri-plugin-shellx-api"
|
||||
import * as v from "valibot"
|
||||
import Listview2 from "./listview2.svelte"
|
||||
|
||||
const { data } = $props()
|
||||
let listviewInputRef = $state<HTMLInputElement | null>(null)
|
||||
|
@ -1,8 +0,0 @@
|
||||
<script lang="ts">
|
||||
import { ListSchema } from "@kunkunapi/src/models"
|
||||
|
||||
let { listViewContent }: { listViewContent: ListSchema.List } = $props()
|
||||
let detailWidth = $derived(listViewContent.detail ? (listViewContent.detail?.width ?? 70) : 0)
|
||||
</script>
|
||||
|
||||
<div>detailWidth: {detailWidth}</div>
|
@ -144,10 +144,10 @@
|
||||
let resultingItems = $derived<ListSchema.Item[]>(
|
||||
// when search term changes, update the resulting items
|
||||
listViewContent.filter === "none"
|
||||
? searchTerm.length > 0
|
||||
? (listViewContent.items ?? [])
|
||||
: searchTerm.length > 0
|
||||
? itemsFuse.search(searchTerm).map((item) => item.item)
|
||||
: srcItems
|
||||
: (listViewContent.items ?? [])
|
||||
)
|
||||
// section total height is auto derived from section refs
|
||||
let sectionTotalHeight = $derived(srcSections.reduce((acc, s) => acc + (s.sectionHeight ?? 0), 0))
|
||||
|
@ -48,10 +48,10 @@
|
||||
let resultingItems = $derived(
|
||||
// when search term changes, update the resulting items
|
||||
filterMode === "none"
|
||||
? searchTerm.length > 0
|
||||
? items
|
||||
: searchTerm.length > 0
|
||||
? fuse.search(searchTerm).map((item) => item.item)
|
||||
: items
|
||||
: items
|
||||
)
|
||||
|
||||
$effect(() => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user