mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #4290 - Update d.ts files
This commit is contained in:
parent
bb0d506860
commit
91b27d7318
95 changed files with 913 additions and 2 deletions
10
components/lib/radiobutton/RadioButton.d.ts
vendored
10
components/lib/radiobutton/RadioButton.d.ts
vendored
|
@ -9,6 +9,7 @@
|
|||
*/
|
||||
import { InputHTMLAttributes } from 'vue';
|
||||
import { ComponentHooks } from '../basecomponent';
|
||||
import { PassThroughOptions } from '../passthrough';
|
||||
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
|
||||
|
||||
export declare type RadioButtonPassThroughOptionType = RadioButtonPassThroughAttributes | ((options: RadioButtonPassThroughMethodOptions) => RadioButtonPassThroughAttributes | string) | string | null | undefined;
|
||||
|
@ -29,6 +30,10 @@ export interface RadioButtonPassThroughMethodOptions {
|
|||
* Defines current inline state.
|
||||
*/
|
||||
state: RadioButtonState;
|
||||
/**
|
||||
* Defines passthrough(pt) options in global config.
|
||||
*/
|
||||
global: object | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -131,6 +136,11 @@ export interface RadioButtonProps {
|
|||
* @type {RadioButtonPassThroughOptions}
|
||||
*/
|
||||
pt?: PTOptions<RadioButtonPassThroughOptions>;
|
||||
/**
|
||||
* Used to configure passthrough(pt) options of the component.
|
||||
* @type {PassThroughOptions}
|
||||
*/
|
||||
ptOptions?: PassThroughOptions;
|
||||
/**
|
||||
* When enabled, it removes component related styles in the core.
|
||||
* @defaultValue false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue