ffr-components
Version:
Fiori styled UI components
25 lines • 534 B
JavaScript
export var POPPER_PLACEMENTS = {
bottomStart: 'bottom-start',
bottom: 'bottom',
bottomEnd: 'bottom-end',
leftStart: 'left-start',
left: 'left',
leftEnd: 'left-end',
rightStart: 'right-start',
right: 'right',
rightEnd: 'right-end',
topStart: 'top-start',
top: 'top',
topEnd: 'top-end'
};
export var defaultPopperModifiers = {
preventOverflow: {
enabled: true,
escapeWithReference: false,
boundariesElement: 'scrollParent'
},
computeStyle: {
enabled: true,
gpuAcceleration: false
}
};