mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Fixed #4290 - Update d.ts files
This commit is contained in:
parent
bb0d506860
commit
91b27d7318
95 changed files with 913 additions and 2 deletions
10
components/lib/column/Column.d.ts
vendored
10
components/lib/column/Column.d.ts
vendored
|
@ -14,6 +14,7 @@ import { ComponentHooks } from '../basecomponent';
|
|||
import { ButtonPassThroughOptionType } from '../button';
|
||||
import { DataTablePassThroughOptions } from '../datatable';
|
||||
import { DropdownPassThroughOptionType } from '../dropdown';
|
||||
import { PassThroughOptions } from '../passthrough';
|
||||
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
|
||||
import { VirtualScrollerLoaderOptions } from '../virtualscroller';
|
||||
|
||||
|
@ -39,6 +40,10 @@ export interface ColumnPassThroughMethodOptions {
|
|||
* Defines current options.
|
||||
*/
|
||||
context: ColumnContext;
|
||||
/**
|
||||
* Defines passthrough(pt) options in global config.
|
||||
*/
|
||||
global: object | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -580,6 +585,11 @@ export interface ColumnProps {
|
|||
* @type {ColumnPassThroughOptions}
|
||||
*/
|
||||
pt?: PTOptions<ColumnPassThroughOptions>;
|
||||
/**
|
||||
* Used to configure passthrough(pt) options of the component.
|
||||
* @type {PassThroughOptions}
|
||||
*/
|
||||
ptOptions?: PassThroughOptions;
|
||||
/**
|
||||
* When enabled, it removes component related styles in the core.
|
||||
* @defaultValue false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue