Skip to content

Releases: jails-org/Jails

2.2.4

04 Feb 16:05
Compare
Choose a tag to compare

Bug Fixes ( 2.2.0 - 2.2.4 )

  • Fix in properties parsing when value is a window property
  • Handling error when component on markup doesn't match any of jails.components.
  • Fix on props(), scoped values into attributes nodelist. Some names like status wasn't being parsed on .data attributes as expected.
  • unsubscribe was using an undefined variable.

2.2.0

22 Jan 00:45
Compare
Choose a tag to compare

Hephaestus

Hephaestus

  • Code was completely rewritten from scratch
  • props() function interface to get element attributes available in component arguments.
  • Improving event delegation on jails.events, now everything is "delegable" including custom events.
  • Components startup improved. Annotations are now part of element attributes, parsed only on props() call.
  • Separate polyfills for modern browsers and legacy browsers.
  • Improvements on destroy() and render() methods.
  • Killed .listen() method.
  • Added .off() method on components interface.

2.1.8

24 Nov 21:51
Compare
Choose a tag to compare
  • Fixing .matches error, when js is async and document.body isnt present yet.

2.1.7

20 Nov 18:57
Compare
Choose a tag to compare
  • Fixes on duplicated calls of .execute(), improving matchesSelector function

2.1.6

15 Oct 16:20
Compare
Choose a tag to compare
  • Fixes on .listen()/.emit() methods, instances was not being found on callback calls.

2.1.5

10 Oct 17:54
Compare
Choose a tag to compare
  • Emergencial Fix, on .listen() method.

2.1.4 ( Triton )

01 Oct 04:50
Compare
Choose a tag to compare
  • Fixes on annotations containing @ chars, e.g [email protected]
  • .on() method can be used in favor of .listen()

2.1.3 ( Triton )

23 Sep 15:07
Compare
Choose a tag to compare
  • The most stable version of Triton
  • Added star on .listen() methods, you can listen to a custom event triggered from any components.
component.listen('*:eventname')

Jails 2 ( Triton )

03 Aug 00:42
Compare
Choose a tag to compare

Jails 2.0 - Triton

Triton

  • Simplicity
  • Flexibility
  • Functional Oriented

  • R.I.P Controllers . Everything is a component now.
  • No more jails.components() calls, every component should be created as jails('my-component')
  • Every module now can have a html @annotation.
  • Components can listen to each other, even if they are in the same markup.
  • More power to Components, .get(), .publish() and .subscribe() are now available.
  • Functional oriented, components now is sent to jails() as a parameter.
  • Less Code, more simple.

Jails 1.4 ( Theseus )

20 Jun 01:12
Compare
Choose a tag to compare
  • Code refactory ( Protototyped based inheritance )
  • Removing .off() method, it's now a returned function from called .on() method.
  • Added unsubscribe on pub/sub, it's now a returned function from subscribe() method.
  • Exposed .App(), Component(), Controller classes.
  • Improving destroy
  • Publishing jails:ready
  • Deprecated .x() method, replaced by .get()j

.get() implementation

//...
this.get('component', 'submitter')

or can be used as x.() explicit implementation

this.get('[data-component*=submitter'])