mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
parent updates for .d.ts files and apidoc
This commit is contained in:
parent
da84f55507
commit
8eea973282
30 changed files with 1171 additions and 393 deletions
18
components/lib/splitbutton/SplitButton.d.ts
vendored
18
components/lib/splitbutton/SplitButton.d.ts
vendored
|
@ -39,6 +39,20 @@ export interface SplitButtonPassThroughMethodOptions {
|
|||
global: object | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Custom shared passthrough(pt) option method.
|
||||
*/
|
||||
export interface SplitButtonSharedPassThroughMethodOptions {
|
||||
/**
|
||||
* Defines valid properties.
|
||||
*/
|
||||
props: SplitButtonProps;
|
||||
/**
|
||||
* Defines current inline state.
|
||||
*/
|
||||
state: SplitButtonState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Custom passthrough(pt) options.
|
||||
* @see {@link SplitButtonProps.pt}
|
||||
|
@ -56,12 +70,12 @@ export interface SplitButtonPassThroughOptions {
|
|||
* Used to pass attributes to the Button component.
|
||||
* @see {@link ButtonPassThroughOptions}
|
||||
*/
|
||||
menuButton?: ButtonPassThroughOptions;
|
||||
menuButton?: ButtonPassThroughOptions<SplitButtonSharedPassThroughMethodOptions>;
|
||||
/**
|
||||
* Used to pass attributes to the TieredMenu component.
|
||||
* @see {@link TieredMenuPassThroughOptions}
|
||||
*/
|
||||
menu?: TieredMenuPassThroughOptions;
|
||||
menu?: TieredMenuPassThroughOptions<SplitButtonSharedPassThroughMethodOptions>;
|
||||
/**
|
||||
* Used to manage all lifecycle hooks.
|
||||
* @see {@link BaseComponent.ComponentHooks}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue