David Khourshid

Results 87 issues of David Khourshid

https://docs.python.org/3/library/enum.html

### Discussed in https://github.com/statelyai/xstate/discussions/3441 Originally posted by **butlerpaul** July 3, 2022 After fresh install I get "Command 'XState: Open Visual Editor' resulted in an error. (command stately-xstate.edit not found)" Is...

I've been using RSCSS exclusively in my latest projects, with great success. However, instead of using the two-word rule for components, I prefix all of my components, such as `.my-button`...

It doesn't seem there are metrics for specificity, which would be very important for CSS style statistics. I don't believe "Most Identifier" [sic] and "Lowest Cohesion" follow specificity rules, so...

enhancement

The `createModel(...)` function is now marked as deprecated, as it will be removed in XState version 5. It is recommended to use [Typegen](https://stately.ai/blog/introducing-typescript-typegen-for-xstate) instead.

This PR: - Removes the 2nd `payload?` argument from `interpreter.send(...)` - Only allows event objects (normal & SCXML) in `interpreter.send(...)` - Refactors tests ```diff -actor.send('SOME_EVENT') +actor.send({ type: 'SOME_EVENT' }) -actor.send('EVENT',...

_Originally posted by @lodi-g in https://github.com/statelyai/xstate/pull/2813#discussion_r973294073_