@progress/kendo-vue-grid
Version:
31 lines (30 loc) • 1 kB
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { defineComponent as t, createVNode as r, mergeProps as d } from "vue";
import { KEYBOARD_NAV_DATA_ID as i } from "@progress/kendo-vue-data-tools";
import { getDefaultSlots as n, classNames as e, uGrid as a } from "@progress/kendo-vue-common";
const l = /* @__PURE__ */ t({
name: "GridNoRecordsContainer",
props: {
id: String
},
render() {
const s = n(this), o = a;
return r("div", {
key: "no-records",
class: e(o.noRecords({}))
}, [r("div", d({
class: e(o.noRecordsTemplate({}))
}, {
[i]: this.$props.id
}), [s])]);
}
});
export {
l as GridNoRecordsContainer
};