Skip to content

Releases: cyclejs/dom

mockDOMSource supports isolation

Choose a tag to compare

@staltz staltz released this 13 Jul 17:56

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

Fixes issue 279.

Tiny fixes to support old browsers

Choose a tag to compare

@staltz staltz released this 11 Jul 14:20

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

Fix scroll events bug

Choose a tag to compare

@staltz staltz released this 29 Jun 14:04

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

Cycle DOM Diversity, with snabbdom and xstream

Choose a tag to compare

@staltz staltz released this 11 Jul 14:21

Inline SVG support for JSX

Choose a tag to compare

@staltz staltz released this 12 Apr 11:35

mockDOMSource() to support chained select() calls

Choose a tag to compare

@staltz staltz released this 14 Mar 20:47

Support select().observable in mockDOMSource

Choose a tag to compare

@staltz staltz released this 19 Feb 08:31

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

Choose a tag to compare

@staltz staltz released this 19 Feb 08:10

<video> "timeupdate" event supported

Choose a tag to compare

@staltz staltz released this 18 Feb 20:17

Fixes issue #103.

Update hyperscript-helpers to 2.0.3

Choose a tag to compare

@staltz staltz released this 23 Jan 15:24
v9.0.2

9.0.2