You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 252B

1234567891011
  1. /**
  2. * Mapping of tooltip positions to equivalent {@code AKInlineDialog} positions.
  3. *
  4. * @private
  5. */
  6. export const TOOLTIP_TO_POPUP_POSITION = {
  7. bottom: 'bottom center',
  8. left: 'left middle',
  9. top: 'top center',
  10. right: 'right middle'
  11. };