{"version":3,"sources":["components/floating-menu/defs.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH;;GAEG;AACH,oBAAY,gCAAgC;IAC1C;;OAEG;IACH,GAAG,QAAQ;IAEX;;OAEG;IACH,GAAG,QAAQ;CACZ;AAED;;GAEG;AACH,oBAAY,uBAAuB;IACjC;;OAEG;IACH,KAAK,UAAU;IAEf;;OAEG;IACH,MAAM,WAAW;IAEjB;;OAEG;IACH,GAAG,QAAQ;CACZ;AAED;;GAEG;AACH,oBAAY,uBAAuB;IACjC;;OAEG;IACH,IAAI,SAAS;IAEb;;OAEG;IACH,GAAG,QAAQ;IAEX;;OAEG;IACH,KAAK,UAAU;IAEf;;OAEG;IACH,MAAM,WAAW;CAClB;AAED;;GAEG;AACH,oBAAY,6BAA6B;IACvC;;OAEG;IACH,UAAU,eAAe;IAEzB;;OAEG;IACH,QAAQ,aAAa;CACtB","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 LTR/RTL direction used for positioning floating menu.\n */\nexport enum FLOATING_MENU_POSITION_DIRECTION {\n  /**\n   * LTR.\n   */\n  LTR = 'ltr',\n\n  /**\n   * RTL.\n   */\n  RTL = 'rtl',\n}\n\n/**\n * The alignment choices of floating menu.\n */\nexport enum FLOATING_MENU_ALIGNMENT {\n  /**\n   * Align the top/left position menu body to the one of its trigger button.\n   */\n  START = 'start',\n\n  /**\n   * Align the center position menu body to the one of its trigger button.\n   */\n  CENTER = 'center',\n\n  /**\n   * Align the bottom/right position menu body to the one of its trigger button.\n   */\n  END = 'end',\n}\n\n/**\n * The direction/positioning/orientation choices of floating menu.\n */\nexport enum FLOATING_MENU_DIRECTION {\n  /**\n   * Put menu body at the left of its trigger button.\n   */\n  LEFT = 'left',\n\n  /**\n   * Put menu body at the top of its trigger button.\n   */\n  TOP = 'top',\n\n  /**\n   * Put menu body at the right of its trigger button.\n   */\n  RIGHT = 'right',\n\n  /**\n   * Put menu body at the bottom of its trigger button.\n   */\n  BOTTOM = 'bottom',\n}\n\n/**\n * The group of the direction/positioning/orientation choices of floating menu.\n */\nexport enum FLOATING_MENU_DIRECTION_GROUP {\n  /**\n   * Put menu body at the left/right of its trigger button.\n   */\n  HORIZONTAL = 'horizontal',\n\n  /**\n   * Put menu body at the top/bottom of its trigger button.\n   */\n  VERTICAL = 'vertical',\n}\n"]}