diff options
author | bobzel <zzzman@gmail.com> | 2021-04-11 12:18:18 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-04-11 12:18:18 -0400 |
commit | 6accc320ae70c6607e67a1befe37f5712b092c02 (patch) | |
tree | 62368d2f8699aa03d23b16c99ae38ef54f735148 /src/client/views/collections/CollectionView.tsx | |
parent | 79171e0275b45393cc56f54955c0056920ab2c40 (diff) |
added childDocumentsActive prop to avoid hardwiring reference to "starburst" in freeformview.
Diffstat (limited to 'src/client/views/collections/CollectionView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx index 4dc0ee3e6..85ae66fdc 100644 --- a/src/client/views/collections/CollectionView.tsx +++ b/src/client/views/collections/CollectionView.tsx @@ -66,6 +66,7 @@ export interface CollectionViewProps extends FieldViewProps { // property overrides for child documents children?: never | (() => JSX.Element[]) | React.ReactNode; childDocuments?: Doc[]; // used to override the documents shown by the sub collection to an explicit list (see LinkBox) + childDocumentsActive?: () => boolean;// whether child documents can be dragged if collection can be dragged (eg., in a when a Pile document is in startburst mode) childFitWidth?: () => boolean; childOpacity?: () => number; childHideTitle?: () => boolean; // whether to hide the documentdecorations title for children |