diff options
| author | Stephen Kraus <8003332+stephenmk@users.noreply.github.com> | 2024-01-27 03:12:29 -0600 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-27 09:12:29 +0000 | 
| commit | 1c258f7207faad0c1489fb24fb31694e32064914 (patch) | |
| tree | 5e00732b76f7d13572fa7a103d72e3b4cf25db7b /ext/data | |
| parent | 3c76b878e9ddcc8fa52d00fc85f561bbb72c5dd1 (diff) | |
Add border styling options for structured content images (#577)
* Add border styling options for structured content images
* Replace border style, width, and color properties with shorthand
---------
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 | 12 | 
1 files changed, 10 insertions, 2 deletions
diff --git a/ext/data/schemas/dictionary-term-bank-v3-schema.json b/ext/data/schemas/dictionary-term-bank-v3-schema.json index bcb1d5ed..f85f893b 100644 --- a/ext/data/schemas/dictionary-term-bank-v3-schema.json +++ b/ext/data/schemas/dictionary-term-bank-v3-schema.json @@ -152,7 +152,7 @@                                  },                                  "height": {                                      "type": "number", -                                    "description": "Preferred width of the image.", +                                    "description": "Preferred height of the image.",                                      "minimum": 0                                  },                                  "title": { @@ -204,6 +204,14 @@                                      "description": "The vertical alignment of the image.",                                      "enum": ["baseline", "sub", "super", "text-top", "text-bottom", "middle", "top", "bottom"]                                  }, +                                "border": { +                                    "type": "string", +                                    "description": "Shorthand for border width, style, and color." +                                }, +                                "borderRadius": { +                                    "type": "string", +                                    "description": "Roundness of the corners of the image's outer border edge." +                                },                                  "sizeUnits": {                                      "type": "string",                                      "description": "The units for the width and height.", @@ -485,7 +493,7 @@                                          },                                          "height": {                                              "type": "integer", -                                            "description": "Preferred width of the image.", +                                            "description": "Preferred height of the image.",                                              "minimum": 1                                          },                                          "title": {  |