Skip to content

Commit

Permalink
Fix primefaces#4983: Radiobutton typescript FormEvent (primefaces#4989)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Sep 29, 2023
1 parent d6c95b1 commit 02ffa72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/lib/radiobutton/radiobutton.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { ComponentHooks } from '../componentbase/componentbase';
import { PassThroughOptions } from '../passthrough';
import { TooltipPassThroughOptions } from '../tooltip/tooltip';
import { TooltipOptions } from '../tooltip/tooltipoptions';
import { FormBooleanEvent, FormEvent } from '../ts-helpers';
import { FormEvent } from '../ts-helpers';
import { PassThroughType } from '../utils/utils';

export declare type RadioButtonPassThroughType<T> = PassThroughType<T, RadioButtonPassThroughMethodOptions>;
Expand Down Expand Up @@ -79,15 +79,15 @@ export interface RadioButtonState {
* @extends {FormEvent}
* @event
*/
interface RadioButtonChangeEvent extends FormBooleanEvent {}
interface RadioButtonChangeEvent extends FormEvent {}

/**
* Custom click event.
* @see {@link RadioButtonProps.onClick}
* @extends {FormEvent}
* @event
*/
interface RadioButtonClickEvent extends FormBooleanEvent {}
interface RadioButtonClickEvent extends FormEvent {}

/**
* Defines valid properties in RadioButton component. In addition to these, all properties of HTMLDivElement can be used in this component.
Expand Down

0 comments on commit 02ffa72

Please sign in to comment.