mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Refactor #5681
This commit is contained in:
parent
57ed42cd0d
commit
c646fdc214
30 changed files with 64 additions and 64 deletions
4
components/lib/treetable/TreeTable.d.ts
vendored
4
components/lib/treetable/TreeTable.d.ts
vendored
|
@ -282,9 +282,9 @@ export interface TreeTablePassThroughOptions {
|
|||
*/
|
||||
footer?: TreeTablePassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the resize helper's DOM element.
|
||||
* Used to pass attributes to the column resize indicator's DOM element.
|
||||
*/
|
||||
resizeHelper?: TreeTablePassThroughOptionType;
|
||||
columnResizeIndicator?: TreeTablePassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the Column helper components.
|
||||
*/
|
||||
|
|
|
@ -163,7 +163,7 @@
|
|||
<div v-if="$slots.footer" :class="cx('footer')" v-bind="ptm('footer')">
|
||||
<slot name="footer"></slot>
|
||||
</div>
|
||||
<div ref="resizeHelper" :class="cx('columnResizeHelper')" style="display: none" v-bind="ptm('columnResizeHelper')"></div>
|
||||
<div ref="resizeHelper" :class="cx('columnResizeIndicator')" style="display: none" v-bind="ptm('columnResizeIndicator')"></div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -514,7 +514,7 @@ const classes = {
|
|||
}
|
||||
],
|
||||
footer: 'p-treetable-footer',
|
||||
columnResizeHelper: 'p-treetable-column-resize-indicator'
|
||||
columnResizeIndicator: 'p-treetable-column-resize-indicator'
|
||||
};
|
||||
|
||||
const inlineStyles = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue