diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-11 15:59:14 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-11 15:59:14 -0400 |
commit | 7afce5c0ba803b66f3b8c6722f25604290abc1c1 (patch) | |
tree | 11b542549128a706d25efddb224bb50becb87186 /src/new_fields/documentSchemas.ts | |
parent | 5f52671adb7a3ba078230b11b4a03da4d84e37ff (diff) |
fixed deiconifying things. fixed interactions with backgrounds to allow their content to be active. added overflow flag for collection freeforms.
Diffstat (limited to 'src/new_fields/documentSchemas.ts')
-rw-r--r-- | src/new_fields/documentSchemas.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/new_fields/documentSchemas.ts b/src/new_fields/documentSchemas.ts index a640862f3..b11941f40 100644 --- a/src/new_fields/documentSchemas.ts +++ b/src/new_fields/documentSchemas.ts @@ -33,6 +33,7 @@ export const documentSchema = createSchema({ color: "string", // foreground color of document backgroundColor: "string", // background color of document opacity: "number", // opacity of document + overflow: "string", // sets overflow behvavior for CollectionFreeForm views creationDate: DateField, // when the document was created links: listSpec(Doc), // computed (readonly) list of links associated with this document onClick: ScriptField, // script to run when document is clicked (can be overriden by an onClick prop) |