Skip to content

Releases: jails-org/Jails

v5.5.0 - Minor Update

11 Nov 23:30
Compare
Choose a tag to compare

Change Log

✓ Stabilizing template system shared variable through child components.
✓ Adding new feature innerHTML that will make possible to update a component with html string instead of an object, using dom diffing for performance. Useful for server-side oriented UI, like htmx.

Use case:

export const myComponent ({ main, on, innerHTML }) { 
    
    main( _ => { 
        on('click', 'button', updateUI)
    })
    
    const updateUI = () => {
       fetch('my-service/ui/user-ui-updated')
           .then( response => response.text() )
           .then( html => innerHTML( html ) )
    }
}

v5.4.0 - Minor Update

14 Oct 20:38
Compare
Choose a tag to compare

Change Log

  • Fixing Html Encoding Inconsistences in some Edge Cases.
  • Exporting html interface to work with Template Strings and get benefit of html tagged functions syntax highlighting on code editors.
    Ex.
import { html } from 'jails-js'

export const Template = (data) => {
   return html`<h1>My title</h1>`
}

v5.3.0 - Minor Update

09 Oct 23:15
Compare
Choose a tag to compare

Change Log

  • Improving performance scanning on page load.
  • Changing main to a new pattern, deprecating functions list, using void function instead. ( Simplicity )

v5.2.0 - Minor Update

07 Oct 15:10
Compare
Choose a tag to compare

Change Log

  • Exposing pub/sub interface in Jails Api
  • Improving html-model strategy.
  • Adding target option to jails.start
  • Fixing types on types.d.ts
  • Changing webpack to vite bundler

v5.1.6 - Patch Update

02 Sep 00:41
Compare
Choose a tag to compare

Change Log

  • Reverting the encoding removal, it was necessary for some edge cases.
  • Trimmed classes to avoid multiple empty spaces in html-class directive.

v5.1.5 - Patch Update

27 Aug 19:34
Compare
Choose a tag to compare

Change Log

  • Replacing the intermediate internal template system tag delimiters to avoid collisions with other languages inside component innerHtml source code.
  • With the above change, it was removed intermediate template encoding step.

v5.1.4 - Patch Update

19 Aug 17:56
Compare
Choose a tag to compare

Change Log

  • Bugfix - Falsy values where not being shown on html- properties.
    Ex. html-value="counter" - It was not working for cases when counter is 0.

v5.1.3 - Patch Update

14 Aug 22:36
Compare
Choose a tag to compare

Change Log

  • Fixed: html-model was not working for some scenarios.
  • Fixed: $index special variable was not being created on object iterations.

v5.1.2 - Patch Update

12 Aug 20:39
Compare
Choose a tag to compare

Change Log

  • Improving template evaluation for single quotes on html template

v5.1.1 - Patch Update

12 Aug 17:35
Compare
Choose a tag to compare

Change Log

  • The new template system has a limitation with single quotation inside html. It was fixed.
  • Minor improvements like removing redudant parsing of template in code.