This commit is contained in:
tugcekucukoglu 2024-05-06 16:10:13 +03:00
parent 57ed42cd0d
commit c646fdc214
30 changed files with 64 additions and 64 deletions

View file

@ -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.
*/

View file

@ -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>

View file

@ -514,7 +514,7 @@ const classes = {
}
],
footer: 'p-treetable-footer',
columnResizeHelper: 'p-treetable-column-resize-indicator'
columnResizeIndicator: 'p-treetable-column-resize-indicator'
};
const inlineStyles = {