@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
25 lines (24 loc) • 970 B
TypeScript
import { OptionItemProps } from '@zag-js/menu';
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
type RadioItemProps = Omit<OptionItemProps, 'type' | 'onCheckedChange' | 'checked'>;
export interface MenuRadioItemBaseProps extends RadioItemProps, PolymorphicProps {
}
export interface MenuRadioItemProps extends MenuRadioItemBaseProps,
/**
* @vue-ignore
*/
HTMLAttributes {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<MenuRadioItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MenuRadioItemProps> & Readonly<{}>, {
disabled: boolean;
closeOnSelect: boolean;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};