Skip to content

Releases: cyclejs/dom

mockDOMSource supports isolation

13 Jul 17:56
Compare
Choose a tag to compare

The mocked DOM Source created by mockDOMSource() now has the functions isolateSource and isolateSink attached.

Fixes issue 279.

Tiny fixes to support old browsers

11 Jul 14:20
Compare
Choose a tag to compare

A bit better support for isolation in browsers like Android Chrome 30, Safari 8, IE 10, IE 11.

Fix scroll events bug

29 Jun 14:04
Compare
Choose a tag to compare

Fix bug for detecting scroll events, cyclejs/cyclejs#308.

Cycle DOM Diversity, with snabbdom and xstream

11 Jul 14:21
Compare
Choose a tag to compare

Inline SVG support for JSX

12 Apr 11:35
Compare
Choose a tag to compare

mockDOMSource() to support chained select() calls

14 Mar 20:47
Compare
Choose a tag to compare

Support select().observable in mockDOMSource

19 Feb 08:31
Compare
Choose a tag to compare

It's now possible to mock select('.foo').observable using mockDOMSource:

const userEvents = mockDOMSource({
  '.foo': {
    'click': Rx.Observable.just({target: {}}),
    'mouseover': Rx.Observable.just({target: {}}),
    observable: Rx.Observable.empty() // <---- this
  },
  '.bar': {
    'scroll': Rx.Observable.just({target: {}})
  }
});

Read more: https://github.com/cyclejs/cycle-dom/issues/106

Support more <video> media events

19 Feb 08:10
Compare
Choose a tag to compare

<video> "timeupdate" event supported

18 Feb 20:17
Compare
Choose a tag to compare

Update hyperscript-helpers to 2.0.3

23 Jan 15:24
Compare
Choose a tag to compare