diff options
author | Stephen Kraus <8003332+stephenmk@users.noreply.github.com> | 2024-01-31 07:23:57 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 13:23:57 +0000 |
commit | 6807b05e9bd41f013364fae0cbcce83cf1ed37b6 (patch) | |
tree | 87df463a395c587293acda19e17ea584ee440d10 /ext/data | |
parent | 8f48d40f7cffc8a0c6f0401dbfc1f3b0422ec21b (diff) |
Allow `clip-path`, `background`, `text-emphasis` styles in structured content (#556)
* Allow `clip-path` and `background` styles in structured content
* Allow `text-emphasis` style in structured content
---------
Co-authored-by: stephenmk <stephenmk@users.noreply.github.com>
Diffstat (limited to 'ext/data')
-rw-r--r-- | ext/data/schemas/dictionary-term-bank-v3-schema.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/data/schemas/dictionary-term-bank-v3-schema.json b/ext/data/schemas/dictionary-term-bank-v3-schema.json index f85f893b..77df3071 100644 --- a/ext/data/schemas/dictionary-term-bank-v3-schema.json +++ b/ext/data/schemas/dictionary-term-bank-v3-schema.json @@ -278,6 +278,9 @@ "color": { "type": "string" }, + "background": { + "type": "string" + }, "backgroundColor": { "type": "string" }, @@ -318,6 +321,9 @@ "borderWidth": { "type": "string" }, + "clipPath": { + "type": "string" + }, "verticalAlign": { "type": "string", "enum": ["baseline", "sub", "super", "text-top", "text-bottom", "middle", "top", "bottom"], @@ -328,6 +334,9 @@ "enum": ["start", "end", "left", "right", "center", "justify", "justify-all", "match-parent"], "default": "start" }, + "textEmphasis": { + "type": "string" + }, "textShadow": { "type": "string" }, |