UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

61 lines (54 loc) 1.4 kB
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; export interface RadioButtonProps { /** * Value of the checkbox. */ value?: any; /** * Value binding of the checkbox. */ modelValue?: any; /** * Style class of the component input field. */ class?: any; /** * Inline style of the component. */ style?: any; } export interface RadioButtonSlots { } export declare type RadioButtonEmits = { /** * Emitted when the value changes. * @param {*} value - New value. */ 'update:modelValue': (value: any) => void; /** * Callback to invoke on radio button click. * @param {Event} event - Browser event. */ 'click': (event: Event) => void; /** * Callback to invoke on radio button value change. * @param {Event} event - Browser event. */ 'change': (event: Event) => void; } declare class RadioButton extends ClassComponent<RadioButtonProps, RadioButtonSlots, RadioButtonEmits> { } declare module '@vue/runtime-core' { interface GlobalComponents { RadioButton: GlobalComponentConstructor<RadioButton> } } /** * * RadioButton is an extension to standard radio button element with theming. * * Demos: * * - [RadioButton](https://www.primefaces.org/primevue/showcase/#/radiobutton) * */ export default RadioButton;