mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +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/dataview/DataView.d.ts
vendored
10
components/lib/dataview/DataView.d.ts
vendored
|
@ -10,6 +10,7 @@
|
|||
import { VNode } from 'vue';
|
||||
import { ComponentHooks } from '../basecomponent';
|
||||
import { PaginatorPassThroughOptionType } from '../paginator';
|
||||
import { PassThroughOptions } from '../passthrough';
|
||||
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
|
||||
|
||||
export declare type DataViewPassThroughOptionType = DataViewPassThroughAttributes | ((options: DataViewPassThroughMethodOptions) => DataViewPassThroughAttributes | string) | string | null | undefined;
|
||||
|
@ -30,6 +31,10 @@ export interface DataViewPassThroughMethodOptions {
|
|||
* Defines current inline state.
|
||||
*/
|
||||
state: DataViewState;
|
||||
/**
|
||||
* Defines passthrough(pt) options in global config.
|
||||
*/
|
||||
global: object | undefined;
|
||||
}
|
||||
/**
|
||||
* Custom page event.
|
||||
|
@ -222,6 +227,11 @@ export interface DataViewProps {
|
|||
* @type {DataViewPassThroughOptions}
|
||||
*/
|
||||
pt?: PTOptions<DataViewPassThroughOptions>;
|
||||
/**
|
||||
* 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