選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. };