-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: hide invisible blocks * fix: change sections settings * feat: add object to descriptors for pagebuilder * feat: builder templates changes
- Loading branch information
Showing
12 changed files
with
505 additions
and
87 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
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
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,31 @@ | ||
{ | ||
"settings": [ | ||
{ | ||
"id": "caption", | ||
"type": "string", | ||
"label": "Caption" | ||
}, | ||
{ | ||
"id": "action", | ||
"type": "select", | ||
"label": "onClick action", | ||
"default": "popup", | ||
"options": [ | ||
{ | ||
"label": "Show popup", | ||
"value": "popup" | ||
}, | ||
{ | ||
"label": "Go to link", | ||
"value": "url" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "url", | ||
"type": "string", | ||
"label": "Enter link", | ||
"visibility": "!!this.item && this.item.action === 'url'" | ||
} | ||
] | ||
} |
Oops, something went wrong.