|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import type { CommandPaletteType } from '~/lib' |
|
|
|
|
|
|
|
|
|
const props = defineProps<{ |
|
|
|
|
defineProps<{ |
|
|
|
|
activeCmd: CommandPaletteType |
|
|
|
|
setActiveCmdView: (cmd: CommandPaletteType) => void |
|
|
|
|
}>() |
|
|
|
@ -20,9 +20,7 @@ const renderCmdOrCtrlKey = () => {
|
|
|
|
|
@click.stop="activeCmd !== 'cmd-j' ? setActiveCmdView('cmd-j') : () => undefined" |
|
|
|
|
> |
|
|
|
|
<MdiFileOutline class="h-4 w-4" /> |
|
|
|
|
|
|
|
|
|
Document |
|
|
|
|
|
|
|
|
|
<span |
|
|
|
|
class="text-sm px-1 rounded-md border-1" |
|
|
|
|
:class="activeCmd === 'cmd-j' ? 'bg-brand-500 border-brand-500 text-white' : 'bg-gray-100 border-gray-300'" |
|
|
|
@ -36,7 +34,6 @@ const renderCmdOrCtrlKey = () => {
|
|
|
|
|
@click.stop="activeCmd !== 'cmd-k' ? setActiveCmdView('cmd-k') : () => undefined" |
|
|
|
|
> |
|
|
|
|
<MdiMapMarkerOutline class="h-4 w-4" /> |
|
|
|
|
|
|
|
|
|
Quick Navigation |
|
|
|
|
<span |
|
|
|
|
class="text-sm px-1 rounded-md border-1" |
|
|
|
@ -51,7 +48,6 @@ const renderCmdOrCtrlKey = () => {
|
|
|
|
|
@click.stop="activeCmd !== 'cmd-l' ? setActiveCmdView('cmd-l') : () => undefined" |
|
|
|
|
> |
|
|
|
|
<MdiClockOutline class="h-4 w-4" /> |
|
|
|
|
|
|
|
|
|
Recent |
|
|
|
|
<span |
|
|
|
|
class="text-sm px-1 rounded-md border-1" |
|
|
|
|