mirror of
https://github.com/discourse/discourse.git
synced 2024-12-24 21:45:58 +08:00
3019bb577b
This commit modernizes the post menu by migrating it from the existing widget-based implementation to Glimmer components. This transition aims to improve the maintainability, performance, and overall developer experience. It also introduces a new DAG-based transformer API for customizations that aims to be more flexible than the widget base one. --------- Co-authored-by: David Taylor <david@taylorhq.com>
23 lines
546 B
JavaScript
23 lines
546 B
JavaScript
const DEPRECATION_WORKFLOW = [
|
|
{
|
|
handler: "silence",
|
|
matchId: "ember-this-fallback.this-property-fallback",
|
|
},
|
|
{ handler: "silence", matchId: "discourse.select-kit" },
|
|
{ handler: "silence", matchId: "discourse.d-section" },
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.decorate-widget.hamburger-widget-links",
|
|
},
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.fontawesome-6-upgrade",
|
|
},
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.post-menu-widget-overrides",
|
|
},
|
|
];
|
|
|
|
export default DEPRECATION_WORKFLOW;
|