{"version":3,"sources":["components/tooltip/defs.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH;;GAEG;AACH,oBAAY,iBAAiB;IAC3B;;OAEG;IACH,KAAK,UAAU;IAEf;;OAEG;IACH,MAAM,WAAW;IAEjB;;OAEG;IACH,GAAG,QAAQ;CACZ;AAED;;GAEG;AACH,oBAAY,iBAAiB;IAC3B;;OAEG;IACH,IAAI,SAAS;IAEb;;OAEG;IACH,GAAG,QAAQ;IAEX;;OAEG;IACH,KAAK,UAAU;IAEf;;OAEG;IACH,MAAM,WAAW;CAClB","file":"defs.d.ts","sourcesContent":["/**\n * @license\n *\n * Copyright IBM Corp. 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n/**\n * The alignment choices of tooltip.\n */\nexport enum TOOLTIP_ALIGNMENT {\n  /**\n   * Align the top/left position tooltip body to the one of its trigger button.\n   */\n  START = 'start',\n\n  /**\n   * Align the center position tooltip body to the one of its trigger button.\n   */\n  CENTER = 'center',\n\n  /**\n   * Align the bottom/right position tooltip body to the one of its trigger button.\n   */\n  END = 'end',\n}\n\n/**\n * The direction/positioning/orientation choices of tooltip.\n */\nexport enum TOOLTIP_DIRECTION {\n  /**\n   * Put tooltip body at the left of its trigger button.\n   */\n  LEFT = 'left',\n\n  /**\n   * Put tooltip body at the top of its trigger button.\n   */\n  TOP = 'top',\n\n  /**\n   * Put tooltip body at the right of its trigger button.\n   */\n  RIGHT = 'right',\n\n  /**\n   * Put tooltip body at the bottom of its trigger button.\n   */\n  BOTTOM = 'bottom',\n}\n"]}