components.widgets.Table.cells.index.js Maven / Gradle / Ivy
The newest version!
// eslint-disable-next-line import/no-named-as-default
import TextCell from './TextCell/TextCell'
// eslint-disable-next-line import/no-named-as-default
import LinkCell from './LinkCell/LinkCell'
// eslint-disable-next-line import/no-named-as-default
import IconCell from './IconCell/IconCell'
// eslint-disable-next-line import/no-named-as-default
import ImageCell from './ImageCell/ImageCell'
import ProgressBarCell from './ProgressBarCell/ProgressBarCell'
import BadgeCell from './BadgeCell/BadgeCell'
// eslint-disable-next-line import/no-named-as-default
import CheckboxCell from './CheckboxCell/CheckboxCell'
import CollapsedCell from './CollapsedCell/CollapsedCell'
// eslint-disable-next-line import/no-named-as-default
import ButtonsCell from './ButtonsCell/ButtonsCell'
import { EditableCell } from './EditableCell'
// eslint-disable-next-line import/no-named-as-default
import RatingCell from './RatingCell/RatingCell'
import StatusCell from './StatusCell/StatusCell'
import SwitchCell from './SwitchCell/SwitchCell'
// eslint-disable-next-line import/no-named-as-default
import ListTextCell from './ListTextCell/ListTextCell'
import { FileUploadCell } from './FileUploadCell/FileUploadCell'
export default {
TextCell,
LinkCell,
IconCell,
ImageCell,
ProgressBarCell,
BadgeCell,
CheckboxCell,
CollapsedCell,
ButtonsCell,
EditableCell,
RatingCell,
StatusCell,
ListTextCell,
SwitchCell,
FileUploadCell,
}