Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 17 Mar 19:32
· 245 commits to main since this release
fdc34b5

Patch Changes

  • 1cc0cfb Thanks @prevwong! - Remove unnecessary options for reka.watch()

  • ea0a075 Thanks @prevwong! - Fix @each directive bugs

  • d8cc124 Thanks @prevwong! - Fix Observer not automatically transforming newly inserted Type into Mobx observables.

    For example, given the following template where each is initially null:

    const template = t.tagTemplate({
      tag: 'div',
      props: {},
      children: [],
      each: null,
    });

    Then, if we were to set each to a new ElementEach type object:

    template.each = t.elementEach({
        ...
    })

    The above ElementEach should automatically be made into a Mobx observable.