@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
18 lines • 471 B
JavaScript
export const TAB_ALIGN_MAPPING = {
vertical: 'column',
horizontal: 'row',
'vertical-reverse': 'column-reverse',
'horizontal-reverse': 'row-reverse'
};
export const TAB_DIRECTION_MAPPING = {
vertical: 'column',
horizontal: 'row',
'vertical-reverse': 'column',
'horizontal-reverse': 'row'
};
export const TAB_POPUP_POSITION_MAPPING = {
vertical: 'bottomLeft',
horizontal: 'rightTop',
'vertical-reverse': 'topLeft',
'horizontal-reverse': 'leftTop'
};