Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1018 Bytes

CHANGELOG.md

File metadata and controls

31 lines (19 loc) · 1018 Bytes

svelte-fsm changelog

1.1.2

  • formatting tweaks

1.1.1

  • [fix] allow any event arguments if action types unspecified (#5 - closes #4)
  • [fix] expect event invocations to always returns State (string | symbol) (#5)

1.1.0

  • [feat] improve TypeScript declarations (#1)
  • [fix] allow symbol transition values

1.0.0

  • cancel pending debounce invocations by calling debounce(null)

0.7.1

  • ignore non-string transition values
  • improve tests - more readable, less fragile

0.7.0

  • call lifecycle actions (_enter, _exit) with transition metadata { from, to, event, args }
  • remove _init lifecycle action; call _enter on-init with null valued from and event
  • add support for '*' pseudo-state fallback actions
  • bind this to state object in action invocations