-
I Would like to create a block using this API however i'm unsure if it's safe to do so? |
Beta Was this translation helpful? Give feedback.
Answered by
tyxla
Nov 6, 2024
Replies: 1 comment 2 replies
-
@xdrew760x did you ever get an answer about this? I'm looking to do the same. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@xdrew760x @cheestudio
__experimentalBlockVariationPicker
has been part of the WordPress core for a few years now, and for that time, its API hasn't really changed. That means that it's implicitly stable, and using it for your projects should be safe.You might want to keep an eye out for the
__experimental
name deprecation in the future, in which case it will renamed as part of the stable APIs (BlockVariationPicker
). When that happens, both__experimentalBlockVariationPicker
andBlockVariationPicker
will be valid usages for some time, giving y'all time to migrate your imports from__experimentalBlockVariationPicker
toBlockVariationPicker
.Hope that helps, but if you have any other quest…