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
|
export enum OpenWhereMod {
none = '',
left = 'left',
right = 'right',
top = 'top',
bottom = 'bottom',
keyvalue = 'keyValue',
always = 'always', // forces the open location (lightbox) instead of using an existing open view (see DocumentDecorations)
}
export enum OpenWhere {
lightbox = 'lightbox',
lightboxAlways = 'lightbox:always',
add = 'add',
addLeft = 'add:left',
addRight = 'add:right',
addBottom = 'add:bottom',
close = 'close',
toggle = 'toggle',
toggleRight = 'toggle:right',
replace = 'replace',
replaceRight = 'replace:right',
replaceLeft = 'replace:left',
inParent = 'inParent',
inParentFromScreen = 'inParentFromScreen',
overlay = 'overlay',
addRightKeyvalue = 'add:right:keyValue',
}
|