handsontable
Version:
Handsontable is a JavaScript Spreadsheet Component available for React, Angular and Vue.
33 lines (29 loc) • 1.09 kB
JavaScript
;
exports.__esModule = true;
exports.WORKING_SPACE_TOP = exports.WORKING_SPACE_BOTTOM = exports.WORKING_SPACE_ALL = void 0;
/**
* Describes that ViewSizeSet instance doesn't share sizes with another
* instance (root node can contain only one type of children nodes).
*
* @type {number}
*/
var WORKING_SPACE_ALL = 0;
/**
* Describes that ViewSizeSet instance share sizes with another instance and
* set working space for this instance to 'top' (root node can contain multiple
* types of children and this instance will be occupied top space of the root node).
*
* @type {number}
*/
exports.WORKING_SPACE_ALL = WORKING_SPACE_ALL;
var WORKING_SPACE_TOP = 1;
/**
* Describes that ViewSizeSet instance share sizes with another instance and
* set working space for this instance to 'bottom' (root node can contain multiple
* types of children and this instance will be occupied bottom space of the root node).
*
* @type {number}
*/
exports.WORKING_SPACE_TOP = WORKING_SPACE_TOP;
var WORKING_SPACE_BOTTOM = 2;
exports.WORKING_SPACE_BOTTOM = WORKING_SPACE_BOTTOM;