react-beautiful-dnd
Version:
Beautiful, accessible drag and drop for lists with React.js
28 lines (26 loc) • 530 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var vertical = exports.vertical = {
direction: 'vertical',
line: 'y',
crossLine: 'x',
start: 'top',
end: 'bottom',
size: 'height',
crossAxisStart: 'left',
crossAxisEnd: 'right',
crossAxisSize: 'width'
};
var horizontal = exports.horizontal = {
direction: 'horizontal',
line: 'x',
crossLine: 'y',
start: 'left',
end: 'right',
size: 'width',
crossAxisStart: 'top',
crossAxisEnd: 'bottom',
crossAxisSize: 'height'
};