miguelcobain / ember-paper

The Ember approach to Material Design.
http://miguelcobain.github.io/ember-paper
MIT License
889 stars 332 forks source link

Convert PaperGridList to native class syntax #1220

Closed mansona closed 2 years ago

mansona commented 2 years ago

Hey folks 👋 I'm still aiming to remove as many deprecations as I can, and my next target is to try to upgrade the ember-composability-tools dependency

But before I do that I need to convert each of the components that use it to glimmer components. I'm doing that step by step and trying to keep the change as small as possible.

This PR introduces ember-classic-decorator to try to keep the PR diff as small as possible. This was recommended by the lining setup to prevent me from needing to convert all this.get() and this.set() calls in this PR (making it harder to follow)

I had originally used ember-classic-decorator since that's what the lint message suggested, but it seemed to break in earlier Ember versions so I just dropped it and ignored the lint error (temporarily) 👍 quick reminder that we have a PR to setup the lint-to-the-future dashboard to keep track of these temporary ignores ;) https://github.com/miguelcobain/ember-paper/pull/1215