@progress/kendo-react-treelist
Version:
React TreeList enables the display of self-referencing tabular data. KendoReact TreeList package
25 lines (24 loc) • 817 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 * as e from "react";
import { guid as t } from "@progress/kendo-react-common";
import { HeaderSelectionCell as r } from "@progress/kendo-react-data-tools";
class s extends e.Component {
constructor() {
super(...arguments), this._inputId = t();
}
/**
* @hidden
*/
render() {
return /* @__PURE__ */ e.createElement(r, { inputId: this._inputId, ...this.props });
}
}
export {
s as TreeListHeaderSelectionCell
};