Select-kit was mutating a passed-in options hash to apply its own deprecations. This commit updates it to apply deprecated changes to the downstream `this.selectKit.options` object instead.
18 lines
896 B
JavaScript
18 lines
896 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: "ember-global" },
|
|
{ handler: "silence", matchId: "ember.built-in-components.reopen" },
|
|
{ handler: "silence", matchId: "ember.built-in-components.import" },
|
|
{ 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" },
|
|
],
|
|
};
|