chore: trim button radix dependency

This commit is contained in:
2026-06-12 17:01:05 +08:00
parent f5f345d326
commit a06de94c8f
3 changed files with 17 additions and 14 deletions
@@ -1,15 +1,16 @@
import type { AsTag } from 'radix-vue';
import type { Component } from 'vue';
import type { ButtonVariants, ButtonVariantSize } from '../../ui';
import type {
ButtonVariants,
ButtonVariantSize,
} from '../../ui/button/types';
export interface VbenButtonProps {
/**
* The element or component this component should render as. Can be overwrite by `asChild`
* @defaultValue "div"
*/
as?: AsTag | Component;
as?: Component | string;
/**
* Change the default rendered element for the one passed as a child, merging their props and behavior.
*
@@ -1,14 +1,12 @@
<script setup lang="ts">
import type { VbenButtonProps } from './button';
import { computed } from 'vue';
import { computed, useAttrs } from 'vue';
import { LoaderCircle } from '@vben-core/icons';
import { cn } from '@vben-core/shared/utils';
import { Primitive } from 'radix-vue';
import { buttonVariants } from '../../ui';
import { buttonVariants } from '../../ui/button/button';
interface Props extends VbenButtonProps {}
@@ -20,23 +18,26 @@ const props = withDefaults(defineProps<Props>(), {
size: 'default',
variant: 'default',
});
defineOptions({ inheritAttrs: false });
const isDisabled = computed(() => {
return props.disabled || props.loading;
});
const attrs = useAttrs();
</script>
<template>
<Primitive
:as="as"
:as-child="asChild"
<component
:is="as"
:class="cn(buttonVariants({ variant, size }), props.class)"
:disabled="isDisabled"
v-bind="attrs"
>
<LoaderCircle
v-if="loading"
class="text-md mr-2 size-4 flex-shrink-0 animate-spin"
/>
<slot></slot>
</Primitive>
</component>
</template>
@@ -2,13 +2,14 @@
import type { ButtonVariants } from '../../ui';
import type { VbenButtonProps } from './button';
import { computed, useSlots } from 'vue';
import { computed, defineAsyncComponent, useSlots } from 'vue';
import { cn } from '@vben-core/shared/utils';
import { VbenTooltip } from '../tooltip';
import VbenButton from './button.vue';
const VbenTooltip = defineAsyncComponent(() => import('../tooltip/tooltip.vue'));
interface Props extends VbenButtonProps {
class?: any;
disabled?: boolean;