diff options
author | bobzel <zzzman@gmail.com> | 2020-08-15 16:02:22 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-15 16:02:22 -0400 |
commit | e9f8804a68327c64e1ade13081cab0b3b6c0ce21 (patch) | |
tree | f220c8f94bc107cc0a3435c3f93ba8c7da96e333 /src/client/documents/Documents.ts | |
parent | 44df6420f1e4a7b77ad3ce6dfe2805dfe40a69da (diff) |
fixes for search -- need to rethink how to get a sortable string field (removed _s suffix for now).
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 77f8d3d50..e69c53260 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -185,6 +185,7 @@ export interface DocumentOptions { targetContainer?: Doc; // document whose proto will be set to 'panel' as the result of a onClick click script searchFileTypes?: List<string>; // file types allowed in a search query strokeWidth?: number; + cloneFieldFilter?: List<string>; // fields not to copy when the document is cloned _stayInCollection?: boolean;// whether the document should remain in its collection when someone tries to drag and drop it elsewhere treeViewPreventOpen?: boolean; // ignores the treeViewOpen Doc flag which allows a treeViewItem's expand/collapse state to be independent of other views of the same document in the tree view treeViewHideTitle?: boolean; // whether to hide the title of a tree view |