8000 Releases · Katochimoto/xblocks-core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: Katochimoto/xblocks-core

3.0.0

09 Jul 16:24
Compare
Choose a tag to compare
  • Changes in the Declaration of the component:
    • subscribers to the event are invoked in Declaration order
    • of the subscribers are not overridden
    • the ability to specify subscribers on lifecycle events
  • Changes in the Declaration of the view:
    • subscribers to the event are invoked in Declaration order
    • of the subscribers are not overridden
  • Updating the view after changes to the underlying nodes
  • Methods for obtaining templates and content transferred in the context of the React component
  • Experimental support for Shadow DOM

2.0.7

04 May 19:22
Compare
Choose a tag to compare
  • Update documentation
  • Adding tests
  • Small fixes

2.0.6

09 Apr 17:25
Compare
Choose a tag to compare
  • npmignore fix

2.0.5

09 Apr 17:14
Compare
Choose a tag to compare
  • support decorators
var xcore = require('xblocks-core');

@xcore.element('x-element', {
    events: {
        'xb-created': function() {}
    }
})
class XElement extends React.Component {
    render() {
        return (
            <div data-xb-content={this.props._uid}
                title={this.props.test1}>{this.props.children}</div>
        );
    }
}

XElement.propTypes = {
    test1: React.PropTypes.string
};

2.0.4

08 Mar 16:10
Compare
Choose a tag to compare

rebuild

2.0.3

08 Mar 16:09
Compare
Choose a tag to compare
  • up bower

2.0.2

08 Mar 16:03
Compare
Choose a tag to compare
  • update dependencies

2.0.1

31 Jan 16:23
Compare
Choose a tag to compare
  • up readme
  • fix jsdoc

2.0.0

27 Jan 20:41
Compare
Choose a tag to compare
up version

1.0.1

28 Nov 15:01
Compare
Choose a tag to compare

es6

0