1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| /**
| * List of accepted placements to use as values of the `placement` option.<br />
| * Valid placements are:
| * - `auto`
| * - `top`
| * - `right`
| * - `bottom`
| * - `left`
| *
| * Each placement can have a variation from this list:
| * - `-start`
| * - `-end`
| *
| * Variations are interpreted easily if you think of them as the left to right
| * written languages. Horizontally (`top` and `bottom`), `start` is left and `end`
| * is right.<br />
| * Vertically (`left` and `right`), `start` is top and `end` is bottom.
| *
| * Some valid examples are:
| * - `top-end` (on top of reference, right aligned)
| * - `right-start` (on right of reference, top aligned)
| * - `bottom` (on bottom, centered)
| * - `auto-end` (on the side with more space available, alignment depends by placement)
| *
| * @static
| * @type {Array}
| * @enum {String}
| * @readonly
| * @method placements
| * @memberof Popper
| */
| export default [
| 'auto-start',
| 'auto',
| 'auto-end',
| 'top-start',
| 'top',
| 'top-end',
| 'right-start',
| 'right',
| 'right-end',
| 'bottom-end',
| 'bottom',
| 'bottom-start',
| 'left-end',
| 'left',
| 'left-start',
| ];
|
|