Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 340 Bytes

shy-walls-develop.md

File metadata and controls

5 lines (4 loc) · 340 Bytes
xstate
major

Support for compound string state values has been dropped from Machine's transition method. It's no longer allowed to call transition like this - machine.transition('a.b', { type: 'NEXT' }), instead it's required to use "state value" representation like this - machine.transition({ a: 'b' }, { type: 'NEXT' }).