Greg Ziółkowski
Greg Ziółkowski
We are discussing exactly the same problem in Gutenberg: - https://github.com/WordPress/gutenberg/issues/64870 The initial idea was to use a more declarative approach and mark bindable attributes explicitly: - https://github.com/WordPress/gutenberg/issues/64756 In the...
New block API for attributes [`role: content`](https://github.com/WordPress/gutenberg/pull/65484) landed and will be included in WordPress 6.7. It lets us use it to enable bindings for every attribute that is annotated with...
> I am confused by > > > limitation to wait on the HTML API > > I thought the HTML API was stable and released back [in WP 6.2](https://make.wordpress.org/core/2023/03/07/introducing-the-html-api-in-wordpress-6-2/)?...
Thank you for the clarification, @mtias. `__experimentalRole` is not documented, so it’s open to interpretation. In that case, I would be in favor of gradually promoting `__experimentalRole` to `role` and...
I see that @getdave is working on making the `role` property stable: - https://github.com/WordPress/gutenberg/pull/65484 Great timing. I’ll see if we can connect that change with ensuring it’s used as an...
@ockham landed in WP Core changes that allow filtering which attributes are bindable: - https://github.com/WordPress/wordpress-develop/pull/9392 In effect, it's becoming possible to automatically set the value of a bindable attribute before...
> this was review as part 6.9 bug scrub. Will this be picked up for 6.9? @ockham is actively working on a task that potentially allows filtering on the server...
@ockham might know best, but my understanding is that it still needs some refactors because Pattern Overrides on the client maintain their own allow list for block types and its...
@paaljoachim, as explained in my response to your comment on a linked post, it's a more complex process to enable the block editor on a new screen that using a...
A few notes, when having: ```html Default content ``` This will still render `Default content` on the frontend, so when the source isn't recognized we should show the fallback. In...