Releases: jails-org/Jails
v3.3.4 - Bug Fixes
- Removing
async
references from the code.
Async is a keyword on javascript and was being used on topics of
pub/sub
internal library causing errors on specific publish calls. This bug fix is related to3.3.3
and3.3.2
versions. This issue is completely solved on this version.
v3.3.2 - Bug Fixes
- Fixing internal
each
function, testing item before callback calls. ( Resulting on publish/subscribe errors in particular cases )
v3.3.1 - Bug Fixes
- Removing arrow functions references from code ( IE 11 )
v3.3.0
[ Feature ] - Enabled Multiple init:main()
calls for code splitting.
[ Feature ] - Unlocked Async Components
Code like this is now supported:
import inview from '../../helpers/inview'
export default async ({ init:main }) => {
await inview('.hello')
const helloworld = await import('./hello-world')
main(() => [
helloworld.default
])
}
v3.2.1
v3.2.0
.destroy( nodeHtmlElement )
- Changing destroy() method was neccessary to avoid destroy conflicts. Now, instead of passing a context and selector :
jails.destroy( parent, '[data-component*=somecomponent]' )
, you should now send only the node which will be destroyed.
E.g jails.destroy( node )
.
You can use queryselector to map over nodelist calling jails.destroy()
for each element in order to destroy several components.
v3.1.1
- Adding
jails
to the component interface - Replacing
.use()
to.extends
for component interface extendings
You should now use the jails.extends()
for reactor, or arch, and jails.use()
for logger and jquery.adapter.
For more information checkout the Demos section looking for main.js or core.js config files to see how middlewares are used.
3.0.1
3.0.0
Aphrodite
- Rewritten from scratch
- Functional
- All component's interface can be used without dot
.
notation - Event delegation improvements
- Better async
pub/sub
system - Supporting
Dependecy Injection
- Init method improvements
- New middleware
.use
interface forJails
extending - Compatibility with IE8 using
jails.legacy.js