aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-08-27 19:16:28 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-08-27 19:16:28 -0400
commitf00a5326fa331859db131bb1d8988db93602830b (patch)
treebf4f0a808581a1f17d8a4f851e0102f3b136f9a9 /src/client/documents/Documents.ts
parent79a93d357cf60657ac60971a0e6dab30d232028f (diff)
maxmatching algorithm
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index aecc79189..a4ba2978c 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -237,6 +237,9 @@ export class DocumentOptions {
dataViz?: string;
dataViz_savedTemplates?: LISTt;
+ borderWidth?: NUMt = new NumInfo('Width of user-added border', false);
+ borderColor?: STRt = new StrInfo('Color of user-added border', false);
+
layout?: string | Doc; // default layout string or template document
layout_isSvg?: BOOLt = new BoolInfo('whether document decorations and other selections should handle pointerEvents for svg content or use doc bounding box');
layout_keyValue?: STRt = new StrInfo('layout definition for showing keyValue view of document', false);
@@ -256,8 +259,6 @@ export class DocumentOptions {
layout_hideContextMenu?: BOOLt = new BoolInfo('whether the context menu can be shown');
layout_borderRounding?: string;
_layout_borderRounding?: STRt = new StrInfo('amount of rounding to document view corners');
- _layout_borderWidth?: NUMt = new NumInfo('Hey now', false);
- _layout_borderColor?: STRt = new StrInfo('No no', false);
_layout_modificationDate?: DATEt = new DateInfo('last modification date of doc layout', false);
_layout_nativeDimEditable?: BOOLt = new BoolInfo('native dimensions can be modified using document decoration reizers', false);
_layout_reflowVertical?: BOOLt = new BoolInfo('permit vertical resizing with content "reflow"');