diff options
author | Sam Wilkins <abdullah_ahmed@brown.edu> | 2019-07-23 19:17:03 -0400 |
---|---|---|
committer | Sam Wilkins <abdullah_ahmed@brown.edu> | 2019-07-23 19:17:03 -0400 |
commit | 6bf6c34a4c3643a2ee438e49e10267de15e431e7 (patch) | |
tree | 7ebe5d864cbedd07b8f73074ce5f8e140e8733e6 /src/client/documents/Documents.ts | |
parent | 0ef6d9b5a3f90552562f4a6392967887d8805cc3 (diff) | |
parent | 0ebcadb80a89e7fe4f8f2a8a47570b19fd2f8711 (diff) |
merge
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 7563fda20..a419aed54 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -410,6 +410,10 @@ export namespace Docs { return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { schemaColumns: new List(["title"]), ...options, viewType: CollectionViewType.Stacking }); } + export function MasonryDocument(documents: Array<Doc>, options: DocumentOptions) { + return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { schemaColumns: new List(["title"]), ...options, viewType: CollectionViewType.Masonry }); + } + export function DockDocument(documents: Array<Doc>, config: string, options: DocumentOptions, id?: string) { return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { ...options, viewType: CollectionViewType.Docking, dockingConfig: config }, id); } |