mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 02:44:45 +00:00
45 lines
1.7 KiB
Vue
45 lines
1.7 KiB
Vue
<script setup lang="ts">
|
|
import type { ParamMeta } from '../../modules/extractor/types';
|
|
|
|
defineProps<{
|
|
params: ParamMeta[];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="params.length > 0" class="overflow-x-auto max-w-full">
|
|
<table class="w-full text-sm border-collapse table-fixed">
|
|
<thead>
|
|
<tr class="border-b border-(--color-border)">
|
|
<th class="text-left py-2 pr-4 font-medium text-(--color-text-soft)">Parameter</th>
|
|
<th class="text-left py-2 pr-4 font-medium text-(--color-text-soft)">Type</th>
|
|
<th class="text-left py-2 pr-4 font-medium text-(--color-text-soft)">Default</th>
|
|
<th class="text-left py-2 font-medium text-(--color-text-soft)">Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr
|
|
v-for="param in params"
|
|
:key="param.name"
|
|
class="border-b border-(--color-border) last:border-b-0"
|
|
>
|
|
<td class="py-2 pr-4">
|
|
<code class="text-brand-600 font-mono text-xs">{{ param.name }}</code>
|
|
<span v-if="param.optional" class="text-(--color-text-mute) text-xs ml-1">?</span>
|
|
</td>
|
|
<td class="py-2 pr-4 max-w-48 overflow-hidden">
|
|
<code class="text-xs font-mono text-(--color-text-soft) bg-(--color-bg-mute) px-1.5 py-0.5 rounded break-all">{{ param.type }}</code>
|
|
</td>
|
|
<td class="py-2 pr-4">
|
|
<code v-if="param.defaultValue" class="text-xs font-mono text-(--color-text-mute)">{{ param.defaultValue }}</code>
|
|
<span v-else class="text-(--color-text-mute)">—</span>
|
|
</td>
|
|
<td class="py-2 text-(--color-text-soft)">
|
|
{{ param.description || '—' }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</template>
|