UNPKG

@progress/kendo-react-grid

Version:
50 lines 1.36 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var PropTypes = require("prop-types"); /** * @hidden */ exports.GridColumn = function (_) { return null; }; /** * @hidden */ exports.GridColumn.displayName = 'KendoReactGridColumn'; /** * @hidden */ exports.GridColumn.defaultProps = { filterable: true, editable: true, sortable: true, resizable: true, reorderable: true, groupable: true }; /** * @hidden */ exports.GridColumn.propTypes = { field: PropTypes.string, title: PropTypes.string, editable: PropTypes.bool, sortable: PropTypes.bool, cell: PropTypes.any, filterCell: PropTypes.any, filterable: PropTypes.bool, filter: PropTypes.oneOf(['text', 'numeric', 'boolean', 'date']), editor: PropTypes.oneOf(['text', 'numeric', 'boolean', 'date']), width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), minResizableWidth: PropTypes.number, headerCell: PropTypes.any, headerSelectionValue: PropTypes.bool, format: PropTypes.string, headerClassName: PropTypes.string, className: PropTypes.string, reorderable: PropTypes.bool, resizable: PropTypes.bool, orderIndex: PropTypes.number, groupable: PropTypes.bool, columnMenu: PropTypes.any, locked: PropTypes.bool }; //# sourceMappingURL=GridColumn.js.map