type EditionToolbarPosition = 'top' | 'bottom';
type EditionToolbarAlignment = 'left' | 'center' | 'right';
type RowStatus = 'Read' | 'Modified' | 'Deleted' | 'Editing';
enum ErrorType {
MIN = 'min',
MAX = 'max',
REQUIRED = 'required',
REQUIRED_TRUE = 'required',
EMAIL = 'email',
MIN_LENGTH = 'minlength',
MAX_LENGTH = 'maxlength',
PATTERN = 'pattern'
}