* feat(ui): add `input group` base component * feat(history): add history viewer and rewind * test: update selector snapshot * test: add PW base page * style: apply TS style fixes * chore(history): request history wiki * chore(history): remove unwanted symbol * chore: fix type * style: apply TS style fixes
30 lines
719 B
Vue
30 lines
719 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/utils/ui';
|
|
import { DropdownMenuLabel, type DropdownMenuLabelProps, useForwardProps } from 'reka-ui';
|
|
import { computed, type HTMLAttributes } from 'vue';
|
|
|
|
const props = defineProps<
|
|
DropdownMenuLabelProps & {
|
|
class?: HTMLAttributes['class'];
|
|
inset?: boolean;
|
|
}
|
|
>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuLabel
|
|
v-bind="forwardedProps"
|
|
:class="cn('px-2 py-1.5 text-xs', inset && 'pl-8', props.class)"
|
|
>
|
|
<slot />
|
|
</DropdownMenuLabel>
|
|
</template>
|