Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update schema
  • Loading branch information
t-hamano committed Feb 11, 2024
commit 6e800639518523e896f118650e4ba494415171db
11 changes: 10 additions & 1 deletion schemas/json/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,16 @@
"shadow": {
"type": "boolean",
"description": "Allow blocks to define a box shadow.",
"default": false
"oneOf": [
{
"type": "boolean",
"description": "Defines whether a box shadow is enabled or not.",
"default": false
},
{
"type": "object"
}
]
},
"typography": {
"type": "object",
Expand Down