Rémy Machado

Results 12 issues of Rémy Machado

Css given by the `className` prop is overridden by the default style. Furthermore we can't access the underlying elements' class. Giving this terrible code: ```typescript

PRs welcome

First of all, I love the new documentation, last time I checked it was years ago and was way more confusing. ## What docs page needs to be fixed? Using...

**EDIT**: I realised `.can()` of `PureAbility` (same as `throwUnlessCan()`) & `.can()` of `AbilityBuilder` don't have the same signature. This is confusing. Now I'm wondering: If I want to check several...

enhancement

I am wondering why isn't there a `findOneByFields` method, similar to the existing `findByFields` one. Currently I'm using this hack: ```typescript async findOneByFields(values) { return this.findByFields(values).then((documents) => documents?.[0]) } ```...

I would like to store the authenticated user in the context, in order for each method of the `DataSource` to directly access it, but I think it may be an...

help wanted
question

I have the following collation on my collection: ```typescript schemaOptions: { collection: 'users', collation: { locale: 'en', strength: 2, }, }, ``` It's working correctly when I directly use the...

bug
help wanted

Hey, I'm not sure I understand the current example of Node.js DOTENV_KEY setup. The current README.md: > node index.js > > // console.log(result.parsed) // { HELLO: 'Universe' } > //...

The `data` property is great for handling logic. However, it doesn't seem to be typesafe. It would be nice if the `DndContext` & the `hooks` could be generic in order...

> The subscribeToMore function is similar in structure to the [fetchMore](https://www.apollographql.com/docs/react/caching/advanced-topics/#incremental-loading-fetchmore) function that's commonly used for handling pagination. The primary difference is that fetchMore executes a followup query, whereas subscribeToMore...

core

Hey, I'm not sure I understand the current example of Node.js DOTENV_KEY setup. The current README.md: > node index.js > > // console.log(result.parsed) // { HELLO: 'Universe' } > //...