mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Components added. Build issues fixed
This commit is contained in:
parent
5b66ed1093
commit
18c3721848
344 changed files with 12446 additions and 8758 deletions
18
components/treeselect/TreeSelect.d.ts
vendored
18
components/treeselect/TreeSelect.d.ts
vendored
|
@ -79,7 +79,7 @@ export interface TreeSelectProps {
|
|||
*/
|
||||
inputStyle?: any | undefined;
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
inputProps?: object | undefined;
|
||||
/**
|
||||
|
@ -87,8 +87,8 @@ export interface TreeSelectProps {
|
|||
*/
|
||||
'aria-labelledby'?: string | undefined;
|
||||
/**
|
||||
* Establishes a string value that labels the component.
|
||||
*/
|
||||
* Establishes a string value that labels the component.
|
||||
*/
|
||||
'aria-label'?: string | undefined;
|
||||
}
|
||||
|
||||
|
@ -155,7 +155,7 @@ export declare type TreeSelectEmits = {
|
|||
* Callback to invoke on value change.
|
||||
* @param {*} value - Selected node keys
|
||||
*/
|
||||
'change': (value: string[]) => void;
|
||||
change: (value: string[]) => void;
|
||||
/**
|
||||
* Callback to invoke before the overlay is shown.
|
||||
*/
|
||||
|
@ -167,11 +167,11 @@ export declare type TreeSelectEmits = {
|
|||
/**
|
||||
* Callback to invoke when the overlay is shown.
|
||||
*/
|
||||
'show': () => void;
|
||||
show: () => void;
|
||||
/**
|
||||
* Callback to invoke when the overlay is hidden.
|
||||
*/
|
||||
'hide': () => void;
|
||||
hide: () => void;
|
||||
/**
|
||||
* Callback to invoke when a node is selected.
|
||||
* @param {TreeNode} node - Node instance.
|
||||
|
@ -192,7 +192,7 @@ export declare type TreeSelectEmits = {
|
|||
* @param {TreeNode} node - Node instance.
|
||||
*/
|
||||
'node-collapse': (node: TreeNode) => void;
|
||||
}
|
||||
};
|
||||
|
||||
declare class TreeSelect extends ClassComponent<TreeSelectProps, TreeSelectSlots, TreeSelectEmits> {
|
||||
/**
|
||||
|
@ -211,7 +211,7 @@ declare class TreeSelect extends ClassComponent<TreeSelectProps, TreeSelectSlots
|
|||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
TreeSelect: GlobalComponentConstructor<TreeSelect>
|
||||
TreeSelect: GlobalComponentConstructor<TreeSelect>;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -225,7 +225,7 @@ declare module '@vue/runtime-core' {
|
|||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [TreeSelect](https://www.primefaces.org/primevue/showcase/#/treeselect)
|
||||
* - [TreeSelect](https://www.primefaces.org/primevue/treeselect)
|
||||
*
|
||||
*/
|
||||
export default TreeSelect;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue