* fix: adjustment some schemas * fix(room): fixing integrate unit of room * feat(warehouse): modify form and integration * feat(counter): modify form and integration * feat(screen): add list, form and integration * feat(screen): add page for public screen * fix: add on reset state at list * fix: solve list of relation * feat(chamber): integrate form to api chamber * feat(bed): integrate form to api bed * fix: add searching function on list service * fix: rewrite style for dropdown and tree select * fix: add sort params * fix: add sort params on division + medicine * feat(division-position): layouting form + list * fix: add sort params for getValueList * chore: modify side menu style * chore: fix ui dashboard * feat(division-position): add content list * feat(division-position): add temporary page * feat(division-position): modify content and entry form
43 lines
1.5 KiB
Vue
43 lines
1.5 KiB
Vue
<script setup lang="ts">
|
|
import type { PrimitiveProps } from 'radix-vue'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { Primitive } from 'radix-vue'
|
|
import { cn } from '~/lib/utils'
|
|
|
|
const props = withDefaults(
|
|
defineProps<
|
|
PrimitiveProps & {
|
|
size?: 'sm' | 'md'
|
|
isActive?: boolean
|
|
class?: HTMLAttributes['class']
|
|
}
|
|
>(),
|
|
{
|
|
as: 'a',
|
|
size: 'md',
|
|
},
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
data-sidebar="menu-sub-button"
|
|
:as="as"
|
|
:as-child="asChild"
|
|
:data-size="size"
|
|
:data-active="isActive"
|
|
:class="
|
|
cn(
|
|
'text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground active:bg-sidebar-accent active:text-sidebar-accent-foreground [&>svg]:text-sidebar-accent-foreground flex min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 py-2 outline-none focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:whitespace-normal [&>span:last-child]:break-words [&>svg]:size-4 [&>svg]:shrink-0',
|
|
'aria-[current=page]:bg-sidebar-accent aria-[current=page]:text-sidebar-accent-foreground data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground aria-[current=page]:font-medium',
|
|
size === 'sm' && 'text-xs',
|
|
size === 'md' && 'text-sm',
|
|
'group-data-[collapsible=icon]:hidden',
|
|
props.class,
|
|
)
|
|
"
|
|
>
|
|
<slot />
|
|
</Primitive>
|
|
</template>
|