Cosmin Stamate
Cosmin Stamate
I have the following use-case: I created a validation mixin that is then mixed in with multiple control components, that do various things. I'd like to validate the value in...
Would it be possible to use this plugin with the Qunit framework, which lacks the `it` function? I'm looking to do snap shot testing in Ember, which uses Qunit. Ember...
This PR adds information in the yielded block whether the block is rendered in the trigger or in the dropdown, to allow for different logic in those places. My use...
This PR fixes #164. Adding the `emptyThickness` parameter caused some issues when the empty arc was thicker than the full one (the empty arc had parts rendered outside the canvas),...
Would it be possible to have a different thickness for the empty arc behind the filled one? From an initial look at the code, it should be trivial to add...
I'm looking to enforce a naming convention in a fairly large app, and we achieved this in Javascript land using eslint's [`no-restricted-syntax`](https://eslint.org/docs/latest/rules/no-restricted-syntax) rule. Some solutions I'm thinking about that would...
A trimmed down version of the component where I encountered this: ```javascript import { service } from '@ember/service'; import Component from '@glimmer/component'; import { task } from 'ember-concurrency'; export default...