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', }