UNPKG

@progress/kendo-vue-grid

Version:
9 lines (8 loc) 998 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("vue"),t=require("../utils/main.js"),l=require("./FooterCell.js"),s=o.defineComponent({name:"FooterRow",props:{isRtl:Boolean,columns:Array,rowIndex:Number,cells:Object},render(){return o.createVNode("tr",{class:"k-table-row",role:"row","aria-rowIndex":this.$props.rowIndex},[t.footerColumns(this.$props.columns).map((e,r)=>o.createVNode(l.FooterCell,{key:e.field||e.title||`footer-cell-${r}`,column:e,columnIndex:r,isRtl:this.$props.isRtl,rowIndex:this.$props.rowIndex,cells:this.$props.cells},null))])}});exports.FooterRow=s;