Releases: jails-org/Jails
Releases · jails-org/Jails
2.2.4
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
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()
andrender()
methods. - Killed
.listen()
method. - Added
.off()
method on components interface.
2.1.8
2.1.7
2.1.6
2.1.5
2.1.4 ( Triton )
- Fixes on annotations containing
@
chars, e.g [email protected] .on()
method can be used in favor of.listen()
2.1.3 ( Triton )
- 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 )
Jails 2.0 - Triton
- Simplicity
- Flexibility
- Functional Oriented
- R.I.P
Controllers. Everything is a component now. - No more
jails.components()
calls, every component should be created asjails('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 )
- 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'])