-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add responsive-layout autocomplete (#28)
- Loading branch information
1 parent
2f8a047
commit 9adb7be
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Responsive Layout", | ||
"description": "Responsive-layout allows you to declare layout structures that will only be rendered in a specific screen-size breakpoint.", | ||
"type": "object", | ||
"properties": { | ||
"children": { | ||
"title": "Block's chindren", | ||
"type": "array", | ||
"items": { "$ref": "./../shared/block.schema.json" } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters