xstate-tools icon indicating copy to clipboard operation
xstate-tools copied to clipboard

Public monorepo for XState tooling

Results 163 xstate-tools issues
Sort by recently updated
recently updated
newest added

When renaming events on a model (`Rename Symbol` / F2), VSCode doesn't rename the corresponding event keys in the machine defintion. This would be a nice quality-of-life improvement when using...

Having my _entire_ code window underlined in red squiggliest every time I type is super distracting. I wound up disabling the entire exertion to get rid of it.

Isn't "hand" tool to move graph available on XState Viz VSCode Plugin? ![no_hand](https://user-images.githubusercontent.com/12391417/146620924-046f131f-12cc-4d70-b786-d92ecebc1938.png) https://stately.ai/viz has it: ![hand](https://user-images.githubusercontent.com/12391417/146620908-6454e360-8acd-44fe-83dc-13c66f195b20.png)

I often create a `machine.types.tsx` file that contains all of my states, events, and the type of machine. I then use these values/enums in separate machines based on platform... Example......

### The following machine does not render anything in the visualizer... ```javascript enum States { init = 'init', done = 'done', } enum ConditionNames { One = 'One', } const...

This issue corresponds to the idea of special highlights in machine definitions that is outlined on Twitter: https://twitter.com/_maciej/status/1442463662464192515 I experimented with semantic highlighting yesterday. Since the XState language server has...

enhancement

Given the following machine, pressing the transition to `b` actually goes to `a`. In general the visualiser respects the order of transitions in the array, I think it should respect...

Importantly I can't close or switch editors with Cmd+W and Cmd+P

**User story** When using the `forwardTo()` action in a machine, I expect to see `DO / send to ` in the rendered machine. **Expected** The id appears in the `DO`...