@progress/kendo-vue-data-tools
Version:
33 lines (32 loc) • 972 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 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 o } from "vue";
import { getDefaultSlots as n } from "@progress/kendo-vue-common";
import { Reveal as r } from "@progress/kendo-vue-animation";
const i = /* @__PURE__ */ t({
props: {
show: Boolean
},
render() {
const e = n(this);
return o("div", {
class: "k-columnmenu-item-content"
}, [o(r, {
appear: this.$props.show,
style: {
position: "relative",
display: "block"
}
}, {
default: () => [this.$props.show ? e : null]
})]);
}
});
export {
i as ColumnMenuItemContent
};