Skip to content

Releases: jails-org/Jails

v3.3.4 - Bug Fixes

11 Aug 14:42
Compare
Choose a tag to compare
  • 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 to 3.3.3 and 3.3.2 versions. This issue is completely solved on this version.

v3.3.2 - Bug Fixes

05 Aug 21:10
Compare
Choose a tag to compare
  • Fixing internal each function, testing item before callback calls. ( Resulting on publish/subscribe errors in particular cases )

v3.3.1 - Bug Fixes

05 Aug 21:14
Compare
Choose a tag to compare
  • Removing arrow functions references from code ( IE 11 )

v3.3.0

03 Jun 19:54
Compare
Choose a tag to compare

[ 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

21 Oct 22:55
Compare
Choose a tag to compare

[FIX] - On removeEventListener ( .off ) when using useCapture on event delegation ( focus, blur... ).
[REMOVE] - Removing unused and not documented .destroyAll() method.

v3.2.0

13 Oct 19:38
Compare
Choose a tag to compare

.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

07 Oct 01:14
Compare
Choose a tag to compare
  • 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

18 Jun 17:46
Compare
Choose a tag to compare

[Fix] - Fixes on jails.destroy() method. It wasn't actually calling :destroy events on components.

3.0.0

14 May 02:11
Compare
Choose a tag to compare

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 for Jails extending
  • Compatibility with IE8 using jails.legacy.js

2.2.5

09 May 15:46
Compare
Choose a tag to compare
  • Fix in .on() interface, it was breaking in multiple calls.