Skip to content

Releases: esp/esp-js

0.7.6

28 Apr 13:42
Compare
Choose a tag to compare

Minor type script definition update (as per #89)

0.7.5

14 Apr 15:09
Compare
Choose a tag to compare

Minor TypeScript typing update

0.7.4

12 Apr 16:59
Compare
Choose a tag to compare

Typescript type definition improvements.

0.7.2

16 Mar 08:06
Compare
Choose a tag to compare

closes #52

0.7.1

05 Mar 14:33
Compare
Choose a tag to compare

Fixes #78

0.7.0

01 Mar 16:18
Compare
Choose a tag to compare

Fixes

Fixes #73 top level export should export DisposableBase
Fixes #74 DictionaryDisposable should have method containsKey(key)

Breaking changes:

model is no longer exported:

Previously model was a top level export. It contained a few things:

  • DisposableBase
  • Some now unsupported model helper entities which were likely never consumed
  • an events module which contained only ModelChagnedEvent

DisposableBase and ModelChagnedEvent still exist however now both are top level exports, i.e. both the below are now valid:

import {DisposableBase, ModelChagnedEvent} from 'esp-js';
class Foo extends DisposableBase {}
let e = new ModelChagnedEvent();
import esp from 'esp-js';
class Foo extends esp.DisposableBase {}
let e = new esp.ModelChagnedEvent();

0.6.1

24 Feb 13:57
Compare
Choose a tag to compare

Fixes 53

0.6.0

20 Feb 18:03
Compare
Choose a tag to compare

see #69

0.5.16

20 Feb 17:05
Compare
Choose a tag to compare

Minor change to add a devtools hook for when a model gets removed

0.5.15

09 Feb 12:03
Compare
Choose a tag to compare
  • fixed an issues whereby errors during runAction didn't halt the router
  • devtools hooks for when the router halts