@zohodesk/components
Version:
Dot UI is a customizable React component library built to deliver a clean, accessible, and developer-friendly UI experience. It offers a growing set of reusable components designed to align with modern design systems and streamline application development
27 lines (26 loc) • 796 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TAB_POPUP_POSITION_MAPPING = exports.TAB_DIRECTION_MAPPING = exports.TAB_ALIGN_MAPPING = void 0;
var TAB_ALIGN_MAPPING = {
vertical: 'column',
horizontal: 'row',
'vertical-reverse': 'column-reverse',
'horizontal-reverse': 'row-reverse'
};
exports.TAB_ALIGN_MAPPING = TAB_ALIGN_MAPPING;
var TAB_DIRECTION_MAPPING = {
vertical: 'column',
horizontal: 'row',
'vertical-reverse': 'column',
'horizontal-reverse': 'row'
};
exports.TAB_DIRECTION_MAPPING = TAB_DIRECTION_MAPPING;
var TAB_POPUP_POSITION_MAPPING = {
vertical: 'bottomLeft',
horizontal: 'rightTop',
'vertical-reverse': 'topLeft',
'horizontal-reverse': 'leftTop'
};
exports.TAB_POPUP_POSITION_MAPPING = TAB_POPUP_POSITION_MAPPING;