UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

18 lines 618 B
import { VerticalAlign } from '../../../../enums/index.js'; import { DefaultFilterComponent } from '../FilterComponent/index.js'; import { Cell } from './Cell.js'; import { Expandable } from './Expandable.js'; import { Grouped } from './Grouped.js'; import { PopIn } from './PopIn.js'; import { RepeatedValue } from './RepeatedValue.js'; export const DEFAULT_COLUMN_WIDTH = 60; export const DefaultColumn = { Filter: DefaultFilterComponent, minWidth: DEFAULT_COLUMN_WIDTH, vAlign: VerticalAlign.Middle, Grouped: Grouped, Cell: Cell, Expandable: Expandable, RepeatedValue: RepeatedValue, PopIn: PopIn };