Skip to content

Releases: finom/seemple

v2.4.0

14 Apr 20:18
Compare
Choose a tag to compare

2.4.0 (2017-04-14)

Features

  • calc: Allow to use promises via promiseCalc flag (dea2e987)
this.calc('a', ['b', 'c'], (b, c) => {
    return new Promise(resolve => {
        setTimeout(() => {
            resolve(a + b)
        }, 1000);
    });
}, { promiseCalc: true });

this.b = 1;
this.c = 2;

// "a" will be changed in a second
this.calc('response', 'data', async (data) => {
    const resp = await fetch(url, {
        method: 'post',
        body: data
    });

    return resp.json();
}, { promiseCalc: true });

v2.3.1

02 Apr 15:22
Compare
Choose a tag to compare

2.3.1 (2017-04-02)

Bug Fixes

  • Allow to move sandbox between arrays with existence binder (3b030b30)

v2.3.0

02 Apr 08:39
Compare
Choose a tag to compare

2.3.0 (2017-04-02)

Features

v2.2.0

08 Dec 13:25
Compare
Choose a tag to compare

2.2.0 (2016-12-08)

Fixes

  • parseBindings: Slice attributes instead of spread (433f1086)

Features

  • No features has been added. Minor release is made by mistake.

v2.1.1

07 Dec 16:26
Compare
Choose a tag to compare

2.1.1 (2016-12-07)

Bug Fixes

  • One weird Webkit issue fix at bindings parser (3c651b8a)

v2.1.0

10 Nov 15:30
Compare
Choose a tag to compare

2.1.0 (2016-11-10)

Features

  • Mapping function for binder creators: attr, dataset, html, prop, style, text (8e3e41e7)

v2.0.2

01 Nov 15:16
Compare
Choose a tag to compare

<a name"2.0.2">

2.0.2 (2016-11-01)

Bug Fixes

  • Uncommon issue at parseBindings appeared at Firefox (9cc3b999)

v2.0.0

25 Oct 06:06
Compare
Choose a tag to compare

There was no issues last 7 days.

v2.0.0-beta.5

18 Oct 09:05
Compare
Choose a tag to compare

<a name"2.0.0-beta.5">

2.0.0-beta.5 (2016-10-18)

Bug Fixes

  • Check for bindings existence when off method is called with no args (21fffe95)

v2.0.0-beta.4

17 Oct 18:47
Compare
Choose a tag to compare

<a name"2.0.0-beta.4">

2.0.0-beta.4 (2016-10-17)

Bug Fixes

  • Remove all DOM events when off with no arg is called (8327ba07)