mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-30 19:54:14 -04:00
- Added Slider component to the UI library - Added Checkbox component to the UI library - Added Textarea component to the UI library
22 lines
973 B
Vue
22 lines
973 B
Vue
<script setup lang="ts">
|
|
import type { DialogRootEmits, DialogRootProps } from 'radix-vue'
|
|
import { Dialog, DialogContent } from '@/src/modules/ui/components/dialog'
|
|
import { useForwardPropsEmits } from 'radix-vue'
|
|
import Command from './Command.vue'
|
|
|
|
const props = defineProps<DialogRootProps>()
|
|
const emits = defineEmits<DialogRootEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<Dialog v-bind="forwarded">
|
|
<DialogContent class="overflow-hidden p-0 shadow-lg">
|
|
<Command class="[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5">
|
|
<slot />
|
|
</Command>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</template>
|