aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/StyleProp.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/StyleProp.ts')
-rw-r--r--src/client/views/StyleProp.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/views/StyleProp.ts b/src/client/views/StyleProp.ts
index dd5b98cfe..1ef7a9e1f 100644
--- a/src/client/views/StyleProp.ts
+++ b/src/client/views/StyleProp.ts
@@ -5,6 +5,7 @@ export enum StyleProp {
Opacity = 'opacity', // opacity of the document view
BoxShadow = 'boxShadow', // box shadow - used for making collections standout and for showing clusters in free form views
BorderRounding = 'borderRounding', // border radius of the document view
+ Border = 'border', // border of document view
Color = 'color', // foreground color of Document view items
BackgroundColor = 'backgroundColor', // background color of a document view
FillColor = 'fillColor', // fill color of an ink stroke or shape
@@ -19,6 +20,10 @@ export enum StyleProp {
FontColor = 'fontColor', // color o tet
FontSize = 'fontSize', // size of text font
FontFamily = 'fontFamily', // font family of text
- FontWeight = 'fontWeight', // font weight of text
+ FontWeight = 'fontWeight', // font weight of text (eg bold)
+ FontStyle = 'fontStyle', // font style of text (eg italic)
+ FontDecoration = 'fontDecoration', // text decoration of text (eg underline)
Highlighting = 'highlighting', // border highlighting
+ ContextMenuItems = 'contextMenuItems', // menu items to add to context menu
+ AnchorMenuItems = 'anchorMenuItems',
}