Fixed #1836 - For RadioButton
parent
b6d81faa1b
commit
ce0c8d6f96
|
@ -1,15 +1,60 @@
|
|||
interface RadioButtonProps {
|
||||
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?: string;
|
||||
/**
|
||||
* Inline style of the component.
|
||||
*/
|
||||
style?: any;
|
||||
}
|
||||
|
||||
declare class RadioButton {
|
||||
$props: RadioButtonProps;
|
||||
$emit(eventName: 'update:modelValue', value: any): this;
|
||||
$emit(eventName: 'click', event: Event): this;
|
||||
$emit(eventName: 'change', event: Event): this;
|
||||
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;
|
||||
|
|
Loading…
Reference in New Issue