You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bind multiple attributes to a single source. Example: Bind Image block’s url, alt, title attributes to post’s featured image (exposed via core/post-data source).
Try binding a block that requires a “repeater” concept. Example: Bind Gallery block to list of images.
Streamline the API based on recurring usage patterns in getValues and getFieldsList.
Examples include passing more arguments to them (e.g. block name, attributes); or providing additional ways for a block source to communicate that it will not expose and source items for a given block, attribute, or other context. (Things that are currently done by e.g. returning [] from getFieldsList, based on certain criteria.)
Remove requirement to define a block bindings source both on the server and client side. Instead, allow server-side only definition, and communicate to the client. See this comment, bullet point 4, for a suggestion how to do this.