Skip to content

0.4.0 / 2018-09-04

Compare
Choose a tag to compare
@chentsulin chentsulin released this 04 Sep 12:10

Minor Changes

  bottenderXstate({
    config,
    mapContextToXstateEvent,
    actions,
    guards: {
      oneSecondElapsed: extendedState => {
        const { elapsedTime } = extendedState;

        console.log(`Elapsed Time: ${elapsedTime}`);

        return elapsedTime >= 1000;
      },
    },
  })

Patches

  • Add transition actions example: f932870
  • Update history example: a5fbc0a