mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Refactor #4231 - For DataTable
This commit is contained in:
parent
b371f0e248
commit
3c81f59ab2
2 changed files with 6 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
||||||
<component :is="filterClearIconTemplate || 'FilterSlashIcon'" v-bind="getColumnPT('filterClearIcon')" />
|
<component :is="filterClearIconTemplate || 'FilterSlashIcon'" v-bind="getColumnPT('filterClearIcon')" />
|
||||||
</button>
|
</button>
|
||||||
<Portal>
|
<Portal>
|
||||||
<transition name="p-connected-overlay" @enter="onOverlayEnter" @leave="onOverlayLeave" @after-leave="onOverlayAfterLeave">
|
<transition name="p-connected-overlay" @enter="onOverlayEnter" @leave="onOverlayLeave" @after-leave="onOverlayAfterLeave" v-bind="getColumnPT('transition')">
|
||||||
<div
|
<div
|
||||||
v-if="overlayVisible"
|
v-if="overlayVisible"
|
||||||
:ref="overlayRef"
|
:ref="overlayRef"
|
||||||
|
|
6
components/lib/datatable/DataTable.d.ts
vendored
6
components/lib/datatable/DataTable.d.ts
vendored
|
@ -622,7 +622,7 @@ export interface DataTablePassThroughOptions {
|
||||||
*/
|
*/
|
||||||
tfoot?: DataTablePassThroughOptionType;
|
tfoot?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footerr ow's DOM element.
|
* Used to pass attributes to the footer row's DOM element.
|
||||||
*/
|
*/
|
||||||
footerRow?: DataTablePassThroughOptionType;
|
footerRow?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -654,6 +654,10 @@ export interface DataTablePassThroughOptions {
|
||||||
* @see {@link BaseComponent.ComponentHooks}
|
* @see {@link BaseComponent.ComponentHooks}
|
||||||
*/
|
*/
|
||||||
hooks?: ComponentHooks;
|
hooks?: ComponentHooks;
|
||||||
|
/**
|
||||||
|
* Used to control Vue Transition API.
|
||||||
|
*/
|
||||||
|
transition?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue