Skip to content

Releases: nativew/nativeweb

2.1.0

25 Apr 21:32
Compare
Choose a tag to compare

Add a setter to @property & @customEvent

To reassign the value of properties & custom events.

2.0.0

25 Mar 02:59
Compare
Choose a tag to compare

Change child & external events key to strings.

This removes the need to name the component's class.
Everything now refers to the element name element-name instead of naming the component in two different ways.

From

@event() click = {
    button: this.onClick()
};
@event() ready = {
    OtherComponent: this.onReady()
};

To

@event() click = {
    '@button': this.onClick()
};
@event() ready = {
    'other-component': this.onReady()
};

Add this.properties

To get all the component's attributes.
You can now easily pass all attributes to a child component.

<child-component ${...this.properties}></child-component>

1.0.0

26 Jan 13:22
Compare
Choose a tag to compare
1.0.0

0.3.0

09 Jun 12:36
Compare
Choose a tag to compare
0.3.0

0.2.1

09 Jun 12:35
Compare
Choose a tag to compare
0.2.1