Merge branch 'master' of https://github.com/primefaces/primevue into radio-button-pt-fix

This commit is contained in:
Huge Letters 2023-08-02 11:13:04 +02:00
commit 1babffe136
241 changed files with 7449 additions and 2611 deletions

View file

@ -28,27 +28,27 @@ export interface RadioButtonPassThroughMethodOptions {
*/
export interface RadioButtonPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: RadioButtonPassThroughOptionType;
/**
* Uses to pass attributes to the input's DOM element.
* Used to pass attributes to the input's DOM element.
*/
input?: RadioButtonPassThroughOptionType;
/**
* Uses to pass attributes to the icon's DOM element.
* Used to pass attributes to the icon's DOM element.
*/
icon?: RadioButtonPassThroughOptionType;
/**
* Uses to pass attributes to the hidden accessible DOM element wrapper.
* Used to pass attributes to the hidden accessible DOM element wrapper.
*/
hiddenInputWrapper?: RadioButtonPassThroughOptionType;
/**
* Uses to pass attributes to the hidden accessible DOM element.
* Used to pass attributes to the hidden accessible DOM element.
*/
hiddenInput?: RadioButtonPassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* Used to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
@ -106,7 +106,7 @@ export interface RadioButtonProps {
*/
inputClass?: string | object | undefined;
/**
* Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component.
* Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.
*/
inputProps?: InputHTMLAttributes | undefined;
/**