Fixed #4929 - Add parent param to all pt method options

This commit is contained in:
mertsincan 2023-12-05 11:06:32 +00:00
parent 1a4bba8107
commit eb00b8ee23
104 changed files with 399 additions and 158 deletions

View file

@ -6,7 +6,6 @@
* @module row
*/
import { ComponentHooks } from '../basecomponent';
import { ColumnGroupPassThroughOptions } from '../columngroup';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export declare type RowPassThroughOptionType = RowPassThroughAttributes | ((options: RowPassThroughMethodOptions) => RowPassThroughAttributes | string) | string | null | undefined;
@ -24,9 +23,9 @@ export interface RowPassThroughMethodOptions {
*/
props: RowProps;
/**
* Defines parent instance.
* Defines parent options.
*/
parent: ColumnGroupPassThroughOptions;
parent: any;
/**
* Defines current options.
*/