UNPKG

@talend/react-components

Version:
21 lines (20 loc) 722 B
import { defaultColumnConfiguration } from '../Content.component'; import CellBoolean, { DISPLAY_MODE } from './CellBoolean.component'; import { jsx as _jsx } from "react/jsx-runtime"; export const cellType = 'texticon'; export const booleanColumnConfiguration = { cellRenderer: props => /*#__PURE__*/_jsx(CellBoolean, { ...props }) }; // this is a fake component to be usable in JSX, // but the element is used as props object internally (VirtualizedList / RV) export default function BooleanColumn() { return null; } BooleanColumn.displayMode = DISPLAY_MODE; BooleanColumn.defaultProps = { ...defaultColumnConfiguration, ...booleanColumnConfiguration }; //# sourceMappingURL=BooleanColumn.component.js.map