Components added. Build issues fixed

This commit is contained in:
Bahadir Sofuoglu 2022-09-14 14:26:01 +03:00
parent 5b66ed1093
commit 18c3721848
344 changed files with 12446 additions and 8758 deletions

View file

@ -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;