- Install `@ember/legacy-built-in-components` and update our import statements to use it - Remove our custom attributeBinding extensions of `TextField` and `TextArea`. Modern ember 'angle bracket syntax' allows us to apply html attributes to a component's element without needing attributeBindings
15 lines
697 B
JavaScript
15 lines
697 B
JavaScript
globalThis.deprecationWorkflow = globalThis.deprecationWorkflow || {};
|
|
globalThis.deprecationWorkflow.config = {
|
|
// We're using RAISE_ON_DEPRECATION in environment.js instead of
|
|
// `throwOnUnhandled` here since it is easier to toggle.
|
|
workflow: [
|
|
{ handler: "silence", matchId: "implicit-injections" },
|
|
{ handler: "silence", matchId: "route-render-template" },
|
|
{ handler: "silence", matchId: "routing.transition-methods" },
|
|
{ handler: "silence", matchId: "route-disconnect-outlet" },
|
|
{ handler: "silence", matchId: "this-property-fallback" },
|
|
{ handler: "silence", matchId: "ember.globals-resolver" },
|
|
{ handler: "silence", matchId: "globals-resolver" },
|
|
],
|
|
};
|