aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocumentView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-12-11 21:08:01 -0500
committerbobzel <zzzman@gmail.com>2020-12-11 21:08:01 -0500
commit00d859f5c334fa105e3f6d572b74cb04fa9dd026 (patch)
tree54968cb294809dadcdc3ad8b47f4ebcc9f442bd0 /src/client/views/nodes/DocumentView.tsx
parentf923f3a3954b9e25a94970bc161cca8ec9800cef (diff)
more documentViewProps cleanup. fixed embedding documents into treeView / slide bullet items.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r--src/client/views/nodes/DocumentView.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx
index 65779088f..1b1870f81 100644
--- a/src/client/views/nodes/DocumentView.tsx
+++ b/src/client/views/nodes/DocumentView.tsx
@@ -87,19 +87,17 @@ export interface DocumentViewSharedProps {
export interface DocumentViewProps extends DocumentViewSharedProps {
// properties specific to DocumentViews but not to FieldView
freezeDimensions?: boolean;
- hideTitle?: boolean;
+ hideTitle?: boolean; // forces suppression of title. e.g, treeView document labels suppress titles in case they are globally active via settings
fitToBox?: boolean;
treeViewDoc?: Doc;
dragDivName?: string;
contentPointerEvents?: string;
radialMenu?: String[];
- relative?: boolean;
LayoutTemplate?: () => Opt<Doc>;
contextMenuItems?: () => { script: ScriptField, label: string }[];
onDoubleClick?: () => ScriptField;
onPointerDown?: () => ScriptField;
onPointerUp?: () => ScriptField;
- setupDragLines?: (snapToDraggedDoc: boolean) => void;
}
@observer