-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AlignmentMatrixControl: Promote to stable #60913
Changes from all commits
a343a69
8498e5b
567b352
879e20a
426612b
9a13dc7
6c062f6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,11 @@ export { | |
} from '@wordpress/primitives'; | ||
|
||
// Components. | ||
export { default as __experimentalAlignmentMatrixControl } from './alignment-matrix-control'; | ||
export { | ||
/** @deprecated Import `AlignmentMatrixControl` instead. */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we plan on adding a deprecation warning in a follow-up once all instances are migrated, or are we keeping it "soft deprecated" for now? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm thinking we can decide on a per-component basis, using reasoning from #61099. Maybe we'll want to do a more aggressive cleanup in the future, but I don't think it's a pressing need for the moment. I'm anticipating most of these to be passive deprecations. |
||
default as __experimentalAlignmentMatrixControl, | ||
default as AlignmentMatrixControl, | ||
} from './alignment-matrix-control'; | ||
export { | ||
default as Animate, | ||
getAnimateClassName as __unstableGetAnimateClassName, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
<script> | ||
( function redirectIfStoryMoved() { | ||
const PREVIOUSLY_EXPERIMENTAL_COMPONENTS = [ | ||
'navigation', | ||
'alignmentmatrixcontrol', | ||
'customselectcontrol-v2', | ||
'theme', | ||
'navigation', | ||
'progressbar', | ||
'theme', | ||
Comment on lines
+4
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorted alphabetically |
||
]; | ||
const REDIRECTS = [ | ||
{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍