Alex Lende
Alex Lende
> - [duotone.php](https://github.com/WordPress/gutenberg/commits/trunk/lib/block-supports/duotone.php) > - https://github.com/WordPress/gutenberg/pull/42020 > - https://github.com/WordPress/gutenberg/pull/39564 > - [class-wp-theme-json-6-1.php](https://github.com/WordPress/gutenberg/commits/trunk/lib/compat/wordpress-6.1/class-wp-theme-json-6-1.php) > - https://github.com/WordPress/gutenberg/pull/41335 I'm working on the duotone backports EDIT: duotone.php is done in https://github.com/WordPress/wordpress-develop/pull/3210 and I've talked...
I also just ran across this problem since I don't want tslib included at all in my build. I found that rollup-plugin-typescript2 [forces `importHelpers: true`](https://github.com/ezolenko/rollup-plugin-typescript2#some-compiler-options-are-forced) regardless of what is set...
@justingrant I did an experiment by editing rollup-plugin-typescript2 to force `importHelpers: false` to see what would happen, and the result was slightly different. ```js var __spreadArrays = (undefined && undefined.__spreadArrays)...
The exports should be named `__unstable*` too
@carstingaxion Can you share the full markup for the block? It can be copied from the block toolbar > options (⋮) > copy. Or from the code editor (`command +...
Thanks for the details @carstingaxion. I haven't been able to reproduce the issue yet. I'm testing with these versions. ``` WordPress: 6.4 Starscape: 2.0.0 Gutenberg: deactivated ``` What are you...
I haven't made much progress, but I found another instance of the error. Markup after inserting the block ```html Atlas A starscaped block theme. ``` Markup that got saved to...
I'll do a full review tomorrow, but one thing I was thinking about was how the duotone filter previously expected just the __experimentalDuotone supports string to enable it, but now...
I thought of another consideration that I haven't seen discussed yet. The post featured image block adds the placeholder selector to the list for duotone so the filter can be...
> What do people think of adding editor as a top-level property in the selectors object? @aaronrobertshaw I would prefer to not mix the block supports keys with a special...