mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Fixed #4818 - Remove primeflex dependency from DataView
This commit is contained in:
parent
3231777755
commit
2026bb75e4
12 changed files with 690 additions and 661 deletions
28
components/lib/dataview/DataView.d.ts
vendored
28
components/lib/dataview/DataView.d.ts
vendored
|
@ -81,14 +81,6 @@ export interface DataViewPassThroughOptions {
|
|||
* Used to pass attributes to the content's DOM element.
|
||||
*/
|
||||
content?: DataViewPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the grid's DOM element.
|
||||
*/
|
||||
grid?: DataViewPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the column's DOM element.
|
||||
*/
|
||||
column?: DataViewPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the empty message's DOM element.
|
||||
*/
|
||||
|
@ -253,8 +245,14 @@ export interface DataViewSlots {
|
|||
footer(): VNode[];
|
||||
/**
|
||||
* Custom empty template.
|
||||
* @param {Object} scope - empty slot's params.
|
||||
*/
|
||||
empty(): VNode[];
|
||||
empty(scope: {
|
||||
/**
|
||||
* Layout of the items.
|
||||
*/
|
||||
layout?: string | undefined;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom paginator start template.
|
||||
*/
|
||||
|
@ -271,11 +269,7 @@ export interface DataViewSlots {
|
|||
/**
|
||||
* Value of the component
|
||||
*/
|
||||
data: any;
|
||||
/**
|
||||
* Index of the grid
|
||||
*/
|
||||
index: number;
|
||||
items: any;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom list template.
|
||||
|
@ -285,11 +279,7 @@ export interface DataViewSlots {
|
|||
/**
|
||||
* Value of the component
|
||||
*/
|
||||
data: any;
|
||||
/**
|
||||
* Index of the grid
|
||||
*/
|
||||
index: number;
|
||||
items: any;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue