mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32: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
14
components/tree/Tree.d.ts
vendored
14
components/tree/Tree.d.ts
vendored
|
@ -149,9 +149,9 @@ export declare type TreeEmits = {
|
|||
*/
|
||||
'update:expandedKeys': (value: TreeExpandedKeys) => void;
|
||||
/**
|
||||
* Emitted when the selection keys change.
|
||||
* @param {TreeSelectionKeys} value - New selection keys.
|
||||
*/
|
||||
* Emitted when the selection keys change.
|
||||
* @param {TreeSelectionKeys} value - New selection keys.
|
||||
*/
|
||||
'update:selectionKeys': (event: TreeSelectionKeys) => void;
|
||||
/**
|
||||
* Callback to invoke when a node is selected.
|
||||
|
@ -173,13 +173,13 @@ export declare type TreeEmits = {
|
|||
* @param {TreeNode} node - Node instance.
|
||||
*/
|
||||
'node-collapse': (node: TreeNode) => void;
|
||||
}
|
||||
};
|
||||
|
||||
declare class Tree extends ClassComponent<TreeProps, TreeSlots, TreeEmits> { }
|
||||
declare class Tree extends ClassComponent<TreeProps, TreeSlots, TreeEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
Tree: GlobalComponentConstructor<Tree>
|
||||
Tree: GlobalComponentConstructor<Tree>;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -193,7 +193,7 @@ declare module '@vue/runtime-core' {
|
|||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Tree](https://www.primefaces.org/primevue/showcase/#/tree)
|
||||
* - [Tree](https://www.primefaces.org/primevue/tree)
|
||||
*
|
||||
*/
|
||||
export default Tree;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue