mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Fixed #4646 - Add custom wrapper support for helper components
This commit is contained in:
parent
7618f8ba7a
commit
f16bd6ab2e
14 changed files with 196 additions and 157 deletions
9
components/lib/utils/Utils.d.ts
vendored
9
components/lib/utils/Utils.d.ts
vendored
|
@ -102,6 +102,15 @@ export declare class ObjectUtils {
|
|||
static stringify(value: any, indent?: number, currentIndent?: number): string;
|
||||
}
|
||||
|
||||
export declare class HelperSet {
|
||||
constructor(options: { init?: any; type?: string });
|
||||
add(instance: any): void;
|
||||
update(): void;
|
||||
delete(instance: any): void;
|
||||
clear(): void;
|
||||
get(parentInstance?: any, slots?: any): any[] | null | undefined;
|
||||
}
|
||||
|
||||
export declare namespace ZIndexUtils {
|
||||
export function get(el?: HTMLElement): number;
|
||||
export function set(key: string, el: HTMLElement, baseZIndex?: number): void;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue